From fc306d13bf00d8039f36b329ea5dbf252b31c817 Mon Sep 17 00:00:00 2001 From: Rajesh Battala Date: Sun, 22 Dec 2013 18:10:24 +0530 Subject: [PATCH] CLOUDSTACK-5602 cloudstack-release file in systemvm for hyperv is showing the release as 4.2. It should be 4.3 CLOUDSTACK-5538 additional libraries requires in systemvm for console proxy to work in HyperV --- .../appliance/definitions/systemvm64template/postinstall.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tools/appliance/definitions/systemvm64template/postinstall.sh b/tools/appliance/definitions/systemvm64template/postinstall.sh index 4b43eeed381..8bd7a52dcd4 100644 --- a/tools/appliance/definitions/systemvm64template/postinstall.sh +++ b/tools/appliance/definitions/systemvm64template/postinstall.sh @@ -19,7 +19,7 @@ set -x ROOTPW=password HOSTNAME=systemvm -CLOUDSTACK_RELEASE=4.2.0 +CLOUDSTACK_RELEASE=4.3.0 add_backports () { sed -i '/backports/d' /etc/apt/sources.list @@ -79,6 +79,8 @@ install_packages() { # 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 + #libraries required for rdp client (Hyper-V) + apt-get --no-install-recommends -q -y --force-yes install libtcnative-1 libssl-dev libapr1-dev # vmware tools apt-get --no-install-recommends -q -y --force-yes install open-vm-tools @@ -236,6 +238,7 @@ configure_services() { chkconfig --add cloud chkconfig cloud off chkconfig xl2tpd off + chkconfig hv_kvp_daemon off } do_signature() {