chef/cookbooks/redisio/recipes/_install_prereqs.rb
Greg Karékinian 6116729907 Set up Redis using the latest version of redisio
This replaces the deprecated redis cookbook. Compiles the latest version
of Redis, currently 7.0.11

Refs #488
2023-06-19 16:02:58 +02:00

19 lines
463 B
Ruby

packages_to_install = case node['platform_family']
when 'debian'
%w(
tar
)
when 'rhel', 'fedora'
%w(
tar
)
else
%w()
end
packages_to_install.each do |pkg|
package pkg do
action :install
end
end