Puppet Class: yum::repo::shibboleth

Defined in:
manifests/repo/shibboleth.pp

Overview

Class: yum::repo::shibboleth

This class installs the shibboleth repo



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

class yum::repo::shibboleth {
  yum::managed_yumrepo { 'shibboleth':
    descr          => 'Shibboleth yum repository',
    baseurl        => 'http://download.opensuse.org/repositories/security:/shibboleth/CentOS_$releasever/',
    enabled        => 1,
    gpgcheck       => 0,
    failovermethod => 'priority',
    priority       => 1,
  }
}