8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# File 'lib/chef/chef_fs/data_handler/role_data_handler.rb', line 8
def normalize(role, entry)
result = normalize_hash(role, {
"name" => remove_file_extension(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
|