diff --git a/plugins/guests/openbsd/cap/rsync.rb b/plugins/guests/openbsd/cap/rsync.rb index 74048623c..5467ecd67 100644 --- a/plugins/guests/openbsd/cap/rsync.rb +++ b/plugins/guests/openbsd/cap/rsync.rb @@ -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