我通过厨师执行shell脚本像下面
execute 'Run postgres data migration' do
command '/home/ubuntu/build-target/infra-base/psql10_migration.sh'
live_stream true
action :run
only_if { ::File.exist?('/home/ubuntu/build-target/infra-base/psql10_migration.sh') }
end
我的厨师日志定向到一个文件( log_location '/var/log/arkin/chef-run.log'
)
现在我没有收到来自bash脚本任何日志psql10_migration.sh
。 有人可以让我知道我可以从bash脚本获取日志?