Sha256: 5ec71fd50e636a7ad4d115d0723a58d72bdc1be3cc1e979a19f639eb01c9fd35
Contents?: true
Size: 871 Bytes
Versions: 19
Compression:
Stored size: 871 Bytes
Contents
require "vagrant" module VagrantPlugins module Chef class Plugin < Vagrant.plugin("2") name "chef" description <<-DESC Provides support for provisioning your virtual machines with Chef via `chef-solo` or `chef-client`. DESC config(:chef_solo, :provisioner) do require File.expand_path("../config/chef_solo", __FILE__) Config::ChefSolo end config(:chef_client, :provisioner) do require File.expand_path("../config/chef_client", __FILE__) Config::ChefClient end provisioner(:chef_solo) do require File.expand_path("../provisioner/chef_solo", __FILE__) Provisioner::ChefSolo end provisioner(:chef_client) do require File.expand_path("../provisioner/chef_client", __FILE__) Provisioner::ChefClient end end end end
Version data entries
19 entries across 19 versions & 6 rubygems