Put ${command_args} BEFORE ${spamass_milter_flags} on command line in rc.d

script, so that ${spamass_milter_flags} can contain "-- [spamc flags]"
per the manpage.
This commit is contained in:
tv 2005-08-23 13:40:02 +00:00
parent 2d73d44a3b
commit 6eff28a5ce
2 changed files with 4 additions and 4 deletions

View file

@ -1,8 +1,8 @@
# $NetBSD: Makefile,v 1.17 2005/04/11 21:46:27 tv Exp $
# $NetBSD: Makefile,v 1.18 2005/08/23 13:40:02 tv Exp $
#
DISTNAME= spamass-milter-0.3.0
PKGREVISION= 1
PKGREVISION= 2
CATEGORIES= mail
MASTER_SITES= http://savannah.nongnu.org/download/spamass-milt/

View file

@ -1,6 +1,6 @@
#!@RCD_SCRIPTS_SHELL@
#
# $NetBSD: spamass-milter.sh,v 1.1 2003/09/11 18:22:41 jmmv Exp $
# $NetBSD: spamass-milter.sh,v 1.2 2005/08/23 13:40:02 tv Exp $
#
# PROVIDE: spamass-milter
@ -21,5 +21,5 @@ if [ -f /etc/rc.subr ]; then
run_rc_command "$1"
else
@ECHO@ -n " ${name}"
${command} ${spamass_milter_flags} ${command_args}
${command} ${command_args} ${spamass_milter_flags}
fi