svn commit: r524666 - in head/dns/coredns: . files
Yuri Victorovich
yuri at FreeBSD.org
Fri Jan 31 02:49:46 UTC 2020
Author: yuri
Date: Fri Jan 31 02:49:46 2020
New Revision: 524666
URL: https://svnweb.freebsd.org/changeset/ports/524666
Log:
dns/coredns: Remove the "-cpu" parameter
Coredns won't start with "-cpu" as startup parameter in coredns.in because it has been obsoleted.
PR: 243737
Submitted by: freebsd at rainbowfab.org
Modified:
head/dns/coredns/Makefile
head/dns/coredns/files/coredns.in
Modified: head/dns/coredns/Makefile
==============================================================================
--- head/dns/coredns/Makefile Fri Jan 31 02:44:18 2020 (r524665)
+++ head/dns/coredns/Makefile Fri Jan 31 02:49:46 2020 (r524666)
@@ -3,7 +3,7 @@
PORTNAME= coredns
DISTVERSIONPREFIX= v
DISTVERSION= 1.6.2
-PORTREVISION= 2
+PORTREVISION= 3
CATEGORIES= dns
MAINTAINER= yuri at FreeBSD.org
Modified: head/dns/coredns/files/coredns.in
==============================================================================
--- head/dns/coredns/files/coredns.in Fri Jan 31 02:44:18 2020 (r524665)
+++ head/dns/coredns/files/coredns.in Fri Jan 31 02:49:46 2020 (r524666)
@@ -27,13 +27,12 @@ load_rc_config $name
: ${coredns_enable:="NO"}
: ${coredns_config:="%%PREFIX%%/etc/coredns/Corefile"}
-: ${coredns_cpu_cap:="100"}
: ${coredns_listen_port:="53"}
pidfile="/var/run/${name}.pid"
command="/usr/sbin/daemon"
procname="%%PREFIX%%/bin/${name}"
-coredns_args="-conf ${coredns_config} -cpu ${coredns_cpu_cap} -dns.port ${coredns_listen_port}"
+coredns_args="-conf ${coredns_config} -dns.port ${coredns_listen_port}"
command_args="-S -m 3 -s "info" -l "daemon" -p ${pidfile} /usr/bin/env ${procname} ${coredns_args}"
coredns_precmd()
More information about the svn-ports-all
mailing list