81b9fb0df487a9b5a894fccbde61001680308e6b
[mclu.git] / mclu_status.py
1 #!/usr/bin/python
2 # mclu (mini cluster)
3 # Copyright (C) 2014 Red Hat 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,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 # GNU 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 02110-1301 USA.
18
19 import argparse
20
21 import lib
22
23 def cmdline (subparsers):
24     p = subparsers.add_parser (
25         'status',
26         help='display cluster status'
27     )
28     p.set_defaults (run=run)
29
30 def run (c, args, nodes):
31     for node_name in sorted (nodes.keys ()):
32         node = nodes[node_name]
33         print "%s (%s)" % (node_name, node.host),
34         if node.ping():
35             print "\tup",
36             if node.ssh_ping():
37                 print "\tssh: OK",
38                 if node.libvirt_ping():
39                     print "\tlibvirt: OK"
40                 else:
41                     print "\tlibvirt: dead"
42             else:
43                 print "\tssh: dead"
44         else:
45             print "\tdown"