Statistics
| Branch: | Tag: | Revision:

root / tools / xm-console-wrapper @ 77ecfa82

History | View | Annotate | Download (1.4 kB)

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"