diff options
author | Ricky Elrod <codeblock@fedoraproject.org> | 2016-05-27 18:54:03 +0000 |
---|---|---|
committer | Ricky Elrod <codeblock@fedoraproject.org> | 2016-05-27 18:54:03 +0000 |
commit | c80eab5b066a7036895d2cbc112c8ae6eaf11087 (patch) | |
tree | c4266c962f9a1b79e73a88ebaef493001ccc7a50 | |
parent | ad066cf408cd837b17e6807eeb02f41b38775c78 (diff) | |
download | ansible-c80eab5b066a7036895d2cbc112c8ae6eaf11087.tar.gz ansible-c80eab5b066a7036895d2cbc112c8ae6eaf11087.tar.xz ansible-c80eab5b066a7036895d2cbc112c8ae6eaf11087.zip |
That's not gonna work
Signed-off-by: Ricky Elrod <codeblock@fedoraproject.org>
-rw-r--r-- | roles/piwik/tasks/main.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/roles/piwik/tasks/main.yml b/roles/piwik/tasks/main.yml index 3d758aef6..815557ef2 100644 --- a/roles/piwik/tasks/main.yml +++ b/roles/piwik/tasks/main.yml @@ -6,8 +6,8 @@ - piwik - name: set up http configs for piwik - template: src={{ item }} dest=/etc/httpd/conf.d/{{ item }} - owner=root group=root mode=0644 + file: src={{ item }} dest=/etc/httpd/conf.d/{{ item }} + owner=root group=root mode=0644 with_items: - piwik-httpd.conf tags: @@ -19,7 +19,7 @@ - name: Install the SSL cert so that we can use https copy: > - src={{ private}}/files/httpd/{{ item }} dest=/etc/pki/tls/certs/{{ item }} + src={{ private }}/files/httpd/{{ item }} dest=/etc/pki/tls/certs/{{ item }} owner=root group=root mode=0600 notify: restart stunnel with_items: |