21 lines
517 B
Ruby
21 lines
517 B
Ruby
module VagrantPlugins
|
|
module GuestSolaris
|
|
module Cap
|
|
class RSync
|
|
def self.rsync_installed(machine)
|
|
machine.communicate.test("which rsync")
|
|
end
|
|
|
|
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
|