mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-09-08 15:52:53 +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/tap
|
|
|
|
# Fix ownership and permissions. PackageMaker gets this wrong *sigh*
|
|
chown -R root:wheel /Library/StartupItems/tap
|
|
chmod -R u=rwX,g=rX,o=rX /Library/StartupItems/tap
|
|
|
|
# exit successfully
|
|
exit 0
|
|
|