mirror of https://github.com/zulip/zulip.git
58 lines
1.7 KiB
Puppet
58 lines
1.7 KiB
Puppet
class humbug::postgres {
|
|
class { 'humbug::base': }
|
|
|
|
$postgres_packages = [ "postgresql-9.1", "pgtune", ]
|
|
package { $postgres_packages: ensure => "installed" }
|
|
|
|
file { '/etc/sysctl.d/30-postgresql-shm.conf':
|
|
ensure => file,
|
|
owner => root,
|
|
group => root,
|
|
mode => 644
|
|
}
|
|
|
|
file { "/etc/postgresql/9.1/main/postgresql.conf":
|
|
require => Package["postgresql-9.1"],
|
|
ensure => file,
|
|
owner => "postgres",
|
|
group => "postgres",
|
|
mode => 644,
|
|
source => "/root/humbug/servers/puppet/files/postgresql/postgresql.conf",
|
|
}
|
|
|
|
file { "/etc/postgresql/9.1/main/pg_hba.conf":
|
|
require => Package["postgresql-9.1"],
|
|
ensure => file,
|
|
owner => "postgres",
|
|
group => "postgres",
|
|
mode => 640,
|
|
source => "/root/humbug/servers/puppet/files/postgresql/pg_hba.conf",
|
|
}
|
|
|
|
common::line { 'shmmax':
|
|
require => [ Package['postgresql-9.1'],
|
|
File["/etc/sysctl.d/30-postgresql-shm.conf"] ],
|
|
file => '/etc/sysctl.d/30-postgresql-shm.conf',
|
|
line => 'kernel.shmmax = 6979321856',
|
|
}
|
|
|
|
common::line { 'shmall':
|
|
require => [ Package['postgresql-9.1'],
|
|
File["/etc/sysctl.d/30-postgresql-shm.conf"] ],
|
|
file => '/etc/sysctl.d/30-postgresql-shm.conf',
|
|
line => 'kernel.shmall = 1703936',
|
|
}
|
|
|
|
exec { "sysctl_p":
|
|
command => "/sbin/sysctl -p /etc/sysctl.d/30-postgresql-shm.conf",
|
|
require => [ Common::Line['shmmax'],
|
|
Common::Line['shmall'],
|
|
],
|
|
}
|
|
|
|
exec { "disable_logrotate":
|
|
command => "/usr/bin/dpkg-divert --rename --divert /etc/logrotate.d/postgresql-common.disabled --add /etc/logrotate.d/postgresql-common",
|
|
creates => '/etc/logrotate.d/postgresql-common.disabled',
|
|
}
|
|
}
|