diff options
Diffstat (limited to 'deploy/adapters/ansible/roles/odl_cluster/templates/opendaylight')
-rwxr-xr-x | deploy/adapters/ansible/roles/odl_cluster/templates/opendaylight | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/deploy/adapters/ansible/roles/odl_cluster/templates/opendaylight b/deploy/adapters/ansible/roles/odl_cluster/templates/opendaylight deleted file mode 100755 index 90a267d6..00000000 --- a/deploy/adapters/ansible/roles/odl_cluster/templates/opendaylight +++ /dev/null @@ -1,31 +0,0 @@ -#!/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 |