summaryrefslogtreecommitdiff
path: root/ansible/roles/trove-setup/tasks/lorry-setup.yml
diff options
context:
space:
mode:
authorPedro Alvarez <pedro.alvarez@codethink.co.uk>2014-06-18 10:16:41 +0000
committerPedro Alvarez <pedro.alvarez@codethink.co.uk>2014-07-14 15:02:10 +0000
commite6bf7b4b32d477352cf45b4b0abb6993d524f78a (patch)
tree1a640eb2acd18e903e85923bab3fcd7d3e40392e /ansible/roles/trove-setup/tasks/lorry-setup.yml
parent49ddac4e61b6dca7e4b794cf639b0a1b3d86db00 (diff)
downloadtrove-setup-e6bf7b4b32d477352cf45b4b0abb6993d524f78a.tar.gz
Add Ansible scripts
Diffstat (limited to 'ansible/roles/trove-setup/tasks/lorry-setup.yml')
-rw-r--r--ansible/roles/trove-setup/tasks/lorry-setup.yml20
1 files changed, 20 insertions, 0 deletions
diff --git a/ansible/roles/trove-setup/tasks/lorry-setup.yml b/ansible/roles/trove-setup/tasks/lorry-setup.yml
new file mode 100644
index 0000000..c50b49d
--- /dev/null
+++ b/ansible/roles/trove-setup/tasks/lorry-setup.yml
@@ -0,0 +1,20 @@
+# Depends on:
+# - users.yml
+---
+- name: Create bundles and tarballs folder for the lorry user
+ file: path=/home/lorry/{{ item }} state=directory owner=lorry group=lorry
+ with_items:
+ - bundles
+ - tarballs
+# Following the same strategy as explained in gitano-setup.yml, use
+# templates recursively over directories.
+# Create the directories needed to copy the files
+- name: Create directories needed in /etc for the lorry configuration
+ file: path=/etc/{{ item }} state=directory
+ with_lines:
+ - (cd /usr/share/trove-setup/etc && find -type d)
+# Copy all the files to the right place and fill the templates whenever possible
+- name: Add the configuration needed for lorry in /etc using templates
+ template: src=/usr/share/trove-setup/etc/{{ item }} dest=/etc/{{ item }}
+ with_lines:
+ - (cd /usr/share/trove-setup/etc && find -type f)