mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-01-15 09:20:10 +00:00
15 lines
311 B
Bash
15 lines
311 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
export PATH=/bin:/usr/bin:/sbin:/usr/sbin
|
||
|
|
||
|
if [ -f /Library/LaunchDaemons/com.zerotier.one.plist ]; then
|
||
|
launchctl unload /Library/LaunchDaemons/com.zerotier.one.plist >>/dev/null 2>&1
|
||
|
sleep 1
|
||
|
killall zerotier-one
|
||
|
sleep 1
|
||
|
killall -9 zerotier-one
|
||
|
fi
|
||
|
|
||
|
cd /Applications
|
||
|
rm -rf "ZeroTier One.app"
|