diff options
author | David Runge <dave@sleepmap.de> | 2015-03-20 01:28:03 +0100 |
---|---|---|
committer | David Runge <dave@sleepmap.de> | 2015-03-20 01:28:03 +0100 |
commit | 5173d02e1fc5b4de0f6e315272d9011ffa13194b (patch) | |
tree | a23af8d46a04bcff31d898977e089fb47556291d /system | |
parent | f7983691ab7454c895bcf5be5988be269f8eadb3 (diff) | |
download | crypted-backups-5173d02e1fc5b4de0f6e315272d9011ffa13194b.tar.gz crypted-backups-5173d02e1fc5b4de0f6e315272d9011ffa13194b.tar.bz2 crypted-backups-5173d02e1fc5b4de0f6e315272d9011ffa13194b.tar.xz crypted-backups-5173d02e1fc5b4de0f6e315272d9011ffa13194b.zip |
backup-var-log-journal: Adding first version of backup-var-log-journal script, service and timer.
Diffstat (limited to 'system')
-rw-r--r-- | system/backup-var-log-journal.service | 11 | ||||
-rw-r--r-- | system/backup-var-log-journal.timer | 10 |
2 files changed, 21 insertions, 0 deletions
diff --git a/system/backup-var-log-journal.service b/system/backup-var-log-journal.service new file mode 100644 index 0000000..6d1a5ec --- /dev/null +++ b/system/backup-var-log-journal.service @@ -0,0 +1,11 @@ +[Unit] +Description=Backup /var/log/journal directory +ConditionFileIsExecutable=/usr/lib/systemd/scripts/backup-var-log-journal + +[Service] +EnvironmentFile=/etc/backup-settings +Nice=19 +IOSchedulingClass=2 +IOSchedulingPriority=7 +ExecStart=/usr/lib/systemd/scripts/backup-var-log-journal + diff --git a/system/backup-var-log-journal.timer b/system/backup-var-log-journal.timer new file mode 100644 index 0000000..30bd91c --- /dev/null +++ b/system/backup-var-log-journal.timer @@ -0,0 +1,10 @@ +[Unit] +Description=Backup /var/log/journal every Tuesday at 06:00 + +[Timer] +# Every Tuesday at 06:00 +OnCalendar=Tue *-*-* 06:00 +Persistent=true + +[Install] +WantedBy=timers.target |