mirror of
https://github.com/zulip/zulip.git
synced 2025-11-16 03:41:58 +00:00
This brings our puppet codebase more in line with the standard puppet style guide. Changes done via `puppet-lint --fix`.
15 lines
403 B
Puppet
15 lines
403 B
Puppet
class zulip::localhost_camo {
|
|
include zulip::camo
|
|
|
|
# Install nginx configuration to run camo locally
|
|
file { '/etc/nginx/zulip-include/app.d/camo.conf':
|
|
ensure => file,
|
|
require => Package['nginx-full'],
|
|
owner => 'root',
|
|
group => 'root',
|
|
mode => '0644',
|
|
notify => Service['nginx'],
|
|
source => 'puppet:///modules/zulip/nginx/zulip-include-app.d/camo.conf',
|
|
}
|
|
}
|