mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2024-11-21 04:50:31 -08:00
40 lines
1.1 KiB
Bash
Executable File
40 lines
1.1 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
export PATH=/bin:/usr/bin:/sbin:/usr/sbin
|
|
|
|
rm -f /tmp/zt1-gui-restart.tmp
|
|
for i in `ps axuwww | tr -s ' ' ',' | grep -F '/Applications/ZeroTier,One.app' | grep -F -v grep | cut -d , -f 1,2 | xargs`; do
|
|
u=`echo $i | cut -d , -f 1`
|
|
p=`echo $i | cut -d , -f 2`
|
|
if [ ! -z "$u" -a "0$p" -gt 0 ]; then
|
|
kill $p >>/dev/null 2>&1
|
|
sleep 0.5
|
|
kill -9 $p >>/dev/null 2>&1
|
|
echo "$u" >>/tmp/zt1-gui-restart.tmp
|
|
fi
|
|
done
|
|
for i in `ps axuwww | tr -s ' ' ',' | grep -F '/Applications/ZeroTier.app' | grep -F -v grep | cut -d , -f 1,2 | xargs`; do
|
|
u=`echo $i | cut -d , -f 1`
|
|
p=`echo $i | cut -d , -f 2`
|
|
if [ ! -z "$u" -a "0$p" -gt 0 ]; then
|
|
kill $p >>/dev/null 2>&1
|
|
sleep 0.5
|
|
kill -9 $p >>/dev/null 2>&1
|
|
echo "$u" >>/tmp/zt1-gui-restart.tmp
|
|
fi
|
|
done
|
|
chmod 0600 /tmp/zt1-gui-restart.tmp
|
|
|
|
cd "/Applications"
|
|
rm -rf "ZeroTier One.app"
|
|
rm -rf "ZeroTier.app"
|
|
|
|
if [ -d '/Library/Application Support/ZeroTier/One' ]; then
|
|
cd '/Library/Application Support/ZeroTier/One'
|
|
# ensure that file locking doesn't cause issues with replacing the binary
|
|
rm -f zerotier-one
|
|
rm -f MacEthernetTapAgent
|
|
fi
|
|
|
|
exit 0
|