From a2b620c0b43dc6739dab3fdb854421bf63f72f1b Mon Sep 17 00:00:00 2001 From: Harikrishna Patnala Date: Mon, 16 Jun 2014 11:36:53 +0530 Subject: [PATCH] CLOUDSTACK-6912: 4.2 32 bit system vm template job failing in jenkins Signed-off-by: Abhinandan Prateek --- tools/appliance/definitions/systemvmtemplate/base.sh | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/tools/appliance/definitions/systemvmtemplate/base.sh b/tools/appliance/definitions/systemvmtemplate/base.sh index 4d6092a5995..b78a6d47f3f 100644 --- a/tools/appliance/definitions/systemvmtemplate/base.sh +++ b/tools/appliance/definitions/systemvmtemplate/base.sh @@ -1,9 +1,14 @@ # Update the box -apt-get -y update + +export DEBIAN_FRONTEND=noninteractive +export DEBIAN_PRIORITY=critical + + +apt-get -q -y --force-yes update #below are needed for ruby perhaps #apt-get -y install linux-headers-$(uname -r) build-essential #apt-get -y install zlib1g-dev libssl-dev libreadline-gplv2-dev -apt-get -y install curl unzip +apt-get -q -y --force-yes install curl unzip apt-get clean # Set up sudo, TODO: Check security concerns