mirror of
https://github.com/alexbelgium/hassio-addons.git
synced 2026-05-31 04:44:05 +02:00
Update 92-smb_mounts_v1.1.sh
This commit is contained in:
@@ -38,6 +38,14 @@ if bashio::config.has_value 'networkdisks'; then
|
|||||||
true
|
true
|
||||||
fi
|
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
|
# Test smbv3
|
||||||
if [ $? == 0 ]; then
|
if [ $? == 0 ]; 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 && \
|
||||||
|
|||||||
Reference in New Issue
Block a user