From 9e05fc35ea37638f9bbd50e98197a269852fdde8 Mon Sep 17 00:00:00 2001 From: Rene Moser Date: Sat, 23 Apr 2016 08:27:21 +0200 Subject: [PATCH] vmware_vm_shell: doc: add missing defaults --- .../modules/extras/cloud/vmware/vmware_vm_shell.py | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/lib/ansible/modules/extras/cloud/vmware/vmware_vm_shell.py b/lib/ansible/modules/extras/cloud/vmware/vmware_vm_shell.py index a2de750714c..a2d5c71098e 100644 --- a/lib/ansible/modules/extras/cloud/vmware/vmware_vm_shell.py +++ b/lib/ansible/modules/extras/cloud/vmware/vmware_vm_shell.py @@ -38,11 +38,13 @@ options: - The datacenter hosting the VM - Will help speed up search required: False + default: None cluster: description: - The cluster hosting the VM - Will help speed up search required: False + default: None vm_id: description: - The identification for the VM @@ -57,21 +59,24 @@ options: - 'inventory_path' - 'vm_name' required: False + default: None vm_username: description: - The user to connect to the VM. required: False + default: None vm_password: description: - The password used to login to the VM. required: False + default: None vm_shell: description: - The absolute path to the program to start. On Linux this is executed via bash. required: True vm_shell_args: description: - - The argument to the program. + - The argument to the program. required: False default: None vm_shell_env: @@ -164,7 +169,7 @@ def main(): if not vm: module.fail_json(msg='VM not found') - msg = execute_command(content, vm, p['vm_username'], p['vm_password'], + msg = execute_command(content, vm, p['vm_username'], p['vm_password'], p['vm_shell'], p['vm_shell_args'], p['vm_shell_env'], p['vm_shell_cwd']) module.exit_json(changed=True, uuid=vm.summary.config.uuid, msg=msg)