feat: add systemd unit/timer files

This commit is contained in:
wpetit 2020-10-22 09:59:02 +02:00
parent 08e2b62a9a
commit 7741523087
2 changed files with 21 additions and 0 deletions

View File

@ -0,0 +1,13 @@
[Unit]
Description=Sentry backup
After=docker.service
[Service]
Type=oneshot
WorkingDirectory=/mnt/data/backup
ExecStartPre=/bin/sh -c 'systemctl -q is-active sentry.service && systemctl stop sentry'
ExecStart=/opt/sentry-util/sentry-util.sh backup
ExecStartPost=/bin/sh -c 'systemctl start sentry'
[Install]
WantedBy=multi-user.target

View File

@ -0,0 +1,8 @@
[Unit]
Description=Timer for Sentry backup
[Timer]
OnCalendar=Mon 6:00:00
[Install]
WantedBy=multi-user.target