#!/bin/sh
#this script will shut down tleds
. /etc/rc.d/init.d/functions

if [ -f /var/lock/subsys/tleds ]; then
	msg_stopping tleds
	killproc tleds
	rm -f /var/lock/subsys/tleds
else
	msg_Not_Running tleds
exit 1
fi
