2014-01-31 03:26:43 +00:00
|
|
|
module VagrantPlugins
|
|
|
|
module GuestFreeBSD
|
|
|
|
module Cap
|
|
|
|
class RSync
|
|
|
|
def self.rsync_install(machine)
|
2014-06-10 19:07:50 +00:00
|
|
|
version = nil
|
|
|
|
machine.communicate.execute("uname -r") do |type, result|
|
|
|
|
version = result.split('.')[0].to_i if type == :stdout
|
|
|
|
end
|
|
|
|
if version >= 10
|
|
|
|
pkg_cmd = "pkg install -y"
|
|
|
|
else
|
|
|
|
pkg_cmd = "pkg_add -r"
|
|
|
|
end
|
2014-01-31 03:26:43 +00:00
|
|
|
machine.communicate.tap do |comm|
|
2014-06-10 19:07:50 +00:00
|
|
|
comm.sudo(pkg_cmd+" rsync")
|
2014-01-31 03:26:43 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.rsync_installed(machine)
|
|
|
|
machine.communicate.test("which rsync")
|
|
|
|
end
|
|
|
|
|
2014-04-25 19:00:12 +00:00
|
|
|
def self.rsync_command(machine)
|
|
|
|
"sudo rsync"
|
|
|
|
end
|
2014-01-31 03:26:43 +00:00
|
|
|
|
2014-05-06 20:41:37 +00:00
|
|
|
def self.rsync_pre(machine, opts)
|
|
|
|
machine.communicate.tap do |comm|
|
|
|
|
comm.sudo("mkdir -p '#{opts[:guestpath]}'")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-04-25 19:00:12 +00:00
|
|
|
def self.rsync_post(machine, opts)
|
2014-05-17 19:01:50 +00:00
|
|
|
if opts.has_key?(:chown) && !opts[:chown]
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
2014-04-25 19:00:12 +00:00
|
|
|
machine.communicate.sudo(
|
|
|
|
"find '#{opts[:guestpath]}' '(' ! -user #{opts[:owner]} -or ! -group #{opts[:group]} ')' -print0 | " +
|
2014-05-10 20:51:12 +00:00
|
|
|
"xargs -0 -r chown #{opts[:owner]}:#{opts[:group]}")
|
2014-01-31 03:26:43 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|