Skip to content

Commit 896d036

Browse files
Align postgis default version with postgres version
As the values for the postgis version is hard-coded, this module currently installs by default older, unsupported versions of postgis. This commit updates the module to align with current default postgis versions for each related postgres version.
1 parent 46dad7a commit 896d036

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

manifests/globals.pp

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -127,15 +127,15 @@
127127

128128
$default_postgis_version = $globals_version ? {
129129
'8.1' => '1.3.6',
130-
'8.4' => '1.5',
131-
'9.0' => '1.5',
132-
'9.1' => '1.5',
133-
'91' => '1.5',
134-
'9.2' => '2.0',
135-
'9.3' => '2.1',
136-
'93' => '2.1',
137-
'9.4' => '2.1',
138-
'9.5' => '2.2',
130+
'8.4' => '2.0',
131+
'9.0' => '2.1',
132+
'9.1' => '2.1',
133+
'91' => '2.1',
134+
'9.2' => '2.3',
135+
'9.3' => '2.3',
136+
'93' => '2.3',
137+
'9.4' => '2.3',
138+
'9.5' => '2.3',
139139
'9.6' => '2.3',
140140
default => undef,
141141
}

0 commit comments

Comments
 (0)