Puppet Class: gocd::common::repository

Defined in:
manifests/common/repository.pp

Overview

Parameters:

  • type (Any) (defaults to: undef)


18
19
20
21
22
23
24
25
26
# File 'manifests/common/repository.pp', line 18

class gocd::common::repository (
  $type = undef
) {
  $class = pick($type, downcase($::osfamily), 'none')

  if defined("::gocd::common::repository::${class}") {
    contain "::gocd::common::repository::${class}"
  }
}