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