Fixed Snort init script, Added sleep before chmod.

The Webinterface doesnt show the snort status anymore because
the pid file had permission of 600, the chmod seems to happen
to fast and permissions were not changed to 644.
This commit is contained in:
Christian Schmidt
2010-05-07 18:13:07 +02:00
parent cbaab6dcb9
commit 0d7da887ad

View File

@@ -66,6 +66,7 @@ case "$1" in
boot_mesg "Starting Intrusion Detection System on $DEVICE..."
/usr/sbin/snort -c /etc/snort/snort.conf -i $DEVICE -D -l /var/log/snort --create-pidfile --nolock-pidfile --pid-path /var/run/
evaluate_retval
sleep 1
chmod 644 /var/run/snort_$DEVICE.pid
done