Puppet Class: yum::repo::atomic
- Defined in:
- manifests/repo/atomic.pp
Overview
Class: yum::repo::atomic
This class installs the atomic repo
5 6 7 8 9 10 11 12 13 14 15 16 |
# File 'manifests/repo/atomic.pp', line 5
class yum::repo::atomic {
yum::managed_yumrepo { 'atomic':
descr => 'CentOS / Red Hat Enterprise Linux $releasever - atomicrocketturtle.com',
mirrorlist => 'http://www.atomicorp.com/channels/mirrorlist/atomic/centos-$releasever-$basearch',
enabled => 1,
gpgcheck => 1,
gpgkey => 'file:///etc/pki/rpm-gpg/RPM-GPG-KEY.art',
gpgkey_source => 'puppet:///modules/yum/rpm-gpg/RPM-GPG-KEY.art',
priority => 1,
exclude => 'nmap-ncat',
}
}
|