Merged. On Sun, 2015-10-18 at 12:40 +0200, Stefan Schantl wrote: > The system groups input and utmp where missing which > are required by udevd to proper work. > > Fixes #10942. > > Signed-off-by: Stefan Schantl > --- > systemd/systemd.nm | 4 +++- > 1 file changed, 3 insertions(+), 1 deletion(-) > > diff --git a/systemd/systemd.nm b/systemd/systemd.nm > index 7346c09..0b8e604 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