summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSage Weil <sage@inktank.com>2013-08-09 09:07:04 -0700
committerSage Weil <sage@inktank.com>2013-08-09 09:07:04 -0700
commiteade36df24b31a1815edbd7bcffe919bfb2fb96f (patch)
treefa9742f99d62607f9a970fd3f562d0843348bb3f
parentca3987fff1928cd6b74a969a68ba62f79a900550 (diff)
downloadceph-eade36df24b31a1815edbd7bcffe919bfb2fb96f.tar.gz
PendingReleaseNotes: note 'ceph daemon ...' argument behavior change
Signed-off-by: Sage Weil <sage@inktank.com>
-rw-r--r--PendingReleaseNotes11
1 files changed, 11 insertions, 0 deletions
diff --git a/PendingReleaseNotes b/PendingReleaseNotes
index 4b6cb800290..6900ddce8c2 100644
--- a/PendingReleaseNotes
+++ b/PendingReleaseNotes
@@ -13,3 +13,14 @@ v0.67
<command>' 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 <path> <command ...>' 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