Skip to content
Snippets Groups Projects
Commit 95d90ef3 authored by Rafael Guterres Jeffman's avatar Rafael Guterres Jeffman
Browse files

Removed invalid state `enabled` from available choices.

parent cf0b7100
Branches
Tags
No related merge requests found
...@@ -142,7 +142,7 @@ options: ...@@ -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(): ...@@ -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,
) )
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment