mirror of https://github.com/lucascbeyeler/zimbra
commit
a220d76add
|
|
@ -1 +1,2 @@
|
|||
OLD
|
||||
main.yml
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ Zimbra
|
|||
Non-Official ansible role to install and configure Zimbra Collaboration Open Source Edition on Red Hat, CentOS and Ubuntu Server.
|
||||
|
||||
[](https://travis-ci.org/lucascbeyeler/zimbra)
|
||||
[](https://www.zimbra.com/downloads/zimbra-collaboration-open-source/)
|
||||
[](https://www.zimbra.com/downloads/zimbra-collaboration-open-source/)
|
||||

|
||||

|
||||
[](https://www.ansible.com/)
|
||||
|
|
@ -53,7 +53,7 @@ Role Variables
|
|||
* **zmlogologin:** Inform the path for your logo (Login Screen) - don't inform and no image will be applied;
|
||||
* **zmlogoapp:** Inform the path for your logo (Application Screen) - don't inform and no image will be applied;
|
||||
* **timezone:** inform the timezone the playbook should set in your server;
|
||||
* **zimbra_version:** Inform which version of Zimbra you want to install. Default: 8.8.10
|
||||
* **zimbra_version:** Inform which version of Zimbra you want to install. Default: 8.8.12
|
||||
|
||||
Service Variables - Inform "y" or "n"
|
||||
--------------
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
@ -30,4 +30,4 @@ timezone: UTC
|
|||
#
|
||||
# Zimbra configuration
|
||||
################################################################################
|
||||
zimbra_version: 8.8.10
|
||||
zimbra_version: 8.8.12
|
||||
|
|
|
|||
Loading…
Reference in New Issue