Fix documentation build

Re-establish the static "app" instance for the autodoc
code and fix a formatting problem with some of the RST.

Change-Id: I16f7db1ed66081305097b5ecf931b461347f6299
Signed-off-by: Doug Hellmann <doug.hellmann@dreamhost.com>
This commit is contained in:
Doug Hellmann 2012-11-07 16:38:32 -05:00
parent a5f966c5fb
commit 4a31748b30
2 changed files with 8 additions and 5 deletions

View File

@ -57,3 +57,6 @@ def make_app(enable_acl=True, attach_storage=True):
if enable_acl:
return acl.install(app, cfg.CONF)
return app
# For documentation
app = make_app(enable_acl=False, attach_storage=False)

View File

@ -150,11 +150,11 @@ Installing the Compute Agent
The ``nova`` compute service needs the following configuration to
be set in ``nova.conf``::
# nova-compute configuration for ceilometer
instance_usage_audit=True
instance_usage_audit_period=hour
notification_driver=nova.openstack.common.notifier.rabbit_notifier
notification_driver=ceilometer.compute.nova_notifier
# nova-compute configuration for ceilometer
instance_usage_audit=True
instance_usage_audit_period=hour
notification_driver=nova.openstack.common.notifier.rabbit_notifier
notification_driver=ceilometer.compute.nova_notifier
2. Clone the ceilometer git repository to the server::