diff options
author | Edwin Groothuis <edwin@FreeBSD.org> | 2003-09-04 01:09:23 +0000 |
---|---|---|
committer | Edwin Groothuis <edwin@FreeBSD.org> | 2003-09-04 01:09:23 +0000 |
commit | 6fabfb19923d5cf06e63f2a3ff4ec3007dcc31d3 (patch) | |
tree | d7f4f4be41469eb8a7e447824be9052102dfe287 /www/dansguardian/files/patch-autoconf::bsdv.in | |
parent | graphics/xmms-nebulus port update (diff) |
port update: www/dansguardian to version 2.6.1-3
The latest stable release of DansGuardian is 2.6.1-3. This
release fixes a few security glitches in earlier releases,
and adds several new features to improve filtering, throughput,
and resource usage. A recommended update for all DG users.
PR: ports/54199
Submitted by: Freddie Cash <fcash@sd73.bc.ca>
Notes
Notes:
svn path=/head/; revision=88469
Diffstat (limited to 'www/dansguardian/files/patch-autoconf::bsdv.in')
-rw-r--r-- | www/dansguardian/files/patch-autoconf::bsdv.in | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/www/dansguardian/files/patch-autoconf::bsdv.in b/www/dansguardian/files/patch-autoconf::bsdv.in new file mode 100644 index 000000000000..d24178a4100e --- /dev/null +++ b/www/dansguardian/files/patch-autoconf::bsdv.in @@ -0,0 +1,37 @@ +--- autoconf/bsdv.in.orig Mon Jul 7 12:04:33 2003 ++++ autoconf/bsdv.in Mon Jul 7 12:07:11 2003 +@@ -1,16 +1,26 @@ + #!/bin/sh + # +-# BSD startup script for dansguardian +-# partly based on httpd startup script ++# BSD startup script for dansguardian. + # +-# description: A web content filtering plugin for web \ +-# proxies, developed to filter using lists of \ +-# banned phrases, MIME types, filename \ ++# description: A web content filtering plugin for web ++# proxies, developed to filter using lists of ++# banned phrases, MIME types, filename + # extensions and PICS labling. + # processname: dansguardian + +- +-# See how we were called. +- + case "$1" in + start) ++ [ -x /usr/local/sbin/dansguardian ] && /usr/local/sbin/dansguardian ++ echo -n " dansguardian" ++ ;; ++stop) ++ /usr/local/sbin/dansguardian -q ++ rm -f /tmp/.dguardianipc ++ echo -n " dansguardian" ++ ;; ++*) ++ echo "Usage: $0 {start|stop|restart}" ++ ;; ++esac ++exit 0 ++ |