Updated Branches: refs/heads/4.2 28a85fe00 -> 7ec12dae0
CLOUDSTACK-2481: SystemVM template 64-bit patched with vhd-util This allows a template of a snapshot operation Signed-off-by: Prasanna Santhanam <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/7ec12dae Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/7ec12dae Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/7ec12dae Branch: refs/heads/4.2 Commit: 7ec12dae061c9cf495ae6e3b2390c0a4ac03eb75 Parents: 28a85fe Author: Prasanna Santhanam <[email protected]> Authored: Sat Jul 13 10:34:54 2013 +0530 Committer: Prasanna Santhanam <[email protected]> Committed: Sat Jul 13 10:45:50 2013 +0530 ---------------------------------------------------------------------- tools/appliance/definitions/systemvmtemplate64/postinstall.sh | 5 +++++ 1 file changed, 5 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/7ec12dae/tools/appliance/definitions/systemvmtemplate64/postinstall.sh ---------------------------------------------------------------------- diff --git a/tools/appliance/definitions/systemvmtemplate64/postinstall.sh b/tools/appliance/definitions/systemvmtemplate64/postinstall.sh index cbcd282..53ae2bb 100644 --- a/tools/appliance/definitions/systemvmtemplate64/postinstall.sh +++ b/tools/appliance/definitions/systemvmtemplate64/postinstall.sh @@ -165,12 +165,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() {
