File tree 4 files changed +29
-5
lines changed
4 files changed +29
-5
lines changed Original file line number Diff line number Diff line change 57
57
# @param repo_proxy Sets the proxy option for the official PostgreSQL yum-repositories only.
58
58
#
59
59
# @param repo_baseurl Sets the baseurl for the PostgreSQL repository. Useful if you host your own mirror of the repository.
60
+ # @param yum_repo_commonurl Sets the url for the PostgreSQL common Yum repository. Useful if you host your own mirror of the YUM repository.
60
61
#
61
62
# @param needs_initdb Explicitly calls the initdb operation after the server package is installed and before the PostgreSQL service is started.
62
63
#
142
143
$postgis_version = undef ,
143
144
$repo_proxy = undef ,
144
145
$repo_baseurl = undef ,
146
+ $yum_repo_commonurl = undef ,
145
147
146
148
$needs_initdb = undef ,
147
149
265
267
# Setup of the repo only makes sense globally, so we are doing this here.
266
268
if ($manage_package_repo ) {
267
269
class { 'postgresql::repo' :
268
- version => $globals_version ,
269
- proxy => $repo_proxy ,
270
- baseurl => $repo_baseurl ,
270
+ version => $globals_version ,
271
+ proxy => $repo_proxy ,
272
+ baseurl => $repo_baseurl ,
273
+ commonurl => $yum_repo_commonurl ,
271
274
}
272
275
}
273
276
Original file line number Diff line number Diff line change 3
3
$version = undef ,
4
4
$proxy = undef ,
5
5
$baseurl = undef ,
6
+ $commonurl = undef ,
6
7
) {
7
8
case $facts [' os' ][' family' ] {
8
9
' RedHat' , ' Linux' : {
Original file line number Diff line number Diff line change 20
20
$label2 = ' rhel'
21
21
}
22
22
$default_baseurl = " https://download.postgresql.org/pub/repos/yum/${postgresql::repo::version} /${label1} /${label2} -\$ releasever-\$ basearch"
23
+ $default_commonurl = " https://download.postgresql.org/pub/repos/yum/common/${label1} /${label2} -\$ releasever-\$ basearch"
23
24
24
25
$_baseurl = pick($postgresql::repo::baseurl , $default_baseurl )
26
+ $_commonurl = pick($postgresql::repo::commonurl , $default_commonurl )
25
27
26
28
yumrepo { 'yum.postgresql.org' :
27
29
descr => " PostgreSQL ${postgresql::repo::version} \$ releasever - \$ basearch" ,
32
34
proxy => $postgresql::repo::proxy ,
33
35
}
34
36
37
+ yumrepo { 'pgdg-common' :
38
+ descr => " PostgreSQL common RPMs \$ releasever - \$ basearch" ,
39
+ baseurl => $_commonurl,
40
+ enabled => 1,
41
+ gpgcheck => 1,
42
+ gpgkey => " file:///etc/pki/rpm-gpg/RPM-GPG-KEY-PGDG-${package_version} " ,
43
+ proxy => $postgresql::repo::proxy ,
44
+ }
45
+
35
46
Yumrepo[' yum.postgresql.org' ] -> Package<|tag == ' puppetlabs-postgresql' |>
36
47
}
Original file line number Diff line number Diff line change 75
75
'enabled' => '1' ,
76
76
'proxy' => 'http://proxy-server:8080' ,
77
77
)
78
+ is_expected . to contain_yumrepo ( 'pgdg-common' ) . with (
79
+ 'enabled' => '1' ,
80
+ 'proxy' => 'http://proxy-server:8080' ,
81
+ )
78
82
end
79
83
end
80
84
81
85
describe 'repo_baseurl on RHEL => mirror.localrepo.com' do
82
86
let ( :params ) do
83
87
{
84
88
manage_package_repo : true ,
85
- repo_baseurl : 'http://mirror.localrepo.com' ,
89
+ repo_baseurl : 'http://mirror.localrepo.com/pgdg-postgresql' ,
90
+ yum_repo_commonurl : 'http://mirror.localrepo.com/pgdg-common' ,
86
91
}
87
92
end
88
93
93
98
it do
94
99
is_expected . to contain_yumrepo ( 'yum.postgresql.org' ) . with (
95
100
'enabled' => '1' ,
96
- 'baseurl' => 'http://mirror.localrepo.com' ,
101
+ 'baseurl' => 'http://mirror.localrepo.com/pgdg-postgresql' ,
102
+ )
103
+ is_expected . to contain_yumrepo ( 'pgdg-common' ) . with (
104
+ 'enabled' => '1' ,
105
+ 'baseurl' => 'http://mirror.localrepo.com/pgdg-common' ,
97
106
)
98
107
end
99
108
end
You can’t perform that action at this time.
0 commit comments