1
1
mirror of https://gitlab.archlinux.org/archlinux/infrastructure.git synced 2025-01-18 08:06:16 +01:00
infrastructure/roles/certbot/files/hook.sh
Florian Pritz dacb47a73d
Refactor certbot into dedicated role
Signed-off-by: Florian Pritz <bluewind@xinu.at>
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