Puppet Class: h2o::repo::apt

Defined in:
manifests/repo/apt.pp

Overview

Parameters:

  • ensure (String) (defaults to: $h2o::repo_ensure)


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# File 'manifests/repo/apt.pp', line 1

class h2o::repo::apt (
  String $ensure = $h2o::repo_ensure,
) {

  $_dist = $facts['os']['distro']['codename']

  apt::source { 'bintray-tatsushid-h2o':
    ensure   => $ensure,
    location => 'http://dl.bintray.com/tatsushid/h2o-deb',
    repos    => 'main',
    release  => "${_dist}-backports",
    key      => {
      id     => '8756C4F765C9AC3CB6B85D62379CE192D401AB61',
      source => 'https://bintray.com/user/downloadSubjectPublicKey?username=bintray',
    },
  }

}