From a889122ae89aa6547f873343d1bc74130004e047 Mon Sep 17 00:00:00 2001 From: Michael Scherer Date: Sat, 13 Dec 2014 12:05:29 +0100 Subject: Set permission appropriatly on private repository --- roles/git_repositories/tasks/main.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/roles/git_repositories/tasks/main.yml b/roles/git_repositories/tasks/main.yml index 1e1b476..aa08111 100644 --- a/roles/git_repositories/tasks/main.yml +++ b/roles/git_repositories/tasks/main.yml @@ -7,7 +7,10 @@ - file: path={{ git_repositories_dir }} state=directory -- file: path={{ git_repositories_dir }}/{{ item.name }} state=directory +- file: + path: "{{ git_repositories_dir }}/{{ item.name }}" + state: directory + mode: "{% if item.private is defined and item.private %}750{% else %}755{% endif %}" with_items: git_repositories - shell: creates={{ git_repositories_dir }}/{{ item.name }}/config chdir={{ git_repositories_dir }}/{{ item.name }} git init --bare -q --shared=group -- cgit