[oe-commits] [meta-openembedded] 57/59: tinyproxy: 'nobody' should belong to 'nogroup'

git at git.openembedded.org git at git.openembedded.org
Sat Dec 30 20:40:01 UTC 2017


This is an automated email from the git hooks/post-receive script.

armin_kuster pushed a commit to branch master-next
in repository meta-openembedded.

commit 3613b1b0171fba0e23fa22d09135a8737813934f
Author: S. Lockwood-Childs <sjl at vctlabs.com>
AuthorDate: Thu Dec 14 23:13:51 2017 -0800

    tinyproxy: 'nobody' should belong to 'nogroup'
    
    The classic 'nobody' user is supposed to belong to 'nogroup' group.
    Without this change, it will get a 'nobody' group created as its
    default group instead.
    
    Ensuring the existing 'nogroup' is used as default group solves
    following sort of complaint by useradd-staticids.bbclass (when static ids
    are enabled):
    
      tinyproxy: Changing groupname nobody's gid from (65534) to (1000),
                 verify configuration files!
    
    Signed-off-by: S. Lockwood-Childs <sjl at vctlabs.com>
    Signed-off-by: Armin Kuster <akuster808 at gmail.com>
---
 meta-networking/recipes-support/tinyproxy/tinyproxy_1.8.4.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta-networking/recipes-support/tinyproxy/tinyproxy_1.8.4.bb b/meta-networking/recipes-support/tinyproxy/tinyproxy_1.8.4.bb
index e8025c4..efc0acf 100644
--- a/meta-networking/recipes-support/tinyproxy/tinyproxy_1.8.4.bb
+++ b/meta-networking/recipes-support/tinyproxy/tinyproxy_1.8.4.bb
@@ -23,7 +23,7 @@ inherit autotools systemd useradd
 
 #User specific
 USERADD_PACKAGES = "${PN}"
-USERADD_PARAM_${PN} = "nobody"
+USERADD_PARAM_${PN} = "nobody -g nogroup"
 GROUPADD_PARAM_${PN} = "--system tinyproxy"
 
 SYSTEMD_PACKAGES += "${BPN}"

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list