vagrant/plugins/guests/solaris/cap/rsync.rb

23 lines
654 B
Ruby
Raw Normal View History

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_post(machine, opts)
su_cmd = machine.config.solaris.su_cmd
machine.communicate.execute(
"#{su_cmd} find '#{opts[:guestpath]}' '(' ! -user #{opts[:owner]} -or ! -group #{opts[:group]} ')' -print0 | " +
"xargs -0 -r chown -v #{opts[:owner]}:#{opts[:group]}")
end
end
end
end
end