我想在我的详细调试packer build ubuntu-14.04-amd64.json
中登录一个不想在我的脚本中安装少量工具的文件。
使用调试运行构建并在构建打包程序中记录文件的确切命令是什么?
我也运行PACKER_LOG=1 packer build -debug ubuntu-14.04-amd64.json
或尝试导出变量shell但不运行
答案 0 :(得分:0)
<强>(UNIX)强>
$ export PACKER_LOG_PATH="/var/log/packer.log"
$ export PACKER_LOG=10
$ packer build -debug ubuntu_64.json
<强>(WINDOWS)强>
$ set PACKER_LOG=10
$ set PACKER_LOG_PATH=c:\temp\packer log
$ packer build -debug ubuntu_64.json
现在,您有一个文件,其中包含在构建过程中显示在控制台中的所有消息。