Merge pull request #3743 from zigg/fix/master/openbsd-rsync-chmod

guests/openbsd: remove `-v` flag from post-rsync `chmod`
This commit is contained in:
Mitchell Hashimoto 2014-05-09 15:38:27 -07:00
commit 3f28552f39
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