From ea056acd10f9e0523c14997676f2cec019f7be5e Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Sat, 24 Apr 2021 08:45:02 +0200 Subject: [PATCH] Update 92-smb_mounts_v1.1.sh --- qbittorrent/rootfs/etc/cont-init.d/92-smb_mounts_v1.1.sh | 8 ++++++++ 1 file changed, 8 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 be6beb5b4..4616d3654 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 @@ -38,6 +38,14 @@ if bashio::config.has_value 'networkdisks'; then true fi + # Test smbv2.1 + if [ $? == 0 ]; then + mount -t cifs -o username=$CIFS_USERNAME,password=$CIFS_PASSWORD,vers=2.1 $disk /mnt/$diskname && \ + bashio::log.info "... $disk successfully mounted to /mnt/$diskname" && \ + bashio::log.error "Your smb share uses smbv3." + true + fi + # Test smbv3 if [ $? == 0 ]; then mount -t cifs -o username=$CIFS_USERNAME,password=$CIFS_PASSWORD,vers=3.0 $disk /mnt/$diskname && \