From eade36df24b31a1815edbd7bcffe919bfb2fb96f Mon Sep 17 00:00:00 2001 From: Sage Weil Date: Fri, 9 Aug 2013 09:07:04 -0700 Subject: [PATCH] PendingReleaseNotes: note 'ceph daemon ...' argument behavior change Signed-off-by: Sage Weil --- PendingReleaseNotes | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/PendingReleaseNotes b/PendingReleaseNotes index 4b6cb80029061..6900ddce8c2de 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