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

Merge pull request #612 from googley/master

fix old wrong variable
This commit is contained in:
Stig Sandbeck Mathisen 2015-05-05 13:41:41 +02:00
commit d32dbf230a

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