#!/bin/sh
#
# Script to disable kudzu
#
# chkconfig: 345 99 15
# description: This script disables the kudzu service
# processname: kudzudel
# pidfile: /var/run/kudzudel.pid


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

# See how we were called.
case "$1" in
  start)
	/etc/rc.d/init.d/kudzu stop
	/sbin/chkconfig --del kudzu
	rm -f /etc/rc.d/init.d/kudzudel
	;;
    *)
	echo "Usage: $0 {start}"
	exit 1
esac

exit 0
