Fix bash error, doing ceph "$CEPH_CLI" -s gives us
ceph '--name client.bootstrap-osd --keyring
/var/lib/ceph/bootstrap-osd/test.keyring --cluster test' -s
which results in a wrongly formatted command. Removing the double quotes
expands the array properly.
Signed-off-by: Sébastien Han <seb@redhat.com>
echo "Error while running 'ceph $CEPH_CLI -s', PGs were not reported as active+clean"
echo "It is possible that the cluster has less OSDs than the replica configuration"
echo "Will refuse to continue"
- $docker_exec ceph "$CEPH_CLI" -s
+ $docker_exec ceph $CEPH_CLI -s
exit 1
}