ansible_cache/kubernetes/reboot.yml
2024-12-27 12:47:45 +00:00

23 lines
616 B
YAML
Executable File

---
- name: Reboots linux host and checks status
hosts: all
become: yes
vars_files:
- global_vars/main.yml
tasks:
- name: Rebooting...
ansible.builtin.reboot:
reboot_timeout: 180
msg: Reboot issued by Ansible
test_command: whoami
- name: Send Webex Teams message via BOT to confirm playbook completion
community.general.cisco_webex:
recipient_type: toPersonEmail
recipient_id: "{{ webex_id }}"
msg_type: markdown
personal_token: "{{ webex_token }}"
msg: "**Host {{ inventory_hostname }} has successfully rebooted.**"