LoginSignup
11
11

More than 5 years have passed since last update.

[Ansible] 長時間のmake,configure時に反応が返って来ないとき

Last updated at Posted at 2014-06-27

timeoutしている可能性があるのでpollとasyncの設定を足す。
pollは指定した秒数おきに状況を表示。
asyncは指定した秒数が経つと、現在のステップが終わっていなくても、次のステップにいく。

- name: make ffmpeg
  command: make chdir=/tmp/ffmpeg
  sudo: yes
  poll: 30
  async: 600
11
11
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
11
11