From 857d4d29846ec2fd851453fbb641228eac37abac Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Sat, 1 Aug 2026 18:41:05 +0200 Subject: [PATCH] fix(templates): use exact ntfs-3g package name instead of glob on apt (#2927) The "mount" auto-detection in ha_automatic_packages.sh appended the glob "ntfs*" to the apt install list. On Debian trixie-based images (e.g. ghcr.io/starosdev/scrutiny:latest-omnibus, used by scrutiny and scrutiny_fa) this glob fails to resolve even though the real package ntfs-3g exists, breaking the Docker build. Use the exact package name instead, matching the apk branch just above it. Co-authored-by: Claude Sonnet 5 --- .templates/ha_automatic_packages.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.templates/ha_automatic_packages.sh b/.templates/ha_automatic_packages.sh index ad36bfa955..66d11ba73e 100755 --- a/.templates/ha_automatic_packages.sh +++ b/.templates/ha_automatic_packages.sh @@ -65,7 +65,7 @@ for files in "/etc/cont-init.d" "/etc/services.d"; do if grep -q -rnw "$files/" -e "$COMMAND"; then [ "$VERBOSE" = true ] && echo "$COMMAND required" [ "$PACKMANAGER" = "apk" ] && PACKAGES="$PACKAGES exfatprogs ntfs-3g ntfs-3g-progs squashfs-tools fuse lsblk" - [ "$PACKMANAGER" = "apt" ] && PACKAGES="$PACKAGES exfat* ntfs* squashfs-tools util-linux" + [ "$PACKMANAGER" = "apt" ] && PACKAGES="$PACKAGES exfat* ntfs-3g squashfs-tools util-linux" #[ "$PACKMANAGER" = "pacman" ] && PACKAGES="$PACKAGES ntfs-3g" fi