home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1999 March B / SCO_CASTOR4RRT.iso / nwnet / root / usr / lib / netcfg / list / ipx / ipx~
Text File  |  1998-08-19  |  1KB  |  56 lines

  1. #!/bin/sh
  2. #    
  3. #   Copyright (C) 1997, The Santa Cruz Operation, Inc.
  4. #   All Rights Reserved.
  5. #   The information in this file is provided for the exclusive use of
  6. #   the licensees of The Santa Cruz Operation, Inc.  Such users have the
  7. #   right to use, modify, and incorporate this code into other products  
  8. #   for purposes authorized by the license agreement provided they include
  9. #   this notice and the associated copyright notice with any such product.
  10. #   The information in this file is provided "AS IS" without warranty.
  11. #
  12. #ident "@(#)ipx    1.2"
  13. #
  14. : ${OK=0} ${FAIL=1} ${RELINK=2}
  15. PATH=/bin:/usr/bin:/etc:/etc/conf/bin:"$PATH"
  16.  
  17. IPX_NETCONFIGDIR=/usr/lib/netcfg/bin
  18. NCFGPROMPTER=/usr/sbin/ncfgprompter
  19. IPXCHK=$IPX_NETCONFIGDIR/ipx.chk
  20.  
  21. LOWER_PRD=$1
  22. LOWER_IF=$2
  23. UPPER_PRD=$3
  24. UPPER_IF=$4
  25. CONFIGURE=$5
  26.  
  27. . $IPX_NETCONFIGDIR/ipx.sh
  28.  
  29. #############################################################
  30. # main
  31. #
  32.  
  33. $IPXCHK
  34.  
  35. # Determine the media type(s) (ethernet, token-ring, etc.) and the interface 
  36. # type (DLPI+MDI or LLI) supported by the adapter.  These variables are
  37. # set by netconfig.
  38. #
  39. _adapter=/dev/$LOWER_PRD
  40.  
  41. get_adapter_info
  42.  
  43. # Ignore the exit code from the prompter, since it is OK for the user to
  44. # exit out using either the ok or cancel buttons since we know no changes
  45. # can be made.
  46.  
  47. $NCFGPROMPTER readonly ${IPX_NETCONFIGDIR}/ipxBE \
  48.     LIST         \
  49.     $_adapter    \
  50.     "$_media_types"    \
  51.     $_interface    \
  52.     > /dev/null
  53.  
  54. exit $OK
  55.