|
24 | 24 | # Can also install only server packages with value |
25 | 25 | # of 'server' or only agent packages with 'agent'. |
26 | 26 | # |
27 | | -# $port:: Override the port of the master we connect to. |
| 27 | +# $agent_server_port:: Override the port of the server we connect to. |
28 | 28 | # |
29 | 29 | # $splay:: Switch to enable a random amount of time |
30 | 30 | # to sleep before each run. |
|
99 | 99 | # $syslogfacility:: Facility name to use when logging to syslog |
100 | 100 | # |
101 | 101 | # $use_srv_records:: Whether DNS SRV records will be used to resolve |
102 | | -# the Puppet master |
| 102 | +# the Puppet server |
103 | 103 | # |
104 | 104 | # $srv_domain:: Search domain for SRV records |
105 | 105 | # |
|
171 | 171 | # |
172 | 172 | # $agent_noop:: Run the agent in noop mode. |
173 | 173 | # |
174 | | -# $puppetmaster:: Hostname of your puppetmaster (server |
| 174 | +# $agent_server_hostname:: Hostname of your puppetserver (server |
175 | 175 | # directive in puppet.conf) |
176 | 176 | # |
177 | 177 | # $prerun_command:: A command which gets excuted before each Puppet run |
|
209 | 209 | # |
210 | 210 | # == puppet::server parameters |
211 | 211 | # |
212 | | -# $server:: Should a puppet master be installed as well as the client |
| 212 | +# $server:: Should a puppet server be installed as well as the client |
213 | 213 | # |
214 | | -# $server_ip:: Bind ip address of the puppetmaster |
| 214 | +# $server_ip:: Bind ip address of the puppetserver |
215 | 215 | # |
216 | | -# $server_port:: Puppet master port |
| 216 | +# $server_port:: Puppet server port |
217 | 217 | # |
218 | 218 | # $server_ca:: Provide puppet CA |
219 | 219 | # |
220 | | -# $server_ca_crl_sync:: Sync puppet CA crl file to compile masters, Puppet CA Must be the Puppetserver |
221 | | -# for the compile masters. Defaults to false. |
| 220 | +# $server_ca_crl_sync:: Sync puppet CA crl file to compilers, Puppet CA Must be the Puppetserver |
| 221 | +# for the compilers. Defaults to false. |
222 | 222 | # |
223 | 223 | # $server_crl_enable:: Turn on crl checking. Defaults to true when server_ca is true. Otherwise |
224 | 224 | # Defaults to false. Note unless you are using an external CA. It is recommended |
225 | 225 | # to set this to true. See $server_ca_crl_sync to enable syncing from CA Puppet Master |
226 | 226 | # |
227 | | -# $server_reports:: List of report types to include on the puppetmaster |
| 227 | +# $server_reports:: List of report types to include on the puppetserver |
228 | 228 | # |
229 | 229 | # $server_external_nodes:: External nodes classifier executable |
230 | 230 | # |
|
267 | 267 | # |
268 | 268 | # $server_manage_user:: Whether to manage the server user resource |
269 | 269 | # |
270 | | -# $server_user:: Name of the puppetmaster user. |
| 270 | +# $server_user:: Username used for the puppetserver process |
271 | 271 | # |
272 | | -# $server_group:: Name of the puppetmaster group. |
| 272 | +# $server_group:: Group used for the puppetserver process |
273 | 273 | # |
274 | 274 | # $server_dir:: Puppet configuration directory |
275 | 275 | # |
276 | | -# $server_http:: Should the puppet master listen on HTTP as well as HTTPS. |
| 276 | +# $server_http:: Should the puppet server listen on HTTP as well as HTTPS. |
277 | 277 | # Useful for load balancer or reverse proxy scenarios. |
278 | 278 | # |
279 | | -# $server_http_port:: Puppet master HTTP port; defaults to 8139. |
| 279 | +# $server_http_port:: Puppet server HTTP port; defaults to 8139. |
280 | 280 | # |
281 | 281 | # $server_foreman_facts:: Should foreman receive facts from puppet |
282 | 282 | # |
|
347 | 347 | # $server_default_manifest_content:: A string to set the content of the default_manifest |
348 | 348 | # If set to '' it will not manage the file |
349 | 349 | # |
350 | | -# $server_package:: Custom package name for puppet master |
| 350 | +# $server_package:: Custom package name for puppet server |
351 | 351 | # |
352 | | -# $server_version:: Custom package version for puppet master |
| 352 | +# $server_version:: Custom package version for puppet server |
353 | 353 | # |
354 | 354 | # $server_ssl_dir:: SSL directory |
355 | 355 | # |
356 | | -# $server_ssl_dir_manage:: Toggle if ssl_dir should be added to the [master] |
| 356 | +# $server_ssl_dir_manage:: Toggle if ssl_dir should be added to the [server] |
357 | 357 | # configuration section. This is necessary to |
358 | 358 | # disable in case CA is delegated to a separate instance |
359 | 359 | # |
|
561 | 561 | # |
562 | 562 | # include puppet |
563 | 563 | # |
564 | | -# * Installing a puppetmaster |
| 564 | +# * Installing a puppetserver |
565 | 565 | # |
566 | 566 | # class {'puppet': |
567 | 567 | # server => true, |
|
591 | 591 | Optional[String] $package_provider = $puppet::params::package_provider, |
592 | 592 | Optional[Variant[String,Hash,Array]] $package_install_options = $puppet::params::package_install_options, |
593 | 593 | Optional[Variant[Stdlib::Absolutepath, Stdlib::HTTPUrl]] $package_source = $puppet::params::package_source, |
594 | | - Stdlib::Port $port = $puppet::params::port, |
| 594 | + Stdlib::Port $agent_server_port = $puppet::params::agent_server_port, |
595 | 595 | Boolean $splay = $puppet::params::splay, |
596 | 596 | Variant[Integer[0],Pattern[/^\d+[smhdy]?$/]] $splaylimit = $puppet::params::splaylimit, |
597 | 597 | Variant[Boolean, Stdlib::Absolutepath] $autosign = $puppet::params::autosign, |
|
637 | 637 | Boolean $agent = $puppet::params::agent, |
638 | 638 | Boolean $report = $puppet::params::report, |
639 | 639 | Variant[String, Boolean] $client_certname = $puppet::params::client_certname, |
640 | | - Optional[String] $puppetmaster = $puppet::params::puppetmaster, |
| 640 | + Optional[String] $agent_server_hostname = $puppet::params::agent_server_hostname, |
641 | 641 | String $systemd_unit_name = $puppet::params::systemd_unit_name, |
642 | 642 | String $service_name = $puppet::params::service_name, |
643 | 643 | Optional[String] $syslogfacility = $puppet::params::syslogfacility, |
|
649 | 649 | String $server_group = $puppet::params::group, |
650 | 650 | String $server_dir = $puppet::params::dir, |
651 | 651 | String $server_ip = $puppet::params::ip, |
652 | | - Stdlib::Port $server_port = $puppet::params::port, |
| 652 | + Stdlib::Port $server_port = $puppet::params::agent_server_port, |
653 | 653 | Boolean $server_ca = $puppet::params::server_ca, |
654 | 654 | Boolean $server_ca_crl_sync = $puppet::params::server_ca_crl_sync, |
655 | 655 | Optional[Boolean] $server_crl_enable = $puppet::params::server_crl_enable, |
|
0 commit comments