class ChefConfig::Config

def self.set_extra_config_options(extra_parsed_options)

We use :[]= assignment here to not bypass any coercions that happen via mixlib-config writes_value callbacks
def self.set_extra_config_options(extra_parsed_options)
  extra_parsed_options.each do |key, value|
    self[key.to_sym] = value
  end
end