diff options
author | bsiegert <bsiegert> | 2015-12-28 13:48:30 +0000 |
---|---|---|
committer | bsiegert <bsiegert> | 2015-12-28 13:48:30 +0000 |
commit | b25f7f4f263e0689445259b866b102f334bfa303 (patch) | |
tree | 3fc1cd9e0c5bad93ec983c3e006a49d035a34ec3 /net | |
parent | f40d48b831b5aa4062d33de5491d94b760e09259 (diff) | |
download | pkgsrc-b25f7f4f263e0689445259b866b102f334bfa303.tar.gz |
Fix name of the flag variable in rc.d script. From ISIHARA Takanori in
PR pkg/50595.
Diffstat (limited to 'net')
-rw-r--r-- | net/unbound/Makefile | 3 | ||||
-rw-r--r-- | net/unbound/files/unbound.sh | 4 |
2 files changed, 4 insertions, 3 deletions
diff --git a/net/unbound/Makefile b/net/unbound/Makefile index 1571fc82559..90805e69b4d 100644 --- a/net/unbound/Makefile +++ b/net/unbound/Makefile @@ -1,6 +1,7 @@ -# $NetBSD: Makefile,v 1.40 2015/12/12 23:50:06 pettai Exp $ +# $NetBSD: Makefile,v 1.41 2015/12/28 13:48:30 bsiegert Exp $ DISTNAME= unbound-1.5.7 +PKGREVISION= 1 CATEGORIES= net MASTER_SITES= http://www.unbound.net/downloads/ diff --git a/net/unbound/files/unbound.sh b/net/unbound/files/unbound.sh index 8fa9ff24d38..03f11f4ab8a 100644 --- a/net/unbound/files/unbound.sh +++ b/net/unbound/files/unbound.sh @@ -1,6 +1,6 @@ #!@RCD_SCRIPTS_SHELL@ # -# $NetBSD: unbound.sh,v 1.4 2015/03/19 22:37:06 pettai Exp $ +# $NetBSD: unbound.sh,v 1.5 2015/12/28 13:48:30 bsiegert Exp $ # # PROVIDE: unbound # REQUIRE: DAEMON @@ -33,5 +33,5 @@ if [ -f /etc/rc.subr ]; then run_rc_command "$1" else echo -n " ${name}" - ${command} ${nsd_flags} + ${command} ${unbound_flags} fi |