#!/bin/sh
#
# lsb example init script
#
# Comments to support LSB init script conventions
### BEGIN INIT INFO
# Provides: lsb-initA
# Required-Start: lsb-initB
# Default-Start:  2 3 4 5
# Default-Stop: 0 1 6
# Short-Description: lsb-initA script
# Description: Test
### END INIT INFO

. /lib/lsb/init-functions

PATH=`getconf PATH`
export PATH

case "$1mode" in
    'start')
	log_success_msg "STARTED" 
	;;

    'stop')
	log_success_msg "STOPPED" 
	;;

    'status') 
	log_success_msg "STATUS" 
	;; 

    'reload') 
	 $0 stop 
	 $0 start 
	 ;; 

    'restart')
	$0 stop
	$0 start
	;;

    *)
	log_failure_msg "Called with unknown argument $0"
	exit 1
	;;
esac


