2014-03-06 08:18:29 +00:00
|
|
|
module VagrantPlugins
|
|
|
|
module GuestSmartos
|
|
|
|
module Cap
|
|
|
|
class RSync
|
|
|
|
def self.rsync_installed(machine)
|
|
|
|
machine.communicate.test("which rsync")
|
|
|
|
end
|
|
|
|
|
2014-04-25 19:00:12 +00:00
|
|
|
def self.rsync_command(machine)
|
|
|
|
"#{machine.config.smartos.suexec_cmd} rsync"
|
|
|
|
end
|
2014-03-06 08:18:29 +00:00
|
|
|
|
2014-05-06 20:41:37 +00:00
|
|
|
def self.rsync_pre(machine, opts)
|
|
|
|
machine.communicate.tap do |comm|
|
2014-07-31 21:41:06 +00:00
|
|
|
comm.execute("#{machine.config.smartos.suexec_cmd} mkdir -p '#{opts[:guestpath]}'")
|
2014-05-06 20:41:37 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-04-25 19:00:12 +00:00
|
|
|
def self.rsync_post(machine, opts)
|
2014-07-31 21:41:06 +00:00
|
|
|
machine.communicate.execute("find '#{opts[:guestpath]}' '(' ! -user #{opts[:owner]} -or ! -group #{opts[:group]} ')' -print0 | " +
|
|
|
|
"#{machine.config.smartos.suexec_cmd} xargs -0 chown #{opts[:owner]}:#{opts[:group]}")
|
2014-03-06 08:18:29 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|