Fix some bugs when testing opensds ansible
[stor4nfv.git] / src / ceph / qa / workunits / ceph-tests / ceph-admin-commands.sh
1 #!/bin/sh -e
2
3 #check ceph health
4 ceph -s
5 #list pools
6 rados lspools
7 #lisr rbd images
8 ceph osd pool create rbd 128 128
9 rbd ls
10 #check that the monitors work
11 ceph osd set nodown
12 ceph osd unset nodown
13
14 exit 0