From e0c94aa6a77678e360f52d91e57b7d365a15043f Mon Sep 17 00:00:00 2001 From: Dag Wieers Date: Thu, 30 Nov 2017 19:32:05 +0100 Subject: [PATCH] yum: PEP8 compliancy and documentation changes (#33424) This PR includes: - PEP8 compliancy changes - documentation changes --- lib/ansible/modules/packaging/os/yum.py | 31 ++++++++++++++----------- test/sanity/pep8/legacy-files.txt | 1 - 2 files changed, 18 insertions(+), 14 deletions(-) diff --git a/lib/ansible/modules/packaging/os/yum.py b/lib/ansible/modules/packaging/os/yum.py index 4477a70e410..41afb3b2dbe 100644 --- a/lib/ansible/modules/packaging/os/yum.py +++ b/lib/ansible/modules/packaging/os/yum.py @@ -34,7 +34,7 @@ options: aliases: [ pkg ] exclude: description: - - "Package name(s) to exclude when state=present, or latest" + - Package name(s) to exclude when state=present, or latest version_added: "2.0" list: description: @@ -153,9 +153,9 @@ requirements: author: - Ansible Core Team - Seth Vidal - - Eduard Snesarev (github.com/verm666) - - Berend De Schouwer (github.com/berenddeschouwer) - - Abhijeet Kasurde (github.com/akasurde) + - Eduard Snesarev (@verm666) + - Berend De Schouwer (@berenddeschouwer) + - Abhijeet Kasurde (@Akasurde) ''' EXAMPLES = ''' @@ -256,7 +256,7 @@ def yum_base(conf_file=None, installroot='/'): my.preconf.debuglevel = 0 my.preconf.errorlevel = 0 my.preconf.plugins = True - #my.preconf.releasever = '/' + # my.preconf.releasever = '/' if installroot != '/': # do not setup installroot by default, because of error # CRITICAL:yum.cli:Config Error: Error accessing file for config file:////etc/yum.conf @@ -662,15 +662,18 @@ def list_stuff(module, repoquerybin, conf_file, stuff, installroot='/', disabler if stuff == 'installed': return [pkg_to_dict(p) for p in sorted(is_installed(module, repoq, '-a', conf_file, qf=is_installed_qf, installroot=installroot)) if p.strip()] - elif stuff == 'updates': + + if stuff == 'updates': return [pkg_to_dict(p) for p in sorted(is_update(module, repoq, '-a', conf_file, qf=qf, installroot=installroot)) if p.strip()] - elif stuff == 'available': + + if stuff == 'available': return [pkg_to_dict(p) for p in sorted(is_available(module, repoq, '-a', conf_file, qf=qf, installroot=installroot)) if p.strip()] - elif stuff == 'repos': + + if stuff == 'repos': return [dict(repoid=name, state='enabled') for name in sorted(repolist(module, repoq)) if name.strip()] - else: - return [pkg_to_dict(p) for p in sorted(is_installed(module, repoq, stuff, conf_file, qf=is_installed_qf, installroot=installroot)+ - is_available(module, repoq, stuff, conf_file, qf=qf, installroot=installroot)) if p.strip()] + + return [pkg_to_dict(p) for p in sorted(is_installed(module, repoq, stuff, conf_file, qf=is_installed_qf, installroot=installroot) + + is_available(module, repoq, stuff, conf_file, qf=qf, installroot=installroot)) if p.strip()] def exec_install(module, items, action, pkgs, res, yum_basecmd): @@ -1348,8 +1351,10 @@ def main(): disablerepo, disable_gpg_check, exclude, repoquery, skip_broken, update_only, security, params['installroot'], allow_downgrade) if repoquery: - results['msg'] = '%s %s' % (results.get('msg', ''), - 'Warning: Due to potential bad behaviour with rhnplugin and certificates, used slower repoquery calls instead of Yum API.') + results['msg'] = '%s %s' % ( + results.get('msg', ''), + 'Warning: Due to potential bad behaviour with rhnplugin and certificates, used slower repoquery calls instead of Yum API.' + ) module.exit_json(**results) diff --git a/test/sanity/pep8/legacy-files.txt b/test/sanity/pep8/legacy-files.txt index 27a56975746..bc93f5e0df8 100644 --- a/test/sanity/pep8/legacy-files.txt +++ b/test/sanity/pep8/legacy-files.txt @@ -279,7 +279,6 @@ lib/ansible/modules/packaging/os/sorcery.py lib/ansible/modules/packaging/os/svr4pkg.py lib/ansible/modules/packaging/os/swdepot.py lib/ansible/modules/packaging/os/urpmi.py -lib/ansible/modules/packaging/os/yum.py lib/ansible/modules/packaging/os/zypper.py lib/ansible/modules/packaging/os/zypper_repository.py lib/ansible/modules/storage/infinidat/infini_export.py