#! /bin/sh
#
# ether		Initialize ethernet card. This does not do anything
#		yet; eventually we use this script to call
#		/sbin/ifconfig to set up the IRQ, IO port etc.
#
# Version:	@(#) /etc/init.d/ether 1.01 26-Oct-1993
#
# Author:	Miquel van Smoorenburg, <miquels@drinkel.nl.mugnet.org>
#

  # Source function library.
  . /etc/init.d/functions

  # Get network configuration.

  # See how we were called.
  case "$1" in
    start)
	# Initialize ethernet card.
	echo "Initializing ethernet card"
	;;
    stop)
	# Shut down ethernet card (runlevel 1)
	echo "Shutting down ethernet card"
	# /sbin/ifconfig eth0 down
	;;
    *)
	# Oops someone made a typo.
	echo "Usage: /etc/init.d/ether {start|stop}"
	exit 1
  esac

  exit 0
