class nodo::role::proxy inherits nodo::base::virtual { class { 'nginx': } $munin = hiera('nodo::host::use_munin', True) if $munin == true { # Graph nginx munin::plugin { [ 'nginx_request', 'nginx_status' ]: ensure => present, config => 'env.url http://localhost/nginx_status', } # Needed by munin plugins package { 'liblwp-useragent-determined-perl': ensure => installed, } } # TODO: Apt cacher: still buggy and needs hardening #package { 'apt-cacher-ng': # ensure => present, #} # #service { 'apt-cacher-ng': # ensure => stopped, # require => Package['apt-cacher-ng'], #} }