Method: Chef::RunStatus#success?
- Defined in:
- lib/chef/run_status.rb
#success? ⇒ Boolean
Did the chef run succeed? returns true if no exception has been set.
88 89 90 |
# File 'lib/chef/run_status.rb', line 88 def success? @exception.nil? end |