diff options
author | Tim Flink <tflink@fedoraproject.org> | 2016-12-15 20:38:46 +0000 |
---|---|---|
committer | Tim Flink <tflink@fedoraproject.org> | 2016-12-15 20:38:53 +0000 |
commit | 8f21c34eec42a26c9c3d50c56c801fba938b68d2 (patch) | |
tree | 1fd3e6f7f5a365587b948c72fad2c0cc8abc2f40 | |
parent | 7b51c1cd769ea4de1c3b965012139ebbcf424bb9 (diff) | |
download | ansible-8f21c34eec42a26c9c3d50c56c801fba938b68d2.tar.gz ansible-8f21c34eec42a26c9c3d50c56c801fba938b68d2.tar.xz ansible-8f21c34eec42a26c9c3d50c56c801fba938b68d2.zip |
auth extension needs to be cloned before doing anything else with phab
-rw-r--r-- | roles/phabricator/tasks/main.yml | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/roles/phabricator/tasks/main.yml b/roles/phabricator/tasks/main.yml index bc696bad2..86c67a0ae 100644 --- a/roles/phabricator/tasks/main.yml +++ b/roles/phabricator/tasks/main.yml @@ -96,6 +96,12 @@ group: root mode: 0644 +- name: clone phabricator-extension-ipsilonoauth + git: + repo: 'https://pagure.io/phabricator-extension-ipsilonoauth.git' + dest: /srv/phabricator-extension-ipsilonoauth + version: c70333b0d2d4d348b429e82e39d634071accf939 + - name: create git repo root for phabricator file: path={{ phabricator_repodir }} state=directory owner={{ phabricator_daemon_user }} group={{ phabricator_daemon_user }} mode=1755 when: enable_phabricator_git @@ -155,12 +161,6 @@ - name: start and enable phabricator phd service service: name=phd enabled=yes state=started -- name: clone phabricator-extension-ipsilonoauth - git: - repo: 'https://pagure.io/phabricator-extension-ipsilonoauth.git' - dest: /srv/phabricator-extension-ipsilonoauth - version: c70333b0d2d4d348b429e82e39d634071accf939 - - name: copy phabricator httpd config template: src=phabricator.conf.j2 dest=/etc/httpd/conf.d/phabricator.conf owner=root group=root mode=0644 tags: |