summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Ipsum <richard.ipsum@codethink.co.uk>2015-03-17 08:24:45 +0000
committerRichard Ipsum <richard.ipsum@codethink.co.uk>2015-03-17 16:12:36 +0000
commit6ed2ecf054cba181fb4600f2342597e5be83f7e0 (patch)
tree7bdf9f4c54a06cd4bcebfb59630d1e66bf5948dd
parentfd64cbc0abbe0659c8ebbb4d3742dd1fbbfbca78 (diff)
downloaddefinitions-6ed2ecf054cba181fb4600f2342597e5be83f7e0.tar.gz
Add openstack-swift conf ext
-rw-r--r--openstack-swift.configure77
1 files changed, 77 insertions, 0 deletions
diff --git a/openstack-swift.configure b/openstack-swift.configure
new file mode 100644
index 00000000..77c70476
--- /dev/null
+++ b/openstack-swift.configure
@@ -0,0 +1,77 @@
+#!/bin/bash
+#
+# Copyright © 2015 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"
+
+MANDATORY_OPTIONS="SWIFT_ADMIN_URL SWIFT_ADMIN_PASSWORD SWIFT_INTERNAL_URL
+SWIFT_PUBLIC_URL SWIFT_PART_POWER SWIFT_REPLICAS SWIFT_MIN_PART_HOURS
+SWIFT_STORAGE_DEVICES MANAGEMENT_INTERFACE_IP_ADDRESS SWIFT_HASH_PATH_PREFIX SWIFT_HASH_PATH_SUFFIX
+STACK_ID KEYSTONE_TEMPORARY_ADMIN_TOKEN NOVA_REGION KEYSTONE_INTERNAL_URL"
+
+for option in $MANDATORY_OPTIONS
+do
+ if ! [[ -v $option ]]
+ then
+ missing_option=True
+ echo "Required option $option isn't set!" >&2
+ fi
+done
+
+if [[ "$missing_option" = True ]]; then exit 1; fi
+
+./swift-storage-devices-validate.py "$SWIFT_STORAGE_DEVICES"
+
+if [[ "$SWIFT_CONTROLLER" = True ]]
+then
+ ln -s "/usr/lib/systemd/system/openstack-swift-controller-setup.service" \
+ "$ROOT/usr/lib/systemd/system/multi-user.target.wants/openstack-swift-controller-setup.service"
+ ln -s "/usr/lib/systemd/system/memcached.service" \
+ "$ROOT/usr/lib/systemd/system/multi-user.target.wants/memcached.service"
+ ln -s "/usr/lib/systemd/system/openstack-swift-proxy.service" \
+ "$ROOT/usr/lib/systemd/system/multi-user.target.wants/openstack-swift-proxy.service"
+fi
+
+if [[ "$SWIFT_STORAGE" = True ]]
+then
+ ln -s "/usr/lib/systemd/system/rsync.service" \
+ "$ROOT/usr/lib/systemd/system/multi-user.target.wants/rsync.service"
+ ln -s "/usr/lib/systemd/system/openstack-swift-storage.service" \
+ "$ROOT/usr/lib/systemd/system/multi-user.target.wants/openstack-swift-storage.service"
+ ln -s "/usr/lib/systemd/system/openstack-swift-storage-setup.service" \
+ "$ROOT/usr/lib/systemd/system/multi-user.target.wants/openstack-swift-storage-setup.service"
+fi
+
+cat << EOF > "$ROOT"/usr/share/openstack/swift-vars.yml
+---
+STACK_ID: $STACK_ID
+KEYSTONE_INTERNAL_URL: $KEYSTONE_INTERNAL_URL
+KEYSTONE_TEMPORARY_ADMIN_TOKEN: $KEYSTONE_TEMPORARY_ADMIN_TOKEN
+SWIFT_ADMIN_PASSWORD: $SWIFT_ADMIN_PASSWORD
+MANAGEMENT_INTERFACE_IP_ADDRESS: $MANAGEMENT_INTERFACE_IP_ADDRESS
+SWIFT_ADMIN_URL: $SWIFT_ADMIN_URL
+SWIFT_INTERNAL_URL: $SWIFT_INTERNAL_URL
+SWIFT_PUBLIC_URL: $SWIFT_PUBLIC_URL
+SWIFT_PART_POWER: $SWIFT_PART_POWER
+SWIFT_REPLICAS: $SWIFT_REPLICAS
+SWIFT_MIN_PART_HOURS: $SWIFT_MIN_PART_HOURS
+SWIFT_STORAGE_DEVICES: $SWIFT_STORAGE_DEVICES
+SWIFT_HASH_PATH_PREFIX: $SWIFT_HASH_PATH_PREFIX
+SWIFT_HASH_PATH_SUFFIX: $SWIFT_HASH_PATH_SUFFIX
+NOVA_REGION: $NOVA_REGION
+EOF