You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
355 B
15 lines
355 B
class postgresql::params {
|
|
$locale = 'en_US.UTF-8'
|
|
case $::operatingsystem {
|
|
/(Ubuntu|Debian)/: {
|
|
$version = '9.1'
|
|
$client_package = 'postgresql-client'
|
|
$server_package = 'postgresql'
|
|
$listen_address = 'localhost'
|
|
$port = 5432
|
|
}
|
|
default: {
|
|
fail("Unsupported platform: ${::operatingsystem}")
|
|
}
|
|
}
|
|
}
|
|
|