Add the priority option to the zypper_repo. task

The user might want to utilize the priority option which exists in the
zypper_repository module

Change-Id: I76583b14c5925407c191cd3fc5dfca8c8649781f
This commit is contained in:
Manuel Buil 2017-12-01 12:53:13 +01:00
parent ef7eeaae77
commit 190c9f220f
1 changed files with 2 additions and 1 deletions

View File

@ -59,7 +59,7 @@
zypper:
name: "{{ openstack_hosts_package_list | rejectattr('state','equalto','absent') | map(attribute='name') | list }}"
state: "{{ openstack_hosts_package_state }}"
when: "{{ openstack_hosts_package_list | rejectattr('state','equalto','absent') | map(attribute='name') | list | length > 0}}"
when: "{{ openstack_hosts_package_list | rejectattr('state','equalto','absent') | map(attribute='name') | list | length > 0}}"
- name: Add/Remove/Update standard and user defined repositories
zypper_repository:
@ -71,6 +71,7 @@
description: "{{ repo.description | default(omit) }}"
autorefresh: "{{ repo.autorefresh | default(omit) }}"
auto_import_keys: "{{ repo.auto_import_keys | default(omit) }}"
priority: "{{ repo.priority | default(omit) }}"
with_items: "{{ openstack_hosts_package_repos }}"
loop_control:
loop_var: repo