From f07445bdce8ecd3fd0371533fffefc2f8f5e8b02 Mon Sep 17 00:00:00 2001 From: Brian Zalewski Date: Wed, 25 Jan 2023 12:33:17 +0000 Subject: [PATCH] Update file provision.sh --- local/provision.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/local/provision.sh b/local/provision.sh index c2fa689d..a3feb36a 100644 --- a/local/provision.sh +++ b/local/provision.sh @@ -183,9 +183,9 @@ logg() { ### Prompt for sudo password and (optionally) enable passwordless sudo sudo -n true || SUDO_EXIT_CODE=$? if [ -n "$SUDO_EXIT_CODE" ]; then - logg info 'Your user will temporarily be granted passwordless sudo for the duration of the script' - logg info 'Press `CTRL+C` to bypass this prompt. You will either enter your password when needed or perform a non-privileged installation' - logg info 'Note: Non-privileged installations are not yet supported - pull requests welcome' + echo 'Your user will temporarily be granted passwordless sudo for the duration of the script' + echo 'Press `CTRL+C` to bypass this prompt. You will either enter your password when needed or perform a non-privileged installation' + echo 'Note: Non-privileged installations are not yet supported - pull requests welcome' echo "$(whoami) ALL=(ALL:ALL) NOPASSWD: ALL # TEMPORARY FOR INSTALL DOCTOR" | sudo tee -a /etc/sudoers fi