From afbb36df79b1b9b5fded41ce8eb3734c740ccdc8 Mon Sep 17 00:00:00 2001 From: Mark Andrews Date: Thu, 9 Sep 2004 01:27:56 +0000 Subject: [PATCH] 1717. [port] solaris: ifconfig.sh did not support Solaris 10. "ifconfig.sh down" didn't work for Solaris 9. --- CHANGES | 3 +++ bin/tests/system/ifconfig.sh | 6 +++--- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGES b/CHANGES index a305210a2f..a708298bda 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,6 @@ +1717. [port] solaris: ifconfig.sh did not support Solaris 10. + "ifconfig.sh down" didn't work for Solaris 9. + 1716. [doc] named.conf(5) was being installed in the wrong location. [RT# 12441] diff --git a/bin/tests/system/ifconfig.sh b/bin/tests/system/ifconfig.sh index 9e3d57a504..60aa2d6e7a 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.46 2004/03/18 02:57:54 marka Exp $ +# $Id: ifconfig.sh,v 1.46.18.1 2004/09/09 01:27:56 marka Exp $ # # Set up interface aliases for bind9 system tests. @@ -72,7 +72,7 @@ case "$1" in *-sun-solaris2.[6-7]) ifconfig lo0:$int 10.53.0.$ns netmask 0xffffffff up ;; - *-*-solaris2.[8-9]) + *-*-solaris2.[8-9]|*-*-solaris2.10) /sbin/ifconfig lo0:$int plumb /sbin/ifconfig lo0:$int 10.53.0.$ns up ;; @@ -132,7 +132,7 @@ case "$1" in *-sun-solaris2.[6-7]) ifconfig lo0:$int 10.53.0.$ns down ;; - *-*-solaris2.8) + *-*-solaris2.[8-9]|*-*-solaris2.10) ifconfig lo0:$int 10.53.0.$ns down ifconfig lo0:$int 10.53.0.$ns unplumb ;;