Sha256: ebbdcf4aa6422d8c92e3da5dfa5f2b8067dc0102d1992ef2245ceca53d2b2684
Contents?: true
Size: 761 Bytes
Versions: 2
Compression:
Stored size: 761 Bytes
Contents
# frozen_string_literal: true require "chef/provisioning" require "chef/provisioning/vsphere_driver/driver" # The main Chef class for all the Chef code! class Chef # The main Chef module for the Domain Specialized Language module DSL # The main Chef module for the the Recipe in side of Chef's DSL module Recipe # Creates the url object for Chef-Provisioning to leverage. # # @param [Object] driver_options Used from the Chef Provisioning to connect # @param [Object] block TODO def with_vsphere_driver(driver_options, &block) url = ChefProvisioningVsphere::VsphereDriver.canonicalize_url( nil, driver_options )[0] with_driver url, driver_options, &block end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
chef-provisioning-vsphere-2.3.1 | lib/chef/provisioning/vsphere_driver.rb |
chef-provisioning-vsphere-2.3.0 | lib/chef/provisioning/vsphere_driver.rb |