mirror of
https://github.com/kuhyx/scripts.git
synced 2026-07-04 16:03:12 +02:00
17 lines
396 B
SYSTEMD
17 lines
396 B
SYSTEMD
[Unit]
|
|
Description=Run Periodic System Maintenance every hour
|
|
Requires=periodic-system-maintenance.service
|
|
|
|
[Timer]
|
|
# Run every hour
|
|
OnCalendar=hourly
|
|
# Run on system startup (5 minutes after boot)
|
|
OnBootSec=5min
|
|
# Add randomization to prevent all systems from running simultaneously
|
|
RandomizedDelaySec=300
|
|
# Ensure timer persists across reboots
|
|
Persistent=true
|
|
|
|
[Install]
|
|
WantedBy=timers.target
|