From d9936b218d9d0fd7c6a1a418e5b91b356190ea12 Mon Sep 17 00:00:00 2001 From: Mark Andrews Date: Mon, 3 Mar 2008 01:20:03 +0000 Subject: [PATCH] 2340. [port] openbsd: interface configuration. [RT #17700] --- CHANGES | 2 ++ bin/tests/system/ifconfig.sh | 8 +++++++- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGES b/CHANGES index 437cf54619..805d6c3d96 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,5 @@ +2340. [port] openbsd: interface configuration. [RT #17700] + 2339. [port] tru64: support for libbind. [RT #17589] 2338. [bug] check_ds() could be called with a non DS rdataset. diff --git a/bin/tests/system/ifconfig.sh b/bin/tests/system/ifconfig.sh index 2e04101516..3f82a834eb 100644 --- a/bin/tests/system/ifconfig.sh +++ b/bin/tests/system/ifconfig.sh @@ -15,7 +15,7 @@ # OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR # PERFORMANCE OF THIS SOFTWARE. -# $Id: ifconfig.sh,v 1.51 2007/06/19 23:47:00 tbox Exp $ +# $Id: ifconfig.sh,v 1.52 2008/03/03 01:20:03 marka Exp $ # # Set up interface aliases for bind9 system tests. @@ -85,6 +85,9 @@ case "$1" in *-unknown-netbsd*) ifconfig lo0 10.53.0.$ns alias netmask 255.255.255.0 ;; + *-unknown-openbsd*) + ifconfig lo0 10.53.0.$ns alias netmask 255.255.255.0 + ;; *-*-bsdi[3-5].*) ifconfig lo0 add 10.53.0.$ns netmask 255.255.255.0 ;; @@ -145,6 +148,9 @@ case "$1" in *-unknown-netbsd*) ifconfig lo0 10.53.0.$ns delete ;; + *-unknown-openbsd*) + ifconfig lo0 10.53.0.$ns delete + ;; *-*-bsdi[3-5].*) ifconfig lo0 remove 10.53.0.$ns ;;