|
23 | 23 | # ['puppet_docroot'] - Doc root to be configured in apache vhost
|
24 | 24 | # ['puppet_vardir'] - Vardir used by puppet
|
25 | 25 | # ['puppet_proxy_port'] - Port to configure the proxy on - default 8140
|
| 26 | +# ['puppet_conf'] - Path to the puppet main/agent/master config |
26 | 27 | # ['puppet_master_package'] - Puppet master package
|
27 | 28 | # ['puppet_master_service'] - Puppet master service
|
28 | 29 | # ['version'] - Version of the puppet master package to install
|
|
41 | 42 | # ['generate_ssl_certs'] - Generate ssl certs (false to disable)
|
42 | 43 | # ['disable_master'] - this disables the normal master, the server will only act as a CA, currently only supported by nginx
|
43 | 44 | # ['upstream'] - define additional masters reachable via tcp as an array, currently only supported by nginx
|
44 |
| -# ['backend_process_number'] - number of processes to start on the backebd webserver (unicorn/passenger), currently only supported by unicorn |
45 |
| -# ['serialization_format'] - defaults to undef, otherwise it sets the preferred_serialization_format param (currently only msgpack is supported) |
46 |
| -# ['strict_variables'] - Makes the parser raise errors when referencing unknown variables |
47 |
| -# ['always_cache_features'] - if false (default), always try to load a feature even if a previous load failed |
| 45 | +# ['backend_process_number'] - number of processes to start on the backebd webserver (unicorn/passenger), currently only supported by unicorn |
| 46 | +# ['serialization_format'] - defaults to undef, otherwise it sets the preferred_serialization_format param (currently only msgpack is supported) |
| 47 | +# ['strict_variables'] - Makes the parser raise errors when referencing unknown variables |
| 48 | +# ['always_cache_features'] - if false (default), always try to load a feature even if a previous load failed |
48 | 49 | #
|
49 | 50 | # Requires:
|
50 | 51 | #
|
|
86 | 87 | $puppet_docroot = $::puppet::params::puppet_docroot,
|
87 | 88 | $puppet_vardir = $::puppet::params::puppet_vardir,
|
88 | 89 | $puppet_proxy_port = $::puppet::params::puppet_proxy_port,
|
| 90 | + $puppet_conf = $::puppet::params::puppet_conf, |
89 | 91 | $puppet_passenger_tempdir = false,
|
90 | 92 | $puppet_passenger_cfg_addon = '',
|
91 | 93 | $puppet_master_package = $::puppet::params::puppet_master_package,
|
|
170 | 172 | default: {
|
171 | 173 | Anchor['puppet::master::begin'] ->
|
172 | 174 | class {'puppet::passenger':
|
173 |
| - puppet_proxy_port => $puppet_passenger_port, |
| 175 | + puppet_proxy_port => $puppet_proxy_port, |
174 | 176 | puppet_docroot => $puppet_docroot,
|
175 | 177 | apache_serveradmin => $apache_serveradmin,
|
176 | 178 | puppet_conf => $::puppet::params::puppet_conf,
|
|
0 commit comments