mirror of
https://gitlab.archlinux.org/archlinux/infrastructure.git
synced 2026-09-11 12:40:33 +02: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
|