From 9d19e129ab41620fa3d7f327e8ab86adebe76c41 Mon Sep 17 00:00:00 2001 From: Geoff Jacobs Date: Fri, 16 Aug 2019 14:40:58 +1000 Subject: [PATCH 1/2] ITOPS testing removal of quotes from base path --- group_vars/aws_node_local.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/group_vars/aws_node_local.yml b/group_vars/aws_node_local.yml index ab854c1..95b59e5 100644 --- a/group_vars/aws_node_local.yml +++ b/group_vars/aws_node_local.yml @@ -18,7 +18,7 @@ atl_shared_mountpoint: "/media/atl" atl_product_user_uid: '2001' # FIXME: Some of these should be overridden from the environment? -atl_home_base: "/var/atlassian/application-data" +atl_home_base: /var/atlassian/application-data atl_product_home: "{{ atl_home_base }}/{{ atl_product_family }}" atl_product_shared_home_map: confluence: "confluence/shared-home" From 0cefe5e34ce4bb44837e8b88d75d23c49dc3f0e4 Mon Sep 17 00:00:00 2001 From: Geoff Jacobs Date: Fri, 16 Aug 2019 15:11:18 +1000 Subject: [PATCH 2/2] itops removing nested quotes in crowd-init.properties file --- group_vars/aws_node_local.yml | 2 +- roles/crowd_config/tasks/main.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/group_vars/aws_node_local.yml b/group_vars/aws_node_local.yml index 95b59e5..ab854c1 100644 --- a/group_vars/aws_node_local.yml +++ b/group_vars/aws_node_local.yml @@ -18,7 +18,7 @@ atl_shared_mountpoint: "/media/atl" atl_product_user_uid: '2001' # FIXME: Some of these should be overridden from the environment? -atl_home_base: /var/atlassian/application-data +atl_home_base: "/var/atlassian/application-data" atl_product_home: "{{ atl_home_base }}/{{ atl_product_family }}" atl_product_shared_home_map: confluence: "confluence/shared-home" diff --git a/roles/crowd_config/tasks/main.yml b/roles/crowd_config/tasks/main.yml index 976718d..cd59fb6 100644 --- a/roles/crowd_config/tasks/main.yml +++ b/roles/crowd_config/tasks/main.yml @@ -19,7 +19,7 @@ - name: Set Crowd home directory in crowd-init.properties file lineinfile: path: "{{ atl_product_installation_versioned }}/crowd-webapp/WEB-INF/classes/crowd-init.properties" - line: 'crowd.home="{{ atl_product_home }}"' + line: 'crowd.home={{ atl_product_home }}' - name: Set the Tomcat environment lineinfile: