mirror of
https://github.com/ceph/ceph
synced 2024-12-20 02:13:04 +00:00
0fd358b877
renamed the workunit and test to reflect reality and for better clarity
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
|