mirror of
https://github.com/yggdrasil-network/yggdrasil-go.git
synced 2025-04-29 14:45:07 +03:00

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
10 lines
193 B
Bash
Executable file
10 lines
193 B
Bash
Executable file
#!/bin/sh
|
|
|
|
MESH_PACKAGE_LOG=/var/log/mesh.log
|
|
echo "remove.sh called" >> "$MESH_PACKAGE_LOG"
|
|
inst_path="$1"
|
|
|
|
rm -f /usr/bin/mesh
|
|
rm -f /usr/bin/meshctl
|
|
rm -fr /var/www/mesh
|
|
rm -fr "$inst_path"
|