From 3203e86152b260790349683b760811e41182052c Mon Sep 17 00:00:00 2001 From: Jean-Christophe Fillion-Robin Date: Sun, 2 Feb 2025 12:36:04 -0500 Subject: [PATCH] fix: Update to MorphoCloud/MorphoCloudWorkflow@01ffecc List of MorphoCloudWorkflow changes: ``` $ git shortlog 6625f0e..01ffecc --no-merges Jean-Christophe Fillion-Robin (2): fix(noxfile): Fix extraction of exosphere version fix(cloud-config): Correct syntax errors in git clone and ansible-playbook commands ``` See https://github.com/MorphoCloud/MorphoCloudWorkflow/compare/6625f0e...01ffecc --- cloud-config | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/cloud-config b/cloud-config index c94daf4c..fa128ada 100644 --- a/cloud-config +++ b/cloud-config @@ -45,21 +45,21 @@ retry ansible-galaxy collection install community.general rm -rf /opt/instance-config-mgt -# retry git clone \\ -# --depth=1 \\ -# --branch="{instance-config-mgt-repo-checkout}" \\ -# "{instance-config-mgt-repo-url}" \\ +# retry git clone \ +# --depth=1 \ +# --branch="{instance-config-mgt-repo-checkout}" \ +# "{instance-config-mgt-repo-url}" \ # /opt/instance-config-mgt exosphere_sha="61891a755ee0a4f9d15b586d60477814885656fc" # morpho-cloud-portal-2025.01.29-5f7a4c38 -retry git clone \\ - --checkout="$exosphere_sha" \\ - "https://github.com/MorphoCloud/exosphere.git" \\ +retry git clone \ + --checkout="$exosphere_sha" \ + "https://github.com/MorphoCloud/exosphere.git" \ /opt/instance-config-mgt -ansible-playbook \\ - -i /opt/instance-config-mgt/ansible/hosts \\ - -e "{\\"guac_enabled\\":true,\\"gui_enabled\\":true,\\"ansible_python_interpreter\\":\\"/opt/ansible-venv/bin/python\\"}" \\ +ansible-playbook \ + -i /opt/instance-config-mgt/ansible/hosts \ + -e "{\"guac_enabled\":true,\"gui_enabled\":true,\"ansible_python_interpreter\":\"/opt/ansible-venv/bin/python\"}" \ /opt/instance-config-mgt/ansible/playbook.yml ANSIBLE_RETURN_CODE=$? if [ $ANSIBLE_RETURN_CODE -eq 0 ]; then STATUS="complete"; else STATUS="error"; fi