summaryrefslogtreecommitdiffstats
path: root/fuel/build/f_odl_docker/dockerfile/container_scripts/speak.sh
blob: 2d363c953a3b61e99471eae21901a4a82c6bf796 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/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

spawn /opt/odl/distribution-karaf-0.2.2-Helium-SR2/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"