mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-07-24 19:22:51 +02:00
12 lines
297 B
Bash
Executable file
12 lines
297 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# old versions resided in /System/Library, remove.
|
|
rm -r /System/Library/StartupItems/tun
|
|
|
|
# Fix ownership and permissions. PackageMaker gets this wrong *sigh*
|
|
chown -R root:wheel /Library/StartupItems/tun
|
|
chmod -R u=rwX,g=rX,o=rX /Library/StartupItems/tun
|
|
|
|
# exit successfully
|
|
exit 0
|
|
|