19 lines
401 B
YAML
19 lines
401 B
YAML
- name: Install fail2ban
|
|
ansible.builtin.apt:
|
|
pkg: roundcube
|
|
|
|
- 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"
|