|
22 | 22 | # ['puppet_ssldir'] - Puppet sll directory
|
23 | 23 | # ['puppet_docroot'] - Doc root to be configured in apache vhost
|
24 | 24 | # ['puppet_vardir'] - Vardir used by puppet
|
25 |
| -# ['puppet_passenger_port'] - Port to configure passenger on default 8140 |
| 25 | +# ['puppet_proxy_port'] - Port to configure the proxy on - default 8140 |
26 | 26 | # ['puppet_master_package'] - Puppet master package
|
27 | 27 | # ['puppet_master_service'] - Puppet master service
|
28 | 28 | # ['version'] - Version of the puppet master package to install
|
|
74 | 74 | $puppet_ssldir = $::puppet::params::puppet_ssldir,
|
75 | 75 | $puppet_docroot = $::puppet::params::puppet_docroot,
|
76 | 76 | $puppet_vardir = $::puppet::params::puppet_vardir,
|
77 |
| - $puppet_passenger_port = $::puppet::params::puppet_passenger_port, |
| 77 | + $puppet_proxy_port = $::puppet::params::puppet_proy_port, |
78 | 78 | $puppet_master_package = $::puppet::params::puppet_master_package,
|
79 | 79 | $puppet_master_service = $::puppet::params::puppet_master_service,
|
80 | 80 | $version = 'present',
|
|
126 | 126 | nginx: {
|
127 | 127 | Anchor['puppet::master::begin'] ->
|
128 | 128 | class {'puppet::unicorn':
|
129 |
| - listen_address => $listen_address, |
| 129 | + listen_address => $listen_address, |
| 130 | + puppet_proxy_port => $puppet_proxy_port, |
130 | 131 | } ->
|
131 | 132 | Anchor['puppet::master::end']
|
132 | 133 | }
|
133 | 134 | default: {
|
134 | 135 | Anchor['puppet::master::begin'] ->
|
135 | 136 | class {'puppet::passenger':
|
136 |
| - puppet_passenger_port => $puppet_passenger_port, |
137 |
| - puppet_docroot => $puppet_docroot, |
138 |
| - apache_serveradmin => $apache_serveradmin, |
139 |
| - puppet_conf => $::puppet::params::puppet_conf, |
140 |
| - puppet_ssldir => $puppet_ssldir, |
141 |
| - certname => $certname, |
142 |
| - conf_dir => $::puppet::params::confdir, |
143 |
| - dns_alt_names => join($dns_alt_names,','), |
| 137 | + puppet_proxy_port => $puppet_proxy_port, |
| 138 | + puppet_docroot => $puppet_docroot, |
| 139 | + apache_serveradmin => $apache_serveradmin, |
| 140 | + puppet_conf => $::puppet::params::puppet_conf, |
| 141 | + puppet_ssldir => $puppet_ssldir, |
| 142 | + certname => $certname, |
| 143 | + conf_dir => $::puppet::params::confdir, |
| 144 | + dns_alt_names => join($dns_alt_names,','), |
144 | 145 | } ->
|
145 | 146 | Anchor['puppet::master::end']
|
146 | 147 | }
|
|
0 commit comments