summaryrefslogtreecommitdiffstats
path: root/roles/webmail
diff options
context:
space:
mode:
authorGuilhem Moulin <guilhem@fripost.org>2016-07-10 01:16:00 +0200
committerGuilhem Moulin <guilhem@fripost.org>2016-07-10 01:16:00 +0200
commit02772c92ce74490ce60792b0543d60ce71f28e42 (patch)
treee0c2ee2b76d00863f217cc3ea2c52846ec515b91 /roles/webmail
parentb441dd4a7c3ce72008968d324a12e5c342d164a3 (diff)
Change the pubkey extension from .pem to .pub.
Diffstat (limited to 'roles/webmail')
-rw-r--r--roles/webmail/tasks/roundcube.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/roles/webmail/tasks/roundcube.yml b/roles/webmail/tasks/roundcube.yml
index d1fb8a2..caa91dc 100644
--- a/roles/webmail/tasks/roundcube.yml
+++ b/roles/webmail/tasks/roundcube.yml
@@ -125,23 +125,23 @@
- name: Create /etc/nginx/sites-enabled/roundcube
file: src=../sites-available/roundcube
dest=/etc/nginx/sites-enabled/roundcube
owner=root group=root
state=link force=yes
register: r2
notify:
- Restart Nginx
- name: Start Nginx
service: name=nginx state=started
when: not (r1.changed or r2.changed)
- meta: flush_handlers
- name: Fetch Nginx's X.509 certificate
# Ensure we don't fetch private data
become: False
fetch_cmd: cmd="openssl x509 -noout -pubkey"
stdin=/etc/nginx/ssl/mail.fripost.org.pem
- dest=certs/public/mail.fripost.org.pem
+ dest=certs/public/mail.fripost.org.pub
tags:
- genkey