Fix bugs found by @kustodian
This commit is contained in:
parent
f0f1dc985f
commit
88ae201b20
1 changed files with 3 additions and 1 deletions
|
@ -881,6 +881,8 @@ def main():
|
||||||
supports_check_mode = True
|
supports_check_mode = True
|
||||||
)
|
)
|
||||||
|
|
||||||
|
params = module.params
|
||||||
|
|
||||||
if params['list']:
|
if params['list']:
|
||||||
repoquerybin = ensure_yum_utils(module)
|
repoquerybin = ensure_yum_utils(module)
|
||||||
if not repoquerybin:
|
if not repoquerybin:
|
||||||
|
@ -892,7 +894,7 @@ def main():
|
||||||
# the system then users will see an error message using the yum API.
|
# the system then users will see an error message using the yum API.
|
||||||
# Use repoquery in those cases.
|
# Use repoquery in those cases.
|
||||||
|
|
||||||
my = yum_base(conf_file)
|
my = yum_base(params['conf_file'])
|
||||||
# A sideeffect of accessing conf is that the configuration is
|
# A sideeffect of accessing conf is that the configuration is
|
||||||
# loaded and plugins are discovered
|
# loaded and plugins are discovered
|
||||||
my.conf
|
my.conf
|
||||||
|
|
Loading…
Reference in a new issue