Also add borgmatic systemd timer and service to system
This commit is contained in:
parent
830716dbca
commit
5626d0cfc0
2 changed files with 24 additions and 0 deletions
15
etc/systemd/system/borgmatic@.service
Normal file
15
etc/systemd/system/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/system/borgmatic@.timer
Normal file
9
etc/systemd/system/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