From dc370cfef4c139437ac221567c48dddc2cbaae5b Mon Sep 17 00:00:00 2001 From: Tim Smith Date: Mon, 16 Jul 2018 19:25:56 -0700 Subject: Remove the platform check from RPM compression in Omnibus We don't build on RHEL 5 anymore so there's no need to gate this. Signed-off-by: Tim Smith --- omnibus/config/projects/chef.rb | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/omnibus/config/projects/chef.rb b/omnibus/config/projects/chef.rb index 117dcec94c..7c90725d95 100644 --- a/omnibus/config/projects/chef.rb +++ b/omnibus/config/projects/chef.rb @@ -70,11 +70,8 @@ end package :rpm do signing_passphrase ENV["OMNIBUS_RPM_SIGNING_PASSPHRASE"] - - unless rhel? && platform_version.satisfies?("< 6") - compression_level 1 - compression_type :xz - end + compression_level 1 + compression_type :xz end package :deb do -- cgit v1.2.1