# HG changeset patch # User kaf24@firebug.cl.cam.ac.uk # Date 1151587535 -3600 # Node ID 40e1a774920848036fc1994a752b2501bc8ee276 # Parent c6ec3dd6fe7f3632fb384c5d814e6a5d92b4dbec [XM] When two or more domain parameters are given, the xm reboot command doesn't give a command error. This problem is also included in the xm shutdown command. This patch checks on domain parameter. If two or more domain parameters are given, the command error occurs. Signed-off-by: Masaki Kanno diff -r c6ec3dd6fe7f -r 40e1a7749208 tools/python/xen/xm/shutdown.py --- a/tools/python/xen/xm/shutdown.py Thu Jun 29 14:25:07 2006 +0100 +++ b/tools/python/xen/xm/shutdown.py Thu Jun 29 14:25:35 2006 +0100 @@ -92,7 +92,8 @@ def main_all(opts, args): shutdown(opts, None, mode, opts.vals.wait) def main_dom(opts, args): - if len(args) < 1: opts.err('Missing domain') + if len(args) == 0: opts.err('No domain parameter given') + if len(args) > 1: opts.err('No multiple domain parameters allowed') dom = args[0] mode = shutdown_mode(opts) shutdown(opts, [ dom ], mode, opts.vals.wait)