From f834279d5010f5a8b1a1cd7c75adaa7b0dce7fed Mon Sep 17 00:00:00 2001 From: Tobias Florek Date: Mon, 18 Jul 2016 10:10:16 +0200 Subject: make rpm-q module pylint warning-free --- library/rpm_q.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'library') diff --git a/library/rpm_q.py b/library/rpm_q.py index 7e184579a..ca3d0dd89 100644 --- a/library/rpm_q.py +++ b/library/rpm_q.py @@ -3,7 +3,12 @@ # (c) 2015, Tobias Florek # Licensed under the terms of the MIT License +""" +An ansible module to query the RPM database. For use, when yum/dnf are not +available. +""" +# pylint: disable=redefined-builtin,wildcard-import,unused-wildcard-import from ansible.module_utils.basic import * DOCUMENTATION = """ @@ -28,8 +33,6 @@ EXAMPLES = """ - rpm_q: name=ansible state=absent """ -import os - RPM_BINARY = '/bin/rpm' def main(): @@ -48,6 +51,7 @@ def main(): name = module.params['name'] state = module.params['state'] + # pylint: disable=invalid-name rc, out, err = module.run_command([RPM_BINARY, '-q', name]) installed = out.rstrip('\n').split('\n') -- cgit v1.2.1