Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

qa/standalone/ceph-helpers: pass --verbose to ceph-disk #19456

Merged
merged 1 commit into from Dec 19, 2017

Conversation

liewegas
Copy link
Member

Signed-off-by: Sage Weil sage@redhat.com

@@ -582,7 +582,7 @@ function run_osd() {

mkdir -p $osd_data
ceph-disk $ceph_disk_args \
prepare --filestore $osd_data || return 1
prepare --filestore $osd_data --verbose || return 1
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this will not work for prepare because --verbose is a global (top level) argument. So what you need here is:

ceph-disk --verbose $ceph_disk_args \
    prepare --filestore $osd_data || return 1

Signed-off-by: Sage Weil <sage@redhat.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
2 participants