Initial Commit
Lint Markdown files / markdown-lint (push) Successful in 54s
Ansible Linter / ansible-lint (push) Successful in 1m0s

This commit is contained in:
2026-09-07 17:30:42 +02:00
commit 91dabffbd8
53 changed files with 5419 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
---
- name: Systemd reload
ansible.builtin.systemd:
daemon_reload: true
- name: Postmap sasl_password_maps
ansible.builtin.command:
cmd: postmap /etc/postfix/sasl_password_maps
register: _postfix_postmap_sasl_cmd
changed_when: false
failed_when: _postfix_postmap_sasl_cmd.rc > 0
- name: Restart postfix
ansible.builtin.systemd:
name: postfix
state: restarted
- name: Reload postfix
ansible.builtin.systemd:
name: postfix.service
state: reloaded