22 lines
454 B
YAML
22 lines
454 B
YAML
- name: Install roundcube
|
|
ansible.builtin.apt:
|
|
pkg:
|
|
- roundcube
|
|
- roundcube-sqlite3
|
|
- roundcube-pgsql
|
|
|
|
- name: Create db directory
|
|
ansible.builtin.file:
|
|
path: /var/lib/roundcube/db
|
|
owner: www-data
|
|
group: www-data
|
|
state: directory
|
|
mode: "0750"
|
|
|
|
- name: Update config
|
|
ansible.builtin.template:
|
|
src: config.inc.php.j2
|
|
dest: /etc/roundcube/config.inc.php
|
|
owner: root
|
|
group: www-data
|
|
mode: "0640"
|