18 lines
489 B
Puppet
18 lines
489 B
Puppet
![]() |
# = Class: yum::repo::varnish
|
||
|
#
|
||
|
# This class installs the varnish 3.0 repo
|
||
|
#
|
||
|
class yum::repo::varnish {
|
||
|
|
||
|
yum::managed_yumrepo { 'varnish':
|
||
|
descr => 'Varnish 3.0 for Enterprise Linux 5 - $basearch',
|
||
|
baseurl => 'http://repo.varnish-cache.org/redhat/varnish-3.0/el5/$basearch',
|
||
|
enabled => 1,
|
||
|
gpgcheck => 0,
|
||
|
failovermethod => 'priority',
|
||
|
# gpgkey => 'http://yum.theforeman.org/RPM-GPG-KEY-VARNISH',
|
||
|
priority => 26,
|
||
|
}
|
||
|
|
||
|
}
|