#!/bin/sh
#
# netdevconf
# chkconfig: 2345 10 90

rcnetdevconf="/etc/rc.d/rc.netdevconf"

# See how we were called.
case "$1" in
	start)
		test -x "$rcnetdevconf" && (exec "$rcnetdevconf" || exit 1)
		;;
	*)
		# no action
		exit 0
		;;
esac
