30 lines
649 B
YAML
30 lines
649 B
YAML
---
|
|
- name: Slack
|
|
hosts: localhost
|
|
gather_facts: false
|
|
tasks:
|
|
- name: Send notification message via Slack
|
|
community.general.slack:
|
|
token: "{{ slack_token }}"
|
|
msg: Starting playbook Clean-up_Task.yaml
|
|
|
|
## Clean-up_Task
|
|
- name: Clean-up_Task
|
|
hosts: Note_install
|
|
gather_facts: false
|
|
tasks:
|
|
- block:
|
|
- include: tasks/Clean-up_Test.yaml
|
|
rescue:
|
|
- include: tasks/task-failed-slack.yaml
|
|
|
|
|
|
- name: Slack
|
|
hosts: localhost
|
|
gather_facts: false
|
|
tasks:
|
|
- name: Send notification message via Slack
|
|
community.general.slack:
|
|
token: "{{ slack_token }}"
|
|
msg: All done
|