Sha256: 8c736caf58b4bb7a9b4f8fe4a48094f963548b8c1de8035f343a73e409273594
Contents?: true
Size: 1.56 KB
Versions: 1
Compression:
Stored size: 1.56 KB
Contents
module Berkshelf module Vagrant # @author Jamie Winsor <reset@riotgames.com> # # A module of common helper functions that can be mixed into Berkshelf::Vagrant actions module EnvHelpers # A file to persist berkshelf-vagrant specific information in between # Vagrant runs. # # @return [String] def cache_file File.join('.vagrant', 'berkshelf') end # Filter all of the provisioners of the given vagrant environment with the given name # # @param [Symbol] name # name of provisioner to filter # @param [Vagrant::Environment, Hash] env # environment to inspect # # @return [Array] def provisioners(name, env) env[:machine].config.vm.provisioners.select { |prov| prov.name == name } end # Determine if the given vagrant environment contains a chef_solo provisioner # # @param [Vagrant::Environment] env # # @return [Boolean] def chef_solo?(env) provisioners(:chef_solo, env).any? end # Determine if the given vagrant environment contains a chef_client provisioner # # @param [Vagrant::Environment] env # # @return [Boolean] def chef_client?(env) provisioners(:chef_client, env).any? end # Determine if the Berkshelf plugin should be run for the given environment # # @param [Vagrant::Environment] env # # @return [Boolean] def berkshelf_enabled?(env) env[:global_config].berkshelf.enabled end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
berkshelf-vagrant-1.1.2 | lib/berkshelf/vagrant/env_helpers.rb |