#!/bin/bash
#
# kudzu		This scripts runs the kudzu hardware probe.
#
# chkconfig: 345 05 95
# description: 	This runs the hardware probe, and optionally configures \
#		changed hardware.
# This is an interactive program, we need the current locale
### BEGIN INIT INFO
# Provides: kudzu
### END INIT INFO

# Source function library.
. /etc/init.d/functions

case "$1" in
 start)
	;;
 stop)
 	;;
 *)
 	echo $"Usage: $0 {start|stop}"
	exit 1
	;;
esac

exit $RETVAL
