## alloy_cd::main::yumrepo.pp # Module name: alloy_cd # Author: Arne Teuke (arne_teuke@confdroid.com) # @summary class install yum repos for the alloy_cd module ############################################################################## class alloy_cd::main::yumrepo ( ) inherits alloy_cd::params { # test yumrepo { 'grafana': ensure => 'present', name => 'grafana', descr => 'grafana', baseurl => 'https://packages.grafana.com/oss/rpm', gpgkey => 'https://packages.grafana.com/gpg.key', enabled => '1', gpgcheck => '1', target => '/etc/yum.repo.d/grafana.repo', } }