Created
January 27, 2016 06:13
-
-
Save celadevra/8fa727f0cf562d2c4266 to your computer and use it in GitHub Desktop.
duplicity-backup launch agent 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//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>Label</key> | |
<string>net.expoundite.duplicity</string> | |
<key>EnvironmentVariables</key> | |
<dict> | |
<key>PATH</key> | |
<string>/sbin:/usr/sbin:/bin:/usr/bin:/usr/local/bin</string> | |
</dict> | |
<key>ProgramArguments</key> | |
<array> | |
<string>/Users/celadevra/src/duplicity-backup/duplicity-backup.sh</string> | |
<string>-c</string> | |
<string>/Users/celadevra/src/duplicity-backup/duplicity-backup.conf</string> | |
<string>-b</string> | |
</array> | |
<key>RunAtLoad</key> | |
<true/> | |
<key>StartCalendarInterval</key> | |
<dict> | |
<key>Minute</key> | |
<integer>00</integer> | |
</dict> | |
<key>StandardErrorPath</key> | |
<string>/Users/celadevra/Library/Logs/net.expoundite.duplicity.log</string> | |
<key>StandardOutPath</key> | |
<string>/Users/celadevra/Library/Logs/net.expoundite.duplicity.log</string> | |
<key>WorkingDirectory</key> | |
<string>/tmp</string> | |
</dict> | |
</plist> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment