]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
doc/mgr: fix rst syntax in plugin guide
authorJohn Spray <john.spray@redhat.com>
Fri, 4 Nov 2016 10:07:12 +0000 (10:07 +0000)
committerJohn Spray <john.spray@redhat.com>
Fri, 4 Nov 2016 13:07:30 +0000 (13:07 +0000)
Signed-off-by: John Spray <john.spray@redhat.com>
doc/mgr/plugins.rst

index a735ed1122e4c15bcc4dc9a937df6dadebe0eafb..89f74469b7470b8ab06d8640789a5834b9b3c45a 100644 (file)
@@ -11,11 +11,11 @@ named ``Module`` that inherits from ``MgrModule``.
 The most important methods to override are:
 
 * a ``serve`` member function for server-type modules.  This
-function should block forever.
+  function should block forever.
 * a ``notify`` member function if your module needs to
-take action when new cluster data is available.
+  take action when new cluster data is available.
 * a ``handle_command`` member function if your module
-exposes CLI commands.
+  exposes CLI commands.
 
 Installing a plugin
 -------------------
@@ -72,6 +72,7 @@ storing large amounts of data.
 Config values are stored using the mon's config-key commands.
 
 Hints for using these:
+
 * Reads are fast: ceph-mgr keeps a local in-memory copy
 * Don't set things by hand with "ceph config-key", the mgr doesn't update
   at runtime (only set things from within modules).