From f1046ce47944395a571144df6ac89db04c2f27c6 Mon Sep 17 00:00:00 2001 From: lubuoren <86152256+lubuoren@users.noreply.github.com> Date: Thu, 29 May 2025 22:48:02 +0800 Subject: [PATCH] Update installer.py 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 e0f6da2d4e..8216f6b3d7 100644 --- a/archinstall/lib/installer.py +++ b/archinstall/lib/installer.py @@ -952,7 +952,7 @@ def setup_btrfs_snapshot( 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':