Puppet Class: role::planet
- Defined in:
- modules/role/manifests/planet.pp
Overview
server running a planet RSS feed aggregator
2 3 4 5 6 7 8 9 10 11 12 13 14 |
# File 'modules/role/manifests/planet.pp', line 2
class role::planet {
include profile::base::production
include profile::firewall
include profile::planet
# locales are essential for planet
# if a new language is added check these too
include profile::locales::extended
include profile::tlsproxy::envoy # TLS termination
include profile::prometheus::apache_exporter # T359556
}
|