]> git.ipfire.org Git - ipfire-2.x.git/commitdiff
dbus: Fixes Bug#13094 - Check for existing user before `useradd`
authorJon Murphy <jon.murphy@ipfire.org>
Wed, 26 Apr 2023 20:37:13 +0000 (15:37 -0500)
committerArne Fitzenreiter <arne_f@ipfire.org>
Wed, 3 May 2023 07:42:32 +0000 (07:42 +0000)
- 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@ipfire.org>
Signed-off-by: Arne Fitzenreiter <arne_f@ipfire.org>
src/paks/dbus/install.sh

index bf4e5a6d5869a9208dc80f39e1ab75ab325e31a1..e4f2abda2230398beb0e5085c25c70e1b1e23875 100644 (file)
 # 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@ipfire.org>.                        #
+# Copyright (C) 2007-2023 IPFire-Team <info@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