mirror of
https://bitbucket.org/atlassian/dc-deployments-automation.git
synced 2025-12-14 17:03:06 -06:00
breaking the symlink from bitbucket_extra_tasks.yml to no_op.yml which was contributing to broken builds
This commit is contained in:
@@ -1 +0,0 @@
|
|||||||
no_op.yml
|
|
||||||
16
roles/product_install/tasks/bitbucket_extra_tasks.yml
Normal file
16
roles/product_install/tasks/bitbucket_extra_tasks.yml
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
---
|
||||||
|
- name: Create the product local home directory
|
||||||
|
ansible.builtin.file:
|
||||||
|
path: "{{ atl_product_home }}/shared"
|
||||||
|
state: directory
|
||||||
|
owner: "{{ atl_product_user }}"
|
||||||
|
group: "{{ atl_product_user }}"
|
||||||
|
mode: "0754"
|
||||||
|
|
||||||
|
- 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
|
||||||
Reference in New Issue
Block a user