Files
ansible/oldstuff/tasks/stop-aos.yaml
2024-09-12 09:27:25 +00:00

13 lines
314 B
YAML

---
- name: Send notification message via Slack
delegate_to: localhost
community.general.slack:
token: "{{ slack_token }}"
msg: Stopping Ax service on {{ inventory_hostname }}
- name: Stop Dynamics Ax service
ansible.windows.win_service:
name: aos60$01
state: stopped
start_mode: manual