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:
vadym 2022-10-27 22:03:37 +03:00
parent cfa293d189
commit d8a4000141
198 changed files with 8589 additions and 697 deletions

View file

@ -0,0 +1,20 @@
#!/bin/sh
INST_PATH=/mnt/HD/HD_a2/Nas_Prog/mesh
MESH_PACKAGE_LOG=/var/log/mesh.log
echo "install.sh called" >> "$MESH_PACKAGE_LOG"
path_src="$1"
path_dst="$2"
rm -rf "$INST_PATH"
mv "$path_src" "$path_dst"
#LOG_SYMLINK
ln -s "$INST_PATH"/var/log/mesh.log "$INST_PATH"/www/log
#already installed in start
#ln -s "$INST_PATH"/apache-mesh.conf /usr/local/apache2/conf/extra
echo "install.sh: setting permissions to '$path_dst/mesh'" >> "$MESH_PACKAGE_LOG"
chown -R nobody:share "$path_dst/mesh"
#( sleep 2 ; /usr/sbin/apache restart web ) &