2015-12-08 11:32:23 +00:00
|
|
|
# author: Stephan Renatus
|
|
|
|
#
|
|
|
|
# installs everyting for the postgres tests
|
|
|
|
|
2019-02-14 05:50:33 +00:00
|
|
|
# sous-chefs/postgresql is tested on these platforms
|
2015-12-08 11:32:23 +00:00
|
|
|
case node['platform']
|
|
|
|
when 'ubuntu', 'centos'
|
2016-02-01 16:00:54 +00:00
|
|
|
node.default['postgresql']['enable_pgdg_apt'] = true
|
2015-12-08 11:32:23 +00:00
|
|
|
node.default['postgresql']['config']['listen_addresses'] = 'localhost'
|
|
|
|
node.default['postgresql']['password']['postgres'] = 'md506be11be01439cb4abd537e454df34ea' # "inspec"
|
|
|
|
include_recipe 'postgresql::server'
|
|
|
|
end
|