Print openstack defaults before running clean_openstack.py
authorjose.lausuch <jose.lausuch@ericsson.com>
Mon, 18 Jan 2016 09:59:12 +0000 (10:59 +0100)
committerjose.lausuch <jose.lausuch@ericsson.com>
Mon, 18 Jan 2016 09:59:12 +0000 (10:59 +0100)
Change-Id: Ifc3ce69074d5c264ab252aaadb2877c823901b76
Signed-off-by: jose.lausuch <jose.lausuch@ericsson.com>
testcases/VIM/OpenStack/CI/libraries/check_os.sh

index 5602052..1327eff 100755 (executable)
@@ -88,4 +88,26 @@ if [ $is_external == "False" ]; then
     exit 1
 fi
 
+
+# Temporary output information
+# 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 "keystone tenant-list:"
+keystone tenant-list
+echo "keystone user-list:"
+keystone user-list
+
 exit 0