Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archinstall/lib/user_interaction.py
diff options
context:
space:
mode:
authorDylan M. Taylor <dylan@dylanmtaylor.com>2021-04-30 22:34:54 -0400
committerGitHub <noreply@github.com>2021-04-30 22:34:54 -0400
commitfeae13ac84e10cdf624cb4b3b19ba4707a96dabd (patch)
tree9f4f3fc79bd06553709fc01d625fcc7b1f8914bf /archinstall/lib/user_interaction.py
parentfcff362b9ad85fd8ce16b63f162de62eee1e0fbb (diff)
Tweak wording for superuser prompt a little bit
Diffstat (limited to 'archinstall/lib/user_interaction.py')
-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 451251cd..ac9ceefb 100644
--- a/archinstall/lib/user_interaction.py
+++ b/archinstall/lib/user_interaction.py
@@ -292,7 +292,7 @@ def ask_for_additional_users(prompt='Any additional users to install (leave blan
continue
password = get_password(prompt=f'Password for user {new_user}: ')
- if input("Should this user be a sudo (super) user (y/N): ").strip(' ').lower() in ('y', 'yes'):
+ if input("Should this user be a superuser (sudoer) [y/N]: ").strip(' ').lower() in ('y', 'yes'):
super_users[new_user] = {"!password" : password}
else:
users[new_user] = {"!password" : password}