From 33c7892326de296cc6d143577be5b395ac887d91 Mon Sep 17 00:00:00 2001 From: Andreas Müller Date: Thu, 10 Apr 2014 20:07:48 +0200 Subject: shadow: fix building systemd with useradd-staticids.bbclass enabled MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit | groupadd: 'systemd-journal-gateway' is not a valid group name Without useradd-staticids enabled, group 'systemd-journal-gateway' is created by useradd and that seems not to care for GROUP_NAME_MAX_LENGTH which has 16 by default. Signed-off-by: Andreas Müller Signed-off-by: Richard Purdie --- meta/recipes-extended/shadow/shadow.inc | 1 + 1 file changed, 1 insertion(+) (limited to 'meta/recipes-extended/shadow/shadow.inc') diff --git a/meta/recipes-extended/shadow/shadow.inc b/meta/recipes-extended/shadow/shadow.inc index d6bf73b591..a4e9634a56 100644 --- a/meta/recipes-extended/shadow/shadow.inc +++ b/meta/recipes-extended/shadow/shadow.inc @@ -60,6 +60,7 @@ inherit autotools gettext EXTRA_OECONF += "--without-audit \ --without-libcrack \ --without-selinux \ + --with-group-name-max-length=24 \ ${NSCDOPT}" NSCDOPT = "" -- cgit 1.2.3-korg