From be189dd8c0ab8398cd54b7ec03da87850647b82b Mon Sep 17 00:00:00 2001 From: "S. Lockwood-Childs" Date: Thu, 14 Dec 2017 23:13:51 -0800 Subject: 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 Signed-off-by: Armin Kuster Signed-off-by: Joe MacDonald --- meta-networking/recipes-support/tinyproxy/tinyproxy_1.8.4.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta-networking/recipes-support/tinyproxy') 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 e8025c4b57..efc0acf2f6 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}" -- cgit 1.2.3-korg