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