From: Deepika Upadhyay Date: Thu, 18 Jun 2020 14:26:06 +0000 (+0000) Subject: src/cstart: fix typo in cstart script X-Git-Tag: v17.0.0~2013^2 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=4390de26d8d1928f612ca67d45439a8379b68850;p=ceph.git src/cstart: fix typo in cstart script Signed-off-by: Deepika Upadhyay --- diff --git a/doc/dev/cephadm.rst b/doc/dev/cephadm.rst index 1784de422968b..28e44fef2f338 100644 --- a/doc/dev/cephadm.rst +++ b/doc/dev/cephadm.rst @@ -61,18 +61,18 @@ To start a test cluster:: The last line of this will be a line you can cut+paste to update the container image. For instance:: - sudo ../src/script/cpach -t quay.io/ceph-ci/ceph:8f509f4e + sudo ../src/script/cpatch -t quay.io/ceph-ci/ceph:8f509f4e By default, cpatch will patch everything it can think of from the local build dir into the container image. If you are working on a specific part of the system, though, can you get away with smaller changes so that cpatch runs faster. For instance:: - sudo ../src/script/cpach -t quay.io/ceph-ci/ceph:8f509f4e --py + sudo ../src/script/cpatch -t quay.io/ceph-ci/ceph:8f509f4e --py will update the mgr modules (minus the dashboard). Or:: - sudo ../src/script/cpach -t quay.io/ceph-ci/ceph:8f509f4e --core + sudo ../src/script/cpatch -t quay.io/ceph-ci/ceph:8f509f4e --core will do most binaries and libraries. Pass ``-h`` to cpatch for all options. diff --git a/src/cstart.sh b/src/cstart.sh index 1c243b96e6947..71f4200a43d7d 100755 --- a/src/cstart.sh +++ b/src/cstart.sh @@ -63,5 +63,5 @@ sudo chmod 755 ceph.client.admin.keyring echo 'keyring = ceph.client.admin.keyring' >> ceph.conf echo -echo "sudo ../src/script/cpach -t $image_base:$shortid" +echo "sudo ../src/script/cpatch -t $image_base:$shortid" echo