Run remote rsync as root to guarantee that rsync can write to guestpath. This obviates the need to chown the guestpath to the SSH user prior to sync. This brings a substantial speedup (2x on a moderately-sized shared folder) and properly triggers filesystem notifications on only the files changed by a given sync.
22 lines
558 B
Ruby
22 lines
558 B
Ruby
module VagrantPlugins
|
|
module GuestLinux
|
|
module Cap
|
|
class RSync
|
|
def self.rsync_installed(machine)
|
|
machine.communicate.test("which rsync")
|
|
end
|
|
|
|
def self.rsync_command(machine)
|
|
"sudo rsync"
|
|
end
|
|
|
|
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]}")
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|