]> git.proxmox.com Git - ceph.git/blob - ceph/qa/workunits/ceph-tests/ceph-admin-commands.sh
update sources to v12.1.1
[ceph.git] / 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