index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
author | Anton Hvornum <anton@hvornum.se> | 2021-04-27 18:48:48 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-27 18:48:48 +0000 |
commit | e7a429db117313294ebeee2cc460405ba28da8b8 (patch) | |
tree | f08bf9fbc4a8c26a51a97e373247b0aca550f7b6 /examples | |
parent | ae1253afab4a9588444ef7a9b878587380c8cbfe (diff) | |
parent | a706a98151fcd80d414c5184c3e9325aaab475ec (diff) |
-rw-r--r-- | examples/guided.py | 4 |
diff --git a/examples/guided.py b/examples/guided.py index 0e6f2904..1ff84907 100644 --- a/examples/guided.py +++ b/examples/guided.py @@ -205,10 +205,10 @@ def ask_user_questions(): archinstall.arguments['kernels'] = 'linux' # Additional packages (with some light weight error handling for invalid package names) + print("Only packages such as base, base-devel, linux, linux-firmware, efibootmgr and optional profile packages are installed.") + print("If you desire a web browser, such as firefox or chromium, you may specify it in the following prompt.") while True: if not archinstall.arguments.get('packages', None): - print("Only packages such as base, base-devel, linux, linux-firmware, efibootmgr (on UEFI systems)/GRUB (on BIOS systems) and optional profile packages are installed.") - print("If you desire a web browser, such as firefox or chromium, you may specify it in the following prompt.") archinstall.arguments['packages'] = [package for package in input('Write additional packages to install (space separated, leave blank to skip): ').split(' ') if len(package)] if len(archinstall.arguments['packages']): |