Revision 030a9cb8

b/Makefile.am
495 495
pkglib_SCRIPTS = \
496 496
	daemons/daemon-util \
497 497
	tools/kvm-ifup \
498
	tools/xm-console-wrapper \
498 499
	$(pkglib_python_scripts)
499 500

  
500 501
nodist_pkglib_SCRIPTS = \
b/lib/constants.py
144 144
DAEMON_UTIL = _autoconf.PKGLIBDIR + "/daemon-util"
145 145
SETUP_SSH = _autoconf.TOOLSDIR + "/setup-ssh"
146 146
KVM_IFUP = _autoconf.PKGLIBDIR + "/kvm-ifup"
147
XM_CONSOLE_WRAPPER = _autoconf.PKGLIBDIR + "/xm-console-wrapper"
147 148
ETC_HOSTS = "/etc/hosts"
148 149
DEFAULT_FILE_STORAGE_DIR = _autoconf.FILE_STORAGE_DIR
149 150
DEFAULT_SHARED_FILE_STORAGE_DIR = _autoconf.SHARED_FILE_STORAGE_DIR
b/lib/hypervisor/hv_xen.py
303 303
                                   kind=constants.CONS_SSH,
304 304
                                   host=instance.primary_node,
305 305
                                   user=constants.GANETI_RUNAS,
306
                                   command=["xm", "console", instance.name])
306
                                   command=[constants.XM_CONSOLE_WRAPPER,
307
                                            instance.name])
307 308

  
308 309
  def Verify(self):
309 310
    """Verify the hypervisor.
b/tools/xm-console-wrapper
1
#!/bin/bash
2

  
3
# Copyright (C) 2011 Google Inc.
4
#
5
# This program is free software; you can redistribute it and/or modify
6
# it under the terms of the GNU General Public License as published by
7
# the Free Software Foundation; either version 2 of the License, or
8
# (at your option) any later version.
9
#
10
# This program is distributed in the hope that it will be useful, but
11
# WITHOUT ANY WARRANTY; without even the implied warranty of
12
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13
# General Public License for more details.
14
#
15
# You should have received a copy of the GNU General Public License
16
# along with this program; if not, write to the Free Software
17
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
18
# 02110-1301, USA.
19

  
20
INSTANCE="$1"
21

  
22
unpause() {
23
  ispaused=$(xm list -l "$INSTANCE" 2>/dev/null |
24
             sed -n 's/^[[:blank:]]*(state ..\(.\)...)/\1/p')
25
  [[ "$ispaused" == "p" ]] || return
26
  # As there is no way to be sure when xm console has actually connected to the
27
  # instance, sleep for a few seconds before unpausing the instance. This is a
28
  # tradeoff between missing some console output if the node is overloaded and
29
  # making the user wait everytime when the node isn't so busy.
30
  sleep 3
31
  # Send \r\n after notice as terminal is in raw mode
32
  printf "Instance $INSTANCE is paused, unpausing\r\n"
33
  xm unpause "$INSTANCE"
34
}
35

  
36
unpause &
37
exec xm console "$INSTANCE"

Also available in: Unified diff