puppet: Detect CentOS for release_name.

This commit is contained in:
rht 2018-12-16 01:17:05 +00:00 committed by Tim Abbott
parent 0ce7e613c7
commit 9fd18a2c7f
1 changed files with 20 additions and 12 deletions

View File

@ -20,6 +20,8 @@ class zulip::base {
] ]
package { $base_packages: ensure => 'installed' } package { $base_packages: ensure => 'installed' }
case $::osfamily {
'debian': {
$release_name = $::operatingsystemrelease ? { $release_name = $::operatingsystemrelease ? {
# Debian releases # Debian releases
/^7.[0-9]*/ => 'wheezy', /^7.[0-9]*/ => 'wheezy',
@ -33,6 +35,11 @@ class zulip::base {
'16.04' => 'xenial', '16.04' => 'xenial',
'18.04' => 'bionic', '18.04' => 'bionic',
} }
}
'redhat': {
$release_name = "${::operatingsystem}${::operatingsystemmajrelease}"
}
}
$postgres_version = $release_name ? { $postgres_version = $release_name ? {
'wheezy' => '9.1', 'wheezy' => '9.1',
@ -44,6 +51,7 @@ class zulip::base {
'wily' => '9.4', 'wily' => '9.4',
'xenial' => '9.5', 'xenial' => '9.5',
'bionic' => '10', 'bionic' => '10',
'CentOS7' => '10',
} }
$normal_queues = [ $normal_queues = [