🔧 Remove certbot command handler from entrypoint 🔧

Remove the certbot case block from the entrypoint command dispatcher
since the __certbot function and certbot integration are not applicable
to the mariadb container.
- rootfs/usr/local/bin/entrypoint.sh: remove certbot case block (14 lines)

rootfs/usr/local/bin/entrypoint.sh
This commit is contained in:
2026-06-26 23:42:36 -04:00
parent d6906072d1
commit 50eb312d62
-14
View File
@@ -624,20 +624,6 @@ ssl)
exit $?
;;
# manage ssl certificate
certbot)
shift 1
CERT_BOT_ENABLED="yes"
if [ "$1" = "create" ]; then
shift 1
__certbot "create"
elif [ "$1" = "renew" ]; then
shift 1
__certbot "renew certonly --force-renew"
else
__exec_command "certbot" "$@"
fi
exit $?
;;
# Launch shell
*/bin/sh | */bin/bash | bash | sh | shell)
shift 1