From e356d8cff6b972ad9e7fda2ec0c51f89d5a1fd33 Mon Sep 17 00:00:00 2001 From: Bob Ball Date: Tue, 17 Feb 2015 15:05:34 +0000 Subject: [PATCH] XenAPI: Recommend using xl console rather than vncviewer Some vncviewers do not support the -via option, so default to suggesting xl console. XenCenter continues to be an option for those running Windows. Change-Id: I1e53fd33d309e30a60031965e589167dcbacfbbe --- tools/xen/install_os_domU.sh | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/tools/xen/install_os_domU.sh b/tools/xen/install_os_domU.sh index f28ae97940..082c27e8f3 100755 --- a/tools/xen/install_os_domU.sh +++ b/tools/xen/install_os_domU.sh @@ -149,12 +149,10 @@ SNAME_FIRST_BOOT="before_first_boot" function wait_for_VM_to_halt { set +x - echo "Waiting for the VM to halt. Progress in-VM can be checked with vncviewer:" + echo "Waiting for the VM to halt. Progress in-VM can be checked with XenCenter or xl console:" mgmt_ip=$(echo $XENAPI_CONNECTION_URL | tr -d -c '1234567890.') domid=$(get_domid "$GUEST_NAME") - sleep 20 # Wait for the vnc-port to be written - port=$(xenstore-read /local/domain/$domid/console/vnc-port) - echo "vncviewer -via root@$mgmt_ip localhost:${port:2}" + echo "ssh root@$mgmt_ip \"xl console $domid\"" while true; do state=$(xe_min vm-list name-label="$GUEST_NAME" power-state=halted) if [ -n "$state" ]; then