updated example script to account for STATS_BYTES variables.

This commit is contained in:
Nikos Mavrogiannopoulos
2014-04-28 17:40:00 +02:00
parent b8bfbde41d
commit 4598a1b53b

View File

@@ -8,7 +8,7 @@ if [ "$REASON" = "connect" ];then
else
iptables -D INPUT -i $DEVICE -j ACCEPT
echo "User '$USERNAME' from '$IP_REAL' disconnected."
echo "User '$USERNAME' from '$IP_REAL' disconnected (in: $STATS_BYTES_IN, out: $STATS_BYTES_OUT)."
fi
exit 0