From 6c27d57f602b5f919f0fee897394a2f88adc6fb1 Mon Sep 17 00:00:00 2001 From: Thomas Goirand Date: Wed, 27 Jan 2016 15:14:22 +0000 Subject: [PATCH] Updated namespaces when generating the config file. Rewritten-From: c7caa6f0ab1349e09745c17c600eb6b5d7532e4f --- trusty/debian/changelog | 1 + trusty/debian/rules | 10 +++++++++- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/trusty/debian/changelog b/trusty/debian/changelog index a8ad917..118affd 100644 --- a/trusty/debian/changelog +++ b/trusty/debian/changelog @@ -4,6 +4,7 @@ ceilometer (1:6.0.0~b2-1) experimental; urgency=medium * Fixed (build-)depends for this release. * The alarm packages are now transition packages to Aodh. * Fixed debian/copyright ordering. + * Updated namespaces when generating the config file. -- Thomas Goirand Tue, 08 Dec 2015 11:53:07 +0100 diff --git a/trusty/debian/rules b/trusty/debian/rules index 7f7a2e4..830f8d6 100755 --- a/trusty/debian/rules +++ b/trusty/debian/rules @@ -13,15 +13,23 @@ override_dh_clean: rm -f debian/ceilometer-common.config debian/ceilometer-common.postinst debian/ceilometer-api.config debian/ceilometer-api.postinst override_dh_install: + rm -rf $(CURDIR)/debian/tmp + python2.7 setup.py install --install-layout=deb --root $(CURDIR)/debian/tmp dh_install --fail-missing # Manage ceilometer.conf mkdir -p $(CURDIR)/debian/ceilometer-common/usr/share/ceilometer-common - oslo-config-generator --output-file $(CURDIR)/debian/ceilometer-common/usr/share/ceilometer-common/ceilometer.conf \ + PYTHONPATH=$(CURDIR)/debian/tmp/usr/lib/python2.7/dist-packages oslo-config-generator \ + --output-file $(CURDIR)/debian/ceilometer-common/usr/share/ceilometer-common/ceilometer.conf \ + --wrap-width 140 \ --namespace ceilometer \ + --namespace oslo.concurrency \ --namespace oslo.db \ + --namespace oslo.log \ --namespace oslo.messaging \ + --namespace oslo.middleware.cors \ --namespace oslo.policy \ + --namespace oslo.service.service \ --namespace keystonemiddleware.auth_token sed -i 's|[# \t]*auth_protocol[\t ]*=.*|auth_protocol=http|' $(CURDIR)/debian/ceilometer-common/usr/share/ceilometer-common/ceilometer.conf chmod 0644 $(CURDIR)/debian/ceilometer-common/usr/share/ceilometer-common/ceilometer.conf -- 2.32.3