From: Stefan Schantl Date: Sun, 18 Oct 2015 10:40:10 +0000 (+0200) Subject: systemd: Create missing system groups X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=747db4fdcf002ee97c155be7a20429ffc13c613c;p=ipfire-3.x.git systemd: Create missing system groups The system groups input and utmp where missing which are required by udevd to proper work. Fixes #10942. Signed-off-by: Stefan Schantl Signed-off-by: Michael Tremer --- diff --git a/systemd/systemd.nm b/systemd/systemd.nm index 7346c09bb..0b8e604e2 100644 --- a/systemd/systemd.nm +++ b/systemd/systemd.nm @@ -5,7 +5,7 @@ name = systemd version = 221 -release = 2 +release = 3 maintainer = Stefan Schantl groups = System/Base @@ -164,6 +164,8 @@ create_groups getent group tape >/dev/null || groupadd -g 33 tape || : getent group dialout >/dev/null || groupadd -g 18 dialout || : getent group floppy >/dev/null || groupadd -g 19 floppy || : + getent group input >/dev/null || groupadd -r input || : + getent group utmp >/dev/null || groupadd -r -g 22 utmp || : # Create group for journald. getent group systemd-journal >/dev/null || /usr/sbin/groupadd -r systemd-journal