Signed-off-by: Sage Weil <sage@redhat.com>
O=$CEPH_ARGS
CEPH_ARGS+="--log-file $dir/cot.log --log-max-recent 0 "
ceph-objectstore-tool --type bluestore --data-path $dir/0 --fsid $ofsid \
- --op mkfs || return 1
+ --op mkfs --no-mon-config || return 1
ceph-objectstore-tool --data-path $dir/0.old --target-data-path $dir/0 \
--op dup || return 1
CEPH_ARGS=$O
function test_ceph_kvstore_tool()
{
# create a data directory
- ceph-objectstore-tool --data-path ${TEMP_DIR} --op mkfs
+ ceph-objectstore-tool --data-path ${TEMP_DIR} --op mkfs --no-mon-config
# list
origin_kv_nums=`ceph-kvstore-tool bluestore-kv ${TEMP_DIR} list 2>/dev/null | wc -l`