mirror of
https://github.com/ceph/ceph
synced 2025-01-21 18:45:23 +00:00
4788567e0f
Signed-off-by: Sage Weil <sage@inktank.com>
21 lines
295 B
Bash
Executable File
21 lines
295 B
Bash
Executable File
#!/bin/sh -x
|
|
|
|
set -e
|
|
|
|
ceph osd pool create foo 123 123
|
|
ceph osd pool create fooo 123
|
|
ceph osd pool create foooo
|
|
|
|
ceph osd pool create foo # idempotent
|
|
|
|
ceph osd pool delete foo
|
|
ceph osd pool delete foo
|
|
ceph osd pool delete fuggg
|
|
|
|
ceph osd pool delete fooo
|
|
ceph osd pool delete foooo
|
|
|
|
echo OK
|
|
|
|
|