meta-starlingx: remove the upstream layer
[pti/rtp.git] / meta-starlingx / meta-stx-integ / recipes-devtools / python / python-cinderclient / cinder-api-check.sh
diff --git a/meta-starlingx/meta-stx-integ/recipes-devtools/python/python-cinderclient/cinder-api-check.sh b/meta-starlingx/meta-stx-integ/recipes-devtools/python/python-cinderclient/cinder-api-check.sh
deleted file mode 100644 (file)
index 9e64f8b..0000000
+++ /dev/null
@@ -1,14 +0,0 @@
-#! /bin/bash
-
-CMD="cinder list"
-
-data=$($CMD 2>&1)
-res=$?
-if [ ${res} -eq 127 ]; then
-    exit 0
-elif [ ${res} -ne 0 ]; then
-    echo "OpenStack \"cinder api\" failed: "
-    echo $data
-    exit $res
-fi
-exit 0