mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-06-05 02:50:46 +00:00
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:
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}"
|
||||
|
||||
Reference in New Issue
Block a user