Initial commit
This commit is contained in:
commit
09bc73507a
4 changed files with 95 additions and 0 deletions
19
tasks/main.yml
Normal file
19
tasks/main.yml
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
- 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"
|
||||
Loading…
Add table
Add a link
Reference in a new issue