Puppet Class: artifactory::yum
- Defined in:
- manifests/yum.pp
Overview
Class artifactory::install
This class is called from artifactory for install.
5 6 7 8 9 10 11 12 13 14 15 |
# File 'manifests/yum.pp', line 5
class artifactory::yum {
if $::artifactory::manage_repo {
# Add the jfrog yum repo
yumrepo { $::artifactory::yum_name:
baseurl => $::artifactory::yum_baseurl,
descr => $::artifactory::yum_name,
gpgcheck => 0,
enabled => 1,
}
}
}
|