* [git.ipfire.org] IPFire 2.x development tree branch, master, updated. 050c9b39580d0c1deafb53c33a2543678a26e2b7
@ 2026-01-09 11:36 Michael Tremer
0 siblings, 0 replies; only message in thread
From: Michael Tremer @ 2026-01-09 11:36 UTC (permalink / raw)
To: ipfire-scm
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "IPFire 2.x development tree".
The branch, master has been updated
via 050c9b39580d0c1deafb53c33a2543678a26e2b7 (commit)
from 5d44a45ea54e0402c01e3fec6c79fe902746614e (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 050c9b39580d0c1deafb53c33a2543678a26e2b7
Author: Michael Tremer <michael.tremer@ipfire.org>
Date: Fri Jan 9 11:35:07 2026 +0000
qemu: Remove the KVM group if not created as system group
Fixes: #13922 - Core 199 - QEMU VMs no longer start - libfuse3.so.4 missing
Reported-by: Arno Jonker <admin@greenbull.nl>
Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
-----------------------------------------------------------------------
Summary of changes:
lfs/qemu | 2 +-
src/paks/qemu/install.sh | 8 ++++++++
2 files changed, 9 insertions(+), 1 deletion(-)
Difference in files:
diff --git a/lfs/qemu b/lfs/qemu
index ca1115c76..8cd674a16 100644
--- a/lfs/qemu
+++ b/lfs/qemu
@@ -35,7 +35,7 @@ DL_FROM = $(URL_IPFIRE)
DIR_APP = $(DIR_SRC)/$(THISAPP)
TARGET = $(DIR_INFO)/$(THISAPP)
PROG = qemu
-PAK_VER = 52
+PAK_VER = 53
DEPS = alsa libusbredir spice libslirp
diff --git a/src/paks/qemu/install.sh b/src/paks/qemu/install.sh
index e0b84a629..f96e59ac5 100644
--- a/src/paks/qemu/install.sh
+++ b/src/paks/qemu/install.sh
@@ -22,6 +22,14 @@
############################################################################
#
. /opt/pakfire/lib/functions.sh
+
+# If the KVM group has already been created as a non-system group, we will
+# remove it and create it again as a system group
+kvm_id="$(getent group kvm | cut -d: -f3)"
+if [ -n "${kvm_id}" -a "${kvm_id}" -ge 1000 ]; then
+ groupdel kvm
+fi
+
#create the group kvm when they not exist
getent group kvm >/dev/null || groupadd -r kvm
extract_files
hooks/post-receive
--
IPFire 2.x development tree
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2026-01-09 11:36 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-01-09 11:36 [git.ipfire.org] IPFire 2.x development tree branch, master, updated. 050c9b39580d0c1deafb53c33a2543678a26e2b7 Michael Tremer
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox