Repository: cloudstack Updated Branches: refs/heads/4.2 3f2061c1f -> a2b620c0b
CLOUDSTACK-6912: 4.2 32 bit system vm template job failing in jenkins Signed-off-by: Abhinandan Prateek <aprat...@apache.org> Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/a2b620c0 Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/a2b620c0 Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/a2b620c0 Branch: refs/heads/4.2 Commit: a2b620c0b43dc6739dab3fdb854421bf63f72f1b Parents: 3f2061c Author: Harikrishna Patnala <harikrishna.patn...@citrix.com> Authored: Mon Jun 16 11:36:53 2014 +0530 Committer: Abhinandan Prateek <aprat...@apache.org> Committed: Mon Jun 16 11:42:43 2014 +0530 ---------------------------------------------------------------------- tools/appliance/definitions/systemvmtemplate/base.sh | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/a2b620c0/tools/appliance/definitions/systemvmtemplate/base.sh ---------------------------------------------------------------------- diff --git a/tools/appliance/definitions/systemvmtemplate/base.sh b/tools/appliance/definitions/systemvmtemplate/base.sh index 4d6092a..b78a6d4 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