-
-
Save sergiobuj/1015025 to your computer and use it in GitHub Desktop.
Example of launchd plist
This file contains 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 Computer//DTD PLIST 1.0//EN" \ | |
"http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<!-- Contains a unique string that identifies your daemon to launchd. | |
This key is required. --> | |
<key>Label</key> | |
<string>com.gocongress.backup</string> | |
<!-- Contains the arguments [to exec()] used to launch your daemon. | |
This key is required. --> | |
<key>ProgramArguments</key> | |
<array> | |
<string>/bin/bash</string> | |
<string>/Users/jared/git/gocongress-backups/backup.sh</string> | |
</array> | |
<!-- This optional key specifies the user to run the job as. This key | |
is only applicable when launchd is running as root. --> | |
<key>UserName</key> | |
<string>jared</string> | |
<!-- Run every 12 hours --> | |
<key>StartInterval</key> | |
<integer>43200</integer> | |
<!-- low priority --> | |
<key>Nice</key> | |
<integer>20</integer> | |
<key>LowPriorityIO</key> | |
<true/> | |
</dict> | |
</plist> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment