From 32180c3c0e2abab5e862ff2d5eabe682a145cb09 Mon Sep 17 00:00:00 2001 From: Edward Torbett Date: Thu, 11 Jun 2015 15:13:28 +0100 Subject: [PATCH] Comments by @abadger --- lib/ansible/modules/packaging/os/yum.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/ansible/modules/packaging/os/yum.py b/lib/ansible/modules/packaging/os/yum.py index daee6a41063..d085d9ef3bd 100644 --- a/lib/ansible/modules/packaging/os/yum.py +++ b/lib/ansible/modules/packaging/os/yum.py @@ -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: