summaryrefslogtreecommitdiffstats
path: root/meta-openstack-controller-test-config/recipes-devtools
diff options
context:
space:
mode:
Diffstat (limited to 'meta-openstack-controller-test-config/recipes-devtools')
-rw-r--r--meta-openstack-controller-test-config/recipes-devtools/python/python-glance/glance-test-config.init3
1 files changed, 2 insertions, 1 deletions
diff --git a/meta-openstack-controller-test-config/recipes-devtools/python/python-glance/glance-test-config.init b/meta-openstack-controller-test-config/recipes-devtools/python/python-glance/glance-test-config.init
index 2186421..29c62fc 100644
--- a/meta-openstack-controller-test-config/recipes-devtools/python/python-glance/glance-test-config.init
+++ b/meta-openstack-controller-test-config/recipes-devtools/python/python-glance/glance-test-config.init
@@ -39,7 +39,8 @@ start()
39 id=`sed -n '4p' < $temp_file | get_field 1` 39 id=`sed -n '4p' < $temp_file | get_field 1`
40 glance image-show $id > /dev/null 2>&1 40 glance image-show $id > /dev/null 2>&1
41 if [ "$?" != "0" ]; then 41 if [ "$?" != "0" ]; then
42 id=`glance image-create --name myfirstimage --is-public true --container-format bare --disk-format qcow2 --file /root/images/cirros-0.3.0-x86_64-disk.img | grep " id " | get_field 2` 42 cirros_image_file=`find /root/images/ -name "cirros*.img" | tail -1`
43 id=`glance image-create --name myfirstimage --is-public true --container-format bare --disk-format qcow2 --file ${cirros_image_file} | grep " id " | get_field 2`
43 fi 44 fi
44 sed -i "s/^image_ref = .*/image_ref = ${id}/" $TEMPEST_CONF_FILE 45 sed -i "s/^image_ref = .*/image_ref = ${id}/" $TEMPEST_CONF_FILE
45 sed -i "s/^image_ref_alt = .*/image_ref_alt = ${id}/" $TEMPEST_CONF_FILE 46 sed -i "s/^image_ref_alt = .*/image_ref_alt = ${id}/" $TEMPEST_CONF_FILE