From e47ca86ca30f14163152965da4ab1f5e2313d166 Mon Sep 17 00:00:00 2001 From: Mathieu Bridon Date: Wed, 17 Sep 2014 12:23:06 +0200 Subject: [PATCH] distgit: One action per task This had been found by misc during his review of the patches, but the unfixed patch is what got merged. https://fedorahosted.org/fedora-infrastructure/ticket/4452 --- roles/distgit/tasks/main.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/roles/distgit/tasks/main.yml b/roles/distgit/tasks/main.yml index 47a462036a..f2beba993c 100644 --- a/roles/distgit/tasks/main.yml +++ b/roles/distgit/tasks/main.yml @@ -33,8 +33,10 @@ # -- Dist Git -------------------------------------------- # This is the Git setup itself: group, root directory, scripts,... -- name: create the distgit root directory) +- name: create the distgit root directory (/srv/git) file: dest=/srv/git state=directory mode=0755 + +- name: create the distgit root directory (/srv/git/rpms) file: dest=/srv/git/rpms state=directory mode=2775 group=packager - name: install the distgit scripts