16 lines
318 B
SYSTEMD
16 lines
318 B
SYSTEMD
# Template systemd --user timer (DO NOT auto-install).
|
|
# Runs every 10 minutes.
|
|
|
|
[Unit]
|
|
Description=Run OpenClaw Watchdog B every 10 minutes
|
|
|
|
[Timer]
|
|
OnCalendar=*:0/10
|
|
Persistent=true
|
|
# Optional jitter to avoid synchronized runs
|
|
RandomizedDelaySec=30
|
|
Unit=openclaw-watchdog-b.service
|
|
|
|
[Install]
|
|
WantedBy=timers.target
|