All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/1]libnfsidmap: Add and modify idmapd.conf
@ 2013-08-27  2:07 rongqing.li
  2013-08-27  2:07 ` [PATCH 1/1] libnfsidmap: " rongqing.li
  2013-08-28 20:23 ` [PATCH 0/1]libnfsidmap: " Randy MacLeod
  0 siblings, 2 replies; 4+ messages in thread
From: rongqing.li @ 2013-08-27  2:07 UTC (permalink / raw)
  To: openembedded-core

From: "Roy.Li" <rongqing.li@windriver.com>

The following changes since commit 58d05c817cf3be071c66c7e4dbbb9942fd7a0752:

  xdg-utils: add runtime dependency on xprop (2013-08-23 16:08:30 +0100)

are available in the git repository at:

  git://git.pokylinux.org/poky-contrib roy/libnfsidmap
  http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=roy/libnfsidmap

Zhang Xiao (1):
  libnfsidmap: Add and modify idmapd.conf

 .../nfs-utils/files/Set_nobody_user_group.patch      |   18 ++++++++++++++++++
 .../nfs-utils/libnfsidmap_0.25.bb                    |    7 +++++++
 2 files changed, 25 insertions(+)
 create mode 100644 meta/recipes-connectivity/nfs-utils/files/Set_nobody_user_group.patch

-- 
1.7.10.4



^ permalink raw reply	[flat|nested] 4+ messages in thread

* [PATCH 1/1] libnfsidmap: Add and modify idmapd.conf
  2013-08-27  2:07 [PATCH 0/1]libnfsidmap: Add and modify idmapd.conf rongqing.li
@ 2013-08-27  2:07 ` rongqing.li
  2013-08-28 20:23 ` [PATCH 0/1]libnfsidmap: " Randy MacLeod
  1 sibling, 0 replies; 4+ messages in thread
From: rongqing.li @ 2013-08-27  2:07 UTC (permalink / raw)
  To: openembedded-core

From: Zhang Xiao <xiao.zhang@windriver.com>

add configuration file to make rpc.idmapd to not report below error:
	rpc.idmapd: Skipping configuration file "/etc/idmapd.conf": No such file or directory
	rpc.idmapd: Could not find group "nobody"

Signed-off-by: Zhang Xiao <xiao.zhang@windriver.com>
Signed-off-by: Roy.Li <rongqing.li@windriver.com>
---
 .../nfs-utils/files/Set_nobody_user_group.patch      |   18 ++++++++++++++++++
 .../nfs-utils/libnfsidmap_0.25.bb                    |    7 +++++++
 2 files changed, 25 insertions(+)
 create mode 100644 meta/recipes-connectivity/nfs-utils/files/Set_nobody_user_group.patch

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 0000000..4633da9
--- /dev/null
+++ b/meta/recipes-connectivity/nfs-utils/files/Set_nobody_user_group.patch
@@ -0,0 +1,18 @@
+Set nobody user and group
+
+Upstream-Status: Inappropriate [configuration]
+
+Signed-off-by: Roy.Li <rongqing.li@windriver.com>
+--- a/idmapd.conf
++++ b/idmapd.conf
+@@ -17,8 +17,8 @@
+ 
+ [Mapping]
+ 
+-#Nobody-User = nobody
+-#Nobody-Group = nobody
++Nobody-User = nobody
++Nobody-Group = nogroup
+ 
+ [Translation]
+ 
diff --git a/meta/recipes-connectivity/nfs-utils/libnfsidmap_0.25.bb b/meta/recipes-connectivity/nfs-utils/libnfsidmap_0.25.bb
index 07ca229..77c4a00 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"
 
 SRC_URI = "http://www.citi.umich.edu/projects/nfsv4/linux/libnfsidmap/${BPN}-${PV}.tar.gz \
            file://fix-ac-prereq.patch \
+           file://Set_nobody_user_group.patch \
           "
 
 SRC_URI[md5sum] = "2ac4893c92716add1a1447ae01df77ab"
@@ -17,3 +18,9 @@ SRC_URI[sha256sum] = "656d245d84400e1030f8f40a5a27da76370690c4a932baf249110f047f
 inherit autotools
 
 EXTRA_OECONF = "--disable-ldap"
