14e44be7b0
Resolves: bz#1234220 bz#1286171 bz#1487177 bz#1524457 bz#1640573 Resolves: bz#1663557 bz#1667954 bz#1683602 bz#1686897 bz#1721355 Resolves: bz#1748865 bz#1750211 bz#1754391 bz#1759875 bz#1761531 Resolves: bz#1761932 bz#1763124 bz#1763129 bz#1764091 bz#1775637 Resolves: bz#1776901 bz#1781550 bz#1781649 bz#1781710 bz#1783232 Resolves: bz#1784211 bz#1784415 bz#1786516 bz#1786681 bz#1787294 Resolves: bz#1787310 bz#1787331 bz#1787994 bz#1790336 bz#1792873 Resolves: bz#1794663 bz#1796814 bz#1804164 bz#1810924 bz#1815434 Resolves: bz#1836099 bz#1837467 bz#1837926 bz#1838479 bz#1839137 Resolves: bz#1844359 Signed-off-by: Rinku Kothiya <rkothiya@redhat.com>
47 lines
1.7 KiB
Diff
47 lines
1.7 KiB
Diff
From 0769c5ddc78ea37b9a43ac35dd71ec8cea4b8da8 Mon Sep 17 00:00:00 2001
|
|
From: yinkui <13965432176@163.com>
|
|
Date: Fri, 16 Aug 2019 10:15:07 +0800
|
|
Subject: [PATCH 412/449] gluster-smb:add smb parameter when access gluster by
|
|
cifs
|
|
|
|
Backport of https://review.gluster.org/23240
|
|
|
|
Change-Id: I9ff54f2ca6f86bb5b2f4740485a0159e1fd7785f
|
|
BUG: 1783232
|
|
Signed-off-by: yinkui <13965432176@163.com>
|
|
Reviewed-on: https://code.engineering.redhat.com/gerrit/202472
|
|
Tested-by: RHGS Build Bot <nigelb@redhat.com>
|
|
Reviewed-by: Sunil Kumar Heggodu Gopala Acharya <sheggodu@redhat.com>
|
|
---
|
|
extras/hook-scripts/set/post/S30samba-set.sh | 1 +
|
|
extras/hook-scripts/start/post/S30samba-start.sh | 1 +
|
|
2 files changed, 2 insertions(+)
|
|
|
|
diff --git a/extras/hook-scripts/set/post/S30samba-set.sh b/extras/hook-scripts/set/post/S30samba-set.sh
|
|
index d2a62d3..e73f00f 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 2854bdd..0d5a5ed 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}"
|
|
}
|
|
|
|
--
|
|
1.8.3.1
|
|
|