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:50:14 UTC

git commit: updated refs/heads/master-6-17-stable to 20d05d6

Updated Branches:
  refs/heads/master-6-17-stable b9d4dd0ff -> 20d05d684


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/20d05d68
Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/20d05d68
Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/20d05d68

Branch: refs/heads/master-6-17-stable
Commit: 20d05d6849a122636f5c6333b2224e1caf591660
Parents: b9d4dd0
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:49:39 2013 -0700

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


http://git-wip-us.apache.org/repos/asf/cloudstack/blob/20d05d68/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() {