]> git.ipfire.org Git - people/stevee/ipfire-3.x.git/commitdiff
systemd: Create missing system groups
authorStefan Schantl <stefan.schantl@ipfire.org>
Sun, 18 Oct 2015 10:40:10 +0000 (12:40 +0200)
committerMichael Tremer <michael.tremer@ipfire.org>
Sun, 18 Oct 2015 17:56:44 +0000 (18:56 +0100)
The system groups input and utmp where missing which
are required by udevd to proper work.

Fixes #10942.

Signed-off-by: Stefan Schantl <stefan.schantl@ipfire.org>
Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
systemd/systemd.nm

index 7346c09bb6c0340badb8a002293f4784b2a3ab30..0b8e604e2624ae296bf9d3803af00b52f53360e9 100644 (file)
@@ -5,7 +5,7 @@
 
 name       = systemd
 version    = 221
-release    = 2
+release    = 3
 
 maintainer = Stefan Schantl <stefan.schantl@ipfire.org>
 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