Added hv kvp daemon support for 64 bit systemvm template to support system vms to run on HyperV. hv_kvp daemon is used to pass the boot args from host to the guest.
Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/4a61e928 Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/4a61e928 Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/4a61e928 Branch: refs/heads/master Commit: 4a61e928c4485020a78d0bfbc4be2f06e2e4c301 Parents: 4d18719 Author: Rajesh Battala <[email protected]> Authored: Wed Nov 27 16:05:21 2013 +0530 Committer: Rajesh Battala <[email protected]> Committed: Tue Dec 3 12:17:09 2013 +0530 ---------------------------------------------------------------------- tools/appliance/definitions/systemvm64template/postinstall.sh | 5 +++++ 1 file changed, 5 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/4a61e928/tools/appliance/definitions/systemvm64template/postinstall.sh ---------------------------------------------------------------------- diff --git a/tools/appliance/definitions/systemvm64template/postinstall.sh b/tools/appliance/definitions/systemvm64template/postinstall.sh index d9ce8a1..d25ba13 100644 --- a/tools/appliance/definitions/systemvm64template/postinstall.sh +++ b/tools/appliance/definitions/systemvm64template/postinstall.sh @@ -70,6 +70,11 @@ install_packages() { echo "iptables-persistent iptables-persistent/autosave_v4 boolean true" | debconf-set-selections echo "iptables-persistent iptables-persistent/autosave_v6 boolean true" | debconf-set-selections apt-get --no-install-recommends -q -y --force-yes install iptables-persistent + + # Hyperv kvp daemon + # Download the hv kvp daemon + wget http://people.apache.org/~rajeshbattala/hv-kvp-daemon_3.1_amd64.deb + dpkg -i hv-kvp-daemon_3.1_amd64.deb # vmware tools apt-get --no-install-recommends -q -y --force-yes install open-vm-tools
