Skip to content

Commit 6ff7f73

Browse files
author
Tim Meusel
committed
fix old merge issues
1 parent f0250c8 commit 6ff7f73

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

manifests/master.pp

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
# ['puppet_docroot'] - Doc root to be configured in apache vhost
2424
# ['puppet_vardir'] - Vardir used by puppet
2525
# ['puppet_proxy_port'] - Port to configure the proxy on - default 8140
26+
# ['puppet_conf'] - Path to the puppet main/agent/master config
2627
# ['puppet_master_package'] - Puppet master package
2728
# ['puppet_master_service'] - Puppet master service
2829
# ['version'] - Version of the puppet master package to install
@@ -41,10 +42,10 @@
4142
# ['generate_ssl_certs'] - Generate ssl certs (false to disable)
4243
# ['disable_master'] - this disables the normal master, the server will only act as a CA, currently only supported by nginx
4344
# ['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
4849
#
4950
# Requires:
5051
#
@@ -86,6 +87,7 @@
8687
$puppet_docroot = $::puppet::params::puppet_docroot,
8788
$puppet_vardir = $::puppet::params::puppet_vardir,
8889
$puppet_proxy_port = $::puppet::params::puppet_proxy_port,
90+
$puppet_conf = $::puppet::params::puppet_conf,
8991
$puppet_passenger_tempdir = false,
9092
$puppet_passenger_cfg_addon = '',
9193
$puppet_master_package = $::puppet::params::puppet_master_package,
@@ -170,7 +172,7 @@
170172
default: {
171173
Anchor['puppet::master::begin'] ->
172174
class {'puppet::passenger':
173-
puppet_proxy_port => $puppet_passenger_port,
175+
puppet_proxy_port => $puppet_proxy_port,
174176
puppet_docroot => $puppet_docroot,
175177
apache_serveradmin => $apache_serveradmin,
176178
puppet_conf => $::puppet::params::puppet_conf,

0 commit comments

Comments
 (0)