# To see the initial OpenStack defaults
# in case we delete something later on.
# This is to be removed for the release
-echo "nova list:"
-nova list
-echo "cinder list"
-cinder list
-echo "nova floating-ip-list:"
-nova floating-ip-list
-echo "neutron net-list:"
-neutron net-list
-echo "neutron router-list:"
-neutron router-list
-echo "neutron security-group-list:"
-neutron security-group-list
-echo "openstack project list:"
-openstack project list
-echo "openstack user list:"
-openstack user list
-
+if [[ "${CI_DEBUG,,}" == "true" ]];then
+ echo "nova list:"
+ nova list
+ echo "cinder list"
+ cinder list
+ echo "nova floating-ip-list:"
+ nova floating-ip-list
+ echo "neutron net-list:"
+ neutron net-list
+ echo "neutron router-list:"
+ neutron router-list
+ echo "neutron security-group-list:"
+ neutron security-group-list
+ echo "openstack project list:"
+ openstack project list
+ echo "openstack user list:"
+ openstack user list
+fi
exit 0