mirror of
https://github.com/zulip/docker-zulip.git
synced 2025-11-17 20:41:33 +00:00
Fixes and tweaks for the entrypoint.sh #31 Added currently experimental Log2Zulip env vars and functions Cleand and reformatted some Zulip puppet manifests
16 lines
536 B
Puppet
16 lines
536 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" }
|
|
}
|