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@hvornum.se>2021-04-27 18:48:48 +0000
committerGitHub <noreply@github.com>2021-04-27 18:48:48 +0000
commite7a429db117313294ebeee2cc460405ba28da8b8 (patch)
treef08bf9fbc4a8c26a51a97e373247b0aca550f7b6 /examples
parentae1253afab4a9588444ef7a9b878587380c8cbfe (diff)
parenta706a98151fcd80d414c5184c3e9325aaab475ec (diff)
Merge pull request #344 from SecondThundeR/misc-cleanup
Misc. cleanup
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 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']):