From ada7a0515bbc8680246039f4b26e2c40b42d3d67 Mon Sep 17 00:00:00 2001 From: Anton Hvornum Date: Mon, 7 Dec 2020 20:31:18 +0100 Subject: More debugging --- archinstall/lib/installer.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'archinstall/lib/installer.py') diff --git a/archinstall/lib/installer.py b/archinstall/lib/installer.py index a50c1ad2..20d849d1 100644 --- a/archinstall/lib/installer.py +++ b/archinstall/lib/installer.py @@ -118,10 +118,10 @@ class Installer(): def genfstab(self, flags='-pU'): self.log(f"Updating {self.mountpoint}/etc/fstab", level=LOG_LEVELS.Info) - with open(f"{self.mountpoint}/etc/fstab", 'ab') as fstab: - for line in sys_command(f'/usr/bin/genfstab {flags} {self.mountpoint}'): - print('Writing fstab:', line + b'\n') - fstab.write(line + b'\n') + fstab = sys_command(f'/usr/bin/genfstab {flags} {self.mountpoint}').trace_log: + print(fstab) + with open(f"{self.mountpoint}/etc/fstab", 'ab') as fstab_fh: + fstab.write(fstab) 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-54-g00ecf