Puppet Class: role::installserver
- Defined in:
- modules/role/manifests/installserver.pp
Overview
Sets up a DHCP, TFTP and webproxy. No HTTP and APT repo.
2 3 4 5 6 7 8 9 10 11 12 13 14 |
# File 'modules/role/manifests/installserver.pp', line 2
class role::installserver {
include profile::base::production
include profile::firewall
include profile::base::cuminunpriv
include profile::backup::host
include profile::nginx
include profile::installserver::tftp
include profile::installserver::dhcp
include profile::installserver::proxy
include profile::installserver::http_light
include profile::prometheus::squid_exporter
}
|