mirror of
https://github.com/GrapheneOS/infrastructure.git
synced 2025-09-26 03:00:53 -04:00

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.
11 lines
230 B
SYSTEMD
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
|