mirror of
https://gitlab.archlinux.org/archlinux/infrastructure.git
synced 2025-01-18 08:06:16 +01:00
ansible-lint 6.5.0 complains about: name: All names should start with an uppercase letter. (name[casing])
24 lines
467 B
YAML
24 lines
467 B
YAML
- name: Restart postfix
|
|
service:
|
|
name: postfix
|
|
state: restarted
|
|
|
|
- name: Reload postfix
|
|
command: postfix reload
|
|
|
|
- name: Postmap additional files
|
|
command: postmap /etc/postfix/{{ item }}
|
|
with_items:
|
|
- access_client
|
|
- access_sender
|
|
- access_sender-post-filter
|
|
- access_helo
|
|
- access_recipient
|
|
- transport
|
|
- relocated
|
|
- domains
|
|
- msa_header_checks
|
|
|
|
- name: Update aliases db
|
|
command: postalias /etc/postfix/aliases
|