2022-04-01 17:00:09 +02:00
|
|
|
---
|
|
|
|
|
|
|
|
- name: Configure Zimbra repo
|
|
|
|
yum_repository:
|
|
|
|
file: zimbra
|
2025-01-03 11:00:10 +01:00
|
|
|
name: zimbra-oss-{{ item }}
|
|
|
|
description: Zimbra OSS RPM Repository version {{ item }}
|
|
|
|
baseurl: https://repo.zimbra.com/rpm/{{ item }}/rhel$releasever
|
|
|
|
gpgcheck: true
|
2022-04-01 17:00:09 +02:00
|
|
|
gpgkey: https://files.zimbra.com/downloads/security/public.key
|
|
|
|
priority: 50
|
2025-01-03 11:00:10 +01:00
|
|
|
exclude:
|
|
|
|
- zimbra-patch
|
|
|
|
loop: "{{ zcs_repo_versions }}"
|
|
|
|
tags: repo,zcs
|
|
|
|
|
|
|
|
- name: Configure Zimbra NE repo
|
|
|
|
yum_repository:
|
|
|
|
file: zimbra
|
|
|
|
name: zimbra-ne-{{ item }}
|
|
|
|
description: Zimbra NE RPM Repository version {{ item }}
|
|
|
|
baseurl: https://repo.zimbra.com/rpm/{{ item }}-ne/rhel$releasever
|
|
|
|
gpgcheck: true
|
|
|
|
gpgkey: https://files.zimbra.com/downloads/security/public.key
|
|
|
|
priority: 50
|
|
|
|
exclude:
|
|
|
|
- zimbra-patch
|
|
|
|
loop: "{{ zcs_repo_versions | difference([87]) }}"
|
2022-04-01 17:00:09 +02:00
|
|
|
tags: repo,zcs
|
|
|
|
|