"test sys_refresh_ref_cron.sh"

This commit is contained in:
Doug Le Tough 2017-07-24 13:41:08 +02:00
parent c46a461ee1
commit 87059a0a59
1 changed files with 12 additions and 4 deletions

View File

@ -150,12 +150,20 @@ function get_cronjobs
do
COLOR="blanc"
MESSAGE=" - ${CRONJOB}"
if [[ "${CRONJOB}" =~ *run-parts* ]]; then
case ${CRONJOB} in
"*run-parts*")
COLOR="cyan"
fi
if [[ "${CRONJOB}" =~ *no crontab for* ]]; then
;;
"*no crontab for*")
COLOR="bleu"
fi
;;
esac
#~ if [[ "${CRONJOB}" =~ *run-parts* ]]; then
#~ COLOR="cyan"
#~ fi
#~ if [[ "${CRONJOB}" =~ *no crontab for* ]]; then
#~ COLOR="bleu"
#~ fi
fct_message ${MESSAGE} -color ${COLOR}
done
IFS=${IFS_BAK}