静音/安静模式中的流浪汉

时间:2017-02-01 14:33:05

标签: vagrant vagrantfile

我想禁用Vagrant的stdout,当它打印通过Vagrantfile时的所有步骤时,我怎样才能让vagrant只显示失败或警告?

我使用木偶和贝壳配置器。

除非出现错误或警告,否则我不想看到此类型的输出。

Bringing machine 'default' up with 'virtualbox' provider...
==> default: Cloning VM...
==> default: Matching MAC address for NAT networking...
==> default: Checking if box 'puppetlabs/ubuntu-14.04-64-puppet' is up to date...
==> default: Setting the name of the VM: puppet4-test-puppet4
==> default: Fixed port collision for 22 => 2222. Now on port 2200.

1 个答案:

答案 0 :(得分:1)

您可以将标准stdout重定向到null,它应该只保留推送stderr的内容

$ vagrant up > /dev/null