我有一个厨师食谱,看起来像:
Chef::Log.info('step1')
# do stuff
Chef::Log.info('step2')
bash "do_wget" do
code <<-EOF
wget somefile
EOF
end
Chef::Log.info('step3')
# do stuff
wget 需要一段时间,但日志记录最终看起来像
step1
step2
step3
bash script runs #indicates that the bash script from step 2 is running
有没有办法阻止从第 3 步开始记录,直到 bash 脚本执行完毕?