compose-website/unit-files/ocsp.service

12 lines
256 B
SYSTEMD
Raw Normal View History

2015-02-17 11:25:26 +00:00
[Unit]
Description=Get the OCSP data from the cert provider
[Service]
Type=oneshot
TimeoutStartSec=0
ExecStart=/bin/bash -euxc ' \
for cert in `ls /data/runtime/haproxy/approved-certs/*.pem`;do \
/data/indiehosters/scripts/ocsp.sh $cert; \
done'