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
44 |
# File 'lib/chef/provisioning/aws_driver.rb', line 44 def emit_cloned_resource_warning; end |
#emit_harmless_cloning_debug ⇒ Object
45 |
# File 'lib/chef/provisioning/aws_driver.rb', line 45 def emit_harmless_cloning_debug; end |
#prior_resource ⇒ Object
36 37 38 39 40 41 42 43 |
# File 'lib/chef/provisioning/aws_driver.rb', line 36 def prior_resource if resource_class <= Chef::Provisioning::AWSDriver::AWSResource Chef::Log.debug "Canceling resource cloning for #{resource_class}" nil else super end end |