Puppet Class: yum::repo::vfabric

Defined in:
manifests/repo/vfabric.pp

Overview

Class: yum::repo::vfabric

This class installs the vfabric repo



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

class yum::repo::vfabric {

  $osver = split($::operatingsystemrelease, '[.]')

  yum::managed_yumrepo { 'vfabric':
    descr          => 'vFabric 5.2 Repo - $basesearch',
    baseurl        => "http://repo.vmware.com/pub/rhel${osver[0]}/vfabric/5.2/\$basearch",
    enabled        => 1,
    gpgcheck       => 1,
    failovermethod => 'priority',
    gpgkey         => "http://repo.vmware.com/pub/rhel${osver[0]}/vfabric/5.2/RPM-GPG-KEY-VFABRIC-5.2-EL${osver[0]}",
    priority       => 1,
  }

}