diff --git a/README.md b/README.md index 8fbcced..32ab5d5 100644 --- a/README.md +++ b/README.md @@ -293,6 +293,10 @@ The :program:`im_client` is called like this: Stop (but not remove) the specified virtual machine ``vmId`` associated to the infrastructure with ID infrastructure with ID ``infId``. + ``rebootvm `` + Reboot the specified virtual machine ``vmId`` associated to the infrastructure with ID + infrastructure with ID ``infId``. + ``sshvm [show_only]`` Connect with SSH with the specified virtual machine ``vmId`` associated to the infrastructure with ID infrastructure with ID ``infId``. diff --git a/im_client.py b/im_client.py index 9329a18..480b890 100755 --- a/im_client.py +++ b/im_client.py @@ -960,6 +960,7 @@ def get_parser(): parser.add_operation_help('reconfigure', ' [] [vm_list]') parser.add_operation_help('startvm', ' ') parser.add_operation_help('stopvm', ' ') + parser.add_operation_help('rebootvm', ' ') parser.add_operation_help('sshvm', ' [show_only]') parser.add_operation_help('export', ' [delete]') parser.add_operation_help('import', '')