module NoResourceCloning

Public Instance Methods

emit_cloned_resource_warning() click to toggle source
# File lib/chef/provisioning/aws_driver.rb, line 49
def emit_cloned_resource_warning; end
emit_harmless_cloning_debug() click to toggle source
# File lib/chef/provisioning/aws_driver.rb, line 51
def emit_harmless_cloning_debug; end
prior_resource() click to toggle source
Calls superclass method
# File lib/chef/provisioning/aws_driver.rb, line 40
def prior_resource
  if resource_class <= Chef::Provisioning::AWSDriver::AWSResource
    Chef::Log.debug "Canceling resource cloning for #{resource_class}"
    nil
  else
    super
  end
end