Skip to main content

max / makenotwork

536 B · 18 lines History Blame Raw
1 # Daily trigger for the testnot mirror refresh. sandod-backup-fetch runs at
2 # 04:00 UTC; we refresh at 05:00 UTC to leave headroom for the fetch to land.
3 #
4 # Place at /etc/systemd/system/mnw-testnot-refresh.timer on the Sando host.
5 # Enable: systemctl enable --now mnw-testnot-refresh.timer
6
7 [Unit]
8 Description=MNW: daily testnot staging-mirror refresh
9
10 [Timer]
11 OnCalendar=*-*-* 05:00:00 UTC
12 # If the box was off when the timer fired, run on next boot.
13 Persistent=true
14 Unit=mnw-testnot-refresh.service
15
16 [Install]
17 WantedBy=timers.target
18