From b22500babdc6bf6f99acb771b87411fe979aa1d5 Mon Sep 17 00:00:00 2001 From: Anton Hvornum Date: Thu, 11 Nov 2021 18:59:53 +0100 Subject: Removed assumptions that !user and !super-users exists. --- examples/guided.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/examples/guided.py b/examples/guided.py index f009d938..0d56540a 100644 --- a/examples/guided.py +++ b/examples/guided.py @@ -243,13 +243,13 @@ def perform_filesystem_operations(): fs.load_layout(archinstall.storage['disk_layouts'][drive.path]) def perform_installation(mountpoint): - user_credentials = { - "!users" : archinstall.arguments['!users'], - "!superusers" : archinstall.arguments['!superusers'], - "!root-password" : archinstall.arguments['!root-password'], - } + user_credentials = {} + if archinstall.arguments.get('!users'): + user_credentials["!users"] = archinstall.arguments['!users'] + if archinstall.arguments.get('!superusers'): + user_credentials["!superusers"] = archinstall.arguments['!superusers'] if archinstall.arguments.get('!encryption-password'): - user_credentials["!encryption-password"] = archinstall.arguments.get('!encryption-password') + user_credentials["!encryption-password"] = archinstall.arguments['!encryption-password'] with open("/var/log/archinstall/user_credentials.json", "w") as config_file: config_file.write(json.dumps(user_credentials, indent=4, sort_keys=True, cls=archinstall.UNSAFE_JSON)) -- cgit v1.2.3-54-g00ecf