index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
author | Anton Hvornum <anton.feeds+github@gmail.com> | 2019-11-13 22:19:32 +0000 |
---|---|---|
committer | Anton Hvornum <anton.feeds+github@gmail.com> | 2019-11-13 22:19:32 +0000 |
commit | 2abef082a7d037a0e0f6414ca75a9030c43c3e42 (patch) | |
tree | 9b1257ae37bc3533cb3b52f6a5ee14c7123e1b16 | |
parent | 01cb7da8a3377025e7b5479d956a10feb64bc3cb (diff) |
-rw-r--r-- | archinstall.py | 10 |
diff --git a/archinstall.py b/archinstall.py index 9b54803b..e65a5a02 100644 --- a/archinstall.py +++ b/archinstall.py @@ -641,13 +641,11 @@ if __name__ == '__main__': print('[!] Disk PASSWORD is: {}'.format(args['password'])) print() - - for i in range(5, 0, -1): - print(f'Formatting {args["drive"]} in {i}...') - sleep(1) - - if not args['rerun'] or args['ignore-rerun']: + for i in range(5, 0, -1): + print(f'Formatting {args["drive"]} in {i}...') + sleep(1) + o = simple_command('/usr/bin/umount -R /mnt') o = simple_command('/usr/bin/cryptsetup close /dev/mapper/luksdev') print('[N] Setting up {drive}.'.format(**args)) |