ansible-development-environ.../roles/postfix/vars/main.yml

23 lines
578 B
YAML

---
# vars file for postfix
postfix_packages:
- postfix
postfix_service: postfix
_postfix_daemon_directory:
default: /usr/libexec/postfix
Debian: /usr/lib/postfix/sbin
Suse: /usr/lib/postfix/bin
postfix_daemon_directory: "{{_postfix_daemon_directory[ansible_os_family] | default(_postfix_daemon_directory['default']) }}"
postfix_group: postdrop
_postfix_alias_path:
default: /etc/aliases
Alpine: /etc/postfix/aliases
Archlinux: /etc/postfix/aliases
postfix_alias_path: "{{ _postfix_alias_path[ansible_os_family] | default(_postfix_alias_path['default']) }}"