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:
commit
3f28552f39
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue