mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
ejabberd_user: deprecate parameter logging (#7043)
* ejabberd_user: deprecate parameter logging * add changelog frag * Update plugins/modules/ejabberd_user.py
This commit is contained in:
parent
fd9d948267
commit
d17ec06d2a
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