用于在Windows中调试和日志打包程序的命令

时间:2015-12-30 00:05:26

标签: vagrant virtualbox packer

我想在我的详细调试packer build ubuntu-14.04-amd64.json中登录一个不想在我的脚本中安装少量工具的文件。

使用调试运行构建并在构建打包程序中记录文件的确切命令是什么?

我也运行PACKER_LOG=1 packer build -debug ubuntu-14.04-amd64.json或尝试导出变量shell但不运行

1 个答案:

答案 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

现在,您有一个文件,其中包含在构建过​​程中显示在控制台中的所有消息。