summaryrefslogtreecommitdiff
path: root/openstack/usr/share/openstack/cinder-config.yml
diff options
context:
space:
mode:
authorRichard Maw <richard.maw@codethink.co.uk>2015-04-15 07:16:42 +0000
committerTiago Gomes <tiago.gomes@codethink.co.uk>2015-04-16 16:34:49 +0000
commite7a620bc3718008267cf4283009f5aa2998279ce (patch)
tree9ee1dbd999ec5e46e7471b1570447c139564800f /openstack/usr/share/openstack/cinder-config.yml
parent220cea3ff220a969e449d43407e686987d117baf (diff)
downloaddefinitions-e7a620bc3718008267cf4283009f5aa2998279ce.tar.gz
OpenStack: Split Cinder into config, db and lv setup
Change-Id: Iae387e39c4a62ef608496d31c748493fa88ce3e1
Diffstat (limited to 'openstack/usr/share/openstack/cinder-config.yml')
-rw-r--r--openstack/usr/share/openstack/cinder-config.yml37
1 files changed, 37 insertions, 0 deletions
diff --git a/openstack/usr/share/openstack/cinder-config.yml b/openstack/usr/share/openstack/cinder-config.yml
new file mode 100644
index 00000000..7ca6ff32
--- /dev/null
+++ b/openstack/usr/share/openstack/cinder-config.yml
@@ -0,0 +1,37 @@
+---
+- hosts: localhost
+ vars_files:
+ - "/etc/openstack/cinder.conf"
+ tasks:
+# Configure cinder
+ - name: Create the cinder user.
+ user:
+ name: cinder
+ comment: Openstack Cinder Daemons
+ shell: /sbin/nologin
+ home: /var/lib/cinder
+
+ - name: Create the /var folders for cinder
+ file:
+ path: "{{ item }}"
+ state: directory
+ owner: cinder
+ group: cinder
+ with_items:
+ - /var/run/cinder
+ - /var/lock/cinder
+ - /var/log/cinder
+ - /var/lib/cinder
+ - /var/lib/cinder/volumer
+
+ - name: Create /etc/cinder directory
+ file:
+ path: /etc/cinder
+ state: directory
+
+ - name: Add the configuration needed for cinder in /etc/cinder using templates
+ template:
+ src: /usr/share/openstack/cinder/{{ item }}
+ dest: /etc/cinder/{{ item }}
+ with_lines:
+ - cd /usr/share/openstack/cinder && find -type f