Comments by @abadger
This commit is contained in:
parent
48422fba85
commit
471824b451
1 changed files with 3 additions and 1 deletions
|
@ -600,6 +600,8 @@ def install(module, items, repoq, yum_basecmd, conf_file, en_repos, dis_repos):
|
|||
module.fail_json(msg="Failure deleting temp directory %s, %s" % (tempdir, e))
|
||||
module.exit_json(changed=True)
|
||||
|
||||
changed = True
|
||||
|
||||
rc, out, err = module.run_command(cmd)
|
||||
|
||||
if (rc == 1):
|
||||
|
@ -627,7 +629,7 @@ def install(module, items, repoq, yum_basecmd, conf_file, en_repos, dis_repos):
|
|||
# look for each pkg via obsoletes
|
||||
|
||||
# Record change
|
||||
res['changed'] = True
|
||||
res['changed'] = changed
|
||||
|
||||
# Remove rpms downloaded for EL5 via url
|
||||
try:
|
||||
|
|
Loading…
Reference in a new issue