index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
author | advaithm <advaith.madhukar@gmail.com> | 2021-03-12 12:02:03 +0530 |
---|---|---|
committer | advaithm <advaith.madhukar@gmail.com> | 2021-03-12 12:02:03 +0530 |
commit | ee3c48c965b2e7a2ed9427c2b5179318d52887c0 (patch) | |
tree | 89ee5236770485fb3a3bcdda126e83db531c3032 /examples/minimal.py | |
parent | 563a50dbc0d126c9d2e1038b7e71cf7d30a2fb29 (diff) |
-rw-r--r-- | examples/minimal.py | 2 |
diff --git a/examples/minimal.py b/examples/minimal.py index 664bad0d..b5bb34e0 100644 --- a/examples/minimal.py +++ b/examples/minimal.py @@ -8,7 +8,7 @@ archinstall.sys_command(f'cryptsetup close /dev/mapper/luksloop', suppress_error harddrive = archinstall.select_disk(archinstall.all_disks()) disk_password = getpass.getpass(prompt='Disk password (won\'t echo): ') -with archinstall.Filesystem(harddrive, archinstall.GPT) as fs: +with archinstall.Filesystem(harddrive) as fs: # Use the entire disk instead of setting up partitions on your own fs.use_entire_disk('luks2') |