mirror of
https://github.com/zulip/docker-zulip.git
synced 2025-11-13 18:35:49 +00:00
Moved the zulip-puppet/ to puppet/zulip/ We are now git cloning and rolling with a checkout to a version
17 lines
419 B
Puppet
17 lines
419 B
Puppet
class zulip::postgres_common {
|
|
$postgres_packages = [
|
|
# Python modules used in our monitoring/worker threads
|
|
"python-gevent",
|
|
"python-tz",
|
|
"python-dateutil",
|
|
# our dictionary
|
|
"hunspell-en-us",
|
|
]
|
|
define safepackage ( $ensure = present ) {
|
|
if !defined(Package[$title]) {
|
|
package { $title: ensure => $ensure }
|
|
}
|
|
}
|
|
safepackage { $postgres_packages: ensure => "installed" }
|
|
}
|