Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/external/bsd/openresolv/dist openresolv: Update to 3.13.2 wi...



details:   https://anonhg.NetBSD.org/src/rev/b7ae6464da34
branches:  trunk
changeset: 376655:b7ae6464da34
user:      roy <roy%NetBSD.org@localhost>
date:      Tue Jun 27 17:04:19 2023 +0000

description:
openresolv: Update to 3.13.2 with the following changes:

* Do not return error from -i when no interfaces are configured
* unbound can now add generic options to forward zones

diffstat:

 external/bsd/openresolv/dist/README.md        |  4 ++--
 external/bsd/openresolv/dist/avahi-daemon.in  |  2 +-
 external/bsd/openresolv/dist/mdnsd.in         |  2 +-
 external/bsd/openresolv/dist/pdns_recursor.in |  4 ++--
 4 files changed, 6 insertions(+), 6 deletions(-)

diffs (60 lines):

diff -r 9f459f721ff4 -r b7ae6464da34 external/bsd/openresolv/dist/README.md
--- a/external/bsd/openresolv/dist/README.md    Tue Jun 27 09:58:50 2023 +0000
+++ b/external/bsd/openresolv/dist/README.md    Tue Jun 27 17:04:19 2023 +0000
@@ -37,7 +37,7 @@ Here's some reasons:
 
 The last point is quite important, especially when running VPN systems.
 Take the following resolv.conf files which have been generated by a
-[DHCP client](../dhcpcd) and sent to resolvconf:
+[DHCP client](https://github.com/NetworkConfiguration/dhcpcd) and sent to resolvconf:
 
 ```
 # resolv.conf from bge0
@@ -60,7 +60,7 @@ openresolv ships with helpers for:
   *  [PowerDNS Recursor](http://wiki.powerdns.com/trac)
 
 See the
-[configuration section](https://roy.marples.name/projects/openresolv/config)
+[configuration section](https://roy.marples.name/projects/openresolv/configuration)
 for more details.
 
 If openresolv updates `/etc/resolv.conf` it can notify the following of this:
diff -r 9f459f721ff4 -r b7ae6464da34 external/bsd/openresolv/dist/avahi-daemon.in
--- a/external/bsd/openresolv/dist/avahi-daemon.in      Tue Jun 27 09:58:50 2023 +0000
+++ b/external/bsd/openresolv/dist/avahi-daemon.in      Tue Jun 27 17:04:19 2023 +0000
@@ -1,5 +1,5 @@
 #!/bin/sh
-# Copyright (c) 2007-2020 Roy Marples
+# Copyright (c) 2007-2023 Roy Marples
 # All rights reserved
 
 # avahi-daemon notifier for resolvconf libc subscriber
diff -r 9f459f721ff4 -r b7ae6464da34 external/bsd/openresolv/dist/mdnsd.in
--- a/external/bsd/openresolv/dist/mdnsd.in     Tue Jun 27 09:58:50 2023 +0000
+++ b/external/bsd/openresolv/dist/mdnsd.in     Tue Jun 27 17:04:19 2023 +0000
@@ -1,5 +1,5 @@
 #!/bin/sh
-# Copyright (c) 2007-2020 Roy Marples
+# Copyright (c) 2007-2023 Roy Marples
 # All rights reserved
 
 # mdnsd notifier for resolvconf libc subscriber
diff -r 9f459f721ff4 -r b7ae6464da34 external/bsd/openresolv/dist/pdns_recursor.in
--- a/external/bsd/openresolv/dist/pdns_recursor.in     Tue Jun 27 09:58:50 2023 +0000
+++ b/external/bsd/openresolv/dist/pdns_recursor.in     Tue Jun 27 17:04:19 2023 +0000
@@ -1,5 +1,5 @@
 #!/bin/sh
-# Copyright (c) 2009-2020 Roy Marples
+# Copyright (c) 2009-2023 Roy Marples
 # All rights reserved
 
 # PowerDNS Recursor subscriber for resolvconf
@@ -54,7 +54,7 @@ for d in $DOMAINS; do
 done
 
 # Try to ensure that config dirs exist
-if type config_mkdirs >/dev/null 2>&1; then
+if command -v config_mkdirs >/dev/null 2>&1; then
        config_mkdirs "$pdnsd_zones"
 else
        @SBINDIR@/resolvconf -D "$pdnsd_zones"



Home | Main Index | Thread Index | Old Index