Method: Kitchen::Provisioner::Dummy#call
- Defined in:
- lib/kitchen/provisioner/dummy.rb
#call(state) ⇒ Object
Runs the provisioner on the instance.
rubocop:disable Metrics/AbcSize
37 38 39 40 41 42 |
# File 'lib/kitchen/provisioner/dummy.rb', line 37 def call(state) info("[#{name}] Converge on instance=#{instance} with state=#{state}") sleep_if_set failure_if_set debug("[#{name}] Converge completed (#{config[:sleep]}s).") end |