Openembedded Core Discussions
 help / color / mirror / Atom feed
* [PATCH 1/2] shadow-native: use 'users' group by default
@ 2012-07-20 18:13 Otavio Salvador
  2012-07-20 18:13 ` [PATCH 2/2] shadow: " Otavio Salvador
  2012-07-20 18:16 ` [PATCH 1/2] shadow-native: " Otavio Salvador
  0 siblings, 2 replies; 6+ messages in thread
From: Otavio Salvador @ 2012-07-20 18:13 UTC (permalink / raw)
  To: openembedded-core

Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
---
 .../shadow/shadow-native_4.1.4.3.bb                |    5 ++++-
 1 files changed, 4 insertions(+), 1 deletions(-)

diff --git a/meta/recipes-extended/shadow/shadow-native_4.1.4.3.bb b/meta/recipes-extended/shadow/shadow-native_4.1.4.3.bb
index 1e071f1..8115328 100644
--- a/meta/recipes-extended/shadow/shadow-native_4.1.4.3.bb
+++ b/meta/recipes-extended/shadow/shadow-native_4.1.4.3.bb
@@ -7,7 +7,7 @@ LICENSE = "BSD | Artistic-1.0"
 LIC_FILES_CHKSUM = "file://COPYING;md5=08c553a87d4e51bbed50b20e0adcaede \
                     file://src/passwd.c;firstline=8;endline=30;md5=2899a045e90511d0e043b85a7db7e2fe"
 
-PR = "r6"
+PR = "r7"
 
 SRC_URI = "http://pkg-shadow.alioth.debian.org/releases/${BPN}-${PV}.tar.bz2 \
            file://shadow.automake-1.11.patch \
@@ -46,4 +46,7 @@ do_install_append() {
 	# Now we don't have a mail system. Disable mail creation for now.
 	sed -i 's:/bin/bash:/bin/sh:g' ${D}${sysconfdir}/default/useradd
 	sed -i '/^CREATE_MAIL_SPOOL/ s:^:#:' ${D}${sysconfdir}/default/useradd
+
+	# Use users group by default
+	sed -i sed 's,^GROUP=1000,GROUP=100,g' ${D}${sysconfdir}/default/useradd
 }
-- 
1.7.2.5




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

* [PATCH 2/2] shadow: use 'users' group by default
  2012-07-20 18:13 [PATCH 1/2] shadow-native: use 'users' group by default Otavio Salvador
@ 2012-07-20 18:13 ` Otavio Salvador
  2012-07-20 18:16   ` Otavio Salvador
  2012-07-20 18:16 ` [PATCH 1/2] shadow-native: " Otavio Salvador
  1 sibling, 1 reply; 6+ messages in thread
From: Otavio Salvador @ 2012-07-20 18:13 UTC (permalink / raw)
  To: openembedded-core

Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
---
 meta/recipes-extended/shadow/shadow_4.1.4.3.bb |    5 ++++-
 1 files changed, 4 insertions(+), 1 deletions(-)

diff --git a/meta/recipes-extended/shadow/shadow_4.1.4.3.bb b/meta/recipes-extended/shadow/shadow_4.1.4.3.bb
index 506f4e6..b9ff6e0 100644
--- a/meta/recipes-extended/shadow/shadow_4.1.4.3.bb
+++ b/meta/recipes-extended/shadow/shadow_4.1.4.3.bb
@@ -9,7 +9,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=08c553a87d4e51bbed50b20e0adcaede \
 
 DEPENDS = "${@base_contains('DISTRO_FEATURES', 'pam', 'libpam', '', d)}"
 RDEPENDS_${PN} = "shadow-securetty ${@base_contains('DISTRO_FEATURES', 'pam', '${PAM_PLUGINS}', '', d)}"
-PR = "r10"
+PR = "r11"
 
 SRC_URI = "http://pkg-shadow.alioth.debian.org/releases/${BPN}-${PV}.tar.bz2 \
            file://login_defs_pam.sed \
@@ -85,6 +85,9 @@ do_install_append() {
 	sed -i 's:/bin/bash:/bin/sh:g' ${D}${sysconfdir}/default/useradd
 	sed -i '/^CREATE_MAIL_SPOOL/ s:^:#:' ${D}${sysconfdir}/default/useradd
 
+	# Use users group by default
+	sed -i sed 's,^GROUP=1000,GROUP=100,g' ${D}${sysconfdir}/default/useradd
+
 	install -d ${D}${sbindir} ${D}${base_sbindir} ${D}${base_bindir} 
 
 	# Move binaries to the locations we want
-- 
1.7.2.5




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

* Re: [PATCH 1/2] shadow-native: use 'users' group by default
  2012-07-20 18:13 [PATCH 1/2] shadow-native: use 'users' group by default Otavio Salvador
  2012-07-20 18:13 ` [PATCH 2/2] shadow: " Otavio Salvador
