mirror of https://github.com/lucascbeyeler/zimbra
14 lines
650 B
YAML
14 lines
650 B
YAML
# This is where the Ansible will check which S.O. you are using and select the
|
|
# correct package to install
|
|
|
|
- name: Set the Playbook to Install Zimbra Collaboration 8.7 - Open Source Edition
|
|
set_fact: zmurl=https://files.zimbra.com/downloads/8.7.3_GA/
|
|
|
|
- name: Check if your distro is Ubuntu Server 16.04 LTS
|
|
set_fact: zmpkg=zcs-8.7.3_GA_1750.UBUNTU16_64.20170215042321
|
|
when: ansible_distribution_major_version|int >= 16
|
|
|
|
- name: Check if your distro is Ubuntu Server 14.04 LTS
|
|
set_fact: zmpkg=zcs-8.7.3_GA_1750.UBUNTU14_64.20170215042321
|
|
when: ansible_distribution_major_version|int >= 14 and ansible_distribution_major_version|int <= 15
|