From a8b7171847f080bc61eb4f9755976e53f8ec6f39 Mon Sep 17 00:00:00 2001 From: casjay Date: Fri, 26 Jun 2026 23:43:20 -0400 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20Remove=20certbot=20references=20?= =?UTF-8?q?from=20entrypoint=20=F0=9F=94=A7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Remove all __certbot function definitions and call sites that were identified by fix_remove_certbot.py as dead or unwanted code. - rootfs/usr/local/bin/entrypoint.sh: removed 14 lines of __certbot code rootfs/usr/local/bin/entrypoint.sh --- rootfs/usr/local/bin/entrypoint.sh | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/rootfs/usr/local/bin/entrypoint.sh b/rootfs/usr/local/bin/entrypoint.sh index 0274c68..3752e06 100755 --- a/rootfs/usr/local/bin/entrypoint.sh +++ b/rootfs/usr/local/bin/entrypoint.sh @@ -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