Update 92-smb_mounts_v1.4.sh

This commit is contained in:
Alexandre
2021-10-23 10:37:45 +02:00
committed by GitHub
parent 2252ad7c9f
commit 5df4098cf7

View File

@@ -51,7 +51,7 @@ if bashio::config.has_value 'networkdisks'; then
# Test smbclient if not mounted yet
if [ $MOUNTED = false ]; then
bashio::log.fatal "Error, could not mount disk. Here is some debugging info :"
smbclient -L host &>/dev/null || apt-get install smbclient || apk add samba-client
smbclient -V &>/dev/null || apt-get install smbclient || apk add samba-client
smbclient $disk -U $CIFS_USERNAME%$CIFS_PASSWORD --option="client min protocol"="NT1" || true
smbclient -L $disk -U $CIFS_USERNAME%$CIFS_PASSWORD --option="client min protocol"="NT1" || true
fi