diff options
author | S. Lockwood-Childs <sjl@vctlabs.com> | 2017-12-14 23:13:51 -0800 |
---|---|---|
committer | Joe MacDonald <joe_macdonald@mentor.com> | 2018-01-08 12:05:57 -0500 |
commit | be189dd8c0ab8398cd54b7ec03da87850647b82b (patch) | |
tree | ffcff6f8e57bfd7144d4390f8155dff07ea1286f /meta-networking/recipes-support | |
parent | f696ff10502d62cca707664c7dab4e2dcd5cb027 (diff) | |
download | meta-openembedded-be189dd8c0ab8398cd54b7ec03da87850647b82b.tar.gz |
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>
Diffstat (limited to 'meta-networking/recipes-support')
-rw-r--r-- | meta-networking/recipes-support/tinyproxy/tinyproxy_1.8.4.bb | 2 |
1 files changed, 1 insertions, 1 deletions
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 e8025c4b5..efc0acf2f 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 | |||
23 | 23 | ||
24 | #User specific | 24 | #User specific |
25 | USERADD_PACKAGES = "${PN}" | 25 | USERADD_PACKAGES = "${PN}" |
26 | USERADD_PARAM_${PN} = "nobody" | 26 | USERADD_PARAM_${PN} = "nobody -g nogroup" |
27 | GROUPADD_PARAM_${PN} = "--system tinyproxy" | 27 | GROUPADD_PARAM_${PN} = "--system tinyproxy" |
28 | 28 | ||
29 | SYSTEMD_PACKAGES += "${BPN}" | 29 | SYSTEMD_PACKAGES += "${BPN}" |