forked from ISTI-ansible-roles/ansible-roles
11 lines
345 B
YAML
11 lines
345 B
YAML
---
|
|
- name: Ensure that the PKI directory exists
|
|
file: path={{ pki_dir }} state=directory owner=root group=root mode=0755
|
|
tags: [ 'pki', 'ssl' ]
|
|
|
|
- name: Ensure that the PKI subdirectories exist
|
|
file: path={{ pki_dir }}/{{ item }} state=directory owner=root group=root mode=0755
|
|
with_items: '{{ pki_subdirs }}'
|
|
tags: [ 'pki', 'ssl' ]
|
|
|