Puppet Class: yum::repo::varnish

Defined in:
manifests/repo/varnish.pp

Overview

Class: yum::repo::varnish

This class installs the varnish 3.0 repo



5
6
7
8
9
10
11
12
13
14
15
16
17
# File 'manifests/repo/varnish.pp', line 5

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,
  }

}