summaryrefslogtreecommitdiff
path: root/ext/installfiles/mac/postinst.sh
diff options
context:
space:
mode:
Diffstat (limited to 'ext/installfiles/mac/postinst.sh')
-rwxr-xr-xext/installfiles/mac/postinst.sh22
1 files changed, 22 insertions, 0 deletions
diff --git a/ext/installfiles/mac/postinst.sh b/ext/installfiles/mac/postinst.sh
new file mode 100755
index 00000000..d41b733a
--- /dev/null
+++ b/ext/installfiles/mac/postinst.sh
@@ -0,0 +1,22 @@
+#!/bin/bash
+
+export PATH=/bin:/usr/bin:/sbin:/usr/sbin
+
+launchctl unload /Library/LaunchDaemons/com.zerotier.one.plist >>/dev/null 2>&1
+sleep 1
+killall zerotier-one
+sleep 1
+killall -9 zerotier-one
+
+cd "/Library/Application Support/ZeroTier/One"
+rm -rf node.log node.log.old root-topology shutdownIfUnreadable autoupdate.log updates.d
+if [ ! -f authtoken.secret ]; then
+ head -c 1024 /dev/urandom | md5 | head -c 24 >authtoken.secret
+ chown root authtoken.secret
+ chgrp wheel authtoken.secret
+ chmod 0600 authtoken.secret
+fi
+
+launchctl load /Library/LaunchDaemons/com.zerotier.one.plist >>/dev/null 2>&1
+
+exit 0