|
|
190130 |
From 0769c5ddc78ea37b9a43ac35dd71ec8cea4b8da8 Mon Sep 17 00:00:00 2001
|
|
|
190130 |
From: yinkui <13965432176@163.com>
|
|
|
190130 |
Date: Fri, 16 Aug 2019 10:15:07 +0800
|
|
|
190130 |
Subject: [PATCH 412/449] gluster-smb:add smb parameter when access gluster by
|
|
|
190130 |
cifs
|
|
|
190130 |
|
|
|
190130 |
Backport of https://review.gluster.org/23240
|
|
|
190130 |
|
|
|
190130 |
Change-Id: I9ff54f2ca6f86bb5b2f4740485a0159e1fd7785f
|
|
|
190130 |
BUG: 1783232
|
|
|
190130 |
Signed-off-by: yinkui <13965432176@163.com>
|
|
|
190130 |
Reviewed-on: https://code.engineering.redhat.com/gerrit/202472
|
|
|
190130 |
Tested-by: RHGS Build Bot <nigelb@redhat.com>
|
|
|
190130 |
Reviewed-by: Sunil Kumar Heggodu Gopala Acharya <sheggodu@redhat.com>
|
|
|
190130 |
---
|
|
|
190130 |
extras/hook-scripts/set/post/S30samba-set.sh | 1 +
|
|
|
190130 |
extras/hook-scripts/start/post/S30samba-start.sh | 1 +
|
|
|
190130 |
2 files changed, 2 insertions(+)
|
|
|
190130 |
|
|
|
190130 |
diff --git a/extras/hook-scripts/set/post/S30samba-set.sh b/extras/hook-scripts/set/post/S30samba-set.sh
|
|
|
190130 |
index d2a62d3..e73f00f 100755
|
|
|
190130 |
--- a/extras/hook-scripts/set/post/S30samba-set.sh
|
|
|
190130 |
+++ b/extras/hook-scripts/set/post/S30samba-set.sh
|
|
|
190130 |
@@ -90,6 +90,7 @@ function add_samba_share () {
|
|
|
190130 |
STRING+="path = /\n"
|
|
|
190130 |
STRING+="read only = no\n"
|
|
|
190130 |
STRING+="guest ok = yes\n"
|
|
|
190130 |
+ STRING+="kernel share modes = no\n"
|
|
|
190130 |
printf "$STRING" >> ${CONFIGFILE}
|
|
|
190130 |
}
|
|
|
190130 |
|
|
|
190130 |
diff --git a/extras/hook-scripts/start/post/S30samba-start.sh b/extras/hook-scripts/start/post/S30samba-start.sh
|
|
|
190130 |
index 2854bdd..0d5a5ed 100755
|
|
|
190130 |
--- a/extras/hook-scripts/start/post/S30samba-start.sh
|
|
|
190130 |
+++ b/extras/hook-scripts/start/post/S30samba-start.sh
|
|
|
190130 |
@@ -89,6 +89,7 @@ function add_samba_share () {
|
|
|
190130 |
STRING+="path = /\n"
|
|
|
190130 |
STRING+="read only = no\n"
|
|
|
190130 |
STRING+="guest ok = yes\n"
|
|
|
190130 |
+ STRING+="kernel share modes = no\n"
|
|
|
190130 |
printf "$STRING" >> "${CONFIGFILE}"
|
|
|
190130 |
}
|
|
|
190130 |
|
|
|
190130 |
--
|
|
|
190130 |
1.8.3.1
|
|
|
190130 |
|