From: Yuri Weinstein Date: Fri, 8 May 2015 00:12:35 +0000 (-0700) Subject: Added a "ceph hello world" for a simple check for ceph-deploy qa suite X-Git-Tag: v0.94.2~20 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=fb10594f2ab2427a2bf1d2f2b164a3a0928e3335;p=ceph.git Added a "ceph hello world" for a simple check for ceph-deploy qa suite Signed-off-by: Yuri Weinstein (cherry picked from commit 13abae186357f4e9bb40990a7a212f93ec2e1e79) Signed-off-by: Yuri Weinstein --- 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