From c687f8ab7663a049b4c71c42b8e02b2f6843157b Mon Sep 17 00:00:00 2001 From: Steve Smith Date: Mon, 16 Sep 2019 11:56:22 +1000 Subject: [PATCH] DCD-658: Break up commandline for clarity. --- bin/ansible-with-atl-env | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/bin/ansible-with-atl-env b/bin/ansible-with-atl-env index 393cb02..599a2f9 100755 --- a/bin/ansible-with-atl-env +++ b/bin/ansible-with-atl-env @@ -15,4 +15,8 @@ set +a # Use Ansible from virtualenv if provided pipenv run \ - ansible-playbook -v -i $INV $ATL_DEPLOYMENT_REPOSITORY_CUSTOM_PARAMS $PLAYBOOK 2>&1 | tee --append $LOG_FILE + ansible-playbook \ + -v $ATL_DEPLOYMENT_REPOSITORY_CUSTOM_PARAMS \ + -i $INV \ + $PLAYBOOK \ + 2>&1 | tee --append $LOG_FILE