summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrancisco Redondo Marchena <francisco.marchena@codethink.co.uk>2014-11-10 18:06:56 +0000
committerRichard Ipsum <richardipsum@fastmail.co.uk>2014-11-27 18:12:12 +0000
commit3b5165c188348b2a4b727d443c818ddd490ddf66 (patch)
tree992f6353a803edfd6c808083198f7d6b1265f6cf
parentd95a1560f1dbb9b76d3dd5de939ec78489730ebb (diff)
downloaddefinitions-3b5165c188348b2a4b727d443c818ddd490ddf66.tar.gz
WIP: Add rabbitmq configuration extension
-rw-r--r--openstack-rabbitmq.configure40
-rw-r--r--systems/openstack-server.morph1
2 files changed, 41 insertions, 0 deletions
diff --git a/openstack-rabbitmq.configure b/openstack-rabbitmq.configure
new file mode 100644
index 00000000..0980b2f5
--- /dev/null
+++ b/openstack-rabbitmq.configure
@@ -0,0 +1,40 @@
+#!/bin/sh
+
+# Copyright (C) 2014 Codethink Limited
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; version 2 of the License.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License along
+# with this program; if not, write to the Free Software Foundation, Inc.,
+# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+
+set -e
+
+ROOT="$1"
+
+##########################################################################
+# Substitutions in configuration files
+##########################################################################
+
+cat <<EOF > "$ROOT"/etc/openstack-rabbitmq-setup.sed
+s/##RABBITMQ_HOST##/$RABBITMQ_HOST/g
+s/##RABBITMQ_PORT##/$RABBITMQ_PORT/g
+s/##RABBITMQ_USER##/$RABBITMQ_USER/g
+s/##RABBITMQ_PASSWORD##/$RABBITMQ_PASSWORD/g
+EOF
+
+sed -f "$ROOT"/etc/openstack-rabbitmq-setup.sed -i \
+ "$ROOT"/etc/keystone/keystone.conf \
+ "$ROOT"/etc/nova/nova.conf
+
+##########################################################################
+
+ln -s "/etc/systemd/system/openstack-rabbitmq-setup.service" \
+ "$ROOT/etc/systemd/system/multi-user.target.wants/openstack-rabbitmq-setup.service"
diff --git a/systems/openstack-server.morph b/systems/openstack-server.morph
index ef5b3ae9..bc9c58f7 100644
--- a/systems/openstack-server.morph
+++ b/systems/openstack-server.morph
@@ -38,3 +38,4 @@ configuration-extensions:
- openstack-keystone
- openstack-glance
- openstack-nova
+- openstack-rabbitmq