From bc8f6ce4486fe79ffbb838ebeddbb40d72947bd2 Mon Sep 17 00:00:00 2001 From: Anton Hvornum Date: Wed, 8 Jul 2020 17:10:03 +0000 Subject: Added a sleep for testing --- archinstall/lib/installer.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'archinstall/lib') diff --git a/archinstall/lib/installer.py b/archinstall/lib/installer.py index 61f039bb..00e0aed9 100644 --- a/archinstall/lib/installer.py +++ b/archinstall/lib/installer.py @@ -39,10 +39,12 @@ class Installer(): log(f'Could not sync mirrors: {sync_mirrors.exit_code}') def minimal_installation(self): - return self.pacstrap('base base-devel linux linux-firmware mkinitcpio btrfs-progs efibootmgr nano wpa_supplicant dialog'.split(' '), debug=True) + self.pacstrap('base base-devel linux linux-firmware btrfs-progs efibootmgr nano wpa_supplicant dialog'.split(' '), debug=True) def add_bootloader(self, boot_partition): log(f'Adding bootloader to {boot_partition}') + import time + time.sleep(10000) os.makedirs(f'{self.mountpoint}/boot', exist_ok=True) boot_partition.mount(f'{self.mountpoint}/boot') o = b''.join(sys_command(f'/usr/bin/arch-chroot {self.mountpoint} bootctl --no-variables --path=/boot install')) -- cgit v1.2.3-54-g00ecf