blob: 90a267d6b993107ce02567972bee2931c41ab124 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
#!/bin/bash
# chkconfig: 345 98 2
# description: ODL controller
# OpenDaylight service controller script
export JAVA_HOME=/usr/lib/jvm/java-8-oracle
USER=odl
cd /opt/opendaylight-0.3.0
case "$1" in
start)
/bin/su -m $USER -s /bin/bash -c ./bin/start
;;
stop)
/bin/su -m $USER -s /bin/bash -c ./bin/stop
;;
status)
PID=`ps aux | grep java | grep karaf | awk '{print $2}'`
if test -z $PID
then
echo "ODL is down..."
exit 1
else
echo "ODL is running... PID $PID"
exit 0
fi
;;
*)
echo "Usage: $0 {start|stop|status}"
exit 1
;;
esac
|