mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Fix atomic pylint issues
Signed-off-by: Abhijeet Kasurde <akasurde@redhat.com>
This commit is contained in:
parent
4e8e366739
commit
db6d818865
2 changed files with 17 additions and 12 deletions
|
@ -21,7 +21,7 @@ ANSIBLE_METADATA = {'metadata_version': '1.0',
|
||||||
'supported_by': 'community'}
|
'supported_by': 'community'}
|
||||||
|
|
||||||
|
|
||||||
DOCUMENTATION='''
|
DOCUMENTATION = '''
|
||||||
---
|
---
|
||||||
module: atomic_host
|
module: atomic_host
|
||||||
short_description: Manage the atomic host platform
|
short_description: Manage the atomic host platform
|
||||||
|
@ -63,6 +63,10 @@ msg:
|
||||||
sample: 'Already on latest'
|
sample: 'Already on latest'
|
||||||
'''
|
'''
|
||||||
|
|
||||||
|
# import module snippets
|
||||||
|
from ansible.module_utils.basic import AnsibleModule, os
|
||||||
|
|
||||||
|
|
||||||
def core(module):
|
def core(module):
|
||||||
revision = module.params['revision']
|
revision = module.params['revision']
|
||||||
args = []
|
args = []
|
||||||
|
@ -90,8 +94,8 @@ def core(module):
|
||||||
|
|
||||||
def main():
|
def main():
|
||||||
module = AnsibleModule(
|
module = AnsibleModule(
|
||||||
argument_spec = dict(
|
argument_spec=dict(
|
||||||
revision = dict(default='latest', required=False, aliases=["version"]),
|
revision=dict(default='latest', required=False, aliases=["version"]),
|
||||||
),
|
),
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -105,7 +109,5 @@ def main():
|
||||||
module.fail_json(msg=str(e))
|
module.fail_json(msg=str(e))
|
||||||
|
|
||||||
|
|
||||||
# import module snippets
|
|
||||||
from ansible.module_utils.basic import *
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
main()
|
main()
|
||||||
|
|
|
@ -21,7 +21,7 @@ ANSIBLE_METADATA = {'metadata_version': '1.0',
|
||||||
'supported_by': 'community'}
|
'supported_by': 'community'}
|
||||||
|
|
||||||
|
|
||||||
DOCUMENTATION='''
|
DOCUMENTATION = '''
|
||||||
---
|
---
|
||||||
module: atomic_image
|
module: atomic_image
|
||||||
short_description: Manage the container images on the atomic host platform
|
short_description: Manage the container images on the atomic host platform
|
||||||
|
@ -73,6 +73,11 @@ msg:
|
||||||
sample: [u'Using default tag: latest ...']
|
sample: [u'Using default tag: latest ...']
|
||||||
'''
|
'''
|
||||||
|
|
||||||
|
|
||||||
|
# import module snippets
|
||||||
|
from ansible.module_utils.basic import AnsibleModule
|
||||||
|
|
||||||
|
|
||||||
def do_upgrade(module, image):
|
def do_upgrade(module, image):
|
||||||
args = ['atomic', 'update', '--force', image]
|
args = ['atomic', 'update', '--force', image]
|
||||||
rc, out, err = module.run_command(args, check_rc=False)
|
rc, out, err = module.run_command(args, check_rc=False)
|
||||||
|
@ -120,10 +125,10 @@ def core(module):
|
||||||
|
|
||||||
def main():
|
def main():
|
||||||
module = AnsibleModule(
|
module = AnsibleModule(
|
||||||
argument_spec = dict(
|
argument_spec=dict(
|
||||||
name = dict(default=None, required=True),
|
name=dict(default=None, required=True),
|
||||||
state = dict(default='latest', choices=['present', 'absent', 'latest']),
|
state=dict(default='latest', choices=['present', 'absent', 'latest']),
|
||||||
started = dict(default='yes', type='bool'),
|
started=dict(default='yes', type='bool'),
|
||||||
),
|
),
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -138,7 +143,5 @@ def main():
|
||||||
module.fail_json(msg=str(e))
|
module.fail_json(msg=str(e))
|
||||||
|
|
||||||
|
|
||||||
# import module snippets
|
|
||||||
from ansible.module_utils.basic import *
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
main()
|
main()
|
||||||
|
|
Loading…
Reference in a new issue