summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorJulien Danjou <julien@danjou.info>2015-09-28 17:31:39 +0200
committerJulien Danjou <julien@danjou.info>2015-09-28 17:31:39 +0200
commitb646cd25837306d98d45a47c462d272e8c9ea5f2 (patch)
treefd26d0fafab9736cd658c83d46b08af69f4ddc21 /tools
parentaa84943c97fe1b4505cd909df4e1f3c518b854dc (diff)
downloadceilometer-b646cd25837306d98d45a47c462d272e8c9ea5f2.tar.gz
Remove enable_notification.sh
This script is not up to date and worthless nowadays. Change-Id: I62139b0bbcbe46d78d5b7893af082bcdccb80125
Diffstat (limited to 'tools')
-rwxr-xr-xtools/enable_notifications.sh43
1 files changed, 0 insertions, 43 deletions
diff --git a/tools/enable_notifications.sh b/tools/enable_notifications.sh
deleted file mode 100755
index f4916823..00000000
--- a/tools/enable_notifications.sh
+++ /dev/null
@@ -1,43 +0,0 @@
-#!/bin/bash
-#
-# Ceilometer depends on having notifications enabled for all monitored
-# services. This script demonstrates the configuration changes needed
-# in order to enable the rabbit notifier for the supported services.
-
-bindir=$(dirname $0)
-devstackdir=${bindir}/../../devstack
-
-devstack_funcs=${devstackdir}/functions
-if [ ! -f "$devstack_funcs" ]
-then
- echo "Could not find $devstack_funcs"
- exit 1
-fi
-source ${devstack_funcs}
-
-CINDER_CONF=/etc/cinder/cinder.conf
-if ! grep -q "notification_driver=cinder.openstack.common.notifier.rabbit_notifier" $CINDER_CONF
-then
- echo "notification_driver=cinder.openstack.common.notifier.rabbit_notifier" >> $CINDER_CONF
-fi
-
-# For compatibility with Grizzly
-QUANTUM_CONF=/etc/quantum/quantum.conf
-if ! grep -q "notification_driver=quantum.openstack.common.notifier.rabbit_notifier" $QUANTUM_CONF
-then
- echo "notification_driver=quantum.openstack.common.notifier.rabbit_notifier" >> $QUANTUM_CONF
-fi
-
-# Havana release onward
-NEUTRON_CONF=/etc/neutron/neutron.conf
-if ! grep -q "notification_driver=neutron.openstack.common.notifier.rabbit_notifier" $NEUTRON_CONF
-then
- echo "notification_driver=neutron.openstack.common.notifier.rabbit_notifier" >> $NEUTRON_CONF
-fi
-
-# SPECIAL CASE
-# Glance does not use the openstack common notifier library,
-# so we have to set a different option.
-GLANCE_CONF=/etc/glance/glance-api.conf
-iniuncomment $GLANCE_CONF DEFAULT notifier_strategy
-iniset $GLANCE_CONF DEFAULT notifier_strategy rabbit