代码之家  ›  专栏  ›  技术社区  ›  tuk

主厨索洛从bash脚本中获取日志

  •  0
  • tuk  · 技术社区  · 6 年前

    我正在通过厨师执行一个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脚本中获取日志吗?

    1 回复  |  直到 6 年前
        1
  •  0
  •   tuk    6 年前

    在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