Module: NoResourceCloning
- Defined in:
- lib/chef/provisioning/aws_driver.rb
Instance Method Summary collapse
- #emit_cloned_resource_warning ⇒ Object
- #emit_harmless_cloning_debug ⇒ Object
- #prior_resource ⇒ Object
Instance Method Details
#emit_cloned_resource_warning ⇒ Object
45 |
# File 'lib/chef/provisioning/aws_driver.rb', line 45 def emit_cloned_resource_warning; end |
#emit_harmless_cloning_debug ⇒ Object
46 |
# File 'lib/chef/provisioning/aws_driver.rb', line 46 def emit_harmless_cloning_debug; end |
#prior_resource ⇒ Object
37 38 39 40 41 42 43 44 |
# File 'lib/chef/provisioning/aws_driver.rb', line 37 def prior_resource if resource_class <= Chef::Provisioning::AWSDriver::AWSResource Chef::Log.debug "Canceling resource cloning for #{resource_class}" nil else super end end |