diff options
author | David Runge <dave@sleepmap.de> | 2015-03-20 00:48:54 +0100 |
---|---|---|
committer | David Runge <dave@sleepmap.de> | 2015-03-20 00:48:54 +0100 |
commit | 65c247e5bb7793923fddef413a6e4b882e87a304 (patch) | |
tree | 770957cb1f57c62528f2528151aa8d1b13b6d79b /system | |
parent | 4025a15bafb4c773669797cb44384c1af1f1651e (diff) | |
download | crypted-backups-65c247e5bb7793923fddef413a6e4b882e87a304.tar.gz crypted-backups-65c247e5bb7793923fddef413a6e4b882e87a304.tar.bz2 crypted-backups-65c247e5bb7793923fddef413a6e4b882e87a304.tar.xz crypted-backups-65c247e5bb7793923fddef413a6e4b882e87a304.zip |
backup-aura-states: Adding first version of backup-aura-states script, service and timer.
Diffstat (limited to 'system')
-rw-r--r-- | system/backup-aura-states.service | 14 | ||||
-rw-r--r-- | system/backup-aura-states.timer | 10 |
2 files changed, 24 insertions, 0 deletions
diff --git a/system/backup-aura-states.service b/system/backup-aura-states.service new file mode 100644 index 0000000..5dfc42a --- /dev/null +++ b/system/backup-aura-states.service @@ -0,0 +1,14 @@ +[Unit] +Description=Backup /var/cache/aura/states directory +ConditionFileIsExecutable=/usr/lib/systemd/scripts/backup-aura-states +ConditionFileIsExecutable=/usr/bin/sudo +ConditionFileIsExecutable=/usr/bin/aura + +[Service] +EnvironmentFile=/etc/backup-settings +Nice=19 +IOSchedulingClass=2 +IOSchedulingPriority=7 +ExecStartPre=/usr/bin/sudo /usr/bin/aura -B -q +ExecStart=/usr/lib/systemd/scripts/backup-aura-states + diff --git a/system/backup-aura-states.timer b/system/backup-aura-states.timer new file mode 100644 index 0000000..aed709d --- /dev/null +++ b/system/backup-aura-states.timer @@ -0,0 +1,10 @@ +[Unit] +Description=Backup aura states every Monday + +[Timer] +# Every Monday +OnCalendar=Mon *-*-* 05:00 +Persistent=true + +[Install] +WantedBy=timers.target |