From mboxrd@z Thu Jan 1 00:00:00 1970 From: Stefan Schantl To: development@lists.ipfire.org Subject: [PATCH 1/2] dbus-broker: Do not longer create user/group Date: Wed, 29 Mar 2023 16:35:21 +0200 Message-ID: <20230329143522.2559935-1-stefan.schantl@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============0401656107260323243==" List-Id: --===============0401656107260323243== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit The dbus user and group will be created by the dbus-common packge which is a dependency of dbus-brocker. So no need for trying to doubble create them. --- dbus-broker/dbus-broker.nm | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/dbus-broker/dbus-broker.nm b/dbus-broker/dbus-broker.nm index a65a1e0d6..5a33f4ad7 100644 --- a/dbus-broker/dbus-broker.nm +++ b/dbus-broker/dbus-broker.nm @@ -5,7 +5,7 @@ name = dbus-broker version = 32 -release = 1 +release = 2 maintainer = Stefan Schantl groups = System/Daemons @@ -58,16 +58,6 @@ packages dbus-common end - prerequires += shadow-utils - - script prein - getent group dbus >/dev/null || groupadd -r dbus - getent passwd dbus >/dev/null || \ - useradd -r -g dbus -d / -s /sbin/nologin \ - -c "User for dbus service" dbus - exit 0 - end - # Just search for new unit files that were just installed. script postin systemctl daemon-reload >/dev/null 2>&1 || : -- 2.30.2 --===============0401656107260323243==--