TOPIC: ODL DOCKER
[genesis.git] / fuel / build / f_odl_docker / dockerfile / container_scripts / speak.sh
1 #!/usr/bin/expect
2 # Ericsson Research Canada
3 #
4 # Author: Daniel Smith <daniel.smith@ericsson.com>
5 #
6 # Simple expect script to start up ODL client and load feature set for DLUX and OVSDB
7 #
8 #  NOTE: THIS WILL BE REPLACED WITH A PROGRAMATIC METHOD SHORTLY
9
10 spawn /opt/odl/distribution-karaf-0.2.2-Helium-SR2/bin/client
11 expect "root>"
12 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"
13 send "\r\r\r"
14 expect "root>"
15 send "logout\r"
16