#!/bin/sh # # hdw - linux /etc/init.d/network (copied from ROCK Linux) # # low level network stuff # . /etc/conf/network case "$1" in start) start_net ;; stop) stop_net ;; restart) $0 stop ; $0 start ;; *) echo "Usage: $0 { start | restart | stop }" ; exit 1 ;; esac exit 0