graphene-os-server-infrastr.../etc/systemd/system/rotate-session-ticket-keys.timer
Daniel Micay d923bc7e24 use monotonic timer for session ticket key rotation
It makes more sense to rotate session ticket keys every 8 hours instead
of doing it at 3 specific times each day where the initial rotation will
happen earlier than necessary. It makes little difference due to keeping
the previous 3 session tickets valid but is cleaner.
2025-09-15 21:10:42 -04:00

11 lines
230 B
SYSTEMD

[Unit]
Description=Run rotate-session-ticket-keys three times daily
After=create-session-ticket-keys.service
Requires=create-session-ticket-keys.service
[Timer]
OnActiveSec=8h
OnUnitActiveSec=8h
[Install]
WantedBy=timers.target