From 5c26e2e2becc75c896e470b6ddd4a7095fb27ec1 Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Sat, 24 Apr 2021 08:25:55 +0200 Subject: [PATCH] Update 92-smb_mounts_v1.1.sh --- .../rootfs/etc/cont-init.d/92-smb_mounts_v1.1.sh | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/qbittorrent/rootfs/etc/cont-init.d/92-smb_mounts_v1.1.sh b/qbittorrent/rootfs/etc/cont-init.d/92-smb_mounts_v1.1.sh index 2f46892ab..552e1fcf3 100644 --- a/qbittorrent/rootfs/etc/cont-init.d/92-smb_mounts_v1.1.sh +++ b/qbittorrent/rootfs/etc/cont-init.d/92-smb_mounts_v1.1.sh @@ -35,6 +35,7 @@ if bashio::config.has_value 'networkdisks'; then mount -t cifs -o username=$CIFS_USERNAME,password=$CIFS_PASSWORD,vers=1.0 $disk /mnt/$diskname && \ bashio::log.info "... $disk successfully mounted to /mnt/$diskname" && \ bashio::log.error "Your smb share uses smbv1. Please check the relevant option in the addons options." # Mount share + true fi # Test smbv3 @@ -42,6 +43,16 @@ if bashio::config.has_value 'networkdisks'; then mount -t cifs -o username=$CIFS_USERNAME,password=$CIFS_PASSWORD,vers=3.0 $disk /mnt/$diskname && \ bashio::log.info "... $disk successfully mounted to /mnt/$diskname" && \ bashio::log.error "Your smb share uses smbv3." + true fi + + # Test ntlmv2 + if [ $? == 0 ]; then + mount -t cifs -o username=$CIFS_USERNAME,password=$CIFS_PASSWORD,sec=ntlmv2 $disk /mnt/$diskname && \ + bashio::log.info "... $disk successfully mounted to /mnt/$diskname" && \ + bashio::log.error "Your smb share uses smbv3." + true + fi + done fi