@ 2012-07-20 18:16 ` Otavio Salvador
  1 sibling, 0 replies; 6+ messages in thread
From: Otavio Salvador @ 2012-07-20 18:16 UTC (permalink / raw)
  To: openembedded-core

On Fri, Jul 20, 2012 at 3:13 PM, Otavio Salvador
<otavio@ossystems.com.br> wrote:
> Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>

This would be nice to be included in next denzil.

-- 
Otavio Salvador                             O.S. Systems
E-mail: otavio@ossystems.com.br  http://www.ossystems.com.br
Mobile: +55 53 9981-7854              http://projetos.ossystems.com.br



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

* Re: [PATCH 2/2] shadow: use 'users' group by default
  2012-07-20 18:13 ` [PATCH 2/2] shadow: " Otavio Salvador
@ 2012-07-20 18:16   ` Otavio Salvador
  2012-07-22 12:18     ` Richard Purdie
  0 siblings, 1 reply; 6+ messages in thread
From: Otavio Salvador @ 2012-07-20 18:16 UTC (permalink / raw)
  To: openembedded-core

On Fri, Jul 20, 2012 at 3:13 PM, Otavio Salvador
<otavio@ossystems.com.br> wrote:
> Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>

This would be nice to have included in next denzil.

-- 
Otavio Salvador                             O.S. Systems
E-mail: otavio@ossystems.com.br  http://www.ossystems.com.br
Mobile: +55 53 9981-7854              http://projetos.ossystems.com.br



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

* Re: [PATCH 2/2] shadow: use 'users' group by default
  2012-07-20 18:16   ` Otavio Salvador
@ 2012-07-22 12:18     ` Richard Purdie
  2012-07-22 18:32       ` Otavio Salvador
  0 siblings, 1 reply; 6+ messages in thread
From: Richard Purdie @ 2012-07-22 12:18 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer

On Fri, 2012-07-20 at 15:16 -0300, Otavio Salvador wrote:
> On Fri, Jul 20, 2012 at 3:13 PM, Otavio Salvador
> <otavio@ossystems.com.br> wrote:
> > Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
> 
> This would be nice to have included in next denzil.

Reading the one line description of this, I have no idea what the
problem was or how this solves it. Its therefore unlikely to make it
into master, let alone denzil. Can you provide more detail please.

Cheers,

Richard





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

* Re: [PATCH 2/2] shadow: use 'users' group by default
  2012-07-22 12:18     ` Richard Purdie
@ 2012-07-22 18:32       ` Otavio Salvador
  0 siblings, 0 replies; 6+ messages in thread
From: Otavio Salvador @ 2012-07-22 18:32 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer

On Sun, Jul 22, 2012 at 9:18 AM, Richard Purdie
<richard.purdie@linuxfoundation.org> wrote:
> On Fri, 2012-07-20 at 15:16 -0300, Otavio Salvador wrote:
>> On Fri, Jul 20, 2012 at 3:13 PM, Otavio Salvador
>> <otavio@ossystems.com.br> wrote:
>> > Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
>>
>> This would be nice to have included in next denzil.
>
> Reading the one line description of this, I have no idea what the
> problem was or how this solves it. Its therefore unlikely to make it
> into master, let alone denzil. Can you provide more detail please.

The current setting makes useradd to create an user with group 1000 by
default (in Debian, users group) but in Yocto users group is 100 and
there's no 1000 group by default.

-- 
Otavio Salvador                             O.S. Systems
E-mail: otavio@ossystems.com.br  http://www.ossystems.com.br
Mobile: +55 53 9981-7854              http://projetos.ossystems.com.br



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

end of thread, other threads:[~2012-07-22 18:43 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-07-20 18:13 [PATCH 1/2] shadow-native: use 'users' group by default Otavio Salvador
2012-07-20 18:13 ` [PATCH 2/2] shadow: " Otavio Salvador
2012-07-20 18:16   ` Otavio Salvador
2012-07-22 12:18     ` Richard Purdie
2012-07-22 18:32       ` Otavio Salvador
2012-07-20 18:16 ` [PATCH 1/2] shadow-native: " Otavio Salvador

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox