fixing ssl cert/key install for phabricator

This commit is contained in:
Tim Flink 2015-05-13 18:57:33 +00:00
parent 82b37d0064
commit 6de111f1b6

View file

@ -89,7 +89,7 @@
- name: Install the SSL cert
copy:
src: "{{ private}}/files/httpd/{{ sslcertfile }}"
dest: /etc/pki/tls/certs/{{ item }}
dest: /etc/pki/tls/certs/{{ sslcertfile }}
owner: root
group: root
mode: 0600
@ -97,7 +97,7 @@
- name: Install the SSL key
copy:
src: "{{ private}}/files/httpd/{{ sslkeyfile }}"
dest: /etc/pki/tls/certs/private/{{ item }}
dest: /etc/pki/tls/private/{{ sslkeyfile }}
owner: root
group: root
mode: 0600