diff --git a/etc/systemd/system/borgmatic-check@.service b/etc/systemd/system/borgmatic-check@.service new file mode 100644 index 0000000..70f2408 --- /dev/null +++ b/etc/systemd/system/borgmatic-check@.service @@ -0,0 +1,15 @@ +[Unit] +Description=Run borgmatic backup check 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 check --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 diff --git a/etc/systemd/system/borgmatic-check@.timer b/etc/systemd/system/borgmatic-check@.timer new file mode 100644 index 0000000..e8e08b8 --- /dev/null +++ b/etc/systemd/system/borgmatic-check@.timer @@ -0,0 +1,9 @@ +[Unit] +Description=Run borgmatic check %I backup timer utilizing HOME/.config/borgmatic/%I.yml file + +[Timer] +OnCalendar=*-*-* 20:00:00 +Persistent=false + +[Install] +WantedBy=timers.target