From 86f0be60bf3a608d730ed98c136dfc67b81a564c Mon Sep 17 00:00:00 2001 From: Brian Zalewski Date: Wed, 25 Jan 2023 12:34:07 +0000 Subject: [PATCH] Update file executable_provision.tmpl --- home/dot_local/bin/executable_provision.tmpl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/home/dot_local/bin/executable_provision.tmpl b/home/dot_local/bin/executable_provision.tmpl index 36d6f0b4..9567a3b7 100644 --- a/home/dot_local/bin/executable_provision.tmpl +++ b/home/dot_local/bin/executable_provision.tmpl @@ -13,9 +13,9 @@ ### 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 to either enter your password when needed or perform a non-privileged installation' - logg info 'Note: Non-privileged installations are not yet supported' + echo 'Your user will temporarily be granted passwordless sudo for the duration of the script' + echo 'Press `CTRL+C` to bypass this prompt to either enter your password when needed or perform a non-privileged installation' + echo 'Note: Non-privileged installations are not yet supported' echo "$(whoami) ALL=(ALL:ALL) NOPASSWD: ALL # TEMPORARY FOR INSTALL DOCTOR" | sudo tee -a /etc/sudoers fi