From 8547456e8acea08e6fe4de408ab634322748b9b5 Mon Sep 17 00:00:00 2001 From: pkgdemon Date: Sat, 13 Jan 2024 22:28:03 -0500 Subject: [PATCH] Try to remove fsck from mkinitcpio.conf without removing all instances --- installer/backend.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/installer/backend.py b/installer/backend.py index 723f0e5..8516a52 100755 --- a/installer/backend.py +++ b/installer/backend.py @@ -207,7 +207,7 @@ def mkinitcpio(): f.write("fallback_options=\"-S autodetect\"\n") # Configure mkinitcpio - subprocess.run(["chroot", MNT, "sed", "-i", "s|filesystems|zfs filesystems|", "/etc/mkinitcpio.conf"], check=True) + subprocess.run(["chroot", MNT, "sed", "-i", "s|filesystems fsck|zfs filesystems|", "/etc/mkinitcpio.conf"], check=True) # Run mkinitcpio subprocess.run(["chroot", "/tmp/maloneyos", "mkinitcpio", "-P"], check=True)