mirror of
https://github.com/acmesh-official/acme.sh.git
synced 2025-05-05 23:34:31 +00:00
10 lines
167 B
Bash
Executable File
10 lines
167 B
Bash
Executable File
#!/usr/bin/env sh
|
|
|
|
if [ "$1" = "daemon" ]; then
|
|
trap "echo stop && killall crond && exit 0" SIGTERM SIGINT
|
|
crond && sleep infinity &
|
|
wait
|
|
else
|
|
exec -- "$@"
|
|
fi
|