From a8d959a7dad755bf62f49f3aeb42b83e50c356c6 Mon Sep 17 00:00:00 2001 From: JD Schroeder Date: Thu, 3 Aug 2023 12:47:47 -0500 Subject: radvd: 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. Warning fixed: radvd: Changing groupname nogroup's gid from (WXYZ) to (JKLM), verify configuration files! Signed-off-by: JD Schroeder Signed-off-by: Khem Raj --- meta-networking/recipes-daemons/radvd/radvd_2.19.bb | 1 + 1 file changed, 1 insertion(+) (limited to 'meta-networking') diff --git a/meta-networking/recipes-daemons/radvd/radvd_2.19.bb b/meta-networking/recipes-daemons/radvd/radvd_2.19.bb index f9f810abdd..36c921a167 100644 --- a/meta-networking/recipes-daemons/radvd/radvd_2.19.bb +++ b/meta-networking/recipes-daemons/radvd/radvd_2.19.bb @@ -61,6 +61,7 @@ do_install:append () { } USERADD_PACKAGES = "${PN}" +GROUPADD_PARAM:${PN} = "--system nogroup" USERADD_PARAM:${PN} = "--system --home ${localstatedir}/run/radvd/ -M -g nogroup radvd" pkg_postinst:${PN} () { -- cgit v1.2.3-54-g00ecf