Puppet Class: fluentbit::repo::debian

Defined in:
manifests/repo/debian.pp

Summary

A short summary of the purpose of this class

Overview

A description of what this class does

Examples:

include fluentbit::repo::debian


7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# File 'manifests/repo/debian.pp', line 7

class fluentbit::repo::debian {
  assert_private()

  $flavour = dig($facts, 'os', 'distro', 'id')
  $release = dig($facts, 'os', 'distro', 'codename')
  $supported = $flavour ? {
    'Debian' => [
      'jessie',
      'stretch',
      'buster',
    ],
    'Ubuntu' => [
      'xenial',
      'bionic',
    ],
    'Raspbian' => [
      'jessie',
      'stretch',
    ],
    default => [],
  }

  unless $release in $supported {
    fail("OS ${flavour}/${release} is not supported")
  }

  contain '::apt'

  $_flavour = downcase($flavour)

  apt::source { 'fluentbit':
    comment  => 'Official Treasure Data repository for Fluent-Bit',
    location => "https://packages.fluentbit.io/${_flavour}/${release}",
    release  => $release,
    repos    => 'main',
    key      => {
      id     => $fluentbit::repo_key_fingerprint,
      source => $fluentbit::repo_key_location,
    },
    include  => {
      src => false,
      deb => true,
    },
  }

  Apt::Source['fluentbit']
    -> Class['::apt::update']
    -> Package['fluentbit']
}