#!/bin/sh
#
# Set MAC address

exit 0

n=0
if [ $IFACE = eth1 ]; then
	n=1
fi

# Don't try to set on lo
echo $IFACE|grep eth
if [ $? = 0 ]; then
	ifconfig $IFACE hw ether c6:b5:46:09:12:2$n
fi
