ansible_public/playbooks/fast_fixes/reboot.yaml
2022-06-14 18:53:16 +02:00

14 lines
313 B
YAML

---
- hosts: "{{ variable_host | default(lab15_standard) }}"
gather_facts: no
tasks:
- name: reboot the OS
reboot:
msg: "Reboot initiated by Ansible"
connect_timeout: 5
reboot_timeout: 30
pre_reboot_delay: 0
post_reboot_delay: 30
test_command: whoami
become: yes