|
56 | 56 | # }
|
57 | 57 | #
|
58 | 58 | class puppet::master (
|
59 |
| - $user_id = undef, |
60 |
| - $group_id = undef, |
61 |
| - $modulepath = $::puppet::params::modulepath, |
62 |
| - $manifest = $::puppet::params::manifest, |
63 |
| - $external_nodes = undef, |
64 |
| - $node_terminus = undef, |
65 |
| - $hiera_config = $::puppet::params::hiera_config, |
66 |
| - $environmentpath = $::puppet::params::environmentpath, |
67 |
| - $environments = $::puppet::params::environments, |
68 |
| - $reports = store, |
69 |
| - $storeconfigs = false, |
70 |
| - $storeconfigs_dbserver = $::puppet::params::storeconfigs_dbserver, |
71 |
| - $storeconfigs_dbport = $::puppet::params::storeconfigs_dbport, |
72 |
| - $certname = $::fqdn, |
73 |
| - $autosign = false, |
74 |
| - $reporturl = undef, |
75 |
| - $puppet_ssldir = $::puppet::params::puppet_ssldir, |
76 |
| - $puppet_docroot = $::puppet::params::puppet_docroot, |
77 |
| - $puppet_vardir = $::puppet::params::puppet_vardir, |
78 |
| - $puppet_passenger_port = $::puppet::params::puppet_passenger_port, |
79 |
| - $puppet_passenger_tempdir = false, |
80 |
| - $puppet_passenger_cfg_addon = '', |
81 |
| - $puppet_master_package = $::puppet::params::puppet_master_package, |
82 |
| - $puppet_master_service = $::puppet::params::puppet_master_service, |
83 |
| - $version = 'present', |
84 |
| - $apache_serveradmin = $::puppet::params::apache_serveradmin, |
85 |
| - $pluginsync = true, |
86 |
| - $parser = $::puppet::params::parser, |
87 |
| - $puppetdb_startup_timeout = '60', |
88 |
| - $puppetdb_strict_validation = $::puppet::params::puppetdb_strict_validation, |
89 |
| - $dns_alt_names = ['puppet'], |
90 |
| - $digest_algorithm = $::puppet::params::digest_algorithm, |
91 |
| - $generate_ssl_certs = true, |
92 |
| - $strict_variables = undef, |
93 |
| - $puppetdb_version = 'present', |
94 |
| - $always_cache_features = false, |
| 59 | + $user_id = undef, |
| 60 | + $group_id = undef, |
| 61 | + $modulepath = $::puppet::params::modulepath, |
| 62 | + $manifest = $::puppet::params::manifest, |
| 63 | + $external_nodes = undef, |
| 64 | + $node_terminus = undef, |
| 65 | + $hiera_config = $::puppet::params::hiera_config, |
| 66 | + $environmentpath = $::puppet::params::environmentpath, |
| 67 | + $environments = $::puppet::params::environments, |
| 68 | + $reports = store, |
| 69 | + $storeconfigs = false, |
| 70 | + $storeconfigs_dbserver = $::puppet::params::storeconfigs_dbserver, |
| 71 | + $storeconfigs_dbport = $::puppet::params::storeconfigs_dbport, |
| 72 | + $certname = $::fqdn, |
| 73 | + $autosign = false, |
| 74 | + $reporturl = undef, |
| 75 | + $puppet_ssldir = $::puppet::params::puppet_ssldir, |
| 76 | + $puppet_docroot = $::puppet::params::puppet_docroot, |
| 77 | + $puppet_vardir = $::puppet::params::puppet_vardir, |
| 78 | + $puppet_passenger_port = $::puppet::params::puppet_passenger_port, |
| 79 | + $puppet_passenger_tempdir = false, |
| 80 | + $puppet_passenger_cfg_addon = '', |
| 81 | + $puppet_master_package = $::puppet::params::puppet_master_package, |
| 82 | + $puppet_master_service = $::puppet::params::puppet_master_service, |
| 83 | + $version = 'present', |
| 84 | + $apache_serveradmin = $::puppet::params::apache_serveradmin, |
| 85 | + $pluginsync = true, |
| 86 | + $parser = $::puppet::params::parser, |
| 87 | + $puppetdb_startup_timeout = '60', |
| 88 | + $puppetdb_strict_validation = $::puppet::params::puppetdb_strict_validation, |
| 89 | + $dns_alt_names = ['puppet'], |
| 90 | + $digest_algorithm = $::puppet::params::digest_algorithm, |
| 91 | + $generate_ssl_certs = true, |
| 92 | + $strict_variables = undef, |
| 93 | + $puppetdb_version = 'present', |
| 94 | + $always_cache_features = false, |
| 95 | + $passenger_max_pool_size = $::processorcount, |
| 96 | + $passenger_high_performance = true, |
| 97 | + $passenger_max_requests = 10000, |
| 98 | + $passenger_stat_throttle_rate = 30, |
| 99 | + |
95 | 100 |
|
96 | 101 | ) inherits puppet::params {
|
97 | 102 |
|
|
131 | 136 |
|
132 | 137 | Anchor['puppet::master::begin'] ->
|
133 | 138 | class {'puppet::passenger':
|
134 |
| - puppet_passenger_port => $puppet_passenger_port, |
135 |
| - puppet_docroot => $puppet_docroot, |
136 |
| - apache_serveradmin => $apache_serveradmin, |
137 |
| - puppet_conf => $::puppet::params::puppet_conf, |
138 |
| - puppet_ssldir => $puppet_ssldir, |
139 |
| - certname => $certname, |
140 |
| - conf_dir => $::puppet::params::confdir, |
141 |
| - dns_alt_names => join($dns_alt_names,','), |
142 |
| - generate_ssl_certs => $generate_ssl_certs, |
143 |
| - puppet_passenger_tempdir => $puppet_passenger_tempdir, |
144 |
| - config_addon => $puppet_passenger_cfg_addon, |
| 139 | + puppet_passenger_port => $puppet_passenger_port, |
| 140 | + puppet_docroot => $puppet_docroot, |
| 141 | + apache_serveradmin => $apache_serveradmin, |
| 142 | + puppet_conf => $::puppet::params::puppet_conf, |
| 143 | + puppet_ssldir => $puppet_ssldir, |
| 144 | + certname => $certname, |
| 145 | + conf_dir => $::puppet::params::confdir, |
| 146 | + dns_alt_names => join($dns_alt_names,','), |
| 147 | + generate_ssl_certs => $generate_ssl_certs, |
| 148 | + puppet_passenger_tempdir => $puppet_passenger_tempdir, |
| 149 | + config_addon => $puppet_passenger_cfg_addon, |
| 150 | + passenger_max_pool_size => $passenger_max_pool_size, |
| 151 | + passenger_high_performance => $passenger_high_performance, |
| 152 | + passenger_max_requests => $passenger_max_requests, |
| 153 | + passenger_stat_throttle_rate => $passenger_stat_throttle_rate, |
| 154 | + |
145 | 155 | } ->
|
146 | 156 | Anchor['puppet::master::end']
|
147 | 157 |
|
|
0 commit comments