add installation of postfix addon packages for RHEL 8 (#200)

This commit is contained in:
Dan Webb 2023-10-03 14:36:09 +01:00 committed by GitHub
parent 3edb583272
commit bbf3b96aee
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 15 additions and 1 deletions

View File

@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4
uses: actions/checkout@v4
- name: markdown-link-check
uses: gaurav-nelson/github-action-markdown-link-check@1.0.15
with:

View File

@ -4,18 +4,28 @@ This file is used to list changes made in each version of the postfix cookbook.
## Unreleased
- add installation of postfix addon packages for RHEL 8
## 6.0.25 - *2023-10-03*
Fix markdown
## 6.0.24 - *2023-09-28*
Standardise files with files in sous-chefs/repo-management
## 6.0.23 - *2023-09-04*
Standardise files with files in sous-chefs/repo-management
## 6.0.22 - *2023-08-29*
Standardise files with files in sous-chefs/repo-management
## 6.0.21 - *2023-05-17*
Standardise files with files in sous-chefs/repo-management
## 6.0.20 - *2023-04-17*
Fix CI permissions

View File

@ -18,6 +18,10 @@ node['postfix']['maps'].each do |type, maps|
package "postfix-#{type}" if %w(pgsql mysql ldap cdb).include?(type)
end
if platform?('redhat') && node['platform_version'].to_i == 8
package "postfix-#{type}" if %w(pgsql mysql ldap cdb).include?(type)
end
separator = if %w(pgsql mysql ldap memcache sqlite).include?(type)
' = '
else