mirror of https://github.com/lucascbeyeler/zimbra
30 lines
1017 B
YAML
30 lines
1017 B
YAML
# Playbook file to install and activate the PolicyD service in the Open Source Edition.
|
|
# PLEASE - If you made a change here, remember to do in a way that every distro
|
|
# can use this change. Otherwise, please use the folder RedHat/Debian.
|
|
|
|
- name: Installing and Enabling the PolicyD Service
|
|
shell: ./zmprov ms {{ hostname }}.{{ domain }} +zimbraServiceInstalled cbpolicyd +zimbraServiceEnabled cbpolicyd
|
|
args:
|
|
chdir: /opt/zimbra/bin/
|
|
|
|
- name: Configuring PolicyD Database
|
|
copy:
|
|
src: 'config.php'
|
|
dest: /opt/zimbra/common/share/webui/includes/config.php
|
|
owner: root
|
|
group: root
|
|
mode: 0644
|
|
|
|
- name: Configuring PolicyD Web Interface
|
|
file:
|
|
src: /opt/zimbra/common/share/webui
|
|
dest: /opt/zimbra/data/httpd/htdocs/webui
|
|
state: link
|
|
|
|
- name: Enable PolicyD Web Interface
|
|
lineinfile:
|
|
dest: /opt/zimbra/conf/httpd.conf
|
|
regexp: "^ DirectoryIndex index.html index.html.var"
|
|
line: " DirectoryIndex index.html index.html.var index.php"
|
|
state: present
|