Files
docker-zulip/zulip-puppet/manifests/postgres_common.pp
Alexander Trost 5d9c2acfb0 Removed postgresql-9.3 from the packages to install
Fixes and tweaks for the entrypoint.sh #31
Added currently experimental Log2Zulip env vars and functions
Cleand and reformatted some Zulip puppet manifests
2015-10-23 23:45:12 +02:00

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" }
}