Puppet Class: hairmareyumrepo

Defined in:
manifests/init.pp

Overview

Class: hairmareyumrepo

Requires:

Centos was used during testing.

Sample Usage:

include hairmareyumrepo


9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# File 'manifests/init.pp', line 9

class hairmareyumrepo {

  yumrepo { 'hairmare-mongodb-RPMS':
    baseurl        => "http://yum.hairmare.ch/mongodb-RPMS/",
    failovermethod => 'priority',
    proxy          => $proxy,
    enabled        => '1',
    gpgcheck       => '0',
  }

  yumrepo { 'hairmare-mongodb-SRPMS':
    baseurl        => "http://yum.hairmare.ch/mongodb-SRPMS/",
    failovermethod => 'priority',
    proxy          => $proxy,
    enabled        => '0',
    gpgcheck       => '0',
  }

}