mirror of
https://bitbucket.org/atlassian/dc-deployments-automation.git
synced 2025-12-14 08:53:07 -06:00
ITOPSENG-283 upstream ansible example had wrong syntax 🤦
This commit is contained in:
@@ -18,7 +18,7 @@ set +a
|
|||||||
|
|
||||||
# Use Ansible from virtualenv if provided
|
# Use Ansible from virtualenv if provided
|
||||||
pipenv run \
|
pipenv run \
|
||||||
ansible-playbook -vvvv \
|
ansible-playbook -v \
|
||||||
$ATL_DEPLOYMENT_REPOSITORY_CUSTOM_PARAMS \
|
$ATL_DEPLOYMENT_REPOSITORY_CUSTOM_PARAMS \
|
||||||
-i $INV \
|
-i $INV \
|
||||||
$PLAYBOOK \
|
$PLAYBOOK \
|
||||||
|
|||||||
@@ -8,15 +8,15 @@
|
|||||||
- name: Set the minimum heap size (Xms)
|
- name: Set the minimum heap size (Xms)
|
||||||
lineinfile:
|
lineinfile:
|
||||||
path: "{{ atl_product_installation_versioned }}/apache-tomcat/bin/setenv.sh"
|
path: "{{ atl_product_installation_versioned }}/apache-tomcat/bin/setenv.sh"
|
||||||
regexp: '^(.*)Xmx(\\d+\\w)(\\s.*)$'
|
regexp: '^(.*)Xms(\d+\w)(\s.*)$'
|
||||||
line: '\1Xms${atl_jvm_heap}\3'
|
line: '\1Xms{{ atl_jvm_heap }}\3'
|
||||||
backrefs: yes
|
backrefs: yes
|
||||||
|
|
||||||
- name: Set the maxmimum heap size (Xmx)
|
- name: Set the maxmimum heap size (Xmx)
|
||||||
lineinfile:
|
lineinfile:
|
||||||
path: "{{ atl_product_installation_versioned }}/apache-tomcat/bin/setenv.sh"
|
path: "{{ atl_product_installation_versioned }}/apache-tomcat/bin/setenv.sh"
|
||||||
regexp: '^(.*)Xmx(\\d+\\w)(\\s.*)$'
|
regexp: '^(.*)Xmx(\d+\w)(\s.*)$'
|
||||||
line: '\1Xmx${atl_jvm_heap}\3'
|
line: '\1Xmx{{ atl_jvm_heap }}\3'
|
||||||
backrefs: yes
|
backrefs: yes
|
||||||
|
|
||||||
- name: Set Crowd home directory in crowd-init.properties file
|
- name: Set Crowd home directory in crowd-init.properties file
|
||||||
|
|||||||
Reference in New Issue
Block a user