2016-04-20 15:21:19 +02:00
|
|
|
---
|
2018-08-20 19:19:04 +02:00
|
|
|
- block:
|
|
|
|
- name: Ensure that the PKI directory exists
|
|
|
|
file: path={{ pki_dir }} state=directory owner=root group=root mode=0755
|
2016-04-22 18:01:58 +02:00
|
|
|
|
2018-08-20 19:19:04 +02:00
|
|
|
- name: Ensure that the PKI subdirectories exist
|
|
|
|
file: path={{ pki_dir }}/{{ item }} state=directory owner=root group=root mode=0755
|
|
|
|
with_items: '{{ pki_subdirs }}'
|
2018-08-03 17:18:02 +02:00
|
|
|
|
2018-08-20 19:19:04 +02:00
|
|
|
tags: [ 'pki', 'ssl', 'ca', 'letsencrypt' ]
|
2016-04-20 15:21:19 +02:00
|
|
|
|