index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
author | Dylan M. Taylor <dylan@dylanmtaylor.com> | 2021-04-30 22:34:54 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-30 22:34:54 -0400 |
commit | feae13ac84e10cdf624cb4b3b19ba4707a96dabd (patch) | |
tree | 9f4f3fc79bd06553709fc01d625fcc7b1f8914bf /archinstall/lib | |
parent | fcff362b9ad85fd8ce16b63f162de62eee1e0fbb (diff) |
-rw-r--r-- | archinstall/lib/user_interaction.py | 2 |
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} |