vm-ansible/roles/internalsmtp/tasks/main.yaml
Torma Kristóf b2ace001f7
Some checks reported errors
continuous-integration/drone/push Build was killed
fix memes
2022-05-29 21:28:56 +02:00

40 lines
717 B
YAML

---
- name: "Install Postfix via apt"
apt:
update_cache: yes
state: present
name:
- postfix
- name: Install Postfix forwarder config
template:
src: templates/main.cf
dest: /etc/postfix/main.cf
- name: Restart Postfix
service:
name: postfix
state: restarted
enabled: yes
- name: "Install postfix exporter"
apt:
update_cache: yes
state: present
name:
- prometheus-postfix-exporter
- name: Enable and restart exporter daemon
service:
name: prometheus-postfix-exporter
state: restarted
enabled: yes
- name: Allow postfix exporter via ufw
community.general.ufw:
rule: allow
port: "9154"
proto: tcp
src: 192.168.69.0/24
...