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
committerFrancisco Redondo Marchena <francisco.marchena@codethink.co.uk>2015-04-16 16:30:44 +0000
commit8f307fcf4cb9b352d4c9c5c4f245601e48641469 (patch)
tree9ee1dbd999ec5e46e7471b1570447c139564800f /openstack/usr/share/openstack/cinder-config.yml
parentc975815f5810553709ca967e52bbfa5fc61d3216 (diff)
downloaddefinitions-baserock/openstack-in-baserock-3-nodes.tar.gz
OpenStack: Split Cinder into config, db and lv setupbaserock/openstack-in-baserock-3-nodes
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