Hi,When running the Postgresql module the database installed by default is 8.4 what we need is 9.1 where do i define the version to be installed by puppet.
If i edit the params,pp like;
$client_package_name = 'postgresql91'
$server_package_name = 'postgresql91'The 9.1 is being installed but i get some errors like these;
Execution of '/sbin/service postgresql start' returned 1
Thanks in forward for you help.
case $::osfamily {
'RedHat': {
$service_name = 'postgresql-9.1'
$client_package_name = 'postgresql91'
$server_package_name = 'postgresql91-server'
$needs_initdb = true
$initdb_path = '/usr/pgsql-9.1/bin/initdb'
$createdb_path = '/usr/pgsql-9.1/bin/createdb'
$psql_path = '/usr/pgsql-9.1/bin/psql'
$datadir = '/var/lib/pgsql/9.1/data/'
$pg_hba_conf_path = '/var/lib/pgsql/9.1/data/pg_hba.conf'
$postgresql_conf_path = '/var/lib/pgsql/9.1/data/postgresql.conf'
$firewall_supported = true
$persist_firewall_command = '/sbin/iptables-save > /etc/sysconfig/iptables'