fixing up the issue with bbdc using shared home as local home

This commit is contained in:
Geoff Jacobs
2022-10-14 09:38:28 +11:00
parent 4854676d50
commit be1f8ba43d
2 changed files with 6 additions and 2 deletions

View File

@@ -8,8 +8,6 @@
atl_product_edition: "bitbucket" atl_product_edition: "bitbucket"
atl_product_user: "bitbucket" atl_product_user: "bitbucket"
atl_product_home: "{{ atl_shared_mountpoint }}/{{ atl_product_edition }}"
atl_use_system_jdk: true atl_use_system_jdk: true
java_major_version: "11" # BB 8 will drop JDK 8 support java_major_version: "11" # BB 8 will drop JDK 8 support
atl_download_format: "tarball" atl_download_format: "tarball"

View File

@@ -1 +1,7 @@
--- ---
- name: Symlink the the shared home
file:
src: "{{ atl_shared_mountpoint }}/{{ atl_product_edition }}/shared"
dest: "{{ atl_product_home }}/shared"
state: link
force: true