Comment 3 for bug 1453055

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix merged to devstack (master)

Reviewed: https://review.openstack.org/181469
Committed: https://git.openstack.org/cgit/openstack-dev/devstack/commit/?id=99de7cc1782ed00905068d0ec894ac08db5aa06f
Submitter: Jenkins
Branch: master

commit 99de7cc1782ed00905068d0ec894ac08db5aa06f
Author: Accela Zhao <email address hidden>
Date: Fri May 8 18:14:11 2015 +0800

    Fix wrong `sudo ceph -c` command in lib/ceph

    The `sudo -c ${CEPH_CONF_FILE} ceph ...` in lib/ceph misplaced
    `ceph`. The correct syntax is `sudo ceph -c ${CEPH_CONF_FILE} ...`,
    see lib/ceph:308.

    While installing ./stack.sh with ceph enabled, the above malformed
    command raises a `usage: sudo -h | -K | -k | -V ...` error and stops
    the installation.

    This patch fixes `sudo -c ${CEPH_CONF_FILE} ceph ...` by moving
    `ceph` to the right place.

    Change-Id: I3da943d5a353d99b09787f804b79c1d006a09d96
    Closes-bug: #1453055