[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen-unstable] [XM] When two or more domain parameters are given, the xm reboot
# HG changeset patch # User kaf24@xxxxxxxxxxxxxxxxxxxx # 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 <kanno.masaki@xxxxxxxxxxxxxx> --- tools/python/xen/xm/shutdown.py | 3 ++- 1 files changed, 2 insertions(+), 1 deletion(-) 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) _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxxxxxxxx http://lists.xensource.com/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |