mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
[PR #7043/d17ec06d backport][stable-7] ejabberd_user: deprecate parameter logging (#7058)
ejabberd_user: deprecate parameter logging (#7043)
* ejabberd_user: deprecate parameter logging
* add changelog frag
* Update plugins/modules/ejabberd_user.py
(cherry picked from commit d17ec06d2a
)
Co-authored-by: Alexei Znamensky <103110+russoz@users.noreply.github.com>
This commit is contained in:
parent
2e355bef9f
commit
f8265ecc4e
2 changed files with 3 additions and 1 deletions
|
@ -0,0 +1,2 @@
|
|||
deprecated_features:
|
||||
- ejabberd_user - deprecate the parameter ``logging`` in favour of producing more detailed information in the module output (https://github.com/ansible-collections/community.general/pull/7043).
|
|
@ -150,7 +150,7 @@ def main():
|
|||
username=dict(required=True, type='str'),
|
||||
password=dict(type='str', no_log=True),
|
||||
state=dict(default='present', choices=['present', 'absent']),
|
||||
logging=dict(default=False, type='bool') # deprecate in favour of c.g.syslogger?
|
||||
logging=dict(default=False, type='bool', removed_in_version='10.0.0', removed_from_collection='community.general'),
|
||||
),
|
||||
required_if=[
|
||||
('state', 'present', ['password']),
|
||||
|
|
Loading…
Reference in a new issue