mirror of
https://github.com/freeipa/ansible-freeipa.git
synced 2026-07-31 11:54:47 +00:00
Removed invalid state enabled from available choices.
This commit is contained in:
@@ -142,7 +142,7 @@ options:
|
|||||||
state:
|
state:
|
||||||
description: State to ensure
|
description: State to ensure
|
||||||
default: present
|
default: present
|
||||||
choices: ["present", "absent", "enabled", "disabled"]
|
choices: ["present", "absent", "disabled"]
|
||||||
author:
|
author:
|
||||||
- Rafael Jeffman
|
- Rafael Jeffman
|
||||||
"""
|
"""
|
||||||
@@ -365,8 +365,7 @@ def init_ansible_module():
|
|||||||
choices=["member", "service"]),
|
choices=["member", "service"]),
|
||||||
# state
|
# state
|
||||||
state=dict(type="str", default="present",
|
state=dict(type="str", default="present",
|
||||||
choices=["present", "absent",
|
choices=["present", "absent", "disabled"]),
|
||||||
"enabled", "disabled"]),
|
|
||||||
),
|
),
|
||||||
supports_check_mode=True,
|
supports_check_mode=True,
|
||||||
)
|
)
|
||||||
|
|||||||
Reference in New Issue
Block a user