# reboot a host # https://www.freekb.net/Article?id=3078 # https://www.freekb.net/Article?id=2395 # https://docs.ansible.com/ansible/latest/collections/ansible/builtin/reboot_module.html # # - will need to find another option for reboot cuz this was a wonky behavior from ansible # - it asked me to enter my passphrase 5 times before actually took properly # # had to run the command like so: # # ansible-playbook 11-playbook-reboot.yml --ask-become-pass # # -or- # # ansible-playbook 11-playbook-reboot.yml -K # # -or- # # ansible-playbook 11-playbook-reboot.yml --become -K # --- - name: "08 - custom ansible - backup system files" hosts: all tasks: - name: reboot a host ansible.builtin.reboot: msg: "reboot initiated by ansible" connect_timeout: 5 post_reboot_delay: 30 become: yes ...