rsync should *always* be pre-installed in SmartOS (global and local zones), as it's part of the kernel. Previous commits incorrectly attributed #rsync_install to running rsync, rather than to installing the rsync command.
22 lines
590 B
Ruby
22 lines
590 B
Ruby
module VagrantPlugins
|
|
module GuestSmartos
|
|
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]
|
|
sudo = machine.config.smartos.suexec_cmd
|
|
|
|
machine.communicate.tap do |comm|
|
|
comm.execute("#{sudo} mkdir -p '#{folder_opts[:guestpath]}'")
|
|
comm.execute("#{sudo} chown -R #{username} '#{folder_opts[:guestpath]}'")
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|