summaryrefslogtreecommitdiffstats
path: root/fuel/build/f_odl_docker/dockerfile/container_scripts/start_odl_docker.sh
diff options
context:
space:
mode:
authorDaniel Smith <daniel.smith@ericsson.com>2015-08-27 11:31:54 +0000
committerGerrit Code Review <gerrit@172.30.200.206>2015-08-27 11:31:54 +0000
commitb9c506d16deb32d1d1a391962e961e5f84937143 (patch)
tree29a3782f5515ab52e6ae664a260a40d3a9356d4d /fuel/build/f_odl_docker/dockerfile/container_scripts/start_odl_docker.sh
parente81470c59a70eab98426917702d592c4fc7f97e0 (diff)
parentdd8ca32f84388f1bef6100459161855eee0509e9 (diff)
Merge "Removed ODL_DOCKER implementation (DEPRECATED FOR PLUGIN ARCH IN FUEL 6.1/SR1 OF ARNO)"
Diffstat (limited to 'fuel/build/f_odl_docker/dockerfile/container_scripts/start_odl_docker.sh')
-rwxr-xr-xfuel/build/f_odl_docker/dockerfile/container_scripts/start_odl_docker.sh38
1 files changed, 0 insertions, 38 deletions
diff --git a/fuel/build/f_odl_docker/dockerfile/container_scripts/start_odl_docker.sh b/fuel/build/f_odl_docker/dockerfile/container_scripts/start_odl_docker.sh
deleted file mode 100755
index 1c72dda..0000000
--- a/fuel/build/f_odl_docker/dockerfile/container_scripts/start_odl_docker.sh
+++ /dev/null
@@ -1,38 +0,0 @@
-#!/bin/bash
-# Ericsson Research Canada
-#
-# Author: Daniel Smith <daniel.smith@ericsson.com>
-#
-# Start up script for calling karaf / ODL inside a docker container.
-#
-# This script will also call a couple expect scripts to load the feature set that we want
-
-
-#ENV
-export JAVA_HOME=/usr/lib/jvm/java-7-openjdk-amd64
-
-#MAIN
-echo "Starting up the da Sheilds..."
-/opt/odl/distribution-karaf-0.2.3-Helium-SR3/bin/karaf server &
-echo "Sleeping 5 bad hack"
-sleep 10
-echo "should see stuff listening now"
-netstat -na
-echo " should see proess running for karaf"
-ps -efa
-echo " Starting the packages we want"
-/etc/init.d/speak.sh
-echo "Printout the status - if its right, you should see 8181 appear now"
-netstat -na
-ps -efa
-
-
-
-## This is a loop that keeps our container going currently, prinout the "status of karaf" to the docker logs every minute
-## Cheap - but effective
-while true;
-do
- echo "Checking status of ODL:"
- /opt/odl/distribution-karaf-0.2.3-Helium-SR3/bin/status
- sleep 60
-done