This commit is contained in:
Dejan Golja 2015-12-21 23:44:54 +11:00
Родитель a76855d2e2
Коммит 1e33228b77
1 изменённых файлов: 15 добавлений и 2 удалений

Просмотреть файл

@ -1,5 +1,18 @@
# PRIVATE CLASS: do not use directly
class influxdb::repo::yum {
}
$_operatingsystem = $::operatingsystem ? {
'CentOS' => downcase($::operatingsystem),
default => 'rhel',
}
yumrepo { 'repos.influxdata.com':
descr => "InfluxDB Repository - ${::operatingsystem} \$releasever",
baseurl => "https://repos.influxdata.com/${$_operatingsystem}/\$releasever/\$basearch/stable",
enabled => 1,
gpgcheck => 1,
gpgkey => 'https://repos.influxdata.com/influxdb.key',
}
Yumrepo['repos.influxdata.com'] -> Package<| tag == 'influxdb' |>
}