Method: Onceover::Controlrepo#hiera_config_file

Defined in:
lib/onceover/controlrepo.rb

#hiera_config_fileObject



404
405
406
407
408
409
410
411
412
413
# File 'lib/onceover/controlrepo.rb', line 404

def hiera_config_file
  case
  when File.exist?(File.expand_path('./hiera.yaml', @spec_dir))
    File.expand_path('./hiera.yaml', @spec_dir)
  when File.exist?(File.expand_path('./hiera.yaml', @root))
    File.expand_path('./hiera.yaml', @root)
  else
    nil
  end
end