mirror of
https://git.lapiole.org/dani/ansible-roles.git
synced 2025-07-27 00:05:44 +02:00
Update to 2022-04-01 17:00
This commit is contained in:
26
roles/repo_zimbra/tasks/RedHat.yml
Normal file
26
roles/repo_zimbra/tasks/RedHat.yml
Normal file
@@ -0,0 +1,26 @@
|
||||
---
|
||||
|
||||
- name: Configure Zimbra repo
|
||||
yum_repository:
|
||||
file: zimbra
|
||||
name: "{{ item.name }}"
|
||||
description: "{{ item.description }}"
|
||||
baseurl: "{{ item.baseurl }}"
|
||||
gpgcheck: True
|
||||
gpgkey: https://files.zimbra.com/downloads/security/public.key
|
||||
priority: 50
|
||||
exclude: "{{ item.exclude | default(omit) }}"
|
||||
loop:
|
||||
- name: zimbra
|
||||
description: Zimbra RPM Repository
|
||||
baseurl: https://repo.zimbra.com/rpm/87/rhel$releasever
|
||||
- name: zimbra-90-oss
|
||||
description: Zimbra New RPM Repository
|
||||
baseurl: https://repo.zimbra.com/rpm/90/rhel$releasever
|
||||
- name: zimbra-90-network
|
||||
description: Zimbra NE RPM Repository
|
||||
baseurl: https://repo.zimbra.com/rpm/90-ne/rhel$releasever
|
||||
exclude:
|
||||
- zimbra-patch
|
||||
tags: repo,zcs
|
||||
|
5
roles/repo_zimbra/tasks/main.yml
Normal file
5
roles/repo_zimbra/tasks/main.yml
Normal file
@@ -0,0 +1,5 @@
|
||||
---
|
||||
|
||||
- include_tasks: "{{ ansible_os_family }}.yml"
|
||||
tags: always
|
||||
|
Reference in New Issue
Block a user