Sha256: f83e2adea4fc8898c1d998050dffe3afe47fabe39c92ddb5b05949515b69a953
Contents?: true
Size: 895 Bytes
Versions: 48
Compression:
Stored size: 895 Bytes
Contents
require_relative "../../../synced_folders/rsync/default_unix_cap" module VagrantPlugins module GuestSolaris module Cap class RSync extend VagrantPlugins::SyncedFolderRSync::DefaultUnixCap def self.rsync_installed(machine) machine.communicate.test("which rsync") end def self.rsync_command(machine) "#{machine.config.solaris.suexec_cmd} rsync" end def self.rsync_pre(machine, opts) machine.communicate.tap do |comm| comm.sudo("mkdir -p '#{opts[:guestpath]}'") end end def self.rsync_post(machine, opts) if opts.key?(:chown) && !opts[:chown] return end suexec_cmd = machine.config.solaris.suexec_cmd machine.communicate.execute("#{suexec_cmd} #{build_rsync_chown(opts)}") end end end end end
Version data entries
48 entries across 44 versions & 5 rubygems