Updated the rsync freebsd plugin install process for FreeBSD 10

This commit is contained in:
Calvin Hendryx-Parker 2014-06-10 15:07:50 -04:00
parent 0a5f6bb77e
commit eda1ac5667
1 changed files with 10 additions and 1 deletions

View File

@ -3,8 +3,17 @@ module VagrantPlugins
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
if version >= 10
pkg_cmd = "pkg install -y"
else
pkg_cmd = "pkg_add -r"
end
machine.communicate.tap do |comm|
comm.sudo("pkg_add -r rsync")
comm.sudo(pkg_cmd+" rsync")
end
end