mirror of
https://github.com/zulip/zulip.git
synced 2025-11-09 16:37:23 +00:00
14 lines
447 B
Puppet
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" }
|
|
|
|
}
|