Hi list, hi dan, can you rearrange the order variable definitions in active-response/firewall-drop.sh, so that the "LOCK*" variables are defined after "PWD" is defined:
from
LOCK="${PWD}/fw-drop"
LOCK_PID="${PWD}/fw-drop/pid"
LOCAL=`dirname $0`;
cd $LOCAL
cd ../
PWD=`pwd`
to
LOCAL=`dirname $0`;
cd $LOCAL
cd ../
PWD=`pwd`
LOCK="${PWD}/fw-drop"
LOCK_PID="${PWD}/fw-drop/pid"
Best regards,
Christian Göttsche
