This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
zhangyang-zerotierone/ext/installfiles/mac/uninstall.sh

39 lines
902 B
Bash
Raw Normal View History

2013-11-06 15:04:05 -05:00
#!/bin/bash
2013-11-13 09:07:59 -05:00
export PATH=/bin:/usr/bin:/sbin:/usr/sbin
2013-11-06 15:04:05 -05:00
if [ "$UID" -ne 0 ]; then
2013-11-13 09:07:59 -05:00
echo "Must be run as root; try: sudo $0"
2013-11-06 15:04:05 -05:00
exit 1
fi
2013-11-13 09:07:59 -05:00
echo
echo "This will uninstall ZeroTier One, hit CTRL+C to abort."
echo "Waiting 5 seconds..."
sleep 5
2013-11-06 15:04:05 -05:00
ztpath="/Library/Application Support/ZeroTier/One"
echo "Killing any running zerotier-one service..."
2013-11-13 09:07:59 -05:00
killall -TERM zerotier-one >>/dev/null 2>&1
sleep 3
killall -KILL zerotier-one >>/dev/null 2>&1
echo "Unloading kernel extension..."
kextunload "$ztpath/tap.kext"
2013-11-06 15:04:05 -05:00
echo "Erasing binary and support files..."
cd $ztpath
2013-11-13 09:07:59 -05:00
rm -rfv zerotier-one *.persist authtoken.secret identity.public *.log *.pid *.kext
echo "Done."
echo
echo "Your ZeroTier One identity is still preserved in $ztpath"
echo "as identity.secret and can be manually deleted if you wish. Save it if"
echo "you wish to re-use the address of this node, as it cannot be regenerated."
echo
2013-11-06 15:04:05 -05:00
2013-11-13 09:07:59 -05:00
exit 0