class AgileSolo::Application::Solo

Attributes

chef_solo_json[R]

Public Instance Methods

run_application() click to toggle source
# File lib/agile_solo/application/solo.rb, line 9
def run_application
  begin
    run_chef_client
  rescue SystemExit => e
    raise
  rescue Exception => e
    Chef::Application.fatal!("#{e.class}: #{e.message}", 1)
  end
end