#!/bin/sh
# bring down network
if [ -x /sbin/ifconfig ]; then
   if /sbin/ifconfig | grep -q eth0 ; then
      /sbin/ifconfig eth0 down
   fi
fi



