您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

11 行
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