From 6754f8db14fba799630d771a6af930729484ff4f Mon Sep 17 00:00:00 2001 From: Kamjar Gerami Date: Sat, 27 Feb 2016 02:16:46 +0100 Subject: [PATCH] #7084 - fixes-7084-notrunc-command-is-wrong-in-client.rb : corrected the -notrunc command to --no-trunc --- plugins/provisioners/docker/client.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/provisioners/docker/client.rb b/plugins/provisioners/docker/client.rb index 391c76395..3a42b260c 100644 --- a/plugins/provisioners/docker/client.rb +++ b/plugins/provisioners/docker/client.rb @@ -128,7 +128,7 @@ module VagrantPlugins # recent versions use the full container ID # See https://github.com/dotcloud/docker/pull/2140 for more information return comm.test("#{docker_ps} | grep -wFq #{id}") || - comm.test("#{docker_ps} -notrunc | grep -wFq #{id}") + comm.test("#{docker_ps} --no-trunc | grep -wFq #{id}") end end