#!/bin/sh
result=`grep up /sys/class/net/eth0/operstate`
if [ "$result" = "up" ]
then
	exit 1
fi
exit 0
