forked from TrueCloudLab/certificates
7 lines
108 B
Bash
7 lines
108 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
while true; do
|
||
|
inotifywait -e modify /var/run/autocert.step.sm/site.crt
|
||
|
kill -HUP 1
|
||
|
done
|