Add zypper refresh support in zypper module (#2411)

* added zypper refresh support

* removed trailing symbols
* added forced zypper refresh support similar to update_cache for apt module

* removed unnecessary blocks and cleaned up the logic for refresh

* added update_cache as alias for refresh to be similar to apt/yum module

* update zypper module according to comments
pull/18777/head
Andrii Radyk 8 years ago committed by Matt Clay
parent 54ceee9da2
commit 26d34c1d61

@ -36,6 +36,7 @@ author:
- "Alexander Gubin (@alxgu)" - "Alexander Gubin (@alxgu)"
- "Thomas O'Donnell (@andytom)" - "Thomas O'Donnell (@andytom)"
- "Robin Roth (@robinro)" - "Robin Roth (@robinro)"
- "Andrii Radyk (@AnderEnder)"
version_added: "1.2" version_added: "1.2"
short_description: Manage packages on SUSE and openSUSE short_description: Manage packages on SUSE and openSUSE
description: description:
@ -83,6 +84,15 @@ options:
required: false required: false
default: "no" default: "no"
choices: [ "yes", "no" ] choices: [ "yes", "no" ]
update_cache:
version_added: "2.2"
description:
- Run the equivalent of C(zypper refresh) before the operation.
required: false
default: "no"
choices: [ "yes", "no" ]
aliases: [ "refresh" ]
# informational: requirements for nodes # informational: requirements for nodes
requirements: requirements:
@ -114,6 +124,9 @@ EXAMPLES = '''
# Apply all available patches # Apply all available patches
- zypper: name=* state=latest type=patch - zypper: name=* state=latest type=patch
# Refresh repositories and update package "openssl"
- zypper: name=openssl state=present update_cache=yes
''' '''
@ -185,14 +198,15 @@ def parse_zypper_xml(m, cmd, fail_not_found=True, packages=None):
def get_cmd(m, subcommand): def get_cmd(m, subcommand):
"puts together the basic zypper command arguments with those passed to the module" "puts together the basic zypper command arguments with those passed to the module"
is_install = subcommand in ['install', 'update', 'patch'] is_install = subcommand in ['install', 'update', 'patch']
is_refresh = subcommand == 'refresh'
cmd = ['/usr/bin/zypper', '--quiet', '--non-interactive', '--xmlout'] cmd = ['/usr/bin/zypper', '--quiet', '--non-interactive', '--xmlout']
# add global options before zypper command # add global options before zypper command
if is_install and m.params['disable_gpg_check']: if (is_install or is_refresh) and m.params['disable_gpg_check']:
cmd.append('--no-gpg-checks') cmd.append('--no-gpg-checks')
cmd.append(subcommand) cmd.append(subcommand)
if subcommand != 'patch': if subcommand != 'patch' and not is_refresh:
cmd.extend(['--type', m.params['type']]) cmd.extend(['--type', m.params['type']])
if m.check_mode and subcommand != 'search': if m.check_mode and subcommand != 'search':
cmd.append('--dry-run') cmd.append('--dry-run')
@ -325,6 +339,18 @@ def package_absent(m, name):
return retvals return retvals
def repo_refresh(m):
"update the repositories"
retvals = {'rc': 0, 'stdout': '', 'stderr': '', 'changed': False, 'failed': False}
cmd = get_cmd(m, 'refresh')
retvals['cmd'] = cmd
result, retvals['rc'], retvals['stdout'], retvals['stderr'] = parse_zypper_xml(m, cmd)
return retvals
# =========================================== # ===========================================
# Main control flow # Main control flow
@ -337,12 +363,21 @@ def main():
disable_gpg_check = dict(required=False, default='no', type='bool'), disable_gpg_check = dict(required=False, default='no', type='bool'),
disable_recommends = dict(required=False, default='yes', type='bool'), disable_recommends = dict(required=False, default='yes', type='bool'),
force = dict(required=False, default='no', type='bool'), force = dict(required=False, default='no', type='bool'),
update_cache = dict(required=False, aliases=['refresh'], default='no', type='bool'),
), ),
supports_check_mode = True supports_check_mode = True
) )
name = module.params['name'] name = module.params['name']
state = module.params['state'] state = module.params['state']
update_cache = module.params['update_cache']
# Refresh repositories
if update_cache:
retvals = repo_refresh(module)
if retvals['rc'] != 0:
module.fail_json(msg="Zypper refresh run failed.", **retvals)
# Perform requested action # Perform requested action
if name == ['*'] and state == 'latest': if name == ['*'] and state == 'latest':
@ -366,7 +401,7 @@ def main():
del retvals['stdout'] del retvals['stdout']
del retvals['stderr'] del retvals['stderr']
module.exit_json(name=name, state=state, **retvals) module.exit_json(name=name, state=state, update_cache=update_cache, **retvals)
# import module snippets # import module snippets
from ansible.module_utils.basic import * from ansible.module_utils.basic import *

Loading…
Cancel
Save