9e64f8b543d3943bb24709b5120ad7ae357936d3
[pti/rtp.git] / meta-starlingx / meta-stx-integ / recipes-devtools / python / python-cinderclient / cinder-api-check.sh
1 #! /bin/bash
2
3 CMD="cinder list"
4
5 data=$($CMD 2>&1)
6 res=$?
7 if [ ${res} -eq 127 ]; then
8     exit 0
9 elif [ ${res} -ne 0 ]; then
10     echo "OpenStack \"cinder api\" failed: "
11     echo $data
12     exit $res
13 fi
14 exit 0