zimbra/tasks/vars/zimbra-Debian.yml

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.5_GA/
- name: Check if your distro is Ubuntu Server 16.04 LTS
set_fact: zmpkg=zcs-8.7.5_GA_1764.UBUNTU16_64.20170314032533
when: ansible_distribution_major_version|int >= 16
- name: Check if your distro is Ubuntu Server 14.04 LTS
set_fact: zmpkg=zcs-8.7.5_GA_1764.UBUNTU14_64.20170314032533
when: ansible_distribution_major_version|int >= 14 and ansible_distribution_major_version|int <= 15