Sha256: 7ed2217383c412052c745ba03470e5bc137d93510716d89fb4720ed68b3f0fef

Contents?: true

Size: 1.73 KB

Versions: 2

Compression:

Stored size: 1.73 KB

Contents

#
# Cookbook Name:: postgresql
# Recipe:: server
#
# Author:: Joshua Timberman (<joshua@opscode.com>)
# Author:: Lamont Granquist (<lamont@opscode.com>)#
# Copyright 2009-2011, Opscode, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#

include_recipe "postgresql::client"


if node['postgresql']['version'].to_f <= 8.3
  node.default['postgresql']['ssl'] = "off"
else
  node.default['postgresql']['ssl'] = "true"
end

node['postgresql']['server']['packages'].each do |pg_pack|
  package pg_pack do
    action :install
  end
end

service "postgresql" do
  case node['platform']
  when "ubuntu"
    case
    when node['platform_version'].to_f <= 10.04
      service_name "postgresql-#{node['postgresql']['version']}"
    else
      service_name "postgresql"
    end
  when "debian"
    case
    when node['platform_version'].to_f <= 5.0
      service_name "postgresql-#{node['postgresql']['version']}"
    else
      service_name "postgresql"
    end
  end
  supports :restart => true, :status => true, :reload => true
  action [:enable, :start]
end

template "#{node['postgresql']['dir']}/postgresql.conf" do
  source "debian.postgresql.conf.erb"
  owner "postgres"
  group "postgres"
  mode 0600
  notifies :restart, resources(:service => "postgresql"), :immediately
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
server_maint-0.0.5 lib/cookbooks/postgresql/recipes/server_debian.rb
server_maint-0.0.4 lib/cookbooks/postgresql/recipes/server_debian.rb