mirror of
https://github.com/kuhyx/testsAndMisc.git
synced 2026-07-04 21:23:16 +02:00
git-subtree-dir: linux_configuration git-subtree-mainline:11427631cdgit-subtree-split:0762e3d07b
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
|