23 lines
534 B
YAML
23 lines
534 B
YAML
---
|
|
- name: Demonstrate module timeout
|
|
hosts: localhost
|
|
connection: local
|
|
gather_facts: false
|
|
|
|
tasks:
|
|
- name: Check if network share is hung and reboot
|
|
block:
|
|
- name: Check mounts
|
|
ansible.builtin.command: sleep 30
|
|
timeout: 10
|
|
|
|
rescue:
|
|
- name: Lazily unmount the file system
|
|
ansible.builtin.debug:
|
|
msg: unmount stuff goes here
|
|
|
|
always:
|
|
- name: Reboot the host
|
|
ansible.builtin.debug:
|
|
msg: include_role verified_reboot
|