# 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.2_GA/ - name: Check if your distro is Ubuntu Server 16.04 LTS set_fact: zmpkg=zcs-8.7.2_GA_1736.UBUNTU16_64.20170131053933 when: ansible_distribution_major_version|int >= 16 - name: Check if your distro is Ubuntu Server 14.04 LTS 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