Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archinstall
diff options
context:
space:
mode:
authorjtagcat <git-514635f7@jtag.cat>2021-04-21 14:20:22 +0000
committerGitHub <noreply@github.com>2021-04-21 14:20:22 +0000
commita834bffeec337098a696832b2deef63344bb176c (patch)
tree81a88c887a78ad71e02ee258d23bb9dca42acbe3 /archinstall
parent33458b72f32d18de6c599033a73f1c634d62ee23 (diff)
user_interaction: Explicitly ask for username on super-user creation.
Diffstat (limited to 'archinstall')
-rw-r--r--archinstall/lib/user_interaction.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/archinstall/lib/user_interaction.py b/archinstall/lib/user_interaction.py
index 10df6755..dfc3553b 100644
--- a/archinstall/lib/user_interaction.py
+++ b/archinstall/lib/user_interaction.py
@@ -93,7 +93,7 @@ def print_large_list(options, padding=5, margin_bottom=0, separator=': '):
print(f"{str(column): >{highest_index_number_length}}{separator}{options[column]}", end = spaces)
print()
-def ask_for_superuser_account(prompt='Create a required super-user with sudo privileges: ', forced=False):
+def ask_for_superuser_account(prompt='Username for required super-user with sudo privileges: ', forced=False):
while 1:
new_user = input(prompt).strip(' ')