summaryrefslogtreecommitdiff
path: root/kitchen-tests/cookbooks/base/recipes/default.rb
blob: 4ddd7a7b0407bde40b167f2243be1c6411b321b7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#
# Cookbook Name:: webapp
# Recipe:: default
#
# Copyright (C) 2014
#

if node[:platform_family] == "debian"
  include_recipe "apt"
  include_recipe "ubuntu"
end

if %w{rhel fedora}.include?(node[:platform_family])
  include_recipe "selinux::disabled"
  include_recipe "yum-epel"
end

include_recipe "build-essential"

include_recipe "#{cookbook_name}::packages"

include_recipe "ntp"

include_recipe "resolver"

include_recipe "users::sysadmins"

include_recipe "sudo"

include_recipe "chef-client::delete_validation"
include_recipe "chef-client::config"
include_recipe "chef-client"

include_recipe "openssh"

include_recipe "fail2ban"

include_recipe "nscd"

include_recipe "logrotate"