25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
273B

  1. ---
  2. - name: reboot
  3. command: shutdown -r 1
  4. async: 0
  5. poll: 0
  6. ignore_errors: true
  7. - name: wait for ssh
  8. local_action: wait_for host={{ ansible_host | default(inventory_hostname) }} port=22 search_regex=OpenSSH delay={{ reboot_delay | default(120) }} state=started