27 lines
606 B
YAML
27 lines
606 B
YAML
---
|
|
|
|
- name: Create postfix virtual users/group
|
|
ansible.builtin.import_tasks: setup.yml
|
|
tags:
|
|
- "role::postfix"
|
|
- "role::postfix:install"
|
|
- "role::postfix:config"
|
|
- "role::postfix:tables"
|
|
|
|
- name: Install postfix
|
|
ansible.builtin.import_tasks: install.yml
|
|
tags:
|
|
- "role::postfix"
|
|
- "role::postfix:install"
|
|
|
|
- name: Configure postfix
|
|
ansible.builtin.import_tasks: config.yml
|
|
tags:
|
|
- "role::postfix"
|
|
- "role::postfix:config"
|
|
|
|
- name: Render postfix lookup tables
|
|
ansible.builtin.import_tasks: tables.yml
|
|
tags:
|
|
- "role::postfix"
|
|
- "role::postfix:tables"
|