18 lines
289 B
Ruby
18 lines
289 B
Ruby
#
|
|
# Cookbook:: kosmos-postgresql
|
|
# Recipe:: default
|
|
#
|
|
# Copyright:: 2019, Kosmos, All Rights Reserved.
|
|
|
|
postgresql_server_install "main" do
|
|
version "10"
|
|
setup_repo false
|
|
action :install
|
|
end
|
|
|
|
postgresql_client_install "main" do
|
|
version "10"
|
|
setup_repo false
|
|
action :install
|
|
end
|