Make the certificates directory instead of finding it

This commit is contained in:
Jason Rothstein 2022-01-23 18:50:18 -06:00
parent d6be779113
commit 08005d5724

View File

@ -74,21 +74,15 @@
loop: '{{ ensure_dovecot.seboolean_list }}'
loop_control:
label: '{{ item.name }} will be {{ item.state }}'
- name: 'find certificates'
- name: 'mkdir certificates'
when:
- ansible_system == 'Linux'
- ensure_dovecot is defined
- ensure_dovecot.template_list is defined
- ensure_dovecot.template_list is iterable
ansible.builtin.find:
file_type: 'file'
paths:
- '/etc/httpd/md/domains/'
patterns:
- 'pubcert.pem'
- 'privkey.pem'
recurse: 'yes'
register: 'certificates'
ansible.builtin.file:
path: '/etc/dovecot/certificates'
state: 'directory'
- name: 'ensure configurations'
when:
- ansible_system == 'Linux'