#7084 - fixes-7084-notrunc-command-is-wrong-in-client.rb : corrected the -notrunc command to --no-trunc

This commit is contained in:
Kamjar Gerami 2016-02-27 02:16:46 +01:00
parent 00dbcbdc3e
commit 6754f8db14
1 changed files with 1 additions and 1 deletions

View File

@ -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