]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
PendingReleaseNotes: note 'ceph daemon ...' argument behavior change
authorSage Weil <sage@inktank.com>
Fri, 9 Aug 2013 16:07:04 +0000 (09:07 -0700)
committerSage Weil <sage@inktank.com>
Fri, 9 Aug 2013 16:07:04 +0000 (09:07 -0700)
Signed-off-by: Sage Weil <sage@inktank.com>
PendingReleaseNotes

index 4b6cb8002906116783cb8b42b2b503d8e8614e3e..6900ddce8c2de6c06a5a18924486d95a0fab4003 100644 (file)
@@ -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