This repository has been archived on 2020-05-07. You can view files and clone it, but cannot push or open issues or pull requests.
dokku-ansible-deploy/plays/predeploy/lib/dirs.yml

11 lines
289 B
YAML

---
- name: Create application directories on the system level
become: true
file:
path: "{{ item.path }}"
state: "directory"
owner: "{{ item.owner | default('dokku') }}"
group: "{{ item.group | default('dokku') }}"
with_items: "{{ config.dirs }}"
when: config.dirs