Also add borgmatic systemd timer and service to system

This commit is contained in:
Alexander Schäferdiek 2021-03-23 00:18:39 +01:00
parent 830716dbca
commit 5626d0cfc0
2 changed files with 24 additions and 0 deletions

View 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

View 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