From 5e784ba97dba98f68120e904e5eac374bd19dbaa Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Sat, 13 Dec 2025 20:03:41 +0100 Subject: [PATCH] Add 'mfsymlinks' option to CIFS mount command --- .templates/00-smb_mounts.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.templates/00-smb_mounts.sh b/.templates/00-smb_mounts.sh index 5bc878287..363e8aacd 100755 --- a/.templates/00-smb_mounts.sh +++ b/.templates/00-smb_mounts.sh @@ -179,7 +179,7 @@ if bashio::config.has_value 'networkdisks'; then # Quickly try to mount with defaults if [[ "$FSTYPE" == "cifs" ]]; then - mount_drive "rw,file_mode=0775,dir_mode=0775,username=${USERNAME},password=${PASSWORD},nobrl${SMBVERS}${SECVERS}${PUID}${PGID}${CHARSET}${DOMAIN}" + mount_drive "rw,file_mode=0775,dir_mode=0775,username=${USERNAME},password=${PASSWORD},nobrl,mfsymlinks${SMBVERS}${SECVERS}${PUID}${PGID}${CHARSET}${DOMAIN}" elif [[ "$FSTYPE" == "nfs" ]]; then mount_drive "rw,nfsvers=4.2,proto=tcp,hard,timeo=600,retrans=2" fi