11

Web サービスを実行し、結果が得られるまで数秒待ちたいと思います。

puppet での待機を実現する最良の方法は何ですか?

4

3 に答える 3

16

exec で linux sleep コマンドを使用し、Web サービスの後に実行するようにステージングできます。何かのようなもの :

exec { 'wait_for_my_web_service' :
  require => Service["my_web_service"],
  command => "sleep 10 && /run/my/command/to/get/results/from/the/web/service",
  path => "/usr/bin:/bin",
}
于 2013-01-23T03:00:14.173 に答える