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

@@ -208,7 +208,7 @@ def main():
value = dict(aliases=['val'], required=False),
state = dict(default='present', choices=['present', 'absent']),
checks = dict(default='both', choices=['none', 'before', 'after', 'both']),
reload = dict(default=True, choices=BOOLEANS, type='bool'),
reload = dict(default=True, type='bool'),
sysctl_file = dict(default='/etc/sysctl.conf')
)
)