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@vctlabs.com>
Signed-off-by: Armin Kuster <akuster808@gmail.com>
Signed-off-by: Joe MacDonald <joe_macdonald@mentor.com>
This commit is contained in:
S. Lockwood-Childs
2017-12-14 23:13:51 -08:00
committed by Joe MacDonald
parent f696ff1050
commit be189dd8c0
@@ -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}"