#!/bin/sh
# Avaya scripts cleanup script
# chkconfig: 345 60 27
# description: cleans up locks used to start / stop ipoffice & other apps

cd /opt/Avaya/scripts

start () {
    ./cleanup.sh
}

stop () {
    ./cleanup.sh
}

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

