~ubuntu-branches/ubuntu/breezy/clamav/breezy-backports

« back to all changes in this revision

Viewing changes to contrib/init/FreeBSD5.2/clamav

  • Committer: Bazaar Package Importer
  • Author(s): Stephen Gran
  • Date: 2005-09-19 09:05:59 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20050919090559-hikpqduq8yx5qxo2
Tags: 0.87-1
* New upstream version
  - Fixes CAN-2005-2920 and CAN-2005-2919 (closes: #328660)
* New logcheck line for clamav-daemon (closes: #323132)
* relibtoolize and apply kfreebsd patch (closes: #327707)
* Make sure init.d script starts freshclam up again after upgrade when run
  from if-up.d (closes: #328912)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
 
 
3
# Copyright (C) 2004 Nigel Horne <njh@bandsman.co.uk>
 
4
#
 
5
# This program is free software; you can redistribute it and/or modify
 
6
# it under the terms of the GNU General Public License as published by
 
7
# the Free Software Foundation; either version 2 of the License, or
 
8
# (at your option) any later version.
 
9
#
 
10
# This program is distributed in the hope that it will be useful,
 
11
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
13
# GNU General Public License for more details.
 
14
#
 
15
# You should have received a copy of the GNU General Public License
 
16
# along with this program; if not, write to the Free Software
 
17
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 
18
#
 
19
# Install into /usr/local/etc/rc.d as /usr/local/etc/rc.d/clamav.sh
 
20
#       chmod 755 /usr/local/etc/rc.d/clamav.sh
 
21
#
 
22
# Add lines such as this to /etc/rc.conf:
 
23
#       clamd_enable="YES"
 
24
#       clamav_milter_enable="YES"
 
25
#       clamav_milter_flags="--max-children=2 --dont-wait --timeout=0 -P local:/var/run/clamav/clamav.sock --pidfile=/var/run/clamav/clamav-milter.pid --quarantine-dir=/var/run/clamav/quarantine"
 
26
#
 
27
# Tested with FreeBSD 5.2 and 5.3
 
28
 
 
29
# PROVIDE: clamav
 
30
# REQUIRE: NETWORKING
 
31
# KEYWORD: FreeBSD
 
32
 
 
33
. /etc/rc.subr
 
34
 
 
35
name="clamd"
 
36
rcvar="`set_rcvar`"
 
37
command="/usr/local/sbin/${name}"
 
38
 
 
39
load_rc_config $name
 
40
run_rc_command "$1"
 
41
 
 
42
name="clamav_milter"
 
43
rcvar="`set_rcvar`"
 
44
command="/usr/local/sbin/clamav-milter"
 
45
 
 
46
load_rc_config $name
 
47
run_rc_command "$1"