Puppet Class: confluent::repository
- Defined in:
 - manifests/repository.pp
 
Overview
Creates the repositories for installation.
        4 5 6 7 8 9 10 11 12 13 14 15 16  | 
      
        # File 'manifests/repository.pp', line 4
class confluent::repository {
  case $::osfamily {
    'RedHat': {
      include ::confluent::repository::redhat
    }
    'Debian': {
      include ::confluent::repository::debian
    }
    default: {
      fail("${::osfamily} is not supported.")
    }
  }
}
       |