Rewrite to use ansible.
[mclu.git] / mclu_reboot.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 import fnmatch
21 import subprocess
22
23 import libvirt
24
25 import lib
26
27 def cmdline (subparsers):
28     p = subparsers.add_parser (
29         'reboot',
30         help='reboot virtual machine(s)',
31     )
32     p.add_argument (
33         '--force', action='store_const', const=True,
34         help='reset the virtual machine(s) forcibly'
35     )
36     p.add_argument (
37         'wildcards', nargs='+',
38         help='virtual machine(s) to be rebooted'
39     )
40     p.set_defaults (run=run)
41
42 def run (c, args):
43     running, _ = lib.get_all_guests (c)
44
45     for vm in running.values():
46         node_name = vm['node']
47         vm_name = vm['vm']
48         # Form the name of this VM (eg. "ham0:vm") so we can match it
49         # against the wildcards (eg. "ham0:*")
50         name = node_name + ":" + vm_name
51         for wc in args.wildcards:
52             if fnmatch.fnmatch (name, wc) or fnmatch.fnmatch (vm_name, wc):
53                 if args.force:
54                     subprocess.check_call (["virsh",
55                                             "-c", lib.uri_of_node (node_name),
56                                             "reset", vm_name])
57                 else:
58                     subprocess.check_call (["virsh",
59                                             "-c", lib.uri_of_node (node_name),
60                                             "reboot", vm_name])