Add timer and service for borgmatic utilizing $HOME/.config/borgmatic/%I.yml
This commit is contained in:
parent
819c2e0300
commit
1abd854ea6
2 changed files with 24 additions and 0 deletions
15
etc/systemd/user/borgmatic@.service
Normal file
15
etc/systemd/user/borgmatic@.service
Normal file
|
@ -0,0 +1,15 @@
|
|||
[Unit]
|
||||
Description=Run borgmatic backup for %I utilizing HOME/.config/borgmatic/%I.yml file
|
||||
OnFailure=systemd_failure_notify@%n.service
|
||||
Wants=network-online.target
|
||||
After=network-online.target
|
||||
ConditionACPower=true
|
||||
|
||||
[Service]
|
||||
Type=oneshot
|
||||
ExecStart=borgmatic --syslog-verbosity 1 --config %h/.config/borgmatic/%I.yml
|
||||
Environment="PATH=/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:%h/.bin"
|
||||
Environment="SSH_AUTH_SOCK=/run/user/%u/keyring/ssh"
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
9
etc/systemd/user/borgmatic@.timer
Normal file
9
etc/systemd/user/borgmatic@.timer
Normal file
|
@ -0,0 +1,9 @@
|
|||
[Unit]
|
||||
Description=Run borgmatic %I backup timer utilizing HOME/.config/borgmatic/%I.yml file
|
||||
|
||||
[Timer]
|
||||
OnCalendar=*-*-* 20:00:00
|
||||
Persistent=false
|
||||
|
||||
[Install]
|
||||
WantedBy=timers.target
|
Loading…
Reference in a new issue