diff options
author | Guilhem Moulin <guilhem@fripost.org> | 2014-07-10 03:45:25 +0200 |
---|---|---|
committer | Guilhem Moulin <guilhem@fripost.org> | 2015-06-07 02:52:58 +0200 |
commit | fcc307aafeb8438de12f339af0f5c83ab647c8a9 (patch) | |
tree | e27a0284e7e83b75b05d0d47212c576dd3be8abd /roles/IMAP/templates | |
parent | c515d0adea0ce6408dfaa5719a3bbf3340da7d92 (diff) |
Hash certs using a lookup in the template instead of add a new task.
Diffstat (limited to 'roles/IMAP/templates')
-rw-r--r--[l---------] | roles/IMAP/templates/etc/postfix/relay_clientcerts.j2 | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/roles/IMAP/templates/etc/postfix/relay_clientcerts.j2 b/roles/IMAP/templates/etc/postfix/relay_clientcerts.j2 index b375aa0..42a83b5 120000..100644 --- a/roles/IMAP/templates/etc/postfix/relay_clientcerts.j2 +++ b/roles/IMAP/templates/etc/postfix/relay_clientcerts.j2 @@ -1 +1,6 @@ -../../../../out/templates/etc/postfix/relay_clientcerts.j2
\ No newline at end of file +# {{ ansible_managed }} +# /!\ WARNING: smtp_tls_fingerprint_digest MUST be sha256! + +{% for h in groups.MX | difference([inventory_hostname]) | sort %} +{{ lookup('pipe', 'openssl x509 -in certs/postfix/'+h+'.pem -noout -fingerprint -sha256 | cut -d= -f2') }} {{ h }} +{% endfor %} |