mirror of
https://github.com/alexbelgium/hassio-addons.git
synced 2026-05-26 10:33:40 +02:00
Update 92-smb_mounts_v1.1.sh
This commit is contained in:
@@ -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 && \
|
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.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
|
bashio::log.error "Your smb share uses smbv1. Please check the relevant option in the addons options." # Mount share
|
||||||
|
true
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Test smbv3
|
# 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 && \
|
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.info "... $disk successfully mounted to /mnt/$diskname" && \
|
||||||
bashio::log.error "Your smb share uses smbv3."
|
bashio::log.error "Your smb share uses smbv3."
|
||||||
|
true
|
||||||
fi
|
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
|
done
|
||||||
fi
|
fi
|
||||||
|
|||||||
Reference in New Issue
Block a user