2014-01-11 01:51:44 +00:00
|
|
|
module VagrantPlugins
|
|
|
|
module GuestLinux
|
|
|
|
module Cap
|
|
|
|
class RSync
|
2014-01-31 03:26:43 +00:00
|
|
|
def self.rsync_installed(machine)
|
|
|
|
machine.communicate.test("which rsync")
|
|
|
|
end
|
|
|
|
|
2014-01-11 01:51:44 +00:00
|
|
|
def self.rsync_pre(machine, folder_opts)
|
|
|
|
username = machine.ssh_info[:username]
|
|
|
|
|
|
|
|
machine.communicate.tap do |comm|
|
|
|
|
comm.sudo("mkdir -p '#{folder_opts[:guestpath]}'")
|
|
|
|
comm.sudo("chown -R #{username} '#{folder_opts[:guestpath]}'")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|