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
This commit is contained in:
parent
a055d7240a
commit
d1a4f703ce
1 changed files with 2 additions and 3 deletions
|
@ -54,8 +54,7 @@ options:
|
|||
description:
|
||||
- If you want to refresh your catalog from the mirror, set this to (C(yes)).
|
||||
required: false
|
||||
choices: ["yes", "no"]
|
||||
default: no
|
||||
default: False
|
||||
version_added: "2.1"
|
||||
'''
|
||||
|
||||
|
@ -130,7 +129,7 @@ def main():
|
|||
name = dict(required = True),
|
||||
state = dict(required = True, choices=['present', 'absent','latest']),
|
||||
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
|
||||
)
|
||||
|
|
Loading…
Reference in a new issue