From 1ae50b123db061bb6cbd5b670a3d5b0640dbf94e Mon Sep 17 00:00:00 2001 From: Yaroslav Halchenko Date: Sat, 6 Aug 2005 22:30:00 +0000 Subject: [PATCH] uff... pid file is now removed by fail2ban itself... so for it to don't choke - I removed rm -f from init script --- config/debian-initd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/debian-initd b/config/debian-initd index 2d9e1628..169bed40 100644 --- a/config/debian-initd +++ b/config/debian-initd @@ -37,7 +37,7 @@ case "$1" in stop) echo -n "Stopping $DESC: " start-stop-daemon --stop --quiet --pidfile /var/run/$NAME.pid - rm -f $PIDFILE + # rm -f $PIDFILE # now is removed by fail2ban itself echo "$NAME." ;; restart|force-reload)