summaryrefslogtreecommitdiff
path: root/install-files/openstack/usr/share/openstack/cinder-lvs.yml
diff options
context:
space:
mode:
authorAdam Coldrick <adam.coldrick@codethink.co.uk>2015-06-01 10:47:22 +0000
committerAdam Coldrick <adam.coldrick@codethink.co.uk>2015-06-01 14:03:08 +0000
commit3ac442c4db9a3877c59adf2341aacc593d4b65ac (patch)
tree7b16330a9d38fb45c8019e1f35a9fa1b59917d90 /install-files/openstack/usr/share/openstack/cinder-lvs.yml
parentb304ef128ddb2a63eb7f6c60c8efe77621cef430 (diff)
downloaddefinitions-3ac442c4db9a3877c59adf2341aacc593d4b65ac.tar.gz
Put all the install-files stuff in a subdirectory
Diffstat (limited to 'install-files/openstack/usr/share/openstack/cinder-lvs.yml')
-rw-r--r--install-files/openstack/usr/share/openstack/cinder-lvs.yml21
1 files changed, 21 insertions, 0 deletions
diff --git a/install-files/openstack/usr/share/openstack/cinder-lvs.yml b/install-files/openstack/usr/share/openstack/cinder-lvs.yml
new file mode 100644
index 00000000..7a91a306
--- /dev/null
+++ b/install-files/openstack/usr/share/openstack/cinder-lvs.yml
@@ -0,0 +1,21 @@
+---
+- hosts: localhost
+ vars_files:
+ - "/etc/openstack/cinder.conf"
+ tasks:
+ - name: Check that CINDER_DEVICE exists
+ stat:
+ path: "{{ CINDER_DEVICE }}"
+ register: cinder_device_stats
+ failed_when: cinder_device_stats.stat.exists == false
+
+ - name: Configure LVM group for cinder
+ lvg:
+ vg: cinder-volumes
+ pvs: "{{ CINDER_DEVICE }}"
+
+ - lineinfile:
+ dest: /etc/lvm/lvm.conf
+ regexp: '# filter = \[ \"a\/\.\*/\" \]'
+ line: ' filter = [ "a|{{ CINDER_DEVICE }}|", "r/.*/" ]'
+ backrefs: yes