29 lines
704 B
YAML
29 lines
704 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 install-axinstall-importmodel.yaml
|
|
|
|
## install-axinstall-importmodel
|
|
- name: install-axinstall-importmodel
|
|
hosts: AOS_POM
|
|
gather_facts: false
|
|
tasks:
|
|
- block:
|
|
- include: tasks/install-axinstall-importmodel.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
|