From ead0f4675f9034770fdcf1244c208c984465c80a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82?= Date: Thu, 27 Aug 2026 22:08:36 +0200 Subject: [PATCH] fix: remove runit-void along with runit when using dinit --- euri_mklive/distros/void.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/euri_mklive/distros/void.py b/euri_mklive/distros/void.py index afe5f03..c0dd59e 100644 --- a/euri_mklive/distros/void.py +++ b/euri_mklive/distros/void.py @@ -38,7 +38,7 @@ class Void(Distro): # remove runit if we're using dinit if init == "dinit": - self._run_chroot(rootfs, [self._tool_chroot("xbps-remove"), "-y", "runit"]) + self._run_chroot(rootfs, [self._tool_chroot("xbps-remove"), "-yoy", "runit", "runit-void"]) def install_packages(self, rootfs: Path, packages: list[str]) -> None: if not packages: