diff options
author | Erwin Lansing <erwin@FreeBSD.org> | 2006-05-05 12:27:34 +0000 |
---|---|---|
committer | Erwin Lansing <erwin@FreeBSD.org> | 2006-05-05 12:27:34 +0000 |
commit | ca057e2593f757c8d53c83349b6a4b86ffc336f1 (patch) | |
tree | f370eb96de416ff10f2877ee646c6122fb48b9fa /mail | |
parent | 9f20546cd58596e2cf5f0cbc7dcb3b740068c027 (diff) |
Fix warning.
PR: 96818
Submitted by: Artis Caune <Artis.Caune@latnet.lv>
Approved by: maintainer
Notes
Notes:
svn path=/head/; revision=161419
Diffstat (limited to 'mail')
-rw-r--r-- | mail/dspam/files/dspam.in | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/mail/dspam/files/dspam.in b/mail/dspam/files/dspam.in index e9256859a06c..4577ca4d3090 100644 --- a/mail/dspam/files/dspam.in +++ b/mail/dspam/files/dspam.in @@ -21,6 +21,13 @@ name="dspam" rcvar=${name}_enable +load_rc_config $name + +#defaults +: ${dspam_enable="NO"} +: ${dspam_debug="NO"} +: ${dspam_pidfile:-/var/run/dspam.pid} + command=%%PREFIX%%/bin/${name} if checkyesno dspam_debug then @@ -37,11 +44,4 @@ reload() kill -HUP `cat $pidfile` } -load_rc_config $name - -#defaults -: ${dspam_enable="NO"} -: ${dspam_debug="NO"} -: ${dspam_pidfile:-/var/run/dspam.pid} - run_rc_command "$1" |