mirror of
https://bitbucket.org/atlassian/dc-deployments-automation.git
synced 2025-12-14 08:53:07 -06:00
Merged in fix-bb-home (pull request #192)
Multiple fixes for Bitbucket DataCenter Approved-by: Vadym Kovalskiy Approved-by: Lee Goolsbee
This commit is contained in:
@@ -1 +0,0 @@
|
||||
no_op.yml
|
||||
17
roles/product_install/tasks/bitbucket_extra_tasks.yml
Normal file
17
roles/product_install/tasks/bitbucket_extra_tasks.yml
Normal file
@@ -0,0 +1,17 @@
|
||||
---
|
||||
- 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
|
||||
@@ -1,6 +1,4 @@
|
||||
---
|
||||
|
||||
|
||||
- name: Check for existing version cache file
|
||||
ansible.builtin.stat:
|
||||
path: "{{ atl_product_version_cache }}"
|
||||
|
||||
Reference in New Issue
Block a user