Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Web サービスを実行し、結果が得られるまで数秒待ちたいと思います。
puppet での待機を実現する最良の方法は何ですか?
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", }