From 46d1df2b593c18cf48a19efd79179820d3fee3a2 Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Wed, 4 Feb 2026 22:34:39 +0100 Subject: [PATCH] Update mount error handling to warning for read-only Change error handling for read-only mounts to a warning. --- .templates/00-smb_mounts.sh | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.templates/00-smb_mounts.sh b/.templates/00-smb_mounts.sh index 7430c3fb0..feab4523a 100755 --- a/.templates/00-smb_mounts.sh +++ b/.templates/00-smb_mounts.sh @@ -65,9 +65,10 @@ test_mount() { fi # ---- Final: mounted but not writable ---- - ERROR_MOUNT=true - bashio::log.fatal "Disk mounted, but cannot write. Check permissions/export options and UID/GID mapping." - return 1 + bashio::log.warning "Disk mounted but is read-only or not writable (permission denied). Continuing anyway." + MOUNTED=true + return 0 + } mount_drive() {