From 0389ffd3b279eac53e0abb6e065f382802075ef6 Mon Sep 17 00:00:00 2001 From: MickLesk Date: Fri, 1 May 2026 22:45:08 +0200 Subject: [PATCH] alpine: remove deb/ubuntu-only resource & storage checks from update_script check_container_storage uses 'df /boot --output=size' which is unsupported by BusyBox df on Alpine and /boot is not a separate partition there. Both helpers are designed for Debian/Ubuntu hosts only. Affected: alpine-ntfy, alpine-rustypaste, alpine-ironclaw, alpine-redlib. Fixes #14163 --- ct/alpine-ironclaw.sh | 2 -- ct/alpine-ntfy.sh | 2 -- ct/alpine-redlib.sh | 1 - ct/alpine-rustypaste.sh | 2 -- 4 files changed, 7 deletions(-) diff --git a/ct/alpine-ironclaw.sh b/ct/alpine-ironclaw.sh index 9176dbf93..de8a8558a 100644 --- a/ct/alpine-ironclaw.sh +++ b/ct/alpine-ironclaw.sh @@ -21,8 +21,6 @@ catch_errors function update_script() { header_info - check_container_storage - check_container_resources if [[ ! -f /usr/local/bin/ironclaw ]]; then msg_error "No ${APP} Installation Found!" diff --git a/ct/alpine-ntfy.sh b/ct/alpine-ntfy.sh index 2bb4e9ba9..a3bc21f31 100644 --- a/ct/alpine-ntfy.sh +++ b/ct/alpine-ntfy.sh @@ -22,8 +22,6 @@ catch_errors function update_script() { header_info - check_container_storage - check_container_resources if [[ ! -d /etc/ntfy ]]; then msg_error "No ${APP} Installation Found!" exit diff --git a/ct/alpine-redlib.sh b/ct/alpine-redlib.sh index b9b4d49ff..71d470a1f 100644 --- a/ct/alpine-redlib.sh +++ b/ct/alpine-redlib.sh @@ -21,7 +21,6 @@ catch_errors function update_script() { header_info - check_container_resources if [[ ! -d /opt/redlib ]]; then msg_error "No ${APP} Installation Found!" diff --git a/ct/alpine-rustypaste.sh b/ct/alpine-rustypaste.sh index 4bf9c633c..bdb4cb9df 100644 --- a/ct/alpine-rustypaste.sh +++ b/ct/alpine-rustypaste.sh @@ -21,8 +21,6 @@ catch_errors function update_script() { header_info - check_container_storage - check_container_resources if ! apk info -e rustypaste >/dev/null 2>&1; then msg_error "No ${APP} Installation Found!"