mirror of
https://github.com/yggdrasil-network/yggdrasil-go.git
synced 2025-04-29 14:45:07 +03:00
1. added multipath protocol and schema suport
2. added SCTP protocol and schema support 3. added set of NAS models support (Asustor, ReadyNAS, Drobo, QNAP, WD, Synology, Terramaster) 4. moved to fc00::/7 private segment 5. added Windows, MacOS and Linux UI for peers edit and current status
This commit is contained in:
parent
cfa293d189
commit
d8a4000141
198 changed files with 8589 additions and 697 deletions
11
contrib/ui/nas-netgear-os6/package/DEBIAN/control
Normal file
11
contrib/ui/nas-netgear-os6/package/DEBIAN/control
Normal file
|
@ -0,0 +1,11 @@
|
|||
Source: mesh
|
||||
Package: mesh
|
||||
Version: 0.4.4
|
||||
Architecture: amd64
|
||||
Maintainer: Vadym Vikulin <vadym.vikulin@rivchain.org>
|
||||
Depends: lsb-base, debconf, readynasos (>= 6.0.5~T1271)
|
||||
Section: net
|
||||
Priority: optional
|
||||
Installed-Size: 20000
|
||||
Homepage: https://github.com/RiV-chain/RiV-mesh
|
||||
Description: RiV-mesh is an implementation of a fully end-to-end encrypted IPv6 network
|
61
contrib/ui/nas-netgear-os6/package/DEBIAN/postinst
Executable file
61
contrib/ui/nas-netgear-os6/package/DEBIAN/postinst
Executable file
|
@ -0,0 +1,61 @@
|
|||
#!/bin/sh
|
||||
# postinst script for mesh
|
||||
#
|
||||
# see: dh_installdeb(1)
|
||||
|
||||
set -e
|
||||
|
||||
# summary of how this script can be called:
|
||||
# * <postinst> `configure' <most-recently-configured-version>
|
||||
# * <old-postinst> `abort-upgrade' <new version>
|
||||
# * <conflictor's-postinst> `abort-remove' `in-favour' <package>
|
||||
# <new-version>
|
||||
# * <postinst> `abort-remove'
|
||||
# * <deconfigured's-postinst> `abort-deconfigure' `in-favour'
|
||||
# <failed-install-package> <version> `removing'
|
||||
# <conflicting-package> <version>
|
||||
# for details, see http://www.debian.org/doc/debian-policy/ or
|
||||
# the debian-policy package
|
||||
|
||||
|
||||
case "$1" in
|
||||
configure)
|
||||
chown -R admin:admin /apps/mesh
|
||||
if systemctl restart apache2.service; then
|
||||
# success
|
||||
event_push app meshd '<add-s resource-type="LocalApp" resource-id="LocalApp"><LocalApp appname="mesh" success="1"/></add-s>' 0 0
|
||||
else
|
||||
# error
|
||||
event_push app meshd '<add-s resource-type="LocalApp" resource-id="LocalApp"><LocalApp appname="mesh" success="0"/></add-s>' 0 0
|
||||
fi
|
||||
;;
|
||||
|
||||
abort-upgrade|abort-remove|abort-deconfigure)
|
||||
;;
|
||||
|
||||
*)
|
||||
echo "postinst called with unknown argument \`$1'" >&2
|
||||
exit 1
|
||||
;;
|
||||
esac
|
||||
|
||||
if [ -f /etc/mesh.conf ]; then
|
||||
mkdir -p /var/backups
|
||||
echo "Backing up configuration file to /var/backups/mesh.conf.`date +%Y%m%d`"
|
||||
cp /etc/mesh.conf /var/backups/mesh.conf.`date +%Y%m%d`
|
||||
echo "Normalising and updating /etc/mesh.conf"
|
||||
/apps/mesh/bin/mesh -useconf -normaliseconf < /var/backups/mesh.conf.`date +%Y%m%d` > /etc/mesh.conf
|
||||
else
|
||||
echo "Generating initial configuration file /etc/mesh.conf"
|
||||
echo "Please familiarise yourself with this file before starting RiV-mesh"
|
||||
sh -c 'umask 0027 && /apps/mesh/bin/mesh -genconf > /etc/mesh.conf'
|
||||
fi
|
||||
|
||||
chmod 755 /etc/mesh.conf
|
||||
if command -v systemctl >/dev/null; then
|
||||
systemctl daemon-reload || echo -n "daemon not reloaded!"
|
||||
systemctl enable mesh || echo -n "systemctl enable failed!"
|
||||
systemctl restart mesh || echo -n "systemctl restart failed!"
|
||||
fi
|
||||
|
||||
exit 0
|
32
contrib/ui/nas-netgear-os6/package/DEBIAN/postrm
Executable file
32
contrib/ui/nas-netgear-os6/package/DEBIAN/postrm
Executable file
|
@ -0,0 +1,32 @@
|
|||
#! /bin/sh
|
||||
# postrm script for mesh
|
||||
#
|
||||
# see: dh_installdeb(1)
|
||||
|
||||
set -e
|
||||
|
||||
# summary of how this script can be called:
|
||||
# * <postrm> `remove'
|
||||
# * <postrm> `purge'
|
||||
# * <old-postrm> `upgrade' <new-version>
|
||||
# * <new-postrm> `failed-upgrade' <old-version>
|
||||
# * <new-postrm> `abort-install'
|
||||
# * <new-postrm> `abort-install' <old-version>
|
||||
# * <new-postrm> `abort-upgrade' <old-version>
|
||||
# * <disappearer's-postrm> `disappear' <r>overwrit>r> <new-version>
|
||||
# for details, see /usr/share/doc/packaging-manual/
|
||||
|
||||
case "$1" in
|
||||
purge)
|
||||
rm -rf /apps/mesh
|
||||
systemctl restart apache2.service
|
||||
event_push app meshd '<delete-s resource-type="LocalApp" resource-id="LocalApp"><LocalApp appname="mesh" success="1" reboot="0"/></delete-s>' 0 0
|
||||
;;
|
||||
remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
|
||||
;;
|
||||
|
||||
*)
|
||||
echo "postrm called with unknown argument \`$1'" >&2
|
||||
exit 0
|
||||
|
||||
esac
|
32
contrib/ui/nas-netgear-os6/package/DEBIAN/prerm
Executable file
32
contrib/ui/nas-netgear-os6/package/DEBIAN/prerm
Executable file
|
@ -0,0 +1,32 @@
|
|||
#! /bin/sh
|
||||
# prerm script for mesh
|
||||
#
|
||||
# see: dh_installdeb(1)
|
||||
|
||||
set -e
|
||||
|
||||
# summary of how this script can be called:
|
||||
# * <prerm> `remove'
|
||||
# * <old-prerm> `upgrade' <new-version>
|
||||
# * <new-prerm> `failed-upgrade' <old-version>
|
||||
# * <conflictor's-prerm> `remove' `in-favour' <package> <new-version>
|
||||
# * <deconfigured's-prerm> `deconfigure' `in-favour'
|
||||
# <package-being-installed> <version> `removing'
|
||||
# <conflicting-package> <version>
|
||||
# for details, see /usr/share/doc/packaging-manual/
|
||||
|
||||
case "$1" in
|
||||
remove|upgrade|deconfigure)
|
||||
systemctl stop fvapp-mesh.service || true
|
||||
systemctl disable fvapp-mesh.service || true
|
||||
;;
|
||||
failed-upgrade)
|
||||
;;
|
||||
*)
|
||||
echo "prerm called with unknown argument \`$1'" >&2
|
||||
exit 0
|
||||
;;
|
||||
esac
|
||||
|
||||
|
||||
exit 0
|
Loading…
Add table
Add a link
Reference in a new issue