remove `-v` flag from post-rsync `chmod`

OpenBSD `chmod` does not support the `-v` flag, which causes
`vagrant up` to fail.
This commit is contained in:
Matt Behrens 2014-05-09 18:31:23 -04:00
parent 9c684ad2b7
commit a8fb2de7aa
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ module VagrantPlugins
def self.rsync_post(machine, opts)
machine.communicate.sudo(
"find '#{opts[:guestpath]}' '(' ! -user #{opts[:owner]} -or ! -group #{opts[:group]} ')' -print0 | " +
"xargs -0 -r chown -v #{opts[:owner]}:#{opts[:group]}")
"xargs -0 -r chown #{opts[:owner]}:#{opts[:group]}")
end
end
end