chef-solo 从 bash 脚本获取日志
chef-solo getting logs from a bash script
我正在通过 chef 执行 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 脚本中获取日志?
用于 bash 重定向,如下所示
execute 'Run postgres data migration' do
command '/home/ubuntu/build-target/infra-base/psql10_migration.sh >> /home/ubuntu/logs/psql10-migration.log 2>&1'
action :run
only_if { ::File.exist?('/home/ubuntu/build-target/infra-base/psql10_migration.sh') }
end
我正在通过 chef 执行 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 脚本中获取日志?
用于 bash 重定向,如下所示
execute 'Run postgres data migration' do
command '/home/ubuntu/build-target/infra-base/psql10_migration.sh >> /home/ubuntu/logs/psql10-migration.log 2>&1'
action :run
only_if { ::File.exist?('/home/ubuntu/build-target/infra-base/psql10_migration.sh') }
end