index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
author | Anton Hvornum <anton.feeds+github@gmail.com> | 2020-07-08 17:45:25 +0000 |
---|---|---|
committer | Anton Hvornum <anton.feeds+github@gmail.com> | 2020-07-08 17:45:25 +0000 |
commit | 5ab238569ddfea342cc6e3b5650c52679a9a7f9a (patch) | |
tree | 4fe61af639246442af912dd1d0962f114f14745f /examples | |
parent | bc8f6ce4486fe79ffbb838ebeddbb40d72947bd2 (diff) |
-rw-r--r-- | examples/guided.py | 4 |
diff --git a/examples/guided.py b/examples/guided.py index c84b5e56..e2e45539 100644 --- a/examples/guided.py +++ b/examples/guided.py @@ -15,9 +15,9 @@ while (disk_password := getpass.getpass(prompt='Enter disk encryption password ( def perform_installation(device, boot_partition): hostname = input('Desired hostname for the installation: ') - with archinstall.Installer(device, hostname=hostname) as installation: + with archinstall.Installer(device, boot_partition=boot_partition, hostname=hostname) as installation: if installation.minimal_installation(): - installation.add_bootloader(boot_partition) + installation.add_bootloader() packages = input('Additional packages aside from base (space separated): ').split(' ') if len(packages) and packages[0] != '': |