Puppet Class: panopta::package

Defined in:
manifests/package.pp

Overview



5
6
7
8
9
10
11
12
13
14
15
16
# File 'manifests/package.pp', line 5

class panopta::package {
  apt::source { 'panopta_repository':
    comment  => 'Panopta repository',
    location => 'http://packages.panopta.com/deb',
    release  => 'stable',
    repos    => 'main',
    key      => {
      'id'     => '1C4698D2DE92D6EE8A769526B7F965468997217A',
      'source' => 'http://packages.panopta.com/panopta.pub'
    }
  }
}