diff options
author | Sage Weil <sage.weil@dreamhost.com> | 2012-04-28 23:52:56 +0200 |
---|---|---|
committer | Sage Weil <sage.weil@dreamhost.com> | 2012-04-28 23:52:56 +0200 |
commit | 352247e1b9fe9a6a03481e0455f1baddb4963b9d (patch) | |
tree | 35b15dd8f47f87cb75a00652f3b97e1191ccf7ca /qa | |
parent | Merge branch 'wip-mon' (diff) | |
download | ceph-352247e1b9fe9a6a03481e0455f1baddb4963b9d.tar.xz ceph-352247e1b9fe9a6a03481e0455f1baddb4963b9d.zip |
fix file_layout.sh layouts test
preferred_osd is not gone.
Signed-off-by: Sage Weil <sage.weil@dreamhost.com>
Diffstat (limited to 'qa')
-rwxr-xr-x | qa/workunits/kclient/file_layout.sh | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/qa/workunits/kclient/file_layout.sh b/qa/workunits/kclient/file_layout.sh index 4f2da0263f4..91ffb162eaa 100755 --- a/qa/workunits/kclient/file_layout.sh +++ b/qa/workunits/kclient/file_layout.sh @@ -11,23 +11,19 @@ rm temp || true echo "layout.data_pool: 0 layout.object_size: 1048576 layout.stripe_unit: 1048576 -layout.stripe_count: 1 -layout.preferred_osd: -1" > new_layout +layout.stripe_count: 1" > new_layout echo "layout.data_pool: 0 layout.object_size: 2097152 layout.stripe_unit: 1048576 -layout.stripe_count: 2 -layout.preferred_osd: -1" > file2_layout +layout.stripe_count: 2" > file2_layout echo "layout.data_pool: 3 layout.object_size: 1048576 layout.stripe_unit: 1048576 -layout.stripe_count: 1 -layout.preferred_osd: -1" > file3_layout +layout.stripe_count: 1" > file3_layout echo "layout.data_pool: 0 layout.object_size: 1048576 layout.stripe_unit: 262144 -layout.stripe_count: 1 -layout.preferred_osd: -1" > file4_layout +layout.stripe_count: 1" > file4_layout mkdir layout_test |