From be68e901353548dd87ccadcd62ae82551b1995d2 Mon Sep 17 00:00:00 2001 From: Nico Cesar Date: Wed, 7 Oct 2015 10:09:16 -0400 Subject: [PATCH] 7460: c97qk doesnt need mailchimp deployed. this caused deploy to fail in Ubuntu refs #7460 --- jenkins/run-deploy.sh | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/jenkins/run-deploy.sh b/jenkins/run-deploy.sh index 06680a001b..8762aae272 100755 --- a/jenkins/run-deploy.sh +++ b/jenkins/run-deploy.sh @@ -145,8 +145,11 @@ run_puppet $IDENTIFIER.arvadosapi.com ECODE SUM_ECODE=$(($SUM_ECODE + $ECODE)) run_command $IDENTIFIER.arvadosapi.com ECODE "/usr/local/bin/arvados-api-server-upgrade.sh" SUM_ECODE=$(($SUM_ECODE + $ECODE)) -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 [ ! "$IDENTIFIER" = "c97qk" ] +then + 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)) +fi if [[ "$SUM_ECODE" != "0" ]]; then title "ERROR: Updating API server FAILED" -- 2.30.2