mirror of
https://github.com/ceph/ceph
synced 2024-12-17 08:57:28 +00:00
13abae1863
Signed-off-by: Yuri Weinstein <yuri.weinstein@inktank.com>
14 lines
171 B
Bash
Executable File
14 lines
171 B
Bash
Executable File
#!/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
|