18 lines
449 B
SYSTEMD
18 lines
449 B
SYSTEMD
|
[Unit]
|
||
|
Description=Run archive of internet sites every day
|
||
|
RefuseManualStart=no # Allow manual starts
|
||
|
RefuseManualStop=no # Allow manual stops
|
||
|
|
||
|
[Timer]
|
||
|
# Execute job if it missed a run due to machine being off
|
||
|
Persistent=true
|
||
|
# Run 120 seconds after boot for the first time
|
||
|
OnBootSec=900
|
||
|
# Run every 1 minute thereafter
|
||
|
OnUnitInactiveSec=86400
|
||
|
# File describing job to execute
|
||
|
Unit=archivist.service
|
||
|
|
||
|
[Install]
|
||
|
WantedBy=timers.target
|