Updating the playbook to download and install Zimbra 8.7.2

This commit is contained in:
Lucas Costa Beyeler 2017-02-09 13:52:47 -02:00
parent 56e73da07b
commit 90a5ccf564
2 changed files with 6 additions and 6 deletions

View File

@ -2,12 +2,12 @@
# correct package to install # correct package to install
- name: Set the Playbook to Install Zimbra Collaboration 8.7 - Open Source Edition - name: Set the Playbook to Install Zimbra Collaboration 8.7 - Open Source Edition
set_fact: zmurl=https://files.zimbra.com/downloads/8.7.1_GA/ set_fact: zmurl=https://files.zimbra.com/downloads/8.7.2_GA/
- name: Check if your distro is Ubuntu Server 16.04 LTS - name: Check if your distro is Ubuntu Server 16.04 LTS
set_fact: zmpkg=zcs-8.7.1_GA_1670.UBUNTU16_64.20161025045114 set_fact: zmpkg=zcs-8.7.2_GA_1736.UBUNTU16_64.20170131053933
when: ansible_distribution_major_version|int >= 16 when: ansible_distribution_major_version|int >= 16
- name: Check if your distro is Ubuntu Server 14.04 LTS - name: Check if your distro is Ubuntu Server 14.04 LTS
set_fact: zmpkg=zcs-8.7.1_GA_1670.UBUNTU14_64.20161025045105 set_fact: zmpkg=zcs-8.7.2_GA_1736.UBUNTU14_64.20170131053933
when: ansible_distribution_major_version|int >= 14 and ansible_distribution_major_version|int <= 15 when: ansible_distribution_major_version|int >= 14 and ansible_distribution_major_version|int <= 15

View File

@ -2,12 +2,12 @@
# correct package to install # correct package to install
- name: Set the Playbook to Install Zimbra Collaboration 8.7 - Open Source Edition - name: Set the Playbook to Install Zimbra Collaboration 8.7 - Open Source Edition
set_fact: zmurl=https://files.zimbra.com/downloads/8.7.1_GA/ set_fact: zmurl=https://files.zimbra.com/downloads/8.7.2_GA
- name: Check if your distro is Red Hat Enterprise Linux or CentOS (Major 6) - name: Check if your distro is Red Hat Enterprise Linux or CentOS (Major 6)
set_fact: zmpkg=zcs-8.7.1_GA_1670.RHEL6_64.20161025035141 set_fact: zmpkg=zcs-8.7.2_GA_1736.RHEL6_64.20170131053933
when: ansible_distribution_major_version == "6" when: ansible_distribution_major_version == "6"
- name: Check if your distro is Red Hat Enterprise Linux or CentOS (Major 7) - name: Check if your distro is Red Hat Enterprise Linux or CentOS (Major 7)
set_fact: zmpkg=zcs-8.7.1_GA_1670.RHEL7_64.20161025045328 set_fact: zmpkg=zcs-8.7.2_GA_1736.RHEL7_64.20170131053933
when: ansible_distribution_major_version == "7" when: ansible_distribution_major_version == "7"