Merge pull request #419 from mcanevet/fix/unknown_postgis_version

Set fallback postgis_version to undef so that catalog still compiles if d...
This commit is contained in:
Ashley Penney 2014-06-05 13:33:56 -04:00
commit e137cd2d40

View file

@ -98,6 +98,7 @@ class postgresql::globals (
'9.1' => '1.5', '9.1' => '1.5',
'9.2' => '2.0', '9.2' => '2.0',
'9.3' => '2.1', '9.3' => '2.1',
default => undef,
} }
$globals_postgis_version = pick($postgis_version, $default_postgis_version) $globals_postgis_version = pick($postgis_version, $default_postgis_version)