Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorAnton Hvornum <anton.feeds+github@gmail.com>2020-07-08 17:45:25 +0000
committerAnton Hvornum <anton.feeds+github@gmail.com>2020-07-08 17:45:25 +0000
commit5ab238569ddfea342cc6e3b5650c52679a9a7f9a (patch)
tree4fe61af639246442af912dd1d0962f114f14745f /examples
parentbc8f6ce4486fe79ffbb838ebeddbb40d72947bd2 (diff)
mixed up the mount of /boot, now correctly mounts /boot before running pacstrap
Diffstat (limited to 'examples')
-rw-r--r--examples/guided.py4
1 files changed, 2 insertions, 2 deletions
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] != '':