From 0d7da887ad4d80e712bd488bd6906bd8fe4710fb Mon Sep 17 00:00:00 2001 From: Christian Schmidt Date: Fri, 7 May 2010 18:13:07 +0200 Subject: [PATCH] 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. --- src/initscripts/init.d/snort | 1 + 1 file changed, 1 insertion(+) diff --git a/src/initscripts/init.d/snort b/src/initscripts/init.d/snort index a2db0de0fb..981362a030 100644 --- a/src/initscripts/init.d/snort +++ b/src/initscripts/init.d/snort @@ -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 -- 2.39.2