This commit is contained in:
he
2026-07-28 10:28:11 -04:00
parent 0c30e04533
commit fdca639f58
52 changed files with 3487 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
#!/usr/bin/env bash
set -euo pipefail
source "$(dirname "$0")/../../lib/common.sh"
install_zerotier() {
command -v zerotier-one &>/dev/null && { log "zerotier already installed"; return 0; }
spawn "Installing zerotier" bash -c "
curl -s https://install.zerotier.com | sudo bash
"
log "Join a network: sudo zerotier-cli join <network-id>"
}
install_zerotier