summaryrefslogtreecommitdiff
path: root/kitchen-tests/cookbooks/base/recipes/default.rb
blob: be939b78e608cfd0407040ac32cf40ee5fdfdc21 (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
#

hostname "chef-travis-ci.chef.io"

if node[:platform_family] == "debian"
  include_recipe "ubuntu"
  apt_update "packages"
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 "nscd"

include_recipe "logrotate"