Created
February 17, 2011 11:38
-
-
Save founddrama/831548 to your computer and use it in GitHub Desktop.
Sample code for "launchd to the rescue"
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo chown -Rv rob:admin /configs |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>Label</key> | |
<string>local.vcs.RepairPermissions</string> | |
<key>OnDemand</key> | |
<true> | |
<key>ProgramArguments</key> | |
<array> | |
<string>sudo</string> | |
<string>chown</string> | |
<string>-Rv</string> | |
<string>rob:admin</string> | |
<string>/configs</string> | |
</array> | |
<key>WatchPaths</key> | |
<array> | |
<string>/configs</string> | |
</array> | |
</true></dict> | |
</plist> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo launchctl load /Library/LaunchDaemons/local.vcs.RepairPermissions.plist |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment