aboutsummaryrefslogtreecommitdiffstats
path: root/meta-openstack/recipes-devtools/python/python-glanceclient/glance-api-check.sh
blob: aa8340a643ce449052fc50214d4148a664997362 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#! /bin/bash

CMD="glance image-list"

data=$($CMD 2>&1)
res=$?
if [ ${res} -eq 127 ]; then
    exit 0
elif [ ${res} -ne 0 ]; then
    echo "OpenStack \"glance api\" failed: "
    echo $data
    exit $res
fi
exit 0