Added a umounter / luksclose before installation. In case of a rerun

This commit is contained in:
Anton Hvornum 2019-06-20 16:38:07 +00:00
parent b859c519b0
commit 1ffde6ff9f
1 changed files with 2 additions and 0 deletions

View File

@ -535,6 +535,8 @@ if __name__ == '__main__':
print()
if not args['rerun'] or args['ignore-rerun']:
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))
# dd if=/dev/random of=args['drive'] bs=4096 status=progress
# https://github.com/dcantrell/pyparted would be nice, but isn't officially in the repo's #SadPanda