From 3223ddd709bce484e90ad963f2be4a6a2645176f Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Mon, 26 Apr 2021 13:45:31 +0200 Subject: [PATCH] Update 92-smb_mounts_v1.2.sh --- qbittorrent/rootfs/etc/cont-init.d/92-smb_mounts_v1.2.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/qbittorrent/rootfs/etc/cont-init.d/92-smb_mounts_v1.2.sh b/qbittorrent/rootfs/etc/cont-init.d/92-smb_mounts_v1.2.sh index 33ca42aa8..bc38b672a 100644 --- a/qbittorrent/rootfs/etc/cont-init.d/92-smb_mounts_v1.2.sh +++ b/qbittorrent/rootfs/etc/cont-init.d/92-smb_mounts_v1.2.sh @@ -67,10 +67,10 @@ if bashio::config.has_value 'networkdisks'; then if [ $? != 0 ]; then # message if still fail - bashio::log.critical "Unable to mount $disk to /mnt/$diskname with username $CIFS_USERNAME, $CIFS_PASSWORD . Please check your remote share path, the username and password, and try to check the smbv1 box in option if your share is using smb v1" # Mount share + bashio::log.fatal "Unable to mount $disk to /mnt/$diskname with username $CIFS_USERNAME, $CIFS_PASSWORD . Please check your remote share path, the username and password, and try to check the smbv1 box in option if your share is using smb v1" # Mount share else # test write permissions - touch /mnt/$diskname/testaze && rm /mnt/$diskname/testaze || bashio::log.critical "Unable to write in the shared disk. Please check UID/GID for permissions, and if the share is rw" + touch /mnt/$diskname/testaze && rm /mnt/$diskname/testaze || bashio::log.fatal "Unable to write in the shared disk. Please check UID/GID for permissions, and if the share is rw" fi done