Last active
October 14, 2015 18:43
-
-
Save jlehikoinen/7b7041ad32757b15b5f8 to your computer and use it in GitHub Desktop.
LaunchDaemon for restarting Caching Server running over Wi-Fi
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>com.yourdomain.restart-caching-server</string> | |
<key>ProgramArguments</key> | |
<array> | |
<string>bash</string> | |
<string>-c</string> | |
<string>/Applications/Server.app/Contents/ServerRoot/usr/sbin/serveradmin stop caching ; \ | |
/bin/sleep 10 ; \ | |
/Applications/Server.app/Contents/ServerRoot/usr/sbin/serveradmin start caching | |
</string> | |
</array> | |
<key>StartCalendarInterval</key> | |
<dict> | |
<key>Hour</key> | |
<integer>1</integer> | |
<key>Minute</key> | |
<integer>00</integer> | |
</dict> | |
</dict> | |
</plist> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment