Puppet Class: fish::repo::centos
- Defined in:
- manifests/repo/centos.pp
Overview
Repo setup on CentOS
2 3 4 5 6 7 8 9 10 11 12 13 |
# File 'manifests/repo/centos.pp', line 2
class fish::repo::centos {
yumrepo { 'shells_fish_release_2':
ensure => 'present',
baseurl => "http://download.opensuse.org/repositories/shells:/fish:/release:/2/CentOS_${::operatingsystemmajrelease}/",
descr => "Fish shell - 2.x release series (CentOS_${::operatingsystemmajrelease})",
enabled => '1',
gpgcheck => '1',
gpgkey => "http://download.opensuse.org/repositories/shells:/fish:/release:/2/CentOS_${::operatingsystemmajrelease}/repodata/repomd.xml.key",
}
}
|