You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by ed...@apache.org on 2013/06/21 02:51:56 UTC

[2/2] git commit: updated refs/heads/master to 5456d0d

CLOUDSTACK-2481: add vhd-util in system vm template


Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo
Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/5456d0d8
Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/5456d0d8
Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/5456d0d8

Branch: refs/heads/master
Commit: 5456d0d85e6a77910ae188a3ba0b8063d17188e5
Parents: 6b9ea17
Author: Edison Su <su...@gmail.com>
Authored: Thu Jun 20 17:49:39 2013 -0700
Committer: Edison Su <su...@gmail.com>
Committed: Thu Jun 20 17:51:38 2013 -0700

----------------------------------------------------------------------
 tools/appliance/definitions/systemvmtemplate/postinstall.sh | 5 +++++
 1 file changed, 5 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cloudstack/blob/5456d0d8/tools/appliance/definitions/systemvmtemplate/postinstall.sh
----------------------------------------------------------------------
diff --git a/tools/appliance/definitions/systemvmtemplate/postinstall.sh b/tools/appliance/definitions/systemvmtemplate/postinstall.sh
index 203cf54..2a8a75b 100644
--- a/tools/appliance/definitions/systemvmtemplate/postinstall.sh
+++ b/tools/appliance/definitions/systemvmtemplate/postinstall.sh
@@ -164,12 +164,17 @@ EOF
   locale-gen en_US.UTF-8
 }
 
+fix_vhdutil() {
+  wget --no-check-certificate http://download.cloud.com.s3.amazonaws.com/tools/vhd-util -O /bin/vhd-util
+}
+
 do_fixes() {
   fix_nameserver
   fix_inittab
   fix_acpid
   fix_hostname
   fix_locale
+  fix_vhdutil
 }
 
 configure_apache2() {