mirror of
https://github.com/isc-projects/bind9.git
synced 2026-04-28 01:28:05 -04:00
1717. [port] solaris: ifconfig.sh did not support Solaris 10.
"ifconfig.sh down" didn't work for Solaris 9.
This commit is contained in:
parent
c66aadb4ca
commit
afbb36df79
2 changed files with 6 additions and 3 deletions
3
CHANGES
3
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]
|
||||
|
||||
|
|
|
|||
|
|
@ -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
|
||||
;;
|
||||
|
|
|
|||
Loading…
Reference in a new issue