summaryrefslogtreecommitdiffstats
path: root/fuel/build/f_lith_odl_docker/dockerfile/container_scripts/speak.sh
diff options
context:
space:
mode:
authorDan Smith <daniel.smith@ericsson.com>2015-06-12 13:08:42 -0400
committerDan Smith <daniel.smith@ericsson.com>2015-06-12 13:08:42 -0400
commiteb887812da568cfb4908f6ae14449b2ceaeb5bc0 (patch)
tree44ec0e7087fb4f63d60348a074c0a334c5ab3d49 /fuel/build/f_lith_odl_docker/dockerfile/container_scripts/speak.sh
parent5cc4c1455698767349e88022449c0c00d0e61239 (diff)
Adding in support for Lithium container.
Both will be present on the controller nodes and can be started/switches on and off at will. Networking scripts are not updated - will be deprecated in favour of plugin method of enabling / setting up VXLAN / OVSDB integration pulling from the latest nightly artifact at time of commit - will work on automated pulling each night to see if that makes sense. Change-Id: Ie911cdf61cd97a99b975c30c55c664daf70eb3ee JIRA: 0 Signed-off-by: Dan Smith <daniel.smith@ericsson.com>
Diffstat (limited to 'fuel/build/f_lith_odl_docker/dockerfile/container_scripts/speak.sh')
-rwxr-xr-xfuel/build/f_lith_odl_docker/dockerfile/container_scripts/speak.sh17
1 files changed, 17 insertions, 0 deletions
diff --git a/fuel/build/f_lith_odl_docker/dockerfile/container_scripts/speak.sh b/fuel/build/f_lith_odl_docker/dockerfile/container_scripts/speak.sh
new file mode 100755
index 0000000..3ba07a8
--- /dev/null
+++ b/fuel/build/f_lith_odl_docker/dockerfile/container_scripts/speak.sh
@@ -0,0 +1,17 @@
+#!/usr/bin/expect
+# Ericsson Research Canada
+#
+# Author: Daniel Smith <daniel.smith@ericsson.com>
+#
+# Simple expect script to start up ODL client and load feature set for DLUX and OVSDB
+#
+# NOTE: THIS WILL BE REPLACED WITH A PROGRAMATIC METHOD SHORTLY
+# DEPRECATED AFTER ARNO
+
+spawn /opt/odl/distribution-karaf-0.2.3-Helium-SR3/bin/client
+expect "root>"
+send "feature:install odl-base-all odl-aaa-authn odl-restconf odl-nsf-all odl-adsal-northbound odl-mdsal-apidocs odl-ovsdb-openstack odl-ovsdb-northbound odl-dlux-core"
+send "\r\r\r"
+expect "root>"
+send "logout\r"
+