#!/bin/sh

# Copyright 2005 Robert Forsman <zv5000@thoth.purplefrog.com>
# GNU General Public License V2

if ifconfig eth0 | grep UP > /dev/null; then
    sudo /etc/init.d/net.eth0 stop
else
    sudo /etc/init.d/net.eth0 start
fi