mirror of https://github.com/lucascbeyeler/zimbra
Merge branch 'master' of https://github.com/lucascbeyeler/zimbra
This commit is contained in:
commit
6b02ae84f9
|
|
@ -0,0 +1,3 @@
|
||||||
|
# These are supported funding model platforms
|
||||||
|
|
||||||
|
github: [lucascbeyeler]
|
||||||
|
|
@ -9,3 +9,39 @@ ubuntu:
|
||||||
centos:
|
centos:
|
||||||
- pyzor
|
- pyzor
|
||||||
- perl-Razor-Agent
|
- perl-Razor-Agent
|
||||||
|
|
||||||
|
#
|
||||||
|
# Products to be installed
|
||||||
|
################################################################################
|
||||||
|
zimbra_ldap: y
|
||||||
|
zimbra_logger: y
|
||||||
|
zimbra_mta: y
|
||||||
|
zimbra_dnscache: n
|
||||||
|
zimbra_snmp: n
|
||||||
|
zimbra_store: y
|
||||||
|
zimbra_apache: y
|
||||||
|
zimbra_spell: y
|
||||||
|
zimbra_memcached: y
|
||||||
|
zimbra_proxy: y
|
||||||
|
zimbra_chat: n
|
||||||
|
zimbra_drive: n
|
||||||
|
zimbra_imapd: n
|
||||||
|
zimbra_policyd: n
|
||||||
|
|
||||||
|
#
|
||||||
|
# Zimbra configuration
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
hostname: "localhost"
|
||||||
|
domain: "localdomain"
|
||||||
|
zmpasswd: "!23Change"
|
||||||
|
zmnetwork: "192.168.200.0/8"
|
||||||
|
timezone: UTC
|
||||||
|
#hosts_lines:
|
||||||
|
# - "198.162.1.3 {{ hostname }}.{{ domain }} {{ hostname }}"
|
||||||
|
|
||||||
|
#
|
||||||
|
# Zimbra configuration
|
||||||
|
################################################################################
|
||||||
|
zimbra_version: 8.8.15
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -3,17 +3,19 @@ galaxy_info:
|
||||||
description: Ansible role to install and configure Zimbra Collaboration Open Source Edition
|
description: Ansible role to install and configure Zimbra Collaboration Open Source Edition
|
||||||
company: Beyeler
|
company: Beyeler
|
||||||
license: GPLv3
|
license: GPLv3
|
||||||
min_ansible_version: 2.4
|
min_ansible_version: 2.9.6
|
||||||
github_branch: master
|
github_branch: master
|
||||||
platforms:
|
platforms:
|
||||||
- name: Ubuntu
|
- name: Ubuntu
|
||||||
versions:
|
versions:
|
||||||
- trusty
|
- trusty
|
||||||
- xenial
|
- xenial
|
||||||
|
- bionic
|
||||||
- name: EL
|
- name: EL
|
||||||
versions:
|
versions:
|
||||||
- 6
|
- 6
|
||||||
- 7
|
- 7
|
||||||
|
- 8
|
||||||
galaxy_tags:
|
galaxy_tags:
|
||||||
- zimbra
|
- zimbra
|
||||||
- community
|
- community
|
||||||
|
|
|
||||||
|
|
@ -2,6 +2,15 @@
|
||||||
#
|
#
|
||||||
# Download and install Zimbra OSE
|
# Download and install Zimbra OSE
|
||||||
################################################################################
|
################################################################################
|
||||||
|
|
||||||
|
- name: Update /etc/hosts
|
||||||
|
lineinfile:
|
||||||
|
path: /etc/hosts
|
||||||
|
line: "{{ item }}"
|
||||||
|
state: present
|
||||||
|
with_items: "{{ hosts_lines }}"
|
||||||
|
when: hosts_lines is defined
|
||||||
|
|
||||||
- name: Download and unpacking Zimbra OSE
|
- name: Download and unpacking Zimbra OSE
|
||||||
unarchive:
|
unarchive:
|
||||||
validate_certs: no
|
validate_certs: no
|
||||||
|
|
|
||||||
|
|
@ -1,33 +1 @@
|
||||||
---
|
---
|
||||||
#
|
|
||||||
# Products to be installed
|
|
||||||
################################################################################
|
|
||||||
zimbra_ldap: y
|
|
||||||
zimbra_logger: y
|
|
||||||
zimbra_mta: y
|
|
||||||
zimbra_dnscache: n
|
|
||||||
zimbra_snmp: n
|
|
||||||
zimbra_store: y
|
|
||||||
zimbra_apache: y
|
|
||||||
zimbra_spell: y
|
|
||||||
zimbra_memcached: y
|
|
||||||
zimbra_proxy: y
|
|
||||||
zimbra_chat: n
|
|
||||||
zimbra_drive: n
|
|
||||||
zimbra_imapd: n
|
|
||||||
zimbra_policyd: n
|
|
||||||
|
|
||||||
#
|
|
||||||
# Zimbra configuration
|
|
||||||
################################################################################
|
|
||||||
|
|
||||||
hostname: "localhost"
|
|
||||||
domain: "localdomain"
|
|
||||||
zmpasswd: "!23Change"
|
|
||||||
zmnetwork: "192.168.200.0/8"
|
|
||||||
timezone: UTC
|
|
||||||
|
|
||||||
#
|
|
||||||
# Zimbra configuration
|
|
||||||
################################################################################
|
|
||||||
zimbra_version: 8.8.15
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue