Initial commit

This commit is contained in:
Julian Rother 2025-01-17 13:15:09 +01:00
commit 09bc73507a
Signed by: julian
GPG key ID: C19B924C0CD13341
4 changed files with 95 additions and 0 deletions

19
tasks/main.yml Normal file
View 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"