Renamed the zulip folder to zulip-puppet

The entrypoint.sh is now a fully functional setup and run script for zulip installations in docker.
This commit is contained in:
Alexander Trost
2015-10-06 13:00:31 +02:00
parent 61fca6e582
commit bf9f350461
39 changed files with 90 additions and 11 deletions

View File

@@ -0,0 +1,17 @@
class zulip::postgres_common {
$postgres_packages = [# The database itself
"postgresql-9.3",
# 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" }
}