Puppet Class: profile::ci::proxy_zuul
- Defined in:
- modules/profile/manifests/ci/proxy_zuul.pp
Overview
SPDX-License-Identifier: Apache-2.0 A http proxy in front of Zuul status page
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
# File 'modules/profile/manifests/ci/proxy_zuul.pp', line 3
class profile::ci::proxy_zuul {
file {
'/etc/apache2/conf.d/zuul_proxy':
ensure => absent,
}
file {
'/etc/apache2/zuul_proxy':
owner => 'root',
group => 'root',
mode => '0444',
source => 'puppet:///modules/contint/apache/proxy_zuul',
}
}
|