vm-ansible/roles/smtpgateway/tasks/main.yaml
Torma Kristóf f7ffff3b8d
Some checks reported errors
continuous-integration/drone/push Build was killed
add exporters
2022-05-29 15:15:02 +02:00

42 lines
746 B
YAML

---
- name: "Install Postfix via apt"
apt:
update_cache: yes
state: present
name:
- postfix
- name: Install Postfix mail gateway config
template:
src: templates/main.cf
dest: /etc/postfix/main.cf
- name: Build /etc/mailname
shell: hostname --fqdn > /etc/mailname
- name: Restart Postfix
service:
name: postfix
state: restarted
enabled: yes
- name: Allow smtp port via ufw
community.general.ufw:
rule: allow
port: smtp
- name: "Install postfix exporter"
apt:
update_cache: yes
state: present
name:
- prometheus-postfix-exporter
- name: Allow postfix exporter via ufw
community.general.ufw:
rule: allow
port: 9706
proto: tcp
src: 192.168.69.0/24
...