mirror of
https://github.com/zulip/zulip.git
synced 2025-11-05 14:35:27 +00:00
This is only actually used in our `wal-e` setup, which is in
zulip_ops::postgres_common. (In fact the only mentions of `gevent` in
our whole Git history are for `wal-e`.) So remove where we mention it
on the broader zulip::postgres_common module, and move it where it's
needed.
This follows up on 98cef0ab4 by eliminating the only dependency
outside of the `zulip_ops` Puppet tree on a system Python-library
package which isn't available in `trusty` for Python 3.
48 lines
1.7 KiB
Puppet
48 lines
1.7 KiB
Puppet
class zulip_ops::postgres_common {
|
|
include zulip::postgres_common
|
|
|
|
$internal_postgres_packages = [# dependencies for our wal-e backup system
|
|
"lzop",
|
|
"pv",
|
|
"python3-pip",
|
|
"python-pip",
|
|
# "python3-gevent", # missing on trusty
|
|
"python-gevent",
|
|
# Postgres Nagios check plugin
|
|
"check-postgres",
|
|
]
|
|
package { $internal_postgres_packages: ensure => "installed" }
|
|
|
|
exec {"pip_wal-e":
|
|
command => "/usr/bin/pip install git+git://github.com/zbenjamin/wal-e.git#egg=wal-e",
|
|
creates => "/usr/local/bin/wal-e",
|
|
require => Package['python3-pip',
|
|
# 'python3-boto', 'python3-gevent', # missing on trusty
|
|
'python-pip', 'python-boto', 'python-gevent',
|
|
'lzop', 'pv'],
|
|
}
|
|
|
|
cron { "pg_backup_and_purge":
|
|
command => "/usr/local/bin/pg_backup_and_purge.py",
|
|
ensure => present,
|
|
environment => "PATH=/bin:/usr/bin:/usr/local/bin",
|
|
hour => 5,
|
|
minute => 0,
|
|
target => "postgres",
|
|
user => "postgres",
|
|
require => [ File["/usr/local/bin/pg_backup_and_purge.py"],
|
|
Package["postgresql-${zulip::base::postgres_version}",
|
|
"python3-dateutil",
|
|
"python-dateutil"
|
|
] ]
|
|
}
|
|
|
|
exec { "sysctl_p":
|
|
command => "/sbin/sysctl -p /etc/sysctl.d/40-postgresql.conf",
|
|
subscribe => File['/etc/sysctl.d/40-postgresql.conf'],
|
|
refreshonly => true,
|
|
}
|
|
|
|
|
|
}
|