win_psexec - deprecate the extra_opts module options (#53666)
parent
f73e03632f
commit
4f2d055e2c
|
@ -316,6 +316,8 @@ Noteworthy module changes
|
||||||
|
|
||||||
* The ``ipa_user`` module originally always sent ``password`` to FreeIPA regardless of whether the password changed. Now the module only sends ``password`` if ``update_password`` is set to ``always``, which is the default.
|
* The ``ipa_user`` module originally always sent ``password`` to FreeIPA regardless of whether the password changed. Now the module only sends ``password`` if ``update_password`` is set to ``always``, which is the default.
|
||||||
|
|
||||||
|
* The ``win_psexec`` has deprecated the undocumented ``extra_opts`` module option. This will be removed in Ansible 2.10.
|
||||||
|
|
||||||
Plugins
|
Plugins
|
||||||
=======
|
=======
|
||||||
|
|
||||||
|
|
|
@ -27,7 +27,7 @@ $spec = @{
|
||||||
session = @{ type='int' }
|
session = @{ type='int' }
|
||||||
priority = @{ type='str'; choices=@( 'background', 'low', 'belownormal', 'abovenormal', 'high', 'realtime' ) }
|
priority = @{ type='str'; choices=@( 'background', 'low', 'belownormal', 'abovenormal', 'high', 'realtime' ) }
|
||||||
timeout = @{ type='int' }
|
timeout = @{ type='int' }
|
||||||
extra_opts = @{ type='list' }
|
extra_opts = @{ type='list'; removed_in_version = '2.10' }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -32,6 +32,8 @@ options:
|
||||||
extra_opts:
|
extra_opts:
|
||||||
description:
|
description:
|
||||||
- Specify additional options to add onto the PsExec invocation.
|
- Specify additional options to add onto the PsExec invocation.
|
||||||
|
- This module was undocumented in older releases and will be removed in
|
||||||
|
Ansible 2.10.
|
||||||
type: list
|
type: list
|
||||||
hostnames:
|
hostnames:
|
||||||
description:
|
description:
|
||||||
|
|
Loading…
Reference in New Issue