From be1f8ba43d74ce91132c671daf8111b6bf022748 Mon Sep 17 00:00:00 2001 From: Geoff Jacobs Date: Fri, 14 Oct 2022 09:38:28 +1100 Subject: [PATCH] fixing up the issue with bbdc using shared home as local home --- aws_bitbucket_dc_node.yml | 2 -- roles/product_install/tasks/no_op.yml | 6 ++++++ 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/aws_bitbucket_dc_node.yml b/aws_bitbucket_dc_node.yml index 3e75299..797197f 100644 --- a/aws_bitbucket_dc_node.yml +++ b/aws_bitbucket_dc_node.yml @@ -8,8 +8,6 @@ atl_product_edition: "bitbucket" atl_product_user: "bitbucket" - atl_product_home: "{{ atl_shared_mountpoint }}/{{ atl_product_edition }}" - atl_use_system_jdk: true java_major_version: "11" # BB 8 will drop JDK 8 support atl_download_format: "tarball" diff --git a/roles/product_install/tasks/no_op.yml b/roles/product_install/tasks/no_op.yml index ed97d53..22b9f6e 100644 --- a/roles/product_install/tasks/no_op.yml +++ b/roles/product_install/tasks/no_op.yml @@ -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 \ No newline at end of file