diff options
Diffstat (limited to 'system')
-rw-r--r-- | system/backup-var-log.service | 11 | ||||
-rw-r--r-- | system/backup-var-log.timer | 10 |
2 files changed, 21 insertions, 0 deletions
diff --git a/system/backup-var-log.service b/system/backup-var-log.service new file mode 100644 index 0000000..6c9fc79 --- /dev/null +++ b/system/backup-var-log.service @@ -0,0 +1,11 @@ +[Unit] +Description=Backup /var/log directory +ConditionFileIsExecutable=/usr/lib/systemd/scripts/backup-var-log + +[Service] +EnvironmentFile=/etc/backup-settings +Nice=19 +IOSchedulingClass=2 +IOSchedulingPriority=7 +ExecStart=/usr/lib/systemd/scripts/backup-var-log + diff --git a/system/backup-var-log.timer b/system/backup-var-log.timer new file mode 100644 index 0000000..489abe1 --- /dev/null +++ b/system/backup-var-log.timer @@ -0,0 +1,10 @@ +[Unit] +Description=Backup /var/log every Tuesday at 05:30 + +[Timer] +# Every Tuesday at 5:30 +OnCalendar=Tue *-*-* 05:30 +Persistent=true + +[Install] +WantedBy=timers.target |