Fix #1864. Add quotes to avoid error in comparaison.

This commit is contained in:
Romain Dessort 2016-05-13 10:34:28 -04:00
parent 62b13e9e77
commit b7c41b9181

View file

@ -416,8 +416,8 @@ if [ -e /etc/debian_version ]; then
# Check if munin-node running and RRD files are up to date.
if [ "$IS_MUNINRUNNING" = 1 ]; then
pgrep munin-node >/dev/null || echo 'IS_MUNINRUNNING FAILED!'
[ $(stat -c "%Y" /var/lib/munin/*/*uptime-g.rrd |sort |tail -1) -lt $(date +"%s" -d "now - 10 minutes") ] && echo 'IS_MUNINRUNNING FAILED!'
grep -q "^graph_strategy cron" /etc/munin/munin.conf && ([ $(stat -c "%Y" /var/cache/munin/www/*/*/uptime-day.png |sort |tail -1) -lt $(date +"%s" -d "now - 10 minutes") ]) && echo 'IS_MUNINRUNNING FAILED!'
[ "$(stat -c "%Y" /var/lib/munin/*/*uptime-g.rrd |sort |tail -1)" -lt $(date +"%s" -d "now - 10 minutes") ] && echo 'IS_MUNINRUNNING FAILED!'
grep -q "^graph_strategy cron" /etc/munin/munin.conf && ([ "$(stat -c "%Y" /var/cache/munin/www/*/*/uptime-day.png |sort |tail -1)" -lt $(date +"%s" -d "now - 10 minutes") ]) && echo 'IS_MUNINRUNNING FAILED!'
fi
# Check if files in /home/backup/ are up-to-date