diff -r d95ea17567c6 tools/python/xen/xm/main.py --- a/tools/python/xen/xm/main.py Thu Aug 11 08:59:47 2005 +++ b/tools/python/xen/xm/main.py Fri Aug 12 01:58:17 2005 @@ -289,13 +289,12 @@ args.insert(0,"bogus") destroy.main(args) -# TODO: make reboot do the right thing, right now -# reboot and shutdown are exactly the same def xm_reboot(args): arg_check(args,1,"reboot") # ugly hack because the opt parser apparently wants # the subcommand name just to throw it away! args.insert(0,"bogus") + args.insert(2,"-R") from xen.xm import shutdown shutdown.main(args)