diff options
author | Guilhem Moulin <guilhem@fripost.org> | 2015-12-02 23:14:30 +0100 |
---|---|---|
committer | Guilhem Moulin <guilhem@fripost.org> | 2015-12-03 14:57:28 +0100 |
commit | 03bc468e0dab47c9720d3ffa78ab3880d11870b5 (patch) | |
tree | 6e6236538504a4c0398c688151b61e77718f7d5e /roles/wiki | |
parent | 0258fa4ce96967351f52a9a538a287351392abf2 (diff) |
Automatically fetch X.509 certificates, and add them to git.
Diffstat (limited to 'roles/wiki')
-rw-r--r-- | roles/wiki/tasks/main.yml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/roles/wiki/tasks/main.yml b/roles/wiki/tasks/main.yml index 708f2a1..22a5831 100644 --- a/roles/wiki/tasks/main.yml +++ b/roles/wiki/tasks/main.yml @@ -103,6 +103,22 @@ notify: - Restart Nginx +- name: Start Nginx + service: name=nginx state=started + when: not (r1.changed or r2.changed or r3.changed) + +- meta: flush_handlers + +- name: Fetch Nginx's X.509 certificate + # Ensure we don't fetch private data + sudo: False + fetch: src=/etc/nginx/ssl/fripost.org.pem + dest=certs/public/ + fail_on_missing=yes + flat=yes + tags: + - genkey + - name: Create directory /var/www/fripost.org/autoconfig/mail file: path=/var/www/fripost.org/autoconfig/mail state=directory |