home *** CD-ROM | disk | FTP | other *** search
- #ident "@(#)nwnetconfig 1.2"
- #ident "$Id: nwnetconfig,v 1.7 1995/05/05 16:32:28 vtag Exp $"
-
- if [ ! -f /etc/netconfig ]
- then
- echo >/etc/netconfig
- fi
- #
- # Remove NetWare stuff from netconfig file
- #
- sed -e "/^ipx[ ]/d" \
- -e "/^spx[ ]/d" \
- -e "/spx\/ipx/d" /etc/netconfig \
- || exit 2
-
-
- if [ "$1" = install ]
- then
- echo "# spx/ipx Network configuration entries"
- echo "spx tpi_cots_ord v netware spx /dev/nspx2 /usr/lib/novell_nwnet.so" || exit 2
- echo "ipx tpi_clts v netware ipx /dev/ipx /usr/lib/novell_nwnet.so" || exit 2
- fi
-
- exit 0
-