mirror of
https://github.com/ceph/ceph
synced 2024-12-15 16:07:00 +00:00
e2602c549f
Take either a pool name or an id. Fix up the tests accordingly. Signed-off-by: Sage Weil <sage@inktank.com>
16 lines
255 B
Bash
Executable File
16 lines
255 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
touch foo.$$
|
|
rados mkpool foo.$$
|
|
ceph mds add_data_pool foo.$$
|
|
setfattr -n ceph.file.layout.pool -v foo.$$ foo.$$
|
|
|
|
# cleanup
|
|
rm foo.$$
|
|
ceph mds remove_data_pool foo.$$
|
|
rados rmpool foo.$$ foo.$$ --yes-i-really-really-mean-it
|
|
|
|
echo OK
|