index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
author | Yash Tripathi <tripathiyash97@gmail.com> | 2021-05-22 01:41:47 +0530 |
---|---|---|
committer | Yash Tripathi <tripathiyash97@gmail.com> | 2021-05-22 01:41:47 +0530 |
commit | 9a9d385d8c9936dc7b2d54aa07c7224f0cc887ef (patch) | |
tree | 6f7df57d9bfb50cdb4c6627155003498b140b937 /examples/guided.py | |
parent | e01e8a42de147cc0f84b786d5e37b1224011474c (diff) | |
parent | e4c471b631632b7f419ba7ff4c982df406305a3c (diff) |
-rw-r--r-- | examples/guided.py | 5 |
diff --git a/examples/guided.py b/examples/guided.py index d23c483e..f61548e1 100644 --- a/examples/guided.py +++ b/examples/guided.py @@ -379,6 +379,11 @@ def perform_installation(mountpoint): archinstall.log(' * Profile\'s post configuration requirements was not fulfilled.', fg='red') exit(1) + # 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']) + # If the user provided custom commands to be run post-installation, execute them now. if archinstall.arguments.get('custom-commands', None): run_custom_user_commands(archinstall.arguments['custom-commands'], installation) |