Files
infrastructure/roles/certbot/files/hook.sh
2019-03-24 17:32:47 +01:00

7 lines
97 B
Bash

#!/bin/sh
for f in /etc/letsencrypt/hook.d/*; do
if test -x "$f"; then
"$f" "$@"
fi
done