Tobias Reisinger
4104057771
roles/ and inventory/ are now in playbooks/ also fixed issues reported by ansible-lint
9 lines
215 B
YAML
9 lines
215 B
YAML
---
|
|
- name: Create the services directory
|
|
ansible.builtin.file:
|
|
path: "{{ services_path }}"
|
|
state: directory
|
|
mode: "0755"
|
|
owner: "{{ ansible_user }}"
|
|
group: "{{ ansible_user }}"
|
|
become: true
|