infrastructure/roles/common/tasks/main.yml

10 lines
215 B
YAML
Raw Normal View History

2024-09-26 22:02:36 +00:00
---
- name: Create the services directory
ansible.builtin.file:
path: "{{ services_path }}"
state: directory
mode: "0755"
owner: "{{ ansible_user }}"
group: "{{ ansible_user }}"
become: true