6034e122de
This is a first working version of postgresql::server. It includes a very simple test manifest, which has been tried out on CentOS6 and Ubuntu 10.04; initial tests were successful both from a clean state and for subsequent runs. Includes a new fact called 'postgres_default_version', which detects what the default version of postgres is for a given OS. This is needed because some of the commands and directory names include this version string. Current implementation *only* supports managing the system default version; in the future it would be nice to allow the user to explicitly specify a postgres version, but that isn't yet supported. The "postgresql::server" class includes a call to postgres's initdb command on redhat systems, because they don't do this automatically when the package is installed.
33 lines
1.1 KiB
Puppet
33 lines
1.1 KiB
Puppet
# puppet-postgresql
|
|
# For all details and documentation:
|
|
# http://github.com/inkling/puppet-postgresql
|
|
#
|
|
# Copyright 2012- Inkling Systems, 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.
|
|
|
|
class postgresql::initdb(
|
|
$datadir = $postgresql::params::datadir,
|
|
$initdb_path = $postgresql::params::initdb_path,
|
|
$user = 'postgres',
|
|
$group = 'postgres',
|
|
$encoding = 'UTF8',
|
|
$options=''
|
|
) inherits postgresql::params {
|
|
|
|
exec {"${initdb_path} --encoding '$encoding' --pgdata '$datadir'":
|
|
creates => "${datadir}/PG_VERSION",
|
|
user => "$user",
|
|
group => "$group",
|
|
}
|
|
}
|