Browse Source

Merge pull request #923 from dgibbs64/development

More reliable check for current user having sudo
pull/934/head
Daniel Gibbs 9 years ago
committed by GitHub
parent
commit
802f76c4fa
  1. 4
      lgsm/functions/check_deps.sh

4
lgsm/functions/check_deps.sh

@ -66,7 +66,7 @@ fn_found_missing_deps(){
fn_print_error "Checking dependencies: missing: ${red}${array_deps_missing[@]}${default}"
fn_script_log_error "Checking dependencies: missing: ${red}${array_deps_missing[@]}${default}"
sleep 1
sudo -n true > /dev/null 2>&1
sudo -v > /dev/null 2>&1
if [ $? -eq 0 ]; then
fn_print_infomation_nl "Automatically installing missing dependencies."
fn_script_log_info "Automatically installing missing dependencies."
@ -223,4 +223,4 @@ elif [ -n "$(command -v yum)" ]; then
fi
fn_deps_email
fn_check_loop
fi
fi

Loading…
Cancel
Save