Files
dc-deployments-automation/roles/product_install/tasks/bitbucket_extra_tasks.yml
2023-06-22 15:12:28 +10:00

18 lines
528 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
- name: Symlink the the shared home
ansible.builtin.file:
src: "{{ atl_shared_mountpoint }}/{{ atl_product_edition }}/shared"
dest: "{{ atl_product_home }}/shared"
state: link
force: true
when: not skip_shared_home_symlink | bool