add x64 bins and arm64 bin

This commit is contained in:
Your Name
2026-08-03 02:08:58 -04:00
parent a53ba0a68e
commit cf7ba2d58a
25 changed files with 3565 additions and 48 deletions
+11 -1
View File
@@ -11,4 +11,14 @@ install_zerotier() {
log "Join a network: sudo zerotier-cli join <network-id>"
}
install_zerotier
uninstall_zerotier() {
command -v zerotier-one &>/dev/null || { log "zerotier not installed"; return 0; }
spawn "Removing zerotier" sudo apt purge -y zerotier-one
spawn "Cleaning up dependencies" sudo apt autoremove -y
spawn "Removing zerotier apt repo" sudo rm -f /etc/apt/sources.list.d/zerotier.list
}
case "${1:-}" in
uninstall) uninstall_zerotier ;;
*) install_zerotier ;;
esac