Remove choices=BOOLEANS as it is no longer needed

This commit is contained in:
Daniel Hokka Zakrisson
2013-02-23 22:56:45 +01:00
parent df798d0688
commit 578ec127fb
21 changed files with 36 additions and 36 deletions

View File

@@ -158,8 +158,8 @@ def main():
module = AnsibleModule(
argument_spec = dict(
name=dict(required=True),
persistent=dict(default='no', choices=BOOLEANS, type='bool'),
state=dict(required=True, choices=BOOLEANS, type='bool')
persistent=dict(default='no', type='bool'),
state=dict(required=True, type='bool')
)
)