diff options
author | J.D. Schroeder <sweng5080@gmail.com> | 2023-08-03 12:16:18 -0500 |
---|---|---|
committer | Armin Kuster <akuster808@gmail.com> | 2023-08-03 16:50:52 -0400 |
commit | a7a66cdb13accf0e78a1b3d31ef8770ecdcee3f9 (patch) | |
tree | 80d16e4bed408115844ce6c008de113ac08461a6 | |
parent | cb8053362566f1ce17b25c34a1337f6410ebe214 (diff) | |
download | meta-openembedded-a7a66cdb13accf0e78a1b3d31ef8770ecdcee3f9.tar.gz |
Fix groupname gid change warning
This patch fixes warnings when useradd-staticids.bbclass is used and
USERADD_PARAM is used to add the user to a group that has not been
explicitly created yet. By adding the GROUPADD_PARAM for the new group
being used the warnings for changing the gid from GID-OLD to GID-NEW
is eliminated.
Warnings fixed:
cyrus-sasl: Changing groupname mail's gid from (WXYZ) to (JKLM), verify configuration files!
radvd: Changing groupname nogroup's gid from (WXYZ) to (JKLM), verify configuration files!
Signed-off-by: JD Schroeder <sweng5080@gmail.com>
Signed-off-by: Armin Kuster <akuster808@gmail.com>
-rw-r--r-- | meta-networking/recipes-daemons/cyrus-sasl/cyrus-sasl_2.1.28.bb | 1 | ||||
-rw-r--r-- | meta-networking/recipes-daemons/radvd/radvd.inc | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/meta-networking/recipes-daemons/cyrus-sasl/cyrus-sasl_2.1.28.bb b/meta-networking/recipes-daemons/cyrus-sasl/cyrus-sasl_2.1.28.bb index e344733ef4..3fc1b0fd17 100644 --- a/meta-networking/recipes-daemons/cyrus-sasl/cyrus-sasl_2.1.28.bb +++ b/meta-networking/recipes-daemons/cyrus-sasl/cyrus-sasl_2.1.28.bb | |||
@@ -73,6 +73,7 @@ do_install:append() { | |||
73 | } | 73 | } |
74 | 74 | ||
75 | USERADD_PACKAGES = "${PN}-bin" | 75 | USERADD_PACKAGES = "${PN}-bin" |
76 | GROUPADD_PARAM:${PN}-bin = "--system mail" | ||
76 | USERADD_PARAM:${PN}-bin = "--system --home=/var/spool/mail -g mail cyrus" | 77 | USERADD_PARAM:${PN}-bin = "--system --home=/var/spool/mail -g mail cyrus" |
77 | 78 | ||
78 | SYSTEMD_PACKAGES = "${PN}-bin" | 79 | SYSTEMD_PACKAGES = "${PN}-bin" |
diff --git a/meta-networking/recipes-daemons/radvd/radvd.inc b/meta-networking/recipes-daemons/radvd/radvd.inc index 2afaa48411..219d88f499 100644 --- a/meta-networking/recipes-daemons/radvd/radvd.inc +++ b/meta-networking/recipes-daemons/radvd/radvd.inc | |||
@@ -58,6 +58,7 @@ do_install:append () { | |||
58 | } | 58 | } |
59 | 59 | ||
60 | USERADD_PACKAGES = "${PN}" | 60 | USERADD_PACKAGES = "${PN}" |
61 | GROUPADD_PARAM:${PN} = "--system nogroup" | ||
61 | USERADD_PARAM:${PN} = "--system --home ${localstatedir}/run/radvd/ -M -g nogroup radvd" | 62 | USERADD_PARAM:${PN} = "--system --home ${localstatedir}/run/radvd/ -M -g nogroup radvd" |
62 | 63 | ||
63 | pkg_postinst:${PN} () { | 64 | pkg_postinst:${PN} () { |