forked from TrueCloudLab/certificates
6 lines
102 B
Bash
Executable file
6 lines
102 B
Bash
Executable file
#!/bin/sh
|
|
|
|
while true; do
|
|
inotifywait -e modify /var/local/step/site.crt
|
|
nginx -s reload
|
|
done
|