diff --git a/dns/bind/src/etc/inc/plugins.inc.d/bind.inc b/dns/bind/src/etc/inc/plugins.inc.d/bind.inc index a435fac63..8e6a1d4d8 100644 --- a/dns/bind/src/etc/inc/plugins.inc.d/bind.inc +++ b/dns/bind/src/etc/inc/plugins.inc.d/bind.inc @@ -63,7 +63,7 @@ function bind_services() $services[] = [ /* the port may still be something other than 53, but it's safe to register a conflict for it */ - 'ports' => ($localhost4 && $localhost6 ? [(string)$model->port] : []), + 'dns_ports' => ($localhost4 && $localhost6 ? [(string)$model->port] : []), 'description' => gettext('BIND Daemon'), 'configd' => [ 'restart' => ['bind restart'], diff --git a/dns/dnscrypt-proxy/src/etc/inc/plugins.inc.d/dnscryptproxy.inc b/dns/dnscrypt-proxy/src/etc/inc/plugins.inc.d/dnscryptproxy.inc index e022baec1..2bb3c7192 100644 --- a/dns/dnscrypt-proxy/src/etc/inc/plugins.inc.d/dnscryptproxy.inc +++ b/dns/dnscrypt-proxy/src/etc/inc/plugins.inc.d/dnscryptproxy.inc @@ -68,7 +68,7 @@ function dnscryptproxy_services() $services[] = [ /* the port may still be something other than 53, but it's safe to register a conflict for it */ - 'ports' => array_keys(array_intersect_key($localhost4, $localhost6)), + 'dns_ports' => array_keys(array_intersect_key($localhost4, $localhost6)), 'description' => gettext('DNSCrypt-Proxy'), 'configd' => [ 'restart' => ['dnscryptproxy restart'],