2
3
4
5
6
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
|
# File 'manifests/repo/apt_postgresql_org.pp', line 2
class postgresql::repo::apt_postgresql_org inherits postgresql::repo {
include apt
# Here we have tried to replicate the instructions on the PostgreSQL site:
#
# http://www.postgresql.org/download/linux/debian/
#
$default_baseurl = 'https://apt.postgresql.org/pub/repos/apt/'
$_baseurl = pick($postgresql::repo::baseurl, $default_baseurl)
apt::pin { 'apt_postgresql_org':
originator => 'apt.postgresql.org',
priority => 500,
}
-> apt::source { 'apt.postgresql.org':
location => $_baseurl,
release => "${facts['os']['distro']['codename']}-pgdg",
repos => 'main',
key => {
id => 'B97B0AFCAA1A47F044F244A07FCC7D46ACCC4CF8',
source => 'https://www.postgresql.org/media/keys/ACCC4CF8.asc',
},
include => {
src => false,
},
}
Apt::Source['apt.postgresql.org']->Package<|tag == 'puppetlabs-postgresql'|>
Class['Apt::Update'] -> Package<|tag == 'puppetlabs-postgresql'|>
}
|