Initial commit

This commit is contained in:
Julian Rother 2025-01-25 18:28:51 +01:00
commit 40c3b0421f
Signed by: julian
GPG key ID: C19B924C0CD13341
3 changed files with 51 additions and 0 deletions

12
tasks/main.yml Normal file
View file

@ -0,0 +1,12 @@
- name: Install postfixadmin
ansible.builtin.apt:
pkg:
- postfixadmin
- name: Update config
ansible.builtin.template:
src: config.local.php.j2
dest: /etc/postfixadmin/config.local.php
owner: root
group: www-data
mode: "0640"