literal name_enable wherever possible, and ${name}_enable when it's not, to prepare for the demise of set_rcvar(). In cases where I had to hand-edit unusual instances also modify formatting slightly to be more uniform (and in some cases, correct). This includes adding some $FreeBSD$ tags, and most importantly moving rcvar= to right after name= so it's clear that one is derived from the other.
35 lines
651 B
Bash
35 lines
651 B
Bash
#!/bin/sh
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
# PROVIDE: freshclam
|
|
# REQUIRE: LOGIN clamd
|
|
# BEFORE: mail
|
|
# KEYWORD: shutdown
|
|
|
|
#
|
|
# Add the following lines to /etc/rc.conf to enable the freshclam daemon:
|
|
#
|
|
# clamav_freshclam_enable="YES"
|
|
# clamav_freshclam_flags="<set as needed>"
|
|
#
|
|
# See freshclam(1) for flags
|
|
#
|
|
|
|
. /etc/rc.subr
|
|
|
|
name=clamav_freshclam
|
|
rcvar=clamav_freshclam_enable
|
|
|
|
command=%%PREFIX%%/bin/freshclam
|
|
pidfile=%%RUNDIR%%/freshclam.pid
|
|
command_args="--daemon -p ${pidfile}"
|
|
required_dirs=%%DBDIR%%
|
|
required_files=%%PREFIX%%/etc/freshclam.conf
|
|
|
|
# read settings, set default values
|
|
load_rc_config "$name"
|
|
: ${clamav_freshclam_enable="NO"}
|
|
|
|
run_rc_command "$1"
|