index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
author | Daniel Girtler <blackrabbit256@gmail.com> | 2023-05-04 00:36:46 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-03 16:36:46 +0200 |
commit | ec4ecbcb7a839ab06b739f01ce42bfd18376c620 (patch) | |
tree | b617783f2d7cb4d4bf32690590859e68666bf3d4 /archinstall/scripts/guided.py | |
parent | e78ddb03e1bbc46e59fd6a9889699b12808d0fec (diff) |
-rw-r--r-- | archinstall/scripts/guided.py | 2 |
diff --git a/archinstall/scripts/guided.py b/archinstall/scripts/guided.py index d9c5837c..48d141b7 100644 --- a/archinstall/scripts/guided.py +++ b/archinstall/scripts/guided.py @@ -223,7 +223,7 @@ def perform_installation(mountpoint: Path): # If the user provided a list of services to be enabled, pass the list to the enable_service function. # Note that while it's called enable_service, it can actually take a list of services and iterate it. if archinstall.arguments.get('services', None): - installation.enable_service(*archinstall.arguments['services']) + installation.enable_service(archinstall.arguments.get('services', [])) # If the user provided custom commands to be run post-installation, execute them now. if archinstall.arguments.get('custom-commands', None): |