From c9182875d51afe9407271334d0be1fdbd718c4d1 Mon Sep 17 00:00:00 2001 From: Ward Vandewege Date: Thu, 16 Jul 2015 18:02:30 -0400 Subject: [PATCH] run-deploy.sh improvements: remove the need for a .ssh/config entry for the shortname of each API server. Thanks for the suggestion Nico. No issue # --- jenkins/run-deploy.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/jenkins/run-deploy.sh b/jenkins/run-deploy.sh index 519c126d7c..398a0507d0 100755 --- a/jenkins/run-deploy.sh +++ b/jenkins/run-deploy.sh @@ -190,11 +190,11 @@ KEEP_NODES=`ARVADOS_API_HOST=$ARVADOS_API_HOST ARVADOS_API_TOKEN=$ARVADOS_API_TO title "Updating API server" SUM_ECODE=0 -run_puppet $IDENTIFIER ECODE +run_puppet $IDENTIFIER.arvadosapi.com ECODE SUM_ECODE=$(($SUM_ECODE + $ECODE)) -run_command $IDENTIFIER ECODE "/usr/local/bin/arvados-api-server-upgrade.sh" +run_command $IDENTIFIER.arvadosapi.com ECODE "/usr/local/bin/arvados-api-server-upgrade.sh" SUM_ECODE=$(($SUM_ECODE + $ECODE)) -run_command $IDENTIFIER ECODE "dpkg -L arvados-mailchimp-plugin 2>/dev/null && apt-get install arvados-mailchimp-plugin --reinstall || echo" +run_command $IDENTIFIER.arvadosapi.com ECODE "dpkg -L arvados-mailchimp-plugin 2>/dev/null && apt-get install arvados-mailchimp-plugin --reinstall || echo" SUM_ECODE=$(($SUM_ECODE + $ECODE)) if [[ "$SUM_ECODE" != "0" ]]; then -- 2.30.2