28 lines
561 B
YAML
28 lines
561 B
YAML
- name: restart openssh
|
|
service:
|
|
name: ssh
|
|
state: restarted
|
|
|
|
- name: reload postfix
|
|
service:
|
|
name: postfix
|
|
state: reloaded
|
|
|
|
- name: update aliases
|
|
command: newaliases
|
|
|
|
- name: update postfix senders
|
|
command: postmap {{ postfix_senders_map_path }}
|
|
|
|
- name: update postfix secrets
|
|
command: postmap {{ postfix_sasl_secrets_path }}
|
|
|
|
- name: reload nginx
|
|
include_tasks: ../handlers/nginx.yml
|
|
when: nginx_started is not changed
|
|
|
|
- name: reload autofs
|
|
service:
|
|
name: autofs
|
|
state: restarted
|
|
when: autofs_started is not changed |