summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorJulien Danjou <julien@danjou.info>2015-01-23 11:50:01 +0100
committerJulien Danjou <julien@danjou.info>2015-01-23 12:35:23 +0100
commiteed463659f2e6f7018b5db1fcae9931ae1d60a00 (patch)
tree9941920a565e25da81e95a4a560cc1d512b367b8 /tools
parent419669019fb416025b6b83810286e42980a94f44 (diff)
downloadceilometer-eed463659f2e6f7018b5db1fcae9931ae1d60a00.tar.gz
Remove the Nova notifier
This has not been tested for months and doesn't work anymore. There's no way people are using it, so let's drop it until someone starts fixing it again. Change-Id: I7d6472a1924320c890dec47c41bf22db07a36efc
Diffstat (limited to 'tools')
-rwxr-xr-xtools/enable_notifications.sh13
1 files changed, 0 insertions, 13 deletions
diff --git a/tools/enable_notifications.sh b/tools/enable_notifications.sh
index c9564ab6..f4916823 100755
--- a/tools/enable_notifications.sh
+++ b/tools/enable_notifications.sh
@@ -35,19 +35,6 @@ then
echo "notification_driver=neutron.openstack.common.notifier.rabbit_notifier" >> $NEUTRON_CONF
fi
-# For nova we set both the rabbit notifier and the special ceilometer
-# notifier that forces one more poll to happen before an instance is
-# removed.
-NOVA_CONF=/etc/nova/nova.conf
-if ! grep -q "notification_driver=ceilometer.compute.nova_notifier" $NOVA_CONF
-then
- echo "notification_driver=ceilometer.compute.nova_notifier" >> $NOVA_CONF
-fi
-if ! grep -q "notification_driver=nova.openstack.common.notifier.rabbit_notifier" $NOVA_CONF
-then
- echo "notification_driver=nova.openstack.common.notifier.rabbit_notifier" >> $NOVA_CONF
-fi
-
# SPECIAL CASE
# Glance does not use the openstack common notifier library,
# so we have to set a different option.