From cfaa953373f3bf8de1b51be723f210069655eb74 Mon Sep 17 00:00:00 2001 From: Patrick Schleizer Date: Sat, 1 Nov 2025 03:42:33 -0400 Subject: [PATCH] output --- debian/security-misc-shared.preinst | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/debian/security-misc-shared.preinst b/debian/security-misc-shared.preinst index bfb0892..b6ff8a5 100644 --- a/debian/security-misc-shared.preinst +++ b/debian/security-misc-shared.preinst @@ -96,7 +96,7 @@ sudo_users_check () { ## Prevent users from locking themselves out. ## https://forums.whonix.org/t/is-security-misc-suitable-for-hardening-bridges-and-relays/8299/4 - echo "$0: ERROR: No user is a member of group 'sudo'. Installation aborted." >&2 + echo "$0: ERROR: No account is a member of group 'sudo'. Installation aborted." >&2 echo "$0: ERROR: You probably want to run:" >&2 echo "$0: NOTE: Replace account 'user' with your actual Linux user account name." >&2 echo "" >&2 @@ -146,7 +146,7 @@ console_users_check() { for user_with_console in $console_users $console_unrestricted_users ; do if [ "$user_with_console" = "root" ]; then ## root login is also restricted. - ## Therefore user "root" being member of group "console" is + ## Therefore account "root" being member of group "console" is ## considered insufficient. continue fi @@ -163,7 +163,7 @@ console_users_check() { return 0 fi - echo "$0: ERROR: No user is a member of group 'console'. Installation aborted." >&2 + echo "$0: ERROR: No account is a member of group 'console'. Installation aborted." >&2 echo "$0: ERROR: You probably want to run:" >&2 echo "" >&2 echo "sudo adduser user console" >&2 @@ -213,7 +213,7 @@ legacy() { user_to_be_created=user if ! id "$user_to_be_created" &>/dev/null ; then - true "INFO: user '$user_to_be_created' does not exist. Skipping adduser console and pam-auth-update." + true "INFO: Account '$user_to_be_created' does not exist. Skipping adding account '$user_to_be_created' to group 'console' and also skipping 'pam-auth-update --enable console-lockdown-security-misc'." return 0 fi