ansible暫停模塊

pause

在playbook執行的過程當中暫停必定時間或者提示用戶進行某些操做ssh

經常使用參數:ui

minutes:暫停多少分鐘code

seconds:暫停多少秒對象

prompt:打印一串信息提示用戶操做進程

示例:字符串

- name: wait on user input

   pause: prompt="Warning! Detected slight issue. ENTER to continue CTRL-C a to quit" 

- name: timed wait

  pause: seconds=30

複製代碼
複製代碼
wait_forinput

在playbook的執行過程當中,等待某些操做完成之後再進行後續操做cmd

經常使用參數:it

connect_timeout:在下一個任務執行以前等待鏈接的超時時間io

delay:等待一個端口或者文件或者鏈接到指定的狀態時,默認超時時間爲300秒,在這等待的300s的時間裏,wait_for模塊會一直輪詢指定的對象是否到達指定的狀態,delay即爲多長時間輪詢一次狀態。

host:wait_for模塊等待的主機的地址,默認爲127.0.0.1

port:wait_for模塊待待的主機的端口

path:文件路徑,只有當這個文件存在時,下一任務纔開始執行,即等待該文件建立完成

state:等待的狀態,即等待的文件或端口或者鏈接狀態達到指定的狀態時,下一個任務開始執行。當等的對象爲端口時,狀態有started,stoped,即端口已經監聽或者端口已經關閉;當等待的對象爲文件時,狀態有present或者started,absent,即文件已建立或者刪除;當等待的對象爲一個鏈接時,狀態有drained,即鏈接已創建。默認爲started

timeout:wait_for的等待的超時時間,默認爲300秒

示例:

- wait_for: port=8080 state=started     #等待8080端口已正常監聽,纔開始下一個任務,直到超時

- wait_for: port=8000 delay=10    #等待8000端口正常監聽,每隔10s檢查一次,直至等待超時

- wait_for: host=0.0.0.0 port=8000 delay=10 state=drained    #等待8000端口直至有鏈接創建

- wait_for: host=0.0.0.0 port=8000 state=drained exclude_hosts=10.2.1.2,10.2.1.3    #等待8000端口有鏈接創建,若是鏈接來自10.2.1.2或者10.2.1.3,則忽略。

- wait_for: path=/tmp/foo    #等待/tmp/foo文件已建立

- wait_for: path=/tmp/foo search_regex=completed    #等待/tmp/foo文件已建立,並且該文件中須要包含completed字符串

- wait_for: path=/var/lock/file.lock state=absent    #等待/var/lock/file.lock被刪除

- wait_for: path=/proc/3466/status state=absent        #等待指定的進程被銷燬

- local_action: wait_for port=22 host="{{ ansible_ssh_host | default(inventory_hostname) }}" search_regex=OpenSSH delay=10    #等待openssh啓動,10s檢查一次

fail

用於終止當前playbook的執行,一般與條件語句組合使用,當知足條件時,終止當前play的運行。能夠直接由failed_when取代。

選項只有一個:

msg:終止前打印出信息

示例:

- fail: msg="The system may not be provisioned according to the CMDB status."
  when: cmdb_status != "to-be-staged"
相關文章
相關標籤/搜索