Sha256: 89a1c9726937ec5882d891b6af2d232fb8de6570e4d22bba58f665527b13fd4a
Contents?: true
Size: 577 Bytes
Versions: 12
Compression:
Stored size: 577 Bytes
Contents
module VagrantPlugins module Chef module Cap module Linux module ChefInstalled # Check if Chef is installed at the given version. # @return [true, false] def self.chef_installed(machine, product, version) knife = "/opt/#{product}/bin/knife" command = "test -x #{knife}" if version != :latest command << "&& #{knife} --version | grep '#{version}'" end machine.communicate.test(command, sudo: true) end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems