Sha256: 2bf4f83c7992e36d667fc67f90acec056daa9bb8e0b62e507a0d08759893cb39
Contents?: true
Size: 1.11 KB
Versions: 2
Compression:
Stored size: 1.11 KB
Contents
require "chef/chef_fs/data_handler/data_handler_base" require "chef/role" class Chef module ChefFS module DataHandler class RoleDataHandler < DataHandlerBase def normalize(role, entry) result = normalize_hash(role, { "name" => remove_dot_json(entry.name), "description" => "", "json_class" => "Chef::Role", "chef_type" => "role", "default_attributes" => {}, "override_attributes" => {}, "run_list" => [], "env_run_lists" => {}, },) result["run_list"] = normalize_run_list(result["run_list"]) result["env_run_lists"].each_pair do |env, run_list| result["env_run_lists"][env] = normalize_run_list(run_list) end result end def preserve_key?(key) return key == "name" end def chef_class Chef::Role end def to_ruby(object) to_ruby_keys(object, %w{name description default_attributes override_attributes run_list env_run_lists}) end end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
chef-12.7.2 | lib/chef/chef_fs/data_handler/role_data_handler.rb |
chef-12.7.2-universal-mingw32 | lib/chef/chef_fs/data_handler/role_data_handler.rb |