From d0dd9e5704677b4461d6ea64fa8f52cbc4d9c93b Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Mon, 22 Aug 2022 09:50:40 +0200 Subject: [PATCH] Debugging messages --- .templates/92-smb_mounts.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.templates/92-smb_mounts.sh b/.templates/92-smb_mounts.sh index 55ea12dc4..db54f888c 100644 --- a/.templates/92-smb_mounts.sh +++ b/.templates/92-smb_mounts.sh @@ -19,6 +19,7 @@ if bashio::config.has_value 'networkdisks'; then echo 'Mounting smb share(s)...' if bashio::config.has_value 'cifsdomain'; then + echo "Using domain $(bashio::config 'cifsdomain')" DOMAIN=",domain=$(bashio::config 'cifsdomain')" else DOMAIN="" @@ -26,6 +27,7 @@ if bashio::config.has_value 'networkdisks'; then # Mount using UID/GID values if bashio::config.has_value 'PUID' && bashio::config.has_value 'PGID'; then + echo "Using PUID $(bashio::config 'PUID') and PGID $(bashio::config 'PGID')" PUID=",uid=$(bashio::config 'PUID')" PGID=",gid=$(bashio::config 'PGID')" else