add systemd timer for backups
This commit is contained in:
parent
baa9bd7bed
commit
6c214a2330
6 changed files with 59 additions and 0 deletions
4
templates/status-email-root.j2
Executable file
4
templates/status-email-root.j2
Executable file
|
|
@ -0,0 +1,4 @@
|
|||
#!/bin/bash
|
||||
set -euo pipefail
|
||||
|
||||
systemctl status "$1" | mail -s "service $1 failed on $( hostname )" root || true
|
||||
7
templates/status-email-root@.service.j2
Normal file
7
templates/status-email-root@.service.j2
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
[Unit]
|
||||
Description=Send a mail to root in case of a service failure
|
||||
|
||||
[Service]
|
||||
Type=oneshot
|
||||
ExecStart=/usr/local/bin/status-email-root %i
|
||||
|
||||
11
templates/timer.j2
Normal file
11
templates/timer.j2
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
[Unit]
|
||||
Description=Execute backup job
|
||||
|
||||
[Timer]
|
||||
Persistent=true
|
||||
{% if "OnCalendar" in backups.jobs[item] %}
|
||||
OnCalendar={{ backups.jobs[item].OnCalendar }}
|
||||
{% endif %}
|
||||
|
||||
[Install]
|
||||
WantedBy=timers.target
|
||||
Loading…
Add table
Add a link
Reference in a new issue