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
48 |
# File 'lib/chef/provisioning/aws_driver.rb', line 48 def emit_cloned_resource_warning; end |
#emit_harmless_cloning_debug ⇒ Object
49 |
# File 'lib/chef/provisioning/aws_driver.rb', line 49 def emit_harmless_cloning_debug; end |
#prior_resource ⇒ Object
40 41 42 43 44 45 46 47 |
# 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 |