From 1821f4ec06e8a8e0c57c9792049e3c8d08ff3ab3 Mon Sep 17 00:00:00 2001 From: Leo Simons Date: Tue, 22 Jul 2014 17:20:07 +0200 Subject: [PATCH] CLOUDSTACK-7143: fix a missing apt-get update In 8e2d06153b3d5ec1540fac1c8fbc97b5d2b58a8e I mistakenly/accidentally a apt-get update. As https://wiki.debian.org/Multiarch/HOWTO explains, apt-get update is needed after adding a new architecture. --- .../definitions/systemvmtemplate/install_systemvm_packages.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/appliance/definitions/systemvmtemplate/install_systemvm_packages.sh b/tools/appliance/definitions/systemvmtemplate/install_systemvm_packages.sh index dac727c4a8d..bc29e62c1b5 100644 --- a/tools/appliance/definitions/systemvmtemplate/install_systemvm_packages.sh +++ b/tools/appliance/definitions/systemvmtemplate/install_systemvm_packages.sh @@ -47,6 +47,7 @@ function install_packages() { #32 bit architecture support:: not required for 32 bit template if [ "${arch}" != "i386" ]; then dpkg --add-architecture i386 + apt-get update ${apt_install} links:i386 libuuid1:i386 fi