Sha256: 2c1f10afb0d3160ec0ed4128880bf699190e2914fca8cf549aeeaabcf5fef43a
Contents?: true
Size: 2 KB
Versions: 2
Compression:
Stored size: 2 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" # Create a group and user like the package will. # Otherwise the templates fail. group "postgres" do gid 26 end user "postgres" do shell "/bin/bash" comment "PostgreSQL Server" home "/var/lib/pgsql" gid "postgres" system true uid 26 supports :manage_home => false end node['postgresql']['server']['packages'].each do |pg_pack| package pg_pack do action :install end end case node['platform'] when "redhat","centos","scientific" case when node['platform_version'].to_f >= 6.0 package "postgresql-server" else package "postgresql#{node['postgresql']['version'].split('.').join}-server" end when "fedora","suse" package "postgresql-server" end # Following not valid for 9.x version of postgresql if node['postgresql']['version'].to_f < 9.0 execute "/sbin/service postgresql initdb" do not_if { ::FileTest.exist?(File.join(node['postgresql']['dir'], "PG_VERSION")) } end end service "postgresql" do supports :restart => true, :status => true, :reload => true action [:enable, :start] end template "#{node['postgresql']['dir']}/postgresql.conf" do source "redhat.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_redhat.rb |
server_maint-0.0.4 | lib/cookbooks/postgresql/recipes/server_redhat.rb |