1342. [port] darwin: ifconfig.sh now supports darwin.

This commit is contained in:
Mark Andrews 2002-07-06 21:54:44 +00:00
parent 268c7ef56b
commit 5af560664d
2 changed files with 9 additions and 1 deletions

View file

@ -1,3 +1,5 @@
1342. [port] darwin: ifconfig.sh now supports darwin.
1341. [port] linux: Slackware 4.0 needs <asm/unistd.h>. [RT #3205]
1342. [bug] dnssec-signzone usage message was misleading.

View file

@ -15,7 +15,7 @@
# NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION
# WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
# $Id: ifconfig.sh,v 1.39 2002/05/13 04:18:07 marka Exp $
# $Id: ifconfig.sh,v 1.40 2002/07/06 21:54:44 marka Exp $
#
# Set up interface aliases for bind9 system tests.
@ -95,6 +95,9 @@ case "$1" in
*-sco3.2v*)
ifconfig lo0 alias 10.53.0.$ns
;;
*-darwin5*)
ifconfig lo0 alias 10.53.0.$ns
;;
*)
echo "Don't know how to set up interface. Giving up."
exit 1
@ -146,6 +149,9 @@ case "$1" in
*-sco3.2v*)
ifconfig lo0 -alias 10.53.0.$ns
;;
*darwin5*)
ifconfig lo0 -alias 10.53.0.$ns
;;
*)
echo "Don't know how to destroy interface. Giving up."
exit 1