diff options
Diffstat (limited to 'stow/duplicity/.local/share')
-rw-r--r-- | stow/duplicity/.local/share/systemd/user/backup.service | 7 | ||||
-rw-r--r-- | stow/duplicity/.local/share/systemd/user/backup.timer | 9 |
2 files changed, 16 insertions, 0 deletions
diff --git a/stow/duplicity/.local/share/systemd/user/backup.service b/stow/duplicity/.local/share/systemd/user/backup.service new file mode 100644 index 0000000..c1adfde --- /dev/null +++ b/stow/duplicity/.local/share/systemd/user/backup.service @@ -0,0 +1,7 @@ +[Unit] +Description=Backup with duplicity +After=network.target + +[Service] +Type=oneshot +ExecStart=bash ${HOME}/.local/bin/backup diff --git a/stow/duplicity/.local/share/systemd/user/backup.timer b/stow/duplicity/.local/share/systemd/user/backup.timer new file mode 100644 index 0000000..b7815d6 --- /dev/null +++ b/stow/duplicity/.local/share/systemd/user/backup.timer @@ -0,0 +1,9 @@ +[Unit] +Description=Run backup every four hours + +[Timer] +OnCalendar=*-*-* 0/4:15 +Persistent=true + +[Install] +WantedBy=timers.target |