diff options
author | Patrick Uiterwijk <puiterwijk@redhat.com> | 2014-02-09 20:49:51 +0000 |
---|---|---|
committer | Patrick Uiterwijk <puiterwijk@redhat.com> | 2014-02-09 20:49:51 +0000 |
commit | a29a44b87ebcb4f700c787f8692001bc6f1bea53 (patch) | |
tree | 4054beb5cc7d02f7c9a2d8ffe8cdf7caf9a52c27 | |
parent | 3a0703ad540253fe2975ab13ec5a05144871ce97 (diff) | |
download | ansible-a29a44b87ebcb4f700c787f8692001bc6f1bea53.tar.gz ansible-a29a44b87ebcb4f700c787f8692001bc6f1bea53.tar.xz ansible-a29a44b87ebcb4f700c787f8692001bc6f1bea53.zip |
It runs as fedoauth, so that user needs access to the config
-rw-r--r-- | roles/fedoauth/tasks/main.yml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/roles/fedoauth/tasks/main.yml b/roles/fedoauth/tasks/main.yml index 84d4f8085..b0631d3ff 100644 --- a/roles/fedoauth/tasks/main.yml +++ b/roles/fedoauth/tasks/main.yml @@ -20,7 +20,7 @@ - name: copy fedoauth configuration template: src=fedoauth.cfg dest=/etc/fedoauth/fedoauth.cfg - owner=apache group=apache mode=0600 + owner=fedoauth group=fedoauth mode=0600 when: env != "staging" tags: - config @@ -30,7 +30,7 @@ - name: copy fedoauth STG configuration template: src=fedoauth.stg.cfg dest=/etc/fedoauth/fedoauth.cfg - owner=apache group=apache mode=0600 + owner=fedoauth group=fedoauth mode=0600 when: env == "staging" tags: - config @@ -39,12 +39,12 @@ - name: copy fedoauth private key copy: src={{ private }}/files/fedoauth/persona.key dest=/etc/fedoauth/persona.key - owner=apache group=apache mode=0600 + owner=fedoauth group=fedoauth mode=0600 when: env != "staging" - name: copy fedoauth STG private key copy: src={{ private }}/files/fedoauth/persona.stg.key dest=/etc/fedoauth/persona.stg.key - owner=apache group=apache mode=0600 + owner=fedoauth group=fedoauth mode=0600 when: env == "staging" - name: create the database scheme |