mirror of
https://github.com/zulip/docker-zulip.git
synced 2025-11-19 22:19:59 +00:00
Some more clean up
Reformatted the puppet manifests Removed two uneeded cron jobs
This commit is contained in:
@@ -1,11 +1,12 @@
|
||||
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",
|
||||
]
|
||||
$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 }
|
||||
|
||||
Reference in New Issue
Block a user