#!/bin/sh
#
# local	Invoke custom scripts at startup
# chkconfig:	2345 99 01
#
# description:	This script will be executed *after* all the other init \
# scripts. You can put your own initialization stuff in here if you don't \
# want to do the full Sys V style init stuff.
#
# $Id: local 7773 2006-09-17 16:27:14Z glen $

# See how we were called.
case "$1" in
  start)
	  touch /var/lock/subsys/local
	  . /etc/rc.d/rc.local
	;;
  stop)
	  rm -f /var/lock/subsys/local
	;;
  *)
	echo "Usage: $0 {start|stop}"
	exit 3
esac

exit 0

# This must be last line !
# vi:syntax=sh
