CRM & SupportDesk
CRM & SupportDesk
Hi.
I want to start both CRM and SupportDesk at the same time.
I've tried to use the following script in my rc.local file:
" #!/bin/bash
start (){
cd /opt/AdventNet/ME/ServiceDesk/bin
/opt/AdventNet/ME/ServiceDesk/bin/run.sh &
}
stop (){
cd /opt/AdventNet/ME/ServiceDesk/bin
/opt/AdventNet/ME/ServiceDesk/bin/shutdown.sh -S
}
case $1 in
"start")
start
exit 1
;;
"stop")
stop2
exit 1
;;
"restart")
stop
start
exit 1
;;
*)
echo "Incorrect Syntax"
echo "Please use "start" "stop" or "restart""
exit 1
;;
esac
# SupportCenter - end. "
and following this script is the same one but with the path for my CRM folder.. well, it doesn't work. (i'm using CentOS 4.3)
Is there a way to start both of them with no user intervention? if there is, please post a script here or mail me.
TNX!