Class: Chef::RunList::RunListExpansionFromDisk
- Inherits:
-
RunListExpansion
- Object
- RunListExpansion
- Chef::RunList::RunListExpansionFromDisk
- Defined in:
- lib/chef/run_list/run_list_expansion.rb
Overview
Expand a run list from disk. Suitable for chef-solo
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
152 153 154 155 156 |
# File 'lib/chef/run_list/run_list_expansion.rb', line 152 def fetch_role(name) Chef::Role.from_disk(name) rescue Chef::Exceptions::RoleNotFound role_not_found(name) end |