From mboxrd@z Thu Jan 1 00:00:00 1970 From: Stefan Schantl To: development@lists.ipfire.org Subject: [PATCH] systemd: Create missing system groups Date: Sun, 18 Oct 2015 12:40:10 +0200 Message-ID: <1445164810-2234-1-git-send-email-stefan.schantl@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============1116880592187451168==" List-Id: --===============1116880592187451168== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable 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 @@ =20 name =3D systemd version =3D 221 -release =3D 2 +release =3D 3 =20 maintainer =3D Stefan Schantl groups =3D 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 || : =20 # Create group for journald. getent group systemd-journal >/dev/null || /usr/sbin/groupadd -r systemd-jo= urnal --=20 2.4.3 --===============1116880592187451168==--