Browse Source

log_info instead of warn

otherwise fails even if fixed because of exitcode from log_warn
pull/1275/head
UltimateByte 8 years ago
committed by GitHub
parent
commit
81848996ff
  1. 2
      lgsm/functions/check_permissions.sh

2
lgsm/functions/check_permissions.sh

@ -198,7 +198,7 @@ fn_sys_perm_error_process(){
# If any error was found
if [ "${sysdirpermerror}" == "1" ]||[ "${classdirpermerror}" == "1" ]||[ "${netdirpermerror}" == "1" ]; then
fn_print_warn_nl "Permission error(s) found:"
fn_script_log_warn "Permission error(s) found:"
fn_script_log_info "Permission error(s) found:"
sleep 1
if [ "${sysdirpermerror}" == "1" ]; then
echo " * /sys permissions are $(stat -c %a /sys) instead of expected 555"

Loading…
Cancel
Save