Displaying 1 result from an estimated 1 matches for "worker_".
Did you mean:
worker
2013 Aug 02
2
Exporting Load Balancer Worker Resources
...pdf
On page 145 from this book there is example about Exporting Load Balancer
Worker Resources.
I created the files inside already existing apache module.
/etc/puppet/modules/apache/manifests/balancermember.pp
define apache::balancermember($url) {
file { "/etc/httpd/conf.d.members/worker_${name}.conf":
ensure => file,
owner => 0,
group => 0,
mode => "644",
content => " Balancermember $url \n",
}
}
/etc/puppet/modules/apache/manifests/worker.pp
class apach...