2016-10-17 04:05:49 +02:00
|
|
|
class zulip_ops::postgres_common {
|
2013-11-05 19:53:13 +01:00
|
|
|
include zulip::postgres_common
|
2013-02-07 22:20:10 +01:00
|
|
|
|
2013-11-08 21:35:05 +01:00
|
|
|
$internal_postgres_packages = [# dependencies for our wal-e backup system
|
|
|
|
"lzop",
|
|
|
|
"pv",
|
2017-08-04 02:00:13 +02:00
|
|
|
"python3-pip",
|
2013-11-13 18:08:55 +01:00
|
|
|
"python-pip",
|
2017-08-11 00:53:42 +02:00
|
|
|
# "python3-gevent", # missing on trusty
|
|
|
|
"python-gevent",
|
2013-11-08 21:35:05 +01:00
|
|
|
]
|
|
|
|
package { $internal_postgres_packages: ensure => "installed" }
|
|
|
|
|
2013-04-22 17:24:28 +02:00
|
|
|
exec {"pip_wal-e":
|
2017-08-11 01:37:43 +02:00
|
|
|
# On trusty, there is no python3-boto or python3-gevent package,
|
|
|
|
# so we keep our `wal-e` explicitly on Python 2 for now.
|
|
|
|
command => "/usr/bin/pip2 install git+git://github.com/zbenjamin/wal-e.git#egg=wal-e",
|
2013-04-22 17:24:28 +02:00
|
|
|
creates => "/usr/local/bin/wal-e",
|
2017-08-11 01:37:43 +02:00
|
|
|
require => Package['python-pip', 'python-boto', 'python-gevent',
|
2017-08-04 02:00:13 +02:00
|
|
|
'lzop', 'pv'],
|
2013-04-22 17:24:28 +02:00
|
|
|
}
|
|
|
|
|
2013-05-10 18:16:16 +02:00
|
|
|
cron { "pg_backup_and_purge":
|
2017-10-08 14:43:07 +02:00
|
|
|
command => "/usr/local/bin/pg_backup_and_purge",
|
2013-05-10 18:16:16 +02:00
|
|
|
ensure => present,
|
2013-08-28 20:54:16 +02:00
|
|
|
environment => "PATH=/bin:/usr/bin:/usr/local/bin",
|
2013-05-10 18:16:16 +02:00
|
|
|
hour => 5,
|
|
|
|
minute => 0,
|
|
|
|
target => "postgres",
|
|
|
|
user => "postgres",
|
2017-10-08 14:43:07 +02:00
|
|
|
require => [ File["/usr/local/bin/pg_backup_and_purge"],
|
2017-08-04 02:00:13 +02:00
|
|
|
Package["postgresql-${zulip::base::postgres_version}",
|
|
|
|
"python3-dateutil",
|
|
|
|
"python-dateutil"
|
|
|
|
] ]
|
2013-05-10 18:16:16 +02:00
|
|
|
}
|
|
|
|
|
2013-07-26 23:00:23 +02:00
|
|
|
exec { "sysctl_p":
|
|
|
|
command => "/sbin/sysctl -p /etc/sysctl.d/40-postgresql.conf",
|
|
|
|
subscribe => File['/etc/sysctl.d/40-postgresql.conf'],
|
|
|
|
refreshonly => true,
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-02-07 22:20:10 +01:00
|
|
|
}
|