diff --git a/qa/workunits/ceph-deploy/ceph-deploy_hello_world.sh b/qa/workunits/ceph-deploy/ceph-deploy_hello_world.sh new file mode 100755 index 0000000000000..30e74cce5b56d --- /dev/null +++ b/qa/workunits/ceph-deploy/ceph-deploy_hello_world.sh @@ -0,0 +1,13 @@ +#!/bin/sh -e + +#check ceph health +ceph -s +#list pools +rados lspools +#lisr rbd images +rbd ls +#check that the monitors work +ceph osd set nodown +ceph osd unset nodown + +exit 0