diff options
Diffstat (limited to 'meta/recipes-connectivity')
-rw-r--r-- | meta/recipes-connectivity/nfs-utils/files/Set_nobody_user_group.patch | 18 | ||||
-rw-r--r-- | meta/recipes-connectivity/nfs-utils/libnfsidmap_0.25.bb | 7 |
2 files changed, 25 insertions, 0 deletions
diff --git a/meta/recipes-connectivity/nfs-utils/files/Set_nobody_user_group.patch b/meta/recipes-connectivity/nfs-utils/files/Set_nobody_user_group.patch new file mode 100644 index 0000000000..4633da919e --- /dev/null +++ b/meta/recipes-connectivity/nfs-utils/files/Set_nobody_user_group.patch | |||
@@ -0,0 +1,18 @@ | |||
1 | Set nobody user and group | ||
2 | |||
3 | Upstream-Status: Inappropriate [configuration] | ||
4 | |||
5 | Signed-off-by: Roy.Li <rongqing.li@windriver.com> | ||
6 | --- a/idmapd.conf | ||
7 | +++ b/idmapd.conf | ||
8 | @@ -17,8 +17,8 @@ | ||
9 | |||
10 | [Mapping] | ||
11 | |||
12 | -#Nobody-User = nobody | ||
13 | -#Nobody-Group = nobody | ||
14 | +Nobody-User = nobody | ||
15 | +Nobody-Group = nogroup | ||
16 | |||
17 | [Translation] | ||
18 | |||
diff --git a/meta/recipes-connectivity/nfs-utils/libnfsidmap_0.25.bb b/meta/recipes-connectivity/nfs-utils/libnfsidmap_0.25.bb index 07ca22935f..77c4a001e8 100644 --- a/meta/recipes-connectivity/nfs-utils/libnfsidmap_0.25.bb +++ b/meta/recipes-connectivity/nfs-utils/libnfsidmap_0.25.bb | |||
@@ -9,6 +9,7 @@ PR = "r0" | |||
9 | 9 | ||
10 | SRC_URI = "http://www.citi.umich.edu/projects/nfsv4/linux/libnfsidmap/${BPN}-${PV}.tar.gz \ | 10 | SRC_URI = "http://www.citi.umich.edu/projects/nfsv4/linux/libnfsidmap/${BPN}-${PV}.tar.gz \ |
11 | file://fix-ac-prereq.patch \ | 11 | file://fix-ac-prereq.patch \ |
12 | file://Set_nobody_user_group.patch \ | ||
12 | " | 13 | " |
13 | 14 | ||
14 | SRC_URI[md5sum] = "2ac4893c92716add1a1447ae01df77ab" | 15 | SRC_URI[md5sum] = "2ac4893c92716add1a1447ae01df77ab" |
@@ -17,3 +18,9 @@ SRC_URI[sha256sum] = "656d245d84400e1030f8f40a5a27da76370690c4a932baf249110f047f | |||
17 | inherit autotools | 18 | inherit autotools |
18 | 19 | ||
19 | EXTRA_OECONF = "--disable-ldap" | 20 | EXTRA_OECONF = "--disable-ldap" |
21 | |||
22 | do_install_append () { | ||
23 | install -d ${D}${sysconfdir}/ | ||
24 | install -m 0644 ${WORKDIR}/${BPN}-${PV}/idmapd.conf ${D}${sysconfdir}/idmapd.conf | ||
25 | } | ||
26 | |||