Class: Chef::RunList::RunListExpansionFromAPI

Inherits:
RunListExpansion show all
Defined in:
lib/chef/run_list/run_list_expansion.rb

Overview

Expand a run list from the chef-server API.

Instance Attribute Summary

Attributes inherited from RunListExpansion

#default_attrs, #environment, #errors, #override_attrs, #recipes, #run_list_items, #source

Instance Method Summary collapse

Methods inherited from RunListExpansion

#applied_role?, #apply_role_attributes, #errors?, #expand, #inflate_role, #initialize, #role_not_found, #roles

Constructor Details

This class inherits a constructor from Chef::RunList::RunListExpansion

Instance Method Details

#fetch_role(name) ⇒ Object



167
168
169
170
171
172
173
174
175
# File 'lib/chef/run_list/run_list_expansion.rb', line 167

def fetch_role(name)
  rest.get_rest("roles/#{name}")
rescue Net::HTTPServerException => e
  if e.message == '404 "Not Found"'
    role_not_found(name)
  else
    raise
  end
end

#restObject



163
164
165
# File 'lib/chef/run_list/run_list_expansion.rb', line 163

def rest
  @rest ||= (source || Chef::REST.new(Chef::Config[:role_url]))
end