summaryrefslogtreecommitdiff
path: root/security/drweb/files/patch-ac
diff options
context:
space:
mode:
Diffstat (limited to 'security/drweb/files/patch-ac')
-rw-r--r--security/drweb/files/patch-ac29
1 files changed, 0 insertions, 29 deletions
diff --git a/security/drweb/files/patch-ac b/security/drweb/files/patch-ac
deleted file mode 100644
index a03fd6c5c98c..000000000000
--- a/security/drweb/files/patch-ac
+++ /dev/null
@@ -1,29 +0,0 @@
---- usr/local/etc/rc.d/00.drwebd.sh.orig Wed Nov 24 13:50:18 2004
-+++ usr/local/etc/rc.d/00.drwebd.sh Wed Nov 24 13:51:57 2004
-@@ -7,21 +7,21 @@
- case "$1" in
- stop)
- echo -n "Shutting down Dr. Web daemon..."
-- kill `cat /var/drweb/run/drwebd.pid | head -1`
-+ kill `cat %INSTALL%/run/drwebd.pid | head -1`
- ;;
- reload)
- echo -n "Reloading Dr. Web daemon..."
-- kill -HUP `cat /var/drweb/run/drwebd.pid | head -1`
-+ kill -HUP `cat %INSTALL%/run/drwebd.pid | head -1`
- ;;
- restart)
- echo -n "Restarting Dr. Web daemon..."
-- kill `cat /var/drweb/run/drwebd.pid | head -1`
-+ kill `cat %INSTALL%/run/drwebd.pid | head -1`
- sleep 1
-- /usr/local/drweb/drwebd
-+ %INSTALL%/drwebd -ini=%INSTALL%/drweb32.ini
- ;;
- start)
- echo -n "Starting Dr. Web daemon..."
-- /usr/local/drweb/drwebd
-+ %INSTALL%/drwebd -ini=%INSTALL%/drweb32.ini
- ;;
- *)
- echo $0: 'start|stop|restart|reload'