Sha256: 9f1ae63ab9b29193ce5711ebb86935fec4c5fbf6ef13fa65050e3d14e747775b
Contents?: true
Size: 829 Bytes
Versions: 14
Compression:
Stored size: 829 Bytes
Contents
module VagrantPlugins module GuestSolaris module Cap class RSync 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) suexec_cmd = machine.config.solaris.suexec_cmd machine.communicate.execute( "#{suexec_cmd} find '#{opts[:guestpath]}' '(' ! -user #{opts[:owner]} -or ! -group #{opts[:group]} ')' -print0 | " + "xargs -0 chown #{opts[:owner]}:#{opts[:group]}") end end end end end
Version data entries
14 entries across 11 versions & 3 rubygems