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@gmail.com>2021-05-06 14:20:20 +0200
committerAnton Hvornum <anton.feeds@gmail.com>2021-05-06 14:20:20 +0200
commitc20be61e124ccb3f2434c6dc61016524ed936c7c (patch)
tree42855104dc886ef65642036a26d96d84b91a121e /examples
parent8bc3dd685eb89b3a166e25a31be33672b7126e82 (diff)
Removed obsolete variable in prep for multi-disk support.
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 0f4d846c..069a89d5 100644
--- a/examples/guided.py
+++ b/examples/guided.py
@@ -57,10 +57,10 @@ def ask_user_questions():
archinstall.storage['disk_layouts'] = archinstall.select_disk_layout(archinstall.arguments['harddrives'])
# Get disk encryption password (or skip if blank)
- if archinstall.arguments['harddrive'] and archinstall.arguments.get('!encryption-password', None) is None:
+ if archinstall.arguments['harddrives'] and archinstall.arguments.get('!encryption-password', None) is None:
if (passwd := archinstall.get_password(prompt='Enter disk encryption password (leave blank for no encryption): ')):
archinstall.arguments['!encryption-password'] = passwd
- archinstall.arguments['harddrive'].encryption_password = archinstall.arguments['!encryption-password']
+
archinstall.arguments["bootloader"] = archinstall.ask_for_bootloader()
# Get the hostname for the machine
if not archinstall.arguments.get('hostname', None):