We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 0ccf2b6 + cda13df commit 7981b09Copy full SHA for 7981b09
manifests/globals.pp
@@ -123,7 +123,10 @@
123
'93' => '2.1',
124
default => undef,
125
}
126
- $globals_postgis_version = pick($postgis_version, $default_postgis_version)
+ $globals_postgis_version = $postgis_version ? {
127
+ undef => $default_postgis_version,
128
+ default => $postgis_version,
129
+ }
130
131
# Setup of the repo only makes sense globally, so we are doing this here.
132
if($manage_package_repo) {
0 commit comments