Files
zulip/puppet/zulip_internal/manifests/app_frontend.pp
Tim Abbott 17a98b3afd puppet: Move embedly to the internal puppet configuration.
(imported from commit 9b5c2f2726f2cac5bba5619ee9b7371dada0ea35)
2013-11-12 09:34:25 -05:00

14 lines
447 B
Puppet

class zulip_internal::app_frontend {
include zulip::app_frontend
$app_packages = [# Needed for minify-js
"yui-compressor",
"nodejs",
# Needed for statsd reporting
"python-django-statsd-mozilla",
# Needed only for a disabled integration
"python-embedly",
]
package { $app_packages: ensure => "installed" }
}