From: Sage Weil Date: Fri, 9 Aug 2013 16:07:04 +0000 (-0700) Subject: PendingReleaseNotes: note 'ceph daemon ...' argument behavior change X-Git-Tag: v0.68~97 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=eade36df24b31a1815edbd7bcffe919bfb2fb96f;p=ceph.git PendingReleaseNotes: note 'ceph daemon ...' argument behavior change Signed-off-by: Sage Weil --- diff --git a/PendingReleaseNotes b/PendingReleaseNotes index 4b6cb8002906..6900ddce8c2d 100644 --- a/PendingReleaseNotes +++ b/PendingReleaseNotes @@ -13,3 +13,14 @@ v0.67 ' less awkward by making it clearer that the 'tell' commands are talking to the OSD serving the placement group, not the monitor. + +* The 'ceph --admin-daemon ' used to accept the command + and arguments as either a single string or as separate arguments. It will + now only accept the command spread across multiple arguments. This means that + any script which does something like:: + + ceph --admin-daemon /var/run/ceph/ceph-osd.0.asok 'config set debug_ms 1' + + needs to remove the quotes. Also, note that the above can now be shortened to:: + + ceph daemon osd.0 config set debug_ms 1