diff options
author | Sage Weil <sage.weil@dreamhost.com> | 2012-03-12 04:36:47 +0100 |
---|---|---|
committer | Sage Weil <sage.weil@dreamhost.com> | 2012-03-12 04:36:47 +0100 |
commit | 945218cc3033606491f5bee797d7b1ff8e1c3d2b (patch) | |
tree | cb3b065b780a624ae8366c767286b73767eb3056 /qa | |
parent | filejournal: less log noise (diff) | |
download | ceph-945218cc3033606491f5bee797d7b1ff8e1c3d2b.tar.xz ceph-945218cc3033606491f5bee797d7b1ff8e1c3d2b.zip |
qa/workunits/kclient/file_layout: escape *
Escape * so that it is expanded as root.
Signed-off-by: Sage Weil <sage.weil@dreamhost.com>
Diffstat (limited to 'qa')
-rwxr-xr-x | qa/workunits/kclient/file_layout.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/qa/workunits/kclient/file_layout.sh b/qa/workunits/kclient/file_layout.sh index 3b579a7d016..328b99fafb7 100755 --- a/qa/workunits/kclient/file_layout.sh +++ b/qa/workunits/kclient/file_layout.sh @@ -51,15 +51,15 @@ echo "hello, I'm a file with a custom layout" > layout_test/file2 touch layout_test/file3 cephfs layout_test/file3 show_layout > temp diff new_layout temp || return 1 -sudo cat /sys/kernel/debug/ceph/*/mdsmap > temp +sudo cat /sys/kernel/debug/ceph/\*/mdsmap > temp ceph osd pool create newpool || true ceph mds add_data_pool 3 || true -sudo cat /sys/kernel/debug/ceph/*/mdsmap > temp2 +sudo cat /sys/kernel/debug/ceph/\*/mdsmap > temp2 while diff -q temp2 temp do echo "waiting for mdsmap to update" sleep 1 - sudo cat /sys/kernel/debug/ceph/*/mdsmap > temp2 + sudo cat /sys/kernel/debug/ceph/\*/mdsmap > temp2 done sudo rm temp temp2 |