-
Notifications
You must be signed in to change notification settings - Fork 186
/
openstack-console
60 lines (54 loc) · 1.82 KB
/
openstack-console
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
################################################################
#
# Copyright (c) 2017 SUSE Linux Products GmbH
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 2 or 3 as
# published by the Free Software Foundation.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program (see the file COPYING); if not, write to the
# Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
#
################################################################
import websocket
import sys
import re
import time
url = ''
if len(sys.argv) != 2:
sys.exit("usage: openstack-console <url>")
else:
url = sys.argv[1]
print("openstack-console: Using url '%s'" % url)
ws = websocket.create_connection(url,
header={'Sec-WebSocket-Protocol: binary'})
buf = ''
timeout=120
while timeout > 0:
try:
data = ws.recv()
break
except websocket._exceptions.WebSocketConnectionClosedException:
print("Failed to get data from websocket %d retries left." % timeout)
ws = websocket.create_connection(url,
header={'Sec-WebSocket-Protocol: binary'})
timeout -= 1
time.sleep(1)
while True:
sys.stdout.write(data)
if not ws.connected:
sys.stdout.write("[connection closed]\n")
break
buf += data
buf = buf[-256:]
if re.search("[\r\n]\[\s*[0-9\.]*]\s+reboot: Power down", buf):
break
data = ws.recv()
ws.close()