mirror of
https://github.com/freeipa/ansible-freeipa.git
synced 2026-08-01 20:34:41 +00:00
utils/templates/ipamodule*.py.in: Fix superfluous type in argument spec
The type was given twice for state and action argument specs. This has been fixed.
This commit is contained in:
@@ -128,7 +128,7 @@ def main():
|
||||
PARAMETER2=dict(required=False, type='list', elements='str',
|
||||
aliases=["API_PARAMETER_NAME"], default=None),
|
||||
# state
|
||||
state=dict(type="str", default="present", type="str",
|
||||
state=dict(type="str", default="present",
|
||||
choices=["present", "absent"]),
|
||||
),
|
||||
supports_check_mode=True,
|
||||
|
||||
Reference in New Issue
Block a user