Created
November 26, 2021 22:14
-
-
Save macmule/6d7ae7920f6b0d2aeea1cc1e4a2f840e to your computer and use it in GitHub Desktop.
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.launchdaemon.name</string> | |
| <key>ProgramArguments</key> | |
| <array> | |
| <string>/path/to/rsync/script</string> | |
| </array> | |
| <key>RunAtLoad</key> | |
| <true/> | |
| <key>StandardErrorPath</key> | |
| <string>/path/to/error.log</string> | |
| <key>StandardOutPath</key> | |
| <string>/path/to/success.log</string> | |
| <key>StartCalendarInterval</key> | |
| <dict> | |
| <key>Hour</key> | |
| <integer>22</integer> | |
| <key>Minute</key> | |
| <integer>0</integer> | |
| <key>Weekday</key> | |
| <integer>6</integer> | |
| </dict> | |
| </dict> | |
| </plist> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment