Add Supports for Ubuntu 18.04 and Version 8.8.12GA

This commit is contained in:
Daniel Gordi 2019-04-05 21:08:17 +04:30
parent 3bda4ac1e6
commit 5083afead5
No known key found for this signature in database
GPG Key ID: C27BF06D05720A58
1 changed files with 26 additions and 0 deletions

26
tasks/vars/8.8.12.yml Normal file
View File

@ -0,0 +1,26 @@
---
#
# Setting variables
################################################################################
- name: Loading the address to the most recent release of Zimbra OSE (8.8.12)
set_fact: zmurl=https://files.zimbra.com/downloads/8.8.12_GA/
- name: Check if your distro is Ubuntu Server 16.04 LTS
set_fact: zmpkg=zcs-8.8.12_GA_3794.UBUNTU16_64.20190329045002
when: ansible_distribution_major_version|int >= 16
- name: Check if your distro is Ubuntu Server 18.04 LTS
set_fact: zmpkg=zcs-8.8.12_GA_3794.UBUNTU18_64.20190329045002
when: ansible_distribution_major_version|int >= 18
- name: Check if your distro is Ubuntu Server 14.04 LTS
set_fact: zmpkg=zcs-8.8.12_GA_3794.UBUNTU14_64.20190329045002
when: ansible_distribution_major_version|int >= 14 and ansible_distribution_major_version|int <= 15
- name: Check if your distro is Red Hat Enterprise Linux or CentOS (Major 6)
set_fact: zmpkg=zcs-8.8.12_GA_3794.RHEL6_64.20190329045002
when: ansible_distribution_major_version == "6"
- name: Check if your distro is Red Hat Enterprise Linux or CentOS (Major 7)
set_fact: zmpkg=zcs-8.8.12_GA_3794.RHEL7_64.20190329045002
when: ansible_distribution_major_version == "7"