inspec/test/cookbooks/os_prepare/recipes/default.rb

26 lines
663 B
Ruby
Raw Normal View History

2015-10-21 22:52:41 +02:00
# encoding: utf-8
# author: Christoph Hartmann
# author: Dominik Richter
#
# prepare all operating systems with the required configuration
# basic tests
2015-10-24 11:11:36 +02:00
include_recipe('os_prepare::file')
2015-12-31 01:10:39 +01:00
include_recipe('os_prepare::mount')
include_recipe('os_prepare::service')
2015-10-24 11:11:36 +02:00
include_recipe('os_prepare::package')
2015-11-17 22:12:19 +01:00
include_recipe('os_prepare::registry_key')
2016-02-09 17:10:23 +01:00
include_recipe('os_prepare::iptables')
# configure repos, eg. nginx
include_recipe('os_prepare::apt')
# application configuration
include_recipe('os_prepare::postgres')
include_recipe('os_prepare::auditctl')
include_recipe('os_prepare::apache')
# config file parsing
include_recipe('os_prepare::json_yaml_csv_ini')