Puppet Class: fluentd::install_repo::yum
- Defined in:
- manifests/install_repo/yum.pp
Overview
Class: fluentd::install_repo::yum ()
6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
# File 'manifests/install_repo/yum.pp', line 6
class fluentd::install_repo::yum (
$key = $fluentd::params::yum_key_url,
) {
# Sorry for the different naming of the Rpository between debian and redhat.
# But I dont want rename it to avoid a duplication.
yumrepo { 'treasuredata':
descr => 'Treasure Data',
baseurl => 'http://packages.treasure-data.com/redhat/$basearch',
gpgkey => 'http://packages.treasure-data.com/redhat/RPM-GPG-KEY-td-agent',
gpgcheck => 1,
}
}
|