2
0
mirror of https://github.com/munin-monitoring/contrib.git synced 2018-11-08 00:59:34 +01:00

fix old wrong variable

This commit is contained in:
Élie 2015-04-29 11:28:38 +02:00
parent 60fe9ba9ea
commit 2848fee19d

View File

@ -74,11 +74,11 @@ echo -n
DISCONNECTS=$(egrep -c '[dovecot]?.*Disconnected' $LOGFILE)
CONNECTS=$(egrep -c '[dovecot]?.*Login' $LOGFILE)
VALUE=$($EXPR_BIN $CONNECTS - $DISCONNECTS)
if [ -z "$DISCON" ] || [ "$DISCON" -lt 0 ]; then
DISCON=0
if [ -z "$VALUE" ] || [ "$VALUE" -lt 0 ]; then
VALUE=0
fi
echo -en "connected.value "
echo $DISCON
echo $VALUE
echo -n
######################
# TLS Logins