forked from TrueCloudLab/certificates
19 lines
410 B
SYSTEMD
19 lines
410 B
SYSTEMD
|
[Unit]
|
||
|
Description=Certificate renewal timer for %I
|
||
|
Documentation=https://smallstep.com/docs/step-ca/certificate-authority-server-production
|
||
|
|
||
|
[Timer]
|
||
|
Persistent=true
|
||
|
|
||
|
; Run the timer unit every 5 minutes.
|
||
|
OnCalendar=*:1/5
|
||
|
|
||
|
; Always run the timer on time.
|
||
|
AccuracySec=1us
|
||
|
|
||
|
; Add jitter to prevent a "thundering hurd" of simultaneous certificate renewals.
|
||
|
RandomizedDelaySec=5m
|
||
|
|
||
|
[Install]
|
||
|
WantedBy=timers.target
|