mirror of
https://bitbucket.org/atlassian/dc-deployments-automation.git
synced 2025-12-14 08:53:07 -06:00
10 lines
277 B
YAML
10 lines
277 B
YAML
---
|
|
- name: Create the product local home directory
|
|
ansible.builtin.file:
|
|
path: "{{ atl_product_home }}"
|
|
state: directory
|
|
owner: "{{ atl_product_user }}"
|
|
group: "{{ atl_product_user }}"
|
|
mode: "0754"
|
|
changed_when: false # For Molecule idempotence check
|