diff options
-rwxr-xr-x | extras/hook-scripts/set/post/S30samba-set.sh | 1 | ||||
-rwxr-xr-x | extras/hook-scripts/start/post/S30samba-start.sh | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/extras/hook-scripts/set/post/S30samba-set.sh b/extras/hook-scripts/set/post/S30samba-set.sh index d2a62d38026..e73f00f321c 100755 --- a/extras/hook-scripts/set/post/S30samba-set.sh +++ b/extras/hook-scripts/set/post/S30samba-set.sh @@ -90,6 +90,7 @@ function add_samba_share () { STRING+="path = /\n" STRING+="read only = no\n" STRING+="guest ok = yes\n" + STRING+="kernel share modes = no\n" printf "$STRING" >> ${CONFIGFILE} } diff --git a/extras/hook-scripts/start/post/S30samba-start.sh b/extras/hook-scripts/start/post/S30samba-start.sh index 2854bddfe90..0d5a5edd4af 100755 --- a/extras/hook-scripts/start/post/S30samba-start.sh +++ b/extras/hook-scripts/start/post/S30samba-start.sh @@ -89,6 +89,7 @@ function add_samba_share () { STRING+="path = /\n" STRING+="read only = no\n" STRING+="guest ok = yes\n" + STRING+="kernel share modes = no\n" printf "$STRING" >> "${CONFIGFILE}" } |