From d572afcd08f3bedc4cf6fc9ac6e52e4f0797ccd0 Mon Sep 17 00:00:00 2001 From: JD Schroeder Date: Thu, 3 Aug 2023 12:51:27 -0500 Subject: cyrus-sasl: 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: cyrus-sasl: Changing groupname mail's gid from (WXYZ) to (JKLM), verify configuration files! Signed-off-by: JD Schroeder Signed-off-by: Khem Raj --- meta-oe/recipes-networking/cyrus-sasl/cyrus-sasl_2.1.28.bb | 1 + 1 file changed, 1 insertion(+) diff --git a/meta-oe/recipes-networking/cyrus-sasl/cyrus-sasl_2.1.28.bb b/meta-oe/recipes-networking/cyrus-sasl/cyrus-sasl_2.1.28.bb index 11b53e7b61..d85ef20577 100644 --- a/meta-oe/recipes-networking/cyrus-sasl/cyrus-sasl_2.1.28.bb +++ b/meta-oe/recipes-networking/cyrus-sasl/cyrus-sasl_2.1.28.bb @@ -74,6 +74,7 @@ do_install:append() { } USERADD_PACKAGES = "${PN}-bin" +GROUPADD_PARAM:${PN}-bin = "--system mail" USERADD_PARAM:${PN}-bin = "--system --home=/var/spool/mail -g mail cyrus" SYSTEMD_PACKAGES = "${PN}-bin" -- cgit v1.2.3-54-g00ecf