29 lines
841 B
Plaintext
29 lines
841 B
Plaintext
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!-- See launchd.plist(5)for documentation on this file. -->
|
|
<!-- See https://www.launchd.info/ for a tutorial. -->
|
|
<!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.github.erikw.restic-automatic-backup</string>
|
|
<key>ProgramArguments</key>
|
|
<array>
|
|
<string>/bin/sh</string>
|
|
<string>-c</string>
|
|
<string>. /usr/local/etc/restic/erikw.env.sh && /usr/local/bin/restic_backup.sh</string>
|
|
</array>
|
|
<key>RunAtLoad</key>
|
|
<true/>
|
|
<!-- Will schedule backup every day at 19:00 -->
|
|
<key>StartCalendarInterval</key>
|
|
<array>
|
|
<dict>
|
|
<key>Hour</key>
|
|
<integer>19</integer>
|
|
<key>Minute</key>
|
|
<integer>0</integer>
|
|
</dict>
|
|
</array>
|
|
</dict>
|
|
</plist>
|