From 566c1d9fc5573af900a4e34b8d8de9bc448cc9a0 Mon Sep 17 00:00:00 2001 From: Markus Hauschild Date: Wed, 6 Apr 2016 19:02:54 +0200 Subject: [PATCH] Fix certmgr config templates. --- roles/mail/templates/certs.j2 | 8 ++++---- roles/mail/templates/mailman/certs.j2 | 4 ++-- roles/owncloud/templates/certs.j2 | 4 ++-- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/roles/mail/templates/certs.j2 b/roles/mail/templates/certs.j2 index 4b21196..a9bf1f2 100644 --- a/roles/mail/templates/certs.j2 +++ b/roles/mail/templates/certs.j2 @@ -6,22 +6,22 @@ group: postfix perm: '400' format: crt - notify: 'service postfix restart' + action: 'service postfix restart' - path: /etc/postfix/ssl/{{ mail_server }}.key user: postfix group: postfix perm: '400' format: key - notify: 'service postfix restart' + action: 'service postfix restart' - path: /etc/dovecot/ssl/{{ mail_server }}.crt user: dovecot group: dovecot perm: '400' format: crt - notify: 'service dovecot restart' + action: 'service dovecot restart' - path: /etc/dovecot/ssl/{{ mail_server }}.key user: dovecot group: dovecot perm: '400' format: key - notify: 'service dovecot restart' + action: 'service dovecot restart' diff --git a/roles/mail/templates/mailman/certs.j2 b/roles/mail/templates/mailman/certs.j2 index c80c1d7..c8e3398 100644 --- a/roles/mail/templates/mailman/certs.j2 +++ b/roles/mail/templates/mailman/certs.j2 @@ -6,10 +6,10 @@ group: nginx perm: '400' format: crt,ca - notify: 'service nginx restart' + action: 'service nginx restart' - path: /etc/nginx/ssl/{{ mailman_domain }}.key user: nginx group: nginx perm: '400' format: key - notify: 'service nginx restart' + action: 'service nginx restart' diff --git a/roles/owncloud/templates/certs.j2 b/roles/owncloud/templates/certs.j2 index 0605855..1872846 100644 --- a/roles/owncloud/templates/certs.j2 +++ b/roles/owncloud/templates/certs.j2 @@ -6,10 +6,10 @@ group: root perm: '400' format: crt,ca - notify: 'service nginx restart' + action: 'service nginx restart' - path: /etc/nginx/ssl/{{ owncloud_domain }}.key user: root group: root perm: '400' format: key - notify: 'service nginx restart' + action: 'service nginx restart'