#!/bin/sh
# $Revision$ $Author$ $Date$
# ifedit - easily change the network settings
# options:
# ifedit 

if [ -e /usr/bin/editor ]; then
   USING_EDITOR="/usr/bin/editor"
else
   USING_EDITOR="/bin/ae"
fi

# Now actually and launch the editor!

${USING_EDITOR} /etc/network/interfaces
