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