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

43 lines
1.1 KiB
Ruby
Raw Normal View History

module VagrantPlugins
module GuestFreeBSD
module Cap
class RSync
def self.rsync_install(machine)
version = nil
machine.communicate.execute("uname -r") do |type, result|
version = result.split('.')[0].to_i if type == :stdout
end
2014-06-12 18:38:53 +00:00
pkg_cmd = "pkg install -y"
2014-06-12 18:38:53 +00:00
machine.communicate.sudo("#{pkg_cmd} rsync")
end
def self.rsync_installed(machine)
machine.communicate.test("which rsync")
end
def self.rsync_command(machine)
"sudo 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)
2015-01-05 23:29:01 +00:00
if opts.key?(:chown) && !opts[:chown]
return
end
machine.communicate.sudo(
"find '#{opts[:guestpath]}' '(' ! -user #{opts[:owner]} -or ! -group #{opts[:group]} ')' -print0 | " +
"xargs -0 -r chown #{opts[:owner]}:#{opts[:group]}")
end
end
end
end
end