public inbox for development@lists.ipfire.org
 help / color / mirror / Atom feed
From: Jon Murphy <jon.murphy@ipfire.org>
To: development@lists.ipfire.org
Subject: [PATCH] dbus: Fixes Bug#13094 - Check for existing user before `useradd`
Date: Wed, 26 Apr 2023 15:37:13 -0500	[thread overview]
Message-ID: <20230426203713.3274071-1-jon.murphy@ipfire.org> (raw)

[-- Attachment #1: Type: text/plain, Size: 1488 bytes --]

- The dbus install.sh script useradd command causes an error:
   "failed adding user 'messagebus', exit code: 9"
- This patch adds a check to only do the useradd if the user does not exist.
- See the bump PAK_VER for dbus that Adolf publised.  See this patch:
https://lists.ipfire.org/pipermail/development/2023-April/015816.html

Signed-off-by: Jon Murphy <jon.murphy(a)ipfire.org>
---
 src/paks/dbus/install.sh | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/paks/dbus/install.sh b/src/paks/dbus/install.sh
index bf4e5a6d5..e4f2abda2 100644
--- a/src/paks/dbus/install.sh
+++ b/src/paks/dbus/install.sh
@@ -17,13 +17,13 @@
 # along with IPFire; if not, write to the Free Software                    #
 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA #
 #                                                                          #
-# Copyright (C) 2007 IPFire-Team <info(a)ipfire.org>.                        #
+# Copyright (C) 2007-2023 IPFire-Team <info(a)ipfire.org>.                   #
 #                                                                          #
 ############################################################################
 #
 . /opt/pakfire/lib/functions.sh
 extract_files
-useradd messagebus
+id -u messagebus &>/dev/null || useradd -r -d /var/empty -s /bin/false messagebus
 
 # Create start links
 ln -svf  ../init.d/messagebus /etc/rc.d/rc3.d/S15messagebus
-- 
2.30.2


                 reply	other threads:[~2023-04-26 20:37 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20230426203713.3274071-1-jon.murphy@ipfire.org \
    --to=jon.murphy@ipfire.org \
    --cc=development@lists.ipfire.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox