Fix redundant args for 'value' and 'path'

Co-authored-by: Alexei Znamensky <103110+russoz@users.noreply.github.com>
This commit is contained in:
Sheidan 2025-07-22 21:47:44 +02:00 committed by GitHub
commit 8177c0ae98
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -480,8 +480,8 @@ def main():
state=dict(default='present', choices=['present', 'absent', 'read']),
key=dict(required=True, type='str', no_log=False),
# Converted to str below after special handling of bool.
value=dict(required=False, default=None, type='raw'),
path=dict(required=False, default=None, type='path'),
value=dict(type='raw'),
path=dict(type='path'),
),
supports_check_mode=True,
required_if=[