Add new Redis cookbook

This commit is contained in:
2021-11-16 13:25:30 -06:00
parent 80ec84782b
commit 18f65c4fc5
66 changed files with 5780 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
packages_to_install = case node['platform']
when 'debian', 'ubuntu'
%w(
tar
)
when 'redhat', 'centos', 'fedora', 'scientific', 'suse', 'amazon'
%w(
tar
)
else
%w()
end
packages_to_install.each do |pkg|
package pkg do
action :install
end
end