12 lines
258 B
YAML
12 lines
258 B
YAML
- 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"
|