Fix pkgutil "upgrade_catalog must be one of" err (#2149)

The arg spec for update_catalog include 'type=bool'
and 'choices=["yes", "no"] which can never both be
true.

Remove the 'choices' directive, and update doc string.

Fixes #2144
reviewable/pr18780/r1
Adrian Likins 8 years ago
parent a055d7240a
commit d1a4f703ce

@ -54,8 +54,7 @@ options:
description: description:
- If you want to refresh your catalog from the mirror, set this to (C(yes)). - If you want to refresh your catalog from the mirror, set this to (C(yes)).
required: false required: false
choices: ["yes", "no"] default: False
default: no
version_added: "2.1" version_added: "2.1"
''' '''
@ -130,7 +129,7 @@ def main():
name = dict(required = True), name = dict(required = True),
state = dict(required = True, choices=['present', 'absent','latest']), state = dict(required = True, choices=['present', 'absent','latest']),
site = dict(default = None), site = dict(default = None),
update_catalog = dict(required = False, default = "no", type='bool', choices=["yes","no"]), update_catalog = dict(required = False, default = False, type='bool'),
), ),
supports_check_mode=True supports_check_mode=True
) )

Loading…
Cancel
Save