I'm a little confused about how to use the runtime command in a chef. As you can see the next .json role. In env_run_lists you have _default, and we already have run_list by default. What is the difference? and will it start by default every time before starting the run_list environment?
{ "name": "webserver", "default_attributes": { }, "json_class": "Chef::Role", "env_run_lists": { "_default": [ ], "production": [ ], "dev": [ "role[base]", "recipe[apache]", "recipe[apache::copy_dev_configs]" ] }, "run_list": [ "role[base]", "recipe[apache]" ], "description": "The webserver role", "chef_type": "role", "override_attributes": { } }
source share