From 0e517856b8db239fc2ae29ff4d5f007b5d1d0441 Mon Sep 17 00:00:00 2001 From: Dan Fandrich Date: Tue, 15 Oct 2024 14:21:45 -0700 Subject: Remove conditionals for releases older than Mageia 6 This eliminates a bunch of conditionals, simplifying the configuration. We no longer have any servers running on a release older than this. --- modules/postgresql/manifests/var.pp | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) (limited to 'modules/postgresql/manifests') diff --git a/modules/postgresql/manifests/var.pp b/modules/postgresql/manifests/var.pp index bda15cf6..b31c7ffe 100644 --- a/modules/postgresql/manifests/var.pp +++ b/modules/postgresql/manifests/var.pp @@ -1,13 +1,7 @@ class postgresql::var { $pgsql_data = '/var/lib/pgsql/data/' - - if versioncmp($::lsbdistrelease, '5') < 0 { - $pg_version = '9.0' - } else { - $pg_version = '9.6' - } - + $pg_version = '9.6' $hba_file = "${pgsql_data}/pg_hba.conf" } # vim: sw=2 -- cgit v1.2.1