+
+do_install_append () {
+	install -d ${D}${sysconfdir}/
+	install -m 0644 ${WORKDIR}/${BPN}-${PV}/idmapd.conf ${D}${sysconfdir}/idmapd.conf
+}
+
-- 
1.7.10.4



^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH 0/1]libnfsidmap: Add and modify idmapd.conf
  2013-08-27  2:07 [PATCH 0/1]libnfsidmap: Add and modify idmapd.conf rongqing.li
  2013-08-27  2:07 ` [PATCH 1/1] libnfsidmap: " rongqing.li
@ 2013-08-28 20:23 ` Randy MacLeod
  2013-08-28 20:44   ` Saul Wold
  1 sibling, 1 reply; 4+ messages in thread
From: Randy MacLeod @ 2013-08-28 20:23 UTC (permalink / raw)
  To: openembedded-core, Rongqing Li

On 13-08-26 10:07 PM, rongqing.li@windriver.com wrote:
> From: "Roy.Li" <rongqing.li@windriver.com>
>
> The following changes since commit 58d05c817cf3be071c66c7e4dbbb9942fd7a0752:
>
>    xdg-utils: add runtime dependency on xprop (2013-08-23 16:08:30 +0100)
>
> are available in the git repository at:
>
>    git://git.pokylinux.org/poky-contrib roy/libnfsidmap
>    http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=roy/libnfsidmap
>
> Zhang Xiao (1):
>    libnfsidmap: Add and modify idmapd.conf
>
>   .../nfs-utils/files/Set_nobody_user_group.patch      |   18 ++++++++++++++++++
>   .../nfs-utils/libnfsidmap_0.25.bb                    |    7 +++++++
>   2 files changed, 25 insertions(+)
>   create mode 100644 meta/recipes-connectivity/nfs-utils/files/Set_nobody_user_group.patch
>


It has only been a day and a half but was this missed?


-- 
# Randy MacLeod. SMTS, Linux, Wind River
Direct: 613.963.1350


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH 0/1]libnfsidmap: Add and modify idmapd.conf
  2013-08-28 20:23 ` [PATCH 0/1]libnfsidmap: " Randy MacLeod
@ 2013-08-28 20:44   ` Saul Wold
  0 siblings, 0 replies; 4+ messages in thread
From: Saul Wold @ 2013-08-28 20:44 UTC (permalink / raw)
  To: Randy MacLeod; +Cc: openembedded-core

On 08/28/2013 01:23 PM, Randy MacLeod wrote:
> On 13-08-26 10:07 PM, rongqing.li@windriver.com wrote:
>> From: "Roy.Li" <rongqing.li@windriver.com>
>>
>> The following changes since commit
>> 58d05c817cf3be071c66c7e4dbbb9942fd7a0752:
>>
>>    xdg-utils: add runtime dependency on xprop (2013-08-23 16:08:30 +0100)
>>
>> are available in the git repository at:
>>
>>    git://git.pokylinux.org/poky-contrib roy/libnfsidmap
>>    http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=roy/libnfsidmap
>>
>> Zhang Xiao (1):
>>    libnfsidmap: Add and modify idmapd.conf
>>
>>   .../nfs-utils/files/Set_nobody_user_group.patch      |   18
>> ++++++++++++++++++
>>   .../nfs-utils/libnfsidmap_0.25.bb                    |    7 +++++++
>>   2 files changed, 25 insertions(+)
>>   create mode 100644
>> meta/recipes-connectivity/nfs-utils/files/Set_nobody_user_group.patch
>>
>
>
> It has only been a day and a half but was this missed?
>
>
No, there are a number of patches on hold right now as we are entering 
RC1 of the Milestone 4 and we just took on the Kernel Update which we 
are trying to settle issues with.  I am queuing things in the MUT 
(Master_Under_Test) branch in the poky-contrib repo.

Thanks for your patience and understanding.

Sau!



^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2013-08-28 20:44 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-08-27  2:07 [PATCH 0/1]libnfsidmap: Add and modify idmapd.conf rongqing.li
2013-08-27  2:07 ` [PATCH 1/1] libnfsidmap: " rongqing.li
2013-08-28 20:23 ` [PATCH 0/1]libnfsidmap: " Randy MacLeod
2013-08-28 20:44   ` Saul Wold

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.