]> git.proxmox.com Git - ceph.git/blame - 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
CommitLineData
7c673cae
FG
1#!/bin/sh -e
2
3#check ceph health
4ceph -s
5#list pools
6rados lspools
7#lisr rbd images
8rbd ls
9#check that the monitors work
10ceph osd set nodown
11ceph osd unset nodown
12
13exit 0