Sha256: 6396f32b5fec5a16cf8b8c00dcdd20c44ed2835aadf6ed4af11cbaf1bcde2b69
Contents?: true
Size: 1.87 KB
Versions: 6
Compression:
Stored size: 1.87 KB
Contents
# # Cookbook Name:: postgresql # Attributes:: postgresql # # Copyright 2008-2009, 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. # case platform when "debian" if platform_version.to_f == 5.0 default[:postgresql][:version] = "8.3" elsif platform_version =~ /squeeze/ default[:postgresql][:version] = "8.4" end set[:postgresql][:dir] = "/etc/postgresql/#{node[:postgresql][:version]}/main" when "ubuntu" case when platform_version.to_f <= 9.04 default[:postgresql][:version] = "8.3" when platform_version.to_f <= 11.04 default[:postgresql][:version] = "8.4" else default[:postgresql][:version] = "9.1" end set[:postgresql][:dir] = "/etc/postgresql/#{node[:postgresql][:version]}/main" when "fedora" if platform_version.to_f <= 12 default[:postgresql][:version] = "8.3" else default[:postgresql][:version] = "8.4" end set[:postgresql][:dir] = "/var/lib/pgsql/data" when "redhat","centos","scientific","amazon" default[:postgresql][:version] = "8.4" set[:postgresql][:dir] = "/var/lib/pgsql/data" when "suse" if platform_version.to_f <= 11.1 default[:postgresql][:version] = "8.3" else default[:postgresql][:version] = "8.4" end set[:postgresql][:dir] = "/var/lib/pgsql/data" else default[:postgresql][:version] = "8.4" set[:postgresql][:dir] = "/etc/postgresql/#{node[:postgresql][:version]}/main" end
Version data entries
6 entries across 6 versions & 1 rubygems