]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
1717. [port] solaris: ifconfig.sh did not support Solaris 10.
authorMark Andrews <marka@isc.org>
Thu, 9 Sep 2004 01:02:12 +0000 (01:02 +0000)
committerMark Andrews <marka@isc.org>
Thu, 9 Sep 2004 01:02:12 +0000 (01:02 +0000)
                        "ifconfig.sh down" didn't work for Solaris 9.

CHANGES
bin/tests/system/ifconfig.sh

diff --git a/CHANGES b/CHANGES
index 32c748704895cd7525936baf92577b13150fd603..0670f266e740cd3062146d3de5352b63b494888b 100644 (file)
--- 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]
 
index 9e3d57a504db2a957cce5af81947984ec40eec6d..13b775975e550232bded8292277f79dcbce5fa41 100644 (file)
@@ -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.47 2004/09/09 01:02:12 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
                        ;;