mirror of
https://git.lapiole.org/dani/ansible-roles.git
synced 2025-04-16 02:03:09 +02:00
9 lines
286 B
YAML
9 lines
286 B
YAML
---
|
|
|
|
- name: Create directories
|
|
file: path={{ item.dir }} state=directory owner={{ item.owner | default(omit) }} group={{ item.group | default(omit) }} mode={{ item.mode | default(omit) }}
|
|
loop:
|
|
- dir: /etc/prosody/ansible_conf.d
|
|
- dir: /opt/prosody/modules
|
|
tags: prosody
|