]> git.proxmox.com Git - ceph.git/blob - ceph/qa/workunits/ceph-tests/ceph-admin-commands.sh
update sources to 12.2.7
[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 rbd ls
9 #check that the monitors work
10 ceph osd set nodown
11 ceph osd unset nodown
12
13 exit 0