From 47e6d82ee564ba1192a63d5f9ea89270a7cdf32e Mon Sep 17 00:00:00 2001 From: lubuoren <86152256+lubuoren@users.noreply.github.com> Date: Fri, 30 May 2025 23:04:04 +0800 Subject: [PATCH] Update installer.py (#3540) Fix the bug of installation failure caused by incorrect service name --- archinstall/lib/installer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/archinstall/lib/installer.py b/archinstall/lib/installer.py index 7c0f98af..277176a0 100644 --- a/archinstall/lib/installer.py +++ b/archinstall/lib/installer.py @@ -948,7 +948,7 @@ class Installer: if bootloader and bootloader == Bootloader.Grub: self.pacman.strap('grub-btrfs') - self.enable_service('grub-btrfs.service') + self.enable_service('grub-btrfsd.service') def setup_swap(self, kind: str = 'zram') -> None: if kind == 'zram':