From 425a0eb51c08be197815a175c49d97e09f00f35d Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sun, 22 May 2016 22:05:24 +0100 Subject: [PATCH] altered from fail to info --- lgsm/functions/alert.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lgsm/functions/alert.sh b/lgsm/functions/alert.sh index 7bab460ad..640b04b36 100644 --- a/lgsm/functions/alert.sh +++ b/lgsm/functions/alert.sh @@ -43,7 +43,7 @@ fi if [ "${emailnotification}" == "on" ]||[ "${emailalert}" == "on" ]&&[ -n "${email}" ]; then alert_email.sh elif [ "${emailnotification}" != "on" ]||[ "${emailalert}" != "on" ]&&[ "${function_selfname}" == "command_test_alert.sh" ]; then - fn_print_fail_nl "Email alerts not enabled" + fn_print_info_nl "Email alerts not enabled" fn_scriptlog "Email alerts not enabled" elif [ -z "${email}" ]&&[ "${function_selfname}" == "command_test_alert.sh" ]; then fn_print_fail_nl "Email no set" @@ -53,7 +53,7 @@ fi if [ "${pushbulletalert}" == "on" ]&&[ -n "${pushbullettoken}" ]; then alert_pushbullet.sh elif [ "${pushbulletalert}" != "on" ]&&[ "${function_selfname}" == "command_test_alert.sh" ]; then - fn_print_fail_nl "Pushbullet alerts not enabled" + fn_print_info_nl "Pushbullet alerts not enabled" fn_scriptlog "Pushbullet alerts not enabled" elif [ -z "${pushbullettoken}" ]&&[ "${function_selfname}" == "command_test_alert.sh" ]; then fn_print_fail_nl "Pushbullet token not set"