mirror of
https://gitlab.archlinux.org/archlinux/infrastructure.git
synced 2025-01-18 08:06:16 +01:00
7 lines
97 B
Bash
7 lines
97 B
Bash
#!/bin/sh
|
|
for f in /etc/letsencrypt/hook.d/*; do
|
|
if test -x "$f"; then
|
|
"$f" "$@"
|
|
fi
|
|
done
|