From mboxrd@z Thu Jan 1 00:00:00 1970 From: Adolf Belka To: development@lists.ipfire.org Subject: [PATCH] avahi: Fix bug #13017 - - dbus[n]: Unknown group "netdev" in message bus configuration file Date: Sun, 11 Dec 2022 13:33:22 +0100 Message-ID: <20221211123330.5155-1-adolf.belka@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============6080006025741655995==" List-Id: --===============6080006025741655995== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable - add command into avahi install.sh paks file to add netdev group if it doesn= 't exist - Update avahi PAK_VER to ensure that change is shipped Tested-by: Jon Murphy Signed-off-by: Adolf Belka --- lfs/avahi | 4 ++-- src/paks/avahi/install.sh | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/lfs/avahi b/lfs/avahi index 1628fe17b..17857bfe3 100644 --- a/lfs/avahi +++ b/lfs/avahi @@ -1,7 +1,7 @@ ############################################################################= ### # = # # IPFire.org - A linux based firewall = # -# Copyright (C) 2007-2018 IPFire Team = # +# Copyright (C) 2007-2022 IPFire Team = # # = # # This program is free software: you can redistribute it and/or modify = # # it under the terms of the GNU General Public License as published by = # @@ -34,7 +34,7 @@ DL_FROM =3D $(URL_IPFIRE) DIR_APP =3D $(DIR_SRC)/$(THISAPP) TARGET =3D $(DIR_INFO)/$(THISAPP) PROG =3D avahi -PAK_VER =3D 10 +PAK_VER =3D 11 =20 DEPS =3D dbus libdaemon =20 diff --git a/src/paks/avahi/install.sh b/src/paks/avahi/install.sh index 9ec3050a1..63627a4db 100644 --- a/src/paks/avahi/install.sh +++ b/src/paks/avahi/install.sh @@ -28,6 +28,7 @@ getent group avahi >/dev/null || groupadd -r avahi getent passwd avahi >/dev/null || \ useradd -r -g avahi -d /var/run/avahi-daemon -s /sbin/nologin \ -c "Avahi mDNS daemon" avahi +getent group netdev > /dev/null || groupadd -r netdev =20 extract_files ln -svf ../init.d/avahi /etc/rc.d/rc3.d/S65avahi --=20 2.38.1 --===============6080006025741655995==--