1717. [port] solaris: ifconfig.sh did not support Solaris 10.

"ifconfig.sh down" didn't work for Solaris 9.
This commit is contained in:
Mark Andrews
2004-09-09 01:31:38 +00:00
parent 59c9199491
commit 859b6e0a16
2 changed files with 6 additions and 3 deletions

View File

@@ -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]

View 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.35.2.8.2.5 2004/03/16 19:23:29 explorer Exp $
# $Id: ifconfig.sh,v 1.35.2.8.2.6 2004/09/09 01:31:38 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
;;