From mboxrd@z Thu Jan 1 00:00:00 1970 From: Lon Hohberger Date: Wed, 20 Oct 2010 14:44:49 -0400 Subject: [Cluster-devel] [PATCH] vm.sh: Fix Xen 4.0.1 / libvirt 0.8.2 live migration Message-ID: <1287600289-27854-1-git-send-email-lhh@redhat.com> List-Id: To: cluster-devel.redhat.com MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Newer versions of Xen and libvirt use encryption when performing migrations. This can be set up using TLS / X509 certificates, but this is complicated to set up. This patch changes the default protocol from TLS to SSH when performing Xen migrations (the default for qemu/KVM has always been SSH). Resolves: Fedora #644949 Signed-off-by: Lon Hohberger --- rgmanager/src/resources/vm.sh | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/rgmanager/src/resources/vm.sh b/rgmanager/src/resources/vm.sh index e23d5ba..2e4034c 100644 --- a/rgmanager/src/resources/vm.sh +++ b/rgmanager/src/resources/vm.sh @@ -795,7 +795,7 @@ validate_all() # I just need to believe in it more. if [ "$OCF_RESKEY_hypervisor" = "xen" ]; then - OCF_RESKEY_hypervisor_uri="xen:///" + OCF_RESKEY_hypervisor_uri="xen+ssh:///" fi echo Hypervisor URI: $OCF_RESKEY_hypervisor_uri -- 1.7.2.3