systemd: Create missing system groups
Message ID | 1445164810-2234-1-git-send-email-stefan.schantl@ipfire.org |
---|---|
State | Accepted |
Commit | 747db4fdcf002ee97c155be7a20429ffc13c613c |
Headers |
Return-Path: <development-bounces@lists.ipfire.org> Received: from mail01.ipfire.org (mail01.tremer.info [172.28.1.200]) by septima.ipfire.org (Postfix) with ESMTP id 7333F613AC for <patchwork@ipfire.org>; Sun, 18 Oct 2015 12:40:19 +0200 (CEST) Received: from hedwig.ipfire.org (localhost [IPv6:::1]) by mail01.ipfire.org (Postfix) with ESMTP id E323DD4C; Sun, 18 Oct 2015 12:40:18 +0200 (CEST) Received: from tuxedo.stevee (host228-133-28-81.hiway.at [81.28.133.228]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail01.ipfire.org (Postfix) with ESMTPSA id CC518162; Sun, 18 Oct 2015 12:40:13 +0200 (CEST) From: Stefan Schantl <stefan.schantl@ipfire.org> 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> X-Mailer: git-send-email 2.4.3 X-BeenThere: development@lists.ipfire.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: IPFire development talk <development.lists.ipfire.org> List-Unsubscribe: <http://lists.ipfire.org/mailman/options/development>, <mailto:development-request@lists.ipfire.org?subject=unsubscribe> List-Archive: <http://lists.ipfire.org/pipermail/development/> List-Post: <mailto:development@lists.ipfire.org> List-Help: <mailto:development-request@lists.ipfire.org?subject=help> List-Subscribe: <http://lists.ipfire.org/mailman/listinfo/development>, <mailto:development-request@lists.ipfire.org?subject=subscribe> Errors-To: development-bounces@lists.ipfire.org Sender: "Development" <development-bounces@lists.ipfire.org> |
Message
Stefan Schantl
Oct. 18, 2015, 9:40 p.m. UTC
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>
---
systemd/systemd.nm | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
Comments
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 <stefan.schantl@ipfire.org> > --- > 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 <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