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
3 changed files with 15 additions and 1 deletions

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