From 0088f50a9bfe297760f9641dce4e770926d0f2fe Mon Sep 17 00:00:00 2001 From: Guilhem Moulin Date: Fri, 17 Jan 2014 04:46:06 +0100 Subject: Ansible automatically creates parent directories. --- roles/lists/tasks/mlmmj.yml | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) (limited to 'roles/lists') diff --git a/roles/lists/tasks/mlmmj.yml b/roles/lists/tasks/mlmmj.yml index 934433e..5944e57 100644 --- a/roles/lists/tasks/mlmmj.yml +++ b/roles/lists/tasks/mlmmj.yml @@ -47,15 +47,14 @@ owner=root group=root mode=0644 -- name: Create /usr/share/mlmmj/... - file: path=/usr/share/mlmmj/{{ item }} +- name: Create /usr/share/mlmmj/static/{css,fonts} + file: path=/usr/share/mlmmj/static/{{ item }} state=directory owner=root group=root mode=0755 with_items: - - static - - static/css - - static/fonts + - css + - fonts - name: Copy CSS files copy: src=usr/share/mlmmj/static/css/{{ item }} @@ -76,3 +75,9 @@ - glyphicons-halflings-regular.svg - glyphicons-halflings-regular.ttf - glyphicons-halflings-regular.woff + +- name: Create /usr/lib/cgi-bin/mlmmj + file: path=/usr/lib/cgi-bin/mlmmj + state=directory + owner=root group=root + mode=0755 -- cgit v1.2.3