From ba863c341d9436b7dd2cc5b6904c4567baa76088 Mon Sep 17 00:00:00 2001 From: Anton Hvornum Date: Mon, 7 Dec 2020 19:56:51 +0100 Subject: fstab incorrectly updated since many version ago Updated `genfstab()` to approprately generate a correct fstab for mounted filesystems used in `installation.mountpoint`. --- archinstall/lib/installer.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'archinstall/lib/installer.py') diff --git a/archinstall/lib/installer.py b/archinstall/lib/installer.py index 8fde4168..6d3be605 100644 --- a/archinstall/lib/installer.py +++ b/archinstall/lib/installer.py @@ -118,9 +118,9 @@ class Installer(): def genfstab(self, flags='-pU'): self.log(f"Updating {self.mountpoint}/etc/fstab", level=LOG_LEVELS.Info) - print(f'/usr/bin/genfstab {flags} {self.mountpoint} >> {self.mountpoint}/etc/fstab') - o = b''.join(sys_command(f'/usr/bin/genfstab {flags} {self.mountpoint} >> {self.mountpoint}/etc/fstab')) - print(o) + o = b''.join(sys_command(f'/usr/bin/genfstab {flags} {self.mountpoint}')) + with open(f"{self.mountpoint}/etc/fstab", 'a') as fstab: + fstab.write(f"\n{o.decode('UTF-8')}") if not os.path.isfile(f'{self.mountpoint}/etc/fstab'): raise RequirementError(f'Could not generate fstab, strapping in packages most likely failed (disk out of space?)\n{o}') -- cgit v1.2.3-70-g09d2