Skip to content

Instantly share code, notes, and snippets.

@czechboy0
Forked from jaredbeck/com.gocongress.backup.plist
Last active August 29, 2015 14:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save czechboy0/5dd0e3612d07cbfa7110 to your computer and use it in GitHub Desktop.
Save czechboy0/5dd0e3612d07cbfa7110 to your computer and use it in GitHub Desktop.
<?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