Removed opendaylight build capabilities as a preparation toward Arno SR1
[genesis.git] / common / puppet-opnfv / manifests / templates / dockerfile / container_scripts / check_feature.sh
1 ##############################################################################
2 # Copyright (c) 2015 Ericsson AB and others.
3 # daniel.smith@ericsson.com
4 # All rights reserved. This program and the accompanying materials
5 # are made available under the terms of the Apache License, Version 2.0
6 # which accompanies this distribution, and is available at
7 # http://www.apache.org/licenses/LICENSE-2.0
8 ##############################################################################
9
10 #!/usr/bin/expect
11 spawn /opt/odl/distribution-karaf-0.2.3-Helium-SR3/bin/client
12 expect "root>"
13 send "feature:list | grep -i odl-restconf\r"
14 send "\r\r\r"
15 expect "root>"
16 send "logout\r"
17
18