From 6b9af9f8438c4d2090649babfd6ced389f4382bd Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Mon, 26 Feb 2024 21:46:52 +0100 Subject: [PATCH] Avoid cifs 3.1 https://github.com/alexbelgium/hassio-addons/issues/1271#issuecomment-1965208259 --- .templates/00-smb_mounts.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.templates/00-smb_mounts.sh b/.templates/00-smb_mounts.sh index d3caf02e6..baec7335b 100755 --- a/.templates/00-smb_mounts.sh +++ b/.templates/00-smb_mounts.sh @@ -201,6 +201,9 @@ if bashio::config.has_value 'networkdisks'; then 311) SMBVERS="3.1.1" ;; + "3.1") + SMBVERS="3.1.1" + ;; esac echo "...... SMB version detected : $SMBVERS" SMBVERS=",vers=$SMBVERS"