ipagroup: Remove unused member_[present,absent] states

The states member_present and member_absent are not used and should also not
be used. This is a remain of the first try to ensure absence and presence
of users (members) in the group. This has been replaced with the setting
action: member.
This commit is contained in:
Thomas Woerner
2019-09-24 12:05:09 +02:00
parent dd85868cc2
commit e814b1faf5

View File

@@ -209,8 +209,7 @@ def main():
choices=["member", "group"]),
# state
state=dict(type="str", default="present",
choices=["present", "absent",
"member_present", "member_absent"]),
choices=["present", "absent"]),
),
supports_check_mode=True,
)