puppet 5.0.0-x86-mingw32 → 5.0.1-x86-mingw32

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of puppet might be problematic. Click here for more details.

Files changed (101) hide show
  1. checksums.yaml +7 -0
  2. data/README.md +1 -1
  3. data/ext/puppet-test +1 -1
  4. data/lib/puppet.rb +3 -1
  5. data/lib/puppet/application/lookup.rb +2 -2
  6. data/lib/puppet/defaults.rb +1 -1
  7. data/lib/puppet/face/epp.rb +26 -24
  8. data/lib/puppet/face/module/search.rb +1 -1
  9. data/lib/puppet/forge.rb +3 -2
  10. data/lib/puppet/functions/each.rb +1 -1
  11. data/lib/puppet/functions/filter.rb +1 -1
  12. data/lib/puppet/module.rb +28 -1
  13. data/lib/puppet/module_tool.rb +2 -2
  14. data/lib/puppet/module_tool/applications/installer.rb +5 -5
  15. data/lib/puppet/module_tool/applications/uninstaller.rb +1 -1
  16. data/lib/puppet/module_tool/applications/upgrader.rb +5 -5
  17. data/lib/puppet/module_tool/shared_behaviors.rb +2 -2
  18. data/lib/puppet/parser/compiler.rb +4 -0
  19. data/lib/puppet/parser/functions/assert_type.rb +1 -1
  20. data/lib/puppet/parser/functions/binary_file.rb +1 -1
  21. data/lib/puppet/parser/functions/break.rb +1 -1
  22. data/lib/puppet/parser/functions/defined.rb +1 -1
  23. data/lib/puppet/parser/functions/dig.rb +1 -1
  24. data/lib/puppet/parser/functions/each.rb +2 -2
  25. data/lib/puppet/parser/functions/epp.rb +1 -1
  26. data/lib/puppet/parser/functions/filter.rb +2 -2
  27. data/lib/puppet/parser/functions/find_file.rb +1 -1
  28. data/lib/puppet/parser/functions/inline_epp.rb +1 -1
  29. data/lib/puppet/parser/functions/lest.rb +1 -1
  30. data/lib/puppet/parser/functions/map.rb +1 -1
  31. data/lib/puppet/parser/functions/match.rb +1 -1
  32. data/lib/puppet/parser/functions/new.rb +1 -1
  33. data/lib/puppet/parser/functions/next.rb +1 -1
  34. data/lib/puppet/parser/functions/reduce.rb +1 -1
  35. data/lib/puppet/parser/functions/return.rb +1 -1
  36. data/lib/puppet/parser/functions/reverse_each.rb +2 -2
  37. data/lib/puppet/parser/functions/slice.rb +1 -1
  38. data/lib/puppet/parser/functions/step.rb +2 -2
  39. data/lib/puppet/parser/functions/strftime.rb +1 -1
  40. data/lib/puppet/parser/functions/then.rb +1 -1
  41. data/lib/puppet/parser/functions/type.rb +1 -1
  42. data/lib/puppet/parser/functions/with.rb +1 -1
  43. data/lib/puppet/pops/merge_strategy.rb +1 -1
  44. data/lib/puppet/pops/time/timestamp.rb +2 -2
  45. data/lib/puppet/provider/nameservice.rb +4 -2
  46. data/lib/puppet/reference/configuration.rb +1 -1
  47. data/lib/puppet/reports/http.rb +4 -2
  48. data/lib/puppet/resource/capability_finder.rb +1 -1
  49. data/lib/puppet/util/execution.rb +1 -1
  50. data/lib/puppet/util/logging.rb +8 -4
  51. data/lib/puppet/vendor/semantic_puppet/lib/semantic_puppet/gem_version.rb +1 -1
  52. data/lib/puppet/vendor/semantic_puppet/lib/semantic_puppet/version.rb +1 -1
  53. data/lib/puppet/version.rb +1 -1
  54. data/locales/puppet.pot +66 -58
  55. data/man/man5/puppet.conf.5 +233 -63
  56. data/man/man8/puppet-agent.8 +31 -9
  57. data/man/man8/puppet-apply.8 +20 -5
  58. data/man/man8/puppet-ca.8 +48 -34
  59. data/man/man8/puppet-catalog.8 +12 -15
  60. data/man/man8/puppet-cert.8 +23 -6
  61. data/man/man8/puppet-certificate.8 +52 -36
  62. data/man/man8/puppet-certificate_request.8 +10 -10
  63. data/man/man8/puppet-certificate_revocation_list.8 +9 -9
  64. data/man/man8/puppet-config.8 +5 -5
  65. data/man/man8/puppet-describe.8 +3 -3
  66. data/man/man8/puppet-device.8 +13 -5
  67. data/man/man8/puppet-doc.8 +5 -5
  68. data/man/man8/puppet-epp.8 +16 -10
  69. data/man/man8/puppet-facts.8 +9 -9
  70. data/man/man8/puppet-filebucket.8 +44 -5
  71. data/man/man8/puppet-generate.8 +84 -0
  72. data/man/man8/puppet-help.8 +4 -4
  73. data/man/man8/puppet-key.8 +11 -11
  74. data/man/man8/puppet-lookup.8 +104 -0
  75. data/man/man8/puppet-man.8 +5 -5
  76. data/man/man8/puppet-master.8 +5 -5
  77. data/man/man8/puppet-module.8 +29 -17
  78. data/man/man8/puppet-node.8 +9 -9
  79. data/man/man8/puppet-parser.8 +4 -4
  80. data/man/man8/puppet-plugin.8 +4 -4
  81. data/man/man8/puppet-report.8 +9 -9
  82. data/man/man8/puppet-resource.8 +4 -8
  83. data/man/man8/puppet-status.8 +9 -9
  84. data/man/man8/puppet.8 +12 -3
  85. data/spec/integration/util/execution_spec.rb +8 -0
  86. data/spec/unit/application/lookup_spec.rb +1 -1
  87. data/spec/unit/face/epp_face_spec.rb +9 -0
  88. data/spec/unit/face/module/search_spec.rb +1 -1
  89. data/spec/unit/functions/lookup_spec.rb +26 -0
  90. data/spec/unit/indirector/file_bucket_file/file_spec.rb +3 -3
  91. data/spec/unit/module_spec.rb +64 -0
  92. data/spec/unit/module_tool_spec.rb +22 -0
  93. data/spec/unit/parser/scope_spec.rb +1 -1
  94. data/spec/unit/pops/types/p_timestamp_type_spec.rb +30 -1
  95. data/spec/unit/puppet_spec.rb +33 -0
  96. data/spec/unit/util/logging_spec.rb +18 -9
  97. data/tasks/generate_ast_model.rake +48 -44
  98. data/tasks/manpages.rake +9 -1
  99. data/tasks/parallel.rake +12 -7
  100. metadata +3517 -3538
  101. data/man/man8/puppet-inspect.8 +0 -36
@@ -1,8 +1,8 @@
1
1
  .\" generated with Ronn/v0.7.3
2
- .\" https://github.com/rtomayko/ronn/tree/0.7.3
2
+ .\" http://github.com/rtomayko/ronn/tree/0.7.3
3
3
  .
4
- .TH "PUPPETCONF" "5" "May 2015" "Puppet Labs, LLC" "Puppet manual"
5
- \fBThis page is autogenerated; any changes will get overwritten\fR \fI(last generated on 2015\-05\-18 10:15:47 \-0700)\fR
4
+ .TH "PUPPETCONF" "5" "June 2017" "Puppet Labs, LLC" "Puppet manual"
5
+ \fBThis page is autogenerated; any changes will get overwritten\fR \fI(last generated on 2017\-06\-29 14:42:23 \-0700)\fR
6
6
  .
7
7
  .SH "Configuration Settings"
8
8
  .
@@ -30,7 +30,7 @@ The Puppet executables will ignore any setting that isn\'t relevant to their fun
30
30
  .IP "" 0
31
31
  .
32
32
  .P
33
- See the configuration guide \fIhttps://docs\.puppetlabs\.com/guides/configuring\.html\fR for more details\.
33
+ See the configuration guide \fIhttps://docs\.puppetlabs\.com/puppet/latest/reference/config_about_settings\.html\fR for more details\.
34
34
  .
35
35
  .SS "agent_catalog_run_lockfile"
36
36
  A lock file to indicate that a puppet agent catalog run is currently in progress\. The file contains the pid of the process that holds the lock on the catalog run\.
@@ -56,21 +56,19 @@ Whether to allow a new certificate request to overwrite an existing certificate\
56
56
  .
57
57
  .IP "" 0
58
58
  .
59
- .IP "\(bu" 4
60
- \fIDefault\fR: false
59
+ .SS "always_retry_plugins"
60
+ Affects how we cache attempts to load Puppet resource types and features\. If true, then calls to \fBPuppet\.type\.<type>?\fR \fBPuppet\.feature\.<feature>?\fR will always attempt to load the type or feature (which can be an expensive operation) unless it has already been loaded successfully\. This makes it possible for a single agent run to, e\.g\., install a package that provides the underlying capabilities for a type or feature, and then later load that type or feature during the same run (even if the type or feature had been tested earlier and had not been available)\.
61
61
  .
62
- .IP "" 0
63
- .
64
- .SS "archive_file_server"
65
- During an inspect run, the file bucket server to archive files to if archive_files is set\.
62
+ .P
63
+ If this setting is set to false, then types and features will only be checked once, and if they are not available, the negative result is cached and returned for all subsequent attempts to load the type or feature\. This behavior is almost always appropriate for the server, and can result in a significant performance improvement for types and features that are checked frequently\.
66
64
  .
67
65
  .IP "\(bu" 4
68
- \fIDefault\fR: $server
66
+ \fIDefault\fR: true
69
67
  .
70
68
  .IP "" 0
71
69
  .
72
- .SS "archive_files"
73
- During an inspect run, whether to archive files whose contents are audited to a file bucket\.
70
+ .SS "app_management"
71
+ This setting has no effect and will be removed in a future Puppet version\.
74
72
  .
75
73
  .IP "\(bu" 4
76
74
  \fIDefault\fR: false
@@ -101,7 +99,7 @@ If a custom policy executable is configured, the CA puppet master will run it ev
101
99
  If a certificate request is not autosigned, it will persist for review\. An admin user can use the \fBpuppet cert sign\fR command to manually sign it, or can delete the request\.
102
100
  .
103
101
  .P
104
- For info on autosign configuration files, see the guide to Puppet\'s config files \fIhttps://docs\.puppetlabs\.com/guides/configuring\.html\fR\.
102
+ For info on autosign configuration files, see the guide to Puppet\'s config files \fIhttps://docs\.puppetlabs\.com/puppet/latest/reference/config_about_settings\.html\fR\.
105
103
  .
106
104
  .IP "\(bu" 4
107
105
  \fIDefault\fR: $confdir/autosign\.conf
@@ -112,7 +110,7 @@ For info on autosign configuration files, see the guide to Puppet\'s config file
112
110
  The search path for \fBglobal\fR modules\. Should be specified as a list of directories separated by the system path separator character\. (The POSIX path separator is \':\', and the Windows path separator is \';\'\.)
113
111
  .
114
112
  .P
115
- These are the modules that will be used by \fIall\fR environments\. Note that the \fBmodules\fR directory of the active environment will have priority over any global directories\. For more info, see https://docs\.puppetlabs\.com/puppet/latest/reference/environments\.html
113
+ These are the modules that will be used by \fIall\fR environments\. Note that the \fBmodules\fR directory of the active environment will have priority over any global directories\. For more info, see \fIhttps://docs\.puppet\.com/puppet/latest/reference/environments\.html\fR
116
114
  .
117
115
  .IP "\(bu" 4
118
116
  \fIDefault\fR: $codedir/modules:/opt/puppetlabs/puppet/modules
@@ -287,7 +285,7 @@ This is the name used when managing a node\'s permissions in auth\.conf \fIhttps
287
285
  A node\'s certname is available in Puppet manifests as \fB$trusted[\'certname\']\fR\. (See Facts and Built\-In Variables \fIhttps://docs\.puppetlabs\.com/puppet/latest/reference/lang_facts_and_builtin_vars\.html\fR for more details\.)
288
286
  .
289
287
  .IP "\(bu" 4
290
- For best compatibility, you should limit the value of \fBcertname\fR to only use letters, numbers, periods, underscores, and dashes\. (That is, it should match \fB/A[a\-z0\-9\._\-]+Z/\fR\.)
288
+ For best compatibility, you should limit the value of \fBcertname\fR to only use lowercase letters, numbers, periods, underscores, and dashes\. (That is, it should match \fB/A[a\-z0\-9\._\-]+Z/\fR\.)
291
289
  .
292
290
  .IP "\(bu" 4
293
291
  The special value \fBca\fR is reserved, and can\'t be used as the certname for a normal node\.
@@ -340,9 +338,10 @@ Code to parse directly\. This is essentially only used by \fBpuppet\fR, and shou
340
338
  .SS "codedir"
341
339
  The main Puppet code directory\. The default for this setting is calculated based on the user\. If the process is running as root or the user that Puppet is supposed to run as, it defaults to a system directory, but if it\'s running as any other user, it defaults to being in the user\'s home directory\.
342
340
  .
343
- .TP
344
- \fIDefault\fR:
345
-
341
+ .IP "\(bu" 4
342
+ \fIDefault\fR: Unix/Linux: /etc/puppetlabs/code \-\- Windows: C:\eProgramData\ePuppetLabs\ecode \-\- Non\-root user: ~/\.puppetlabs/etc/code
343
+ .
344
+ .IP "" 0
346
345
  .
347
346
  .SS "color"
348
347
  Whether to use colors when logging to the console\. Valid values are \fBansi\fR (equivalent to \fBtrue\fR), \fBhtml\fR, and \fBfalse\fR, which produces no color\. Defaults to false on Windows, as its console does not support ansi colors\.
@@ -356,7 +355,7 @@ Whether to use colors when logging to the console\. Valid values are \fBansi\fR
356
355
  The main Puppet configuration directory\. The default for this setting is calculated based on the user\. If the process is running as root or the user that Puppet is supposed to run as, it defaults to a system directory, but if it\'s running as any other user, it defaults to being in the user\'s home directory\.
357
356
  .
358
357
  .IP "\(bu" 4
359
- \fIDefault\fR: /etc/puppetlabs/puppet
358
+ \fIDefault\fR: Unix/Linux: /etc/puppetlabs/puppet \-\- Windows: C:\eProgramData\ePuppetLabs\epuppet\eetc \-\- Non\-root user: ~/\.puppetlabs/etc/puppet
360
359
  .
361
360
  .IP "" 0
362
361
  .
@@ -380,7 +379,7 @@ The name of the puppet config file\.
380
379
  How to determine the configuration version\. By default, it will be the time that the configuration is parsed, but you can provide a shell script to override how the version is determined\. The output of this script will be added to every log message in the reports, allowing you to correlate changes on your hosts to the source version on the server\.
381
380
  .
382
381
  .P
383
- Setting a global value for config_version in puppet\.conf is not allowed (but it can be overridden from the commandline)\. Please set a per\-environment value in environment\.conf instead\. For more info, see https://docs\.puppetlabs\.com/puppet/latest/reference/environments\.html
382
+ Setting a global value for config_version in puppet\.conf is not allowed (but it can be overridden from the commandline)\. Please set a per\-environment value in environment\.conf instead\. For more info, see \fIhttps://docs\.puppet\.com/puppet/latest/reference/environments\.html\fR
384
383
  .
385
384
  .SS "configprint"
386
385
  Print the value of a specific configuration setting\. If the name of a setting is provided for this, then the value is printed and puppet exits\. Comma\-separate multiple values\. For a list of all values, specify \'all\'\.
@@ -427,7 +426,7 @@ Whether to send the process into the background\. This defaults to true on POSIX
427
426
  .IP "" 0
428
427
  .
429
428
  .SS "data_binding_terminus"
430
- Where to retrive information about data\.
429
+ This setting has been deprecated\. Use of any value other than \'hiera\' should instead be configured in a version 5 hiera\.yaml\. Until this setting is removed, it controls which data binding terminus to use for global automatic data binding (across all environments)\. By default this value is \'hiera\'\. A value of \'none\' turns off the global binding\.
431
430
  .
432
431
  .IP "\(bu" 4
433
432
  \fIDefault\fR: hiera
@@ -528,24 +527,50 @@ Valid values for this setting are:
528
527
  \fBdeprecations\fR \-\-\- disables deprecation warnings\.
529
528
  .
530
529
  .IP "\(bu" 4
530
+ \fBundefined_variables\fR \-\-\- disables warnings about non existing variables\.
531
+ .
532
+ .IP "\(bu" 4
533
+ \fBundefined_resources\fR \-\-\- disables warnings about non existing resources\.
534
+ .
535
+ .IP "\(bu" 4
531
536
  \fIDefault\fR: []
532
537
  .
533
538
  .IP "" 0
534
539
  .
535
540
  .SS "dns_alt_names"
536
- The comma\-separated list of alternative DNS names to use for the local host\.
541
+ A comma\-separated list of alternate DNS names for Puppet Server\. These are extra hostnames (in addition to its \fBcertname\fR) that the server is allowed to use when serving agents\. Puppet checks this setting when automatically requesting a certificate for Puppet agent or Puppet Server, and when manually generating a certificate with \fBpuppet cert generate\fR\.
537
542
  .
538
543
  .P
539
- When the node generates a CSR for itself, these are added to the request as the desired \fBsubjectAltName\fR in the certificate: additional DNS labels that the certificate is also valid answering as\.
544
+ In order to handle agent requests at a given hostname (like "puppet\.example\.com"), Puppet Server needs a certificate that proves it\'s allowed to use that name; if a server shows a certificate that doesn\'t include its hostname, Puppet agents will refuse to trust it\. If you use a single hostname for Puppet traffic but load\-balance it to multiple Puppet Servers, each of those servers needs to include the official hostname in its list of extra names\.
540
545
  .
541
546
  .P
542
- This is generally required if you use a non\-hostname \fBcertname\fR, or if you want to use \fBpuppet kick\fR or \fBpuppet resource \-H\fR and the primary certname does not match the DNS name you use to communicate with the host\.
547
+ \fBNote:\fR The list of alternate names is locked in when the server\'s certificate is signed\. If you need to change the list later, you can\'t just change this setting; you also need to:
543
548
  .
544
- .P
545
- This is unnecessary for agents, unless you intend to use them as a server for \fBpuppet kick\fR or remote \fBpuppet resource\fR management\.
549
+ .IP "\(bu" 4
550
+ On the server: Stop Puppet Server\.
551
+ .
552
+ .IP "\(bu" 4
553
+ On the CA server: Revoke and clean the server\'s old certificate\. (\fBpuppet cert clean <NAME>\fR)
554
+ .
555
+ .IP "\(bu" 4
556
+ On the server: Delete the old certificate (and any old certificate signing requests) from the ssldir \fIhttps://docs\.puppetlabs\.com/puppet/latest/reference/dirs_ssldir\.html\fR\.
557
+ .
558
+ .IP "\(bu" 4
559
+ On the server: Run \fBpuppet agent \-t \-\-ca_server <CA HOSTNAME>\fR to request a new certificate
560
+ .
561
+ .IP "\(bu" 4
562
+ On the CA server: Sign the certificate request, explicitly allowing alternate names (\fBpuppet cert sign \-\-allow\-dns\-alt\-names <NAME>\fR)\.
563
+ .
564
+ .IP "\(bu" 4
565
+ On the server: Run \fBpuppet agent \-t \-\-ca_server <CA HOSTNAME>\fR to retrieve the cert\.
566
+ .
567
+ .IP "\(bu" 4
568
+ On the server: Start Puppet Server again\.
569
+ .
570
+ .IP "" 0
546
571
  .
547
572
  .P
548
- It is rarely necessary for servers; it is usually helpful only if you need to have a pool of multiple load balanced masters, or for the same master to respond on two physically separate networks under different names\.
573
+ To see all the alternate names your servers are using, log into your CA server and run \fBpuppet cert list \-a\fR, then check the output for \fB(alt names: \.\.\.)\fR\. Most agent nodes should NOT have alternate names; the only certs that should have them are Puppet Server nodes that you want other agents to trust\.
549
574
  .
550
575
  .SS "document_all"
551
576
  Whether to document all resources when using \fBpuppet doc\fR to generate manifest documentation\.
@@ -564,12 +589,11 @@ The environment Puppet is running in\. For clients (e\.g\., \fBpuppet agent\fR)
564
589
  .IP "" 0
565
590
  .
566
591
  .SS "environment_data_provider"
567
- The name of a registered environment data provider\. The two built in and registered providers are \'none\' (no environment specific data), and \'function\' (environment specific data obtained by calling the function \'environment::data()\')\. Other environment data providers may be registered in modules on the module path\. For such custom data providers see the respective module documentation\.
592
+ The name of a registered environment data provider used when obtaining environment specific data\. The three built in and registered providers are \'none\' (no data), \'function\' (data obtained by calling the function \'environment::data()\') and \'hiera\' (data obtained using a data provider configured using a hiera\.yaml file in root of the environment)\. Other environment data providers may be registered in modules on the module path\. For such custom data providers see the respective module documentation\. This setting is deprecated\.
568
593
  .
569
- .IP "\(bu" 4
570
- \fIDefault\fR: none
571
- .
572
- .IP "" 0
594
+ .TP
595
+ \fIDefault\fR:
596
+
573
597
  .
574
598
  .SS "environment_timeout"
575
599
  How long the Puppet master should cache data it loads from an environment\. This setting can be a time interval in seconds (30 or 30s), minutes (30m), hours (6h), days (2d), or years (5y)\. A value of \fB0\fR will disable caching\. This setting can also be set to \fBunlimited\fR, which will cache environments until the master is restarted or told to refresh the cache\.
@@ -600,7 +624,7 @@ We don\'t recommend using any value other than \fB0\fR or \fBunlimited\fR, since
600
624
  A search path for directory environments, as a list of directories separated by the system path separator character\. (The POSIX path separator is \':\', and the Windows path separator is \';\'\.)
601
625
  .
602
626
  .P
603
- This setting must have a value set to enable \fBdirectory environments\.\fR The recommended value is \fB$codedir/environments\fR\. For more details, see https://docs\.puppetlabs\.com/puppet/latest/reference/environments\.html
627
+ This setting must have a value set to enable \fBdirectory environments\.\fR The recommended value is \fB$codedir/environments\fR\. For more details, see \fIhttps://docs\.puppet\.com/puppet/latest/reference/environments\.html\fR
604
628
  .
605
629
  .IP "\(bu" 4
606
630
  \fIDefault\fR: $codedir/environments
@@ -616,10 +640,41 @@ Whether each resource should log when it is being evaluated\. This allows you to
616
640
  .IP "" 0
617
641
  .
618
642
  .SS "external_nodes"
619
- An external command that can produce node information\. The command\'s output must be a YAML dump of a hash, and that hash must have a \fBclasses\fR key and/or a \fBparameters\fR key, where \fBclasses\fR is an array or hash and \fBparameters\fR is a hash\. For unknown nodes, the command should exit with a non\-zero exit code\.
643
+ The external node classifier (ENC) script to use for node data\. Puppet combines this data with the main manifest to produce node catalogs\.
644
+ .
645
+ .P
646
+ To enable this setting, set the \fBnode_terminus\fR setting to \fBexec\fR\.
647
+ .
648
+ .P
649
+ This setting\'s value must be the path to an executable command that can produce node information\. The command must:
650
+ .
651
+ .IP "\(bu" 4
652
+ Take the name of a node as a command\-line argument\.
653
+ .
654
+ .IP "\(bu" 4
655
+ .
656
+ .IP "\(bu" 4
657
+ \fBclasses\fR \-\-\- A list of classes, as an array or hash\.
658
+ .
659
+ .IP "\(bu" 4
660
+ \fBenvironment\fR \-\-\- A string\.
661
+ .
662
+ .IP "\(bu" 4
663
+ \fBparameters\fR \-\-\- A list of top\-scope variables to set, as a hash\.
664
+ .
665
+ .IP "" 0
666
+
667
+ .
668
+ .IP "\(bu" 4
669
+ For unknown nodes, exit with a non\-zero exit code\.
670
+ .
671
+ .IP "" 0
672
+ .
673
+ .P
674
+ Generally, an ENC script makes requests to an external data source\.
620
675
  .
621
676
  .P
622
- This command makes it straightforward to store your node mapping information in other data sources like databases\.
677
+ For more info, see the ENC documentation \fIhttps://docs\.puppet\.com/puppet/latest/nodes_external\.html\fR\.
623
678
  .
624
679
  .IP "\(bu" 4
625
680
  \fIDefault\fR: none
@@ -726,7 +781,7 @@ The group puppet master should run as\.
726
781
  The hiera configuration file\. Puppet only reads this file on startup, so you must restart the puppet master every time you edit it\.
727
782
  .
728
783
  .IP "\(bu" 4
729
- \fIDefault\fR: $codedir/hiera\.yaml
784
+ \fIDefault\fR: $confdir/hiera\.yaml\. However, if a file exists at $codedir/hiera\.yaml, Puppet uses that instead\.
730
785
  .
731
786
  .IP "" 0
732
787
  .
@@ -835,9 +890,17 @@ The time to wait for one block to be read from an HTTP connection\. If nothing i
835
890
  .TP
836
891
  \fIDefault\fR:
837
892
 
893
+ .
894
+ .SS "http_user_agent"
895
+ The HTTP User\-Agent string to send when making network requests\.
896
+ .
897
+ .IP "\(bu" 4
898
+ \fIDefault\fR: Puppet/5\.0\.0 Ruby/2\.4\.1\-p111 (x86_64\-darwin15)
899
+ .
900
+ .IP "" 0
838
901
  .
839
902
  .SS "ignorecache"
840
- Ignore cache and always recompile the configuration\. This is useful for testing new configurations, where the local cache may in fact be stale even if the timestamps are up to date \- if the facts change or if the server changes\.
903
+ This setting has no effect and will be removed in a future Puppet version\.
841
904
  .
842
905
  .IP "\(bu" 4
843
906
  \fIDefault\fR: false
@@ -1016,9 +1079,10 @@ crit
1016
1079
  .SS "logdir"
1017
1080
  The directory in which to store log files
1018
1081
  .
1019
- .TP
1020
- \fIDefault\fR:
1021
-
1082
+ .IP "\(bu" 4
1083
+ \fIDefault\fR: Unix/Linux: /var/log/puppetlabs/puppet \-\- Windows: C:\eProgramData\ePuppetLabs\epuppet\evar\elog \-\- Non\-root user: ~/\.puppetlabs/var/log
1084
+ .
1085
+ .IP "" 0
1022
1086
  .
1023
1087
  .SS "manage_internal_file_permissions"
1024
1088
  Whether Puppet should manage the owner, group, and mode of files it uses internally
@@ -1032,7 +1096,7 @@ Whether Puppet should manage the owner, group, and mode of files it uses interna
1032
1096
  The entry\-point manifest for puppet master\. This can be one file or a directory of manifests to be evaluated in alphabetical order\. Puppet manages this path as a directory if one exists or if the path ends with a / or \.
1033
1097
  .
1034
1098
  .P
1035
- Setting a global value for \fBmanifest\fR in puppet\.conf is not allowed (but it can be overridden from them commandline)\. Please use directory environments instead\. If you need to use something other than the environment\'s \fBmanifests\fR directory as the main manifest, you can set \fBmanifest\fR in environment\.conf\. For more info, see https://docs\.puppetlabs\.com/puppet/latest/reference/environments\.html
1099
+ Setting a global value for \fBmanifest\fR in puppet\.conf is not allowed (but it can be overridden from the commandline)\. Please use directory environments instead\. If you need to use something other than the environment\'s \fBmanifests\fR directory as the main manifest, you can set \fBmanifest\fR in environment\.conf\. For more info, see \fIhttps://docs\.puppet\.com/puppet/latest/reference/environments\.html\fR
1036
1100
  .
1037
1101
  .TP
1038
1102
  \fIDefault\fR:
@@ -1095,7 +1159,7 @@ Whether to create the necessary user and group that puppet agent will run as\.
1095
1159
  .IP "" 0
1096
1160
  .
1097
1161
  .SS "module_groups"
1098
- Extra module groups to request from the Puppet Forge
1162
+ Extra module groups to request from the Puppet Forge\. This is an internal setting, and users should never change it\.
1099
1163
  .
1100
1164
  .TP
1101
1165
  \fIDefault\fR:
@@ -1105,7 +1169,7 @@ Extra module groups to request from the Puppet Forge
1105
1169
  The module repository
1106
1170
  .
1107
1171
  .IP "\(bu" 4
1108
- \fIDefault\fR: https://forgeapi\.puppetlabs\.com
1172
+ \fIDefault\fR: https://forgeapi\.puppet\.com
1109
1173
  .
1110
1174
  .IP "" 0
1111
1175
  .
@@ -1129,7 +1193,7 @@ The directory into which module tool data is stored
1129
1193
  The search path for modules, as a list of directories separated by the system path separator character\. (The POSIX path separator is \':\', and the Windows path separator is \';\'\.)
1130
1194
  .
1131
1195
  .P
1132
- Setting a global value for \fBmodulepath\fR in puppet\.conf is not allowed (but it can be overridden from the commandline)\. Please use directory environments instead\. If you need to use something other than the default modulepath of \fB<ACTIVE ENVIRONMENT\'S MODULES DIR>:$basemodulepath\fR, you can set \fBmodulepath\fR in environment\.conf\. For more info, see https://docs\.puppetlabs\.com/puppet/latest/reference/environments\.html
1196
+ Setting a global value for \fBmodulepath\fR in puppet\.conf is not allowed (but it can be overridden from the commandline)\. Please use directory environments instead\. If you need to use something other than the default modulepath of \fB<ACTIVE ENVIRONMENT\'S MODULES DIR>:$basemodulepath\fR, you can set \fBmodulepath\fR in environment\.conf\. For more info, see \fIhttps://docs\.puppet\.com/puppet/latest/reference/environments\.html\fR
1133
1197
  .
1134
1198
  .SS "name"
1135
1199
  The name of the application, if we are running as one\. The default is essentially $0 without the path or \fB\.rb\fR\.
@@ -1139,7 +1203,7 @@ The name of the application, if we are running as one\. The default is essential
1139
1203
 
1140
1204
  .
1141
1205
  .SS "node_cache_terminus"
1142
- How to store cached nodes\. Valid values are (none), \'json\', \'msgpack\', \'yaml\' or write only yaml (\'write_only_yaml\')\. The master application defaults to \'write_only_yaml\', all others to none\.
1206
+ How to store cached nodes\. Valid values are (none), \'json\', \'msgpack\', \'yaml\' or write only yaml (\'write_only_yaml\')\.
1143
1207
  .
1144
1208
  .TP
1145
1209
  \fIDefault\fR:
@@ -1154,10 +1218,10 @@ How the puppet master determines the client\'s identity and sets the \'hostname\
1154
1218
  .IP "" 0
1155
1219
  .
1156
1220
  .SS "node_name_fact"
1157
- The fact name used to determine the node name used for all requests the agent makes to the master\. WARNING: This setting is mutually exclusive with node_name_value\. Changing this setting also requires changes to the default auth\.conf configuration on the Puppet Master\. Please see http://links\.puppetlabs\.com/node_name_fact for more information\.
1221
+ The fact name used to determine the node name used for all requests the agent makes to the master\. WARNING: This setting is mutually exclusive with node_name_value\. Changing this setting also requires changes to the default auth\.conf configuration on the Puppet Master\. Please see http://links\.puppet\.com/node_name_fact for more information\.
1158
1222
  .
1159
1223
  .SS "node_name_value"
1160
- The explicit value used for the node name for all requests the agent makes to the master\. WARNING: This setting is mutually exclusive with node_name_fact\. Changing this setting also requires changes to the default auth\.conf configuration on the Puppet Master\. Please see http://links\.puppetlabs\.com/node_name_value for more information\.
1224
+ The explicit value used for the node name for all requests the agent makes to the master\. WARNING: This setting is mutually exclusive with node_name_fact\. Changing this setting also requires changes to the default auth\.conf configuration on the Puppet Master\. Please see http://links\.puppet\.com/node_name_value for more information\.
1161
1225
  .
1162
1226
  .IP "\(bu" 4
1163
1227
  \fIDefault\fR: $certname
@@ -1165,7 +1229,33 @@ The explicit value used for the node name for all requests the agent makes to th
1165
1229
  .IP "" 0
1166
1230
  .
1167
1231
  .SS "node_terminus"
1168
- Where to find information about nodes\.
1232
+ Which node data plugin to use when compiling node catalogs\.
1233
+ .
1234
+ .P
1235
+ When Puppet compiles a catalog, it combines two primary sources of info: the main manifest, and a node data plugin (often called a "node terminus," for historical reasons)\. Node data plugins provide three things for a given node name:
1236
+ .
1237
+ .IP "1." 4
1238
+ A list of classes to add to that node\'s catalog (and, optionally, values for their parameters)\.
1239
+ .
1240
+ .IP "2." 4
1241
+ Which Puppet environment the node should use\.
1242
+ .
1243
+ .IP "3." 4
1244
+ A list of additional top\-scope variables to set\.
1245
+ .
1246
+ .IP "" 0
1247
+ .
1248
+ .P
1249
+ The three main node data plugins are:
1250
+ .
1251
+ .IP "\(bu" 4
1252
+ \fBplain\fR \-\-\- Returns no data, so that the main manifest controls all node configuration\.
1253
+ .
1254
+ .IP "\(bu" 4
1255
+ \fBexec\fR \-\-\- Uses an external node classifier (ENC) \fIhttps://docs\.puppet\.com/puppet/latest/nodes_external\.html\fR, configured by the \fBexternal_nodes\fR setting\. This lets you pull a list of Puppet classes from any external system, using a small glue script to perform the request and format the result as YAML\.
1256
+ .
1257
+ .IP "\(bu" 4
1258
+ \fBclassifier\fR (formerly \fBconsole\fR) \-\-\- Specific to Puppet Enterprise\. Uses the PE console for node data\."
1169
1259
  .
1170
1260
  .IP "\(bu" 4
1171
1261
  \fIDefault\fR: plain
@@ -1179,7 +1269,7 @@ Whether to apply catalogs in noop mode, which allows Puppet to partially simulat
1179
1269
  When running in noop mode, Puppet will check whether each resource is in sync, like it does when running normally\. However, if a resource attribute is not in the desired state (as declared in the catalog), Puppet will take no action, and will instead report the changes it \fIwould\fR have made\. These simulated changes will appear in the report sent to the puppet master, or be shown on the console if running puppet agent or puppet apply in the foreground\. The simulated changes will not send refresh events to any subscribing or notified resources, although Puppet will log that a refresh event \fIwould\fR have been sent\.
1180
1270
  .
1181
1271
  .P
1182
- \fBImportant note:\fR The \fBnoop\fR metaparameter \fIhttps://docs\.puppetlabs\.com/references/latest/metaparameter\.html#noop\fR allows you to apply individual resources in noop mode, and will override the global value of the \fBnoop\fR setting\. This means a resource with \fBnoop => false\fR \fIwill\fR be changed if necessary, even when running puppet agent with \fBnoop = true\fR or \fB\-\-noop\fR\. (Conversely, a resource with \fBnoop => true\fR will only be simulated, even when noop mode is globally disabled\.)
1272
+ \fBImportant note:\fR The \fBnoop\fR metaparameter \fIhttps://docs\.puppetlabs\.com/puppet/latest/reference/metaparameter\.html#noop\fR allows you to apply individual resources in noop mode, and will override the global value of the \fBnoop\fR setting\. This means a resource with \fBnoop => false\fR \fIwill\fR be changed if necessary, even when running puppet agent with \fBnoop = true\fR or \fB\-\-noop\fR\. (Conversely, a resource with \fBnoop => true\fR will only be simulated, even when noop mode is globally disabled\.)
1183
1273
  .
1184
1274
  .IP "\(bu" 4
1185
1275
  \fIDefault\fR: false
@@ -1284,7 +1374,7 @@ From where to retrieve plugins\. The standard Puppet \fBfile\fR type is used for
1284
1374
  .IP "" 0
1285
1375
  .
1286
1376
  .SS "pluginsync"
1287
- Whether plugins should be synced with the central server\.
1377
+ Whether plugins should be synced with the central server\. This setting is deprecated\.
1288
1378
  .
1289
1379
  .IP "\(bu" 4
1290
1380
  \fIDefault\fR: true
@@ -1298,7 +1388,7 @@ A command to run after every agent run\. If this command returns a non\-zero ret
1298
1388
  The preferred means of serializing ruby instances for passing over the wire\. This won\'t guarantee that all instances will be serialized using this method, since not all classes can be guaranteed to support this format, but it will be used for all classes that support it\.
1299
1389
  .
1300
1390
  .IP "\(bu" 4
1301
- \fIDefault\fR: pson
1391
+ \fIDefault\fR: json
1302
1392
  .
1303
1393
  .IP "" 0
1304
1394
  .
@@ -1359,7 +1449,7 @@ The fallback log file\. This is only used when the \fB\-\-logdest\fR option is n
1359
1449
  Despite the name, both puppet agent and puppet master will use this file as the fallback logging destination\.
1360
1450
  .
1361
1451
  .P
1362
- For control over logging destinations, see the \fB\-\-logdest\fR command line option in the manual pages for puppet master, puppet agent, and puppet apply\. You can see man pages by running \fBpuppet <SUBCOMMAND> \-\-help\fR, or read them online at https://docs\.puppetlabs\.com/references/latest/man/\.
1452
+ For control over logging destinations, see the \fB\-\-logdest\fR command line option in the manual pages for puppet master, puppet agent, and puppet apply\. You can see man pages by running \fBpuppet <SUBCOMMAND> \-\-help\fR, or read them online at https://docs\.puppetlabs\.com/puppet/latest/reference/man/\.
1363
1453
  .
1364
1454
  .IP "\(bu" 4
1365
1455
  \fIDefault\fR: $logdir/puppetd\.log
@@ -1444,6 +1534,14 @@ The configuration file that defines the rights to the different rest indirection
1444
1534
  .
1445
1535
  .IP "" 0
1446
1536
  .
1537
+ .SS "rich_data"
1538
+ Enables having extended data in the catalog by storing them as a hash with the special key \fB__pcore_type__\fR\. When enabled, resource containing values of the data types \fBBinary\fR, \fBRegexp\fR, \fBSemVer\fR, \fBSemVerRange\fR, \fBTimespan\fR and \fBTimestamp\fR, as well as instances of types derived from \fBObject\fR retain their data type\.
1539
+ .
1540
+ .IP "\(bu" 4
1541
+ \fIDefault\fR: false
1542
+ .
1543
+ .IP "" 0
1544
+ .
1447
1545
  .SS "route_file"
1448
1546
  The YAML file containing indirector route configuration\.
1449
1547
  .
@@ -1455,9 +1553,10 @@ The YAML file containing indirector route configuration\.
1455
1553
  .SS "rundir"
1456
1554
  Where Puppet PID files are kept\.
1457
1555
  .
1458
- .TP
1459
- \fIDefault\fR:
1460
-
1556
+ .IP "\(bu" 4
1557
+ \fIDefault\fR: Unix/Linux: /var/run/puppetlabs \-\- Windows: C:\eProgramData\ePuppetLabs\epuppet\evar\erun \-\- Non\-root user: ~/\.puppetlabs/var/run
1558
+ .
1559
+ .IP "" 0
1461
1560
  .
1462
1561
  .SS "runinterval"
1463
1562
  How often puppet agent applies the catalog\. Note that a runinterval of 0 means "run continuously" rather than "never run\." If you want puppet agent to never run, you should start it with the \fB\-\-no\-client\fR option\. This setting can be a time interval in seconds (30 or 30s), minutes (30m), hours (6h), days (2d), or years (5y)\.
@@ -1491,6 +1590,14 @@ The directory in which serialized data is stored, usually in a subdirectory\.
1491
1590
  .
1492
1591
  .IP "" 0
1493
1592
  .
1593
+ .SS "server_list"
1594
+ The list of puppet master servers to which the puppet agent should connect, in the order that they will be tried\.
1595
+ .
1596
+ .IP "\(bu" 4
1597
+ \fIDefault\fR: []
1598
+ .
1599
+ .IP "" 0
1600
+ .
1494
1601
  .SS "show_diff"
1495
1602
  Whether to log and report a contextual diff when files are being replaced\. This causes partial file contents to pass through Puppet\'s normal logging and reporting system, so this setting should be used with caution if you are sending Puppet\'s reports to an insecure destination\. This feature currently requires the \fBdiff/lcs\fR Ruby library\.
1496
1603
  .
@@ -1507,9 +1614,15 @@ Where the CA stores signed certificates\.
1507
1614
  .
1508
1615
  .IP "" 0
1509
1616
  .
1617
+ .SS "skip_tags"
1618
+ Tags to use to filter resources\. If this is set, then only resources not tagged with the specified tags will be applied\. Values must be comma\-separated\.
1619
+ .
1510
1620
  .SS "splay"
1511
1621
  Whether to sleep for a pseudo\-random (but consistent) amount of time before a run\.
1512
1622
  .
1623
+ .P
1624
+ For example, without \fBsplay\fR enabled, your agent checks in every 30 minutes at :01 and :31 past the hour\. After enabling \fBsplay\fR, the agent will wait the pseudorandom sleep time, say eight minutes, and then check in every 30 minutes, at :09 and :39 after the hour\. If you restart the same agent at 12:45 PM, it will wait its eight minutes, and check in at 12:52 PM, and every 30 minutes after that, at 1:22 PM, 1:52 PM, and so on\. Other agents will have different sleep times, and so will check in at different times even if they are all restarted at the same time\.
1625
+ .
1513
1626
  .IP "\(bu" 4
1514
1627
  \fIDefault\fR: false
1515
1628
  .
@@ -1542,7 +1655,7 @@ Certificate authorities who issue server certificates\. SSL servers will not be
1542
1655
  The header containing an authenticated client\'s SSL DN\. This header must be set by the proxy to the authenticated client\'s SSL DN (e\.g\., \fB/CN=puppet\.puppetlabs\.com\fR)\. Puppet will parse out the Common Name (CN) from the Distinguished Name (DN) and use the value of the CN field for authorization\.
1543
1656
  .
1544
1657
  .P
1545
- Note that the name of the HTTP header gets munged by the web server common gateway inteface: an \fBHTTP_\fR prefix is added, dashes are converted to underscores, and all letters are uppercased\. Thus, to use the \fBX\-Client\-DN\fR header, this setting should be \fBHTTP_X_CLIENT_DN\fR\.
1658
+ Note that the name of the HTTP header gets munged by the web server common gateway interface: an \fBHTTP_\fR prefix is added, dashes are converted to underscores, and all letters are uppercased\. Thus, to use the \fBX\-Client\-DN\fR header, this setting should be \fBHTTP_X_CLIENT_DN\fR\.
1546
1659
  .
1547
1660
  .IP "\(bu" 4
1548
1661
  \fIDefault\fR: HTTP_X_CLIENT_DN
@@ -1553,7 +1666,7 @@ Note that the name of the HTTP header gets munged by the web server common gatew
1553
1666
  The header containing the status message of the client verification\. This header must be set by the proxy to \'SUCCESS\' if the client successfully authenticated, and anything else otherwise\.
1554
1667
  .
1555
1668
  .P
1556
- Note that the name of the HTTP header gets munged by the web server common gateway inteface: an \fBHTTP_\fR prefix is added, dashes are converted to underscores, and all letters are uppercased\. Thus, to use the \fBX\-Client\-Verify\fR header, this setting should be \fBHTTP_X_CLIENT_VERIFY\fR\.
1669
+ Note that the name of the HTTP header gets munged by the web server common gateway interface: an \fBHTTP_\fR prefix is added, dashes are converted to underscores, and all letters are uppercased\. Thus, to use the \fBX\-Client\-Verify\fR header, this setting should be \fBHTTP_X_CLIENT_VERIFY\fR\.
1557
1670
  .
1558
1671
  .IP "\(bu" 4
1559
1672
  \fIDefault\fR: HTTP_X_CLIENT_VERIFY
@@ -1591,6 +1704,14 @@ Where puppet agent and puppet master store state associated with the running con
1591
1704
  .
1592
1705
  .IP "" 0
1593
1706
  .
1707
+ .SS "static_catalogs"
1708
+ Whether to compile a static catalog\.
1709
+ .
1710
+ .IP "\(bu" 4
1711
+ \fIDefault\fR: true
1712
+ .
1713
+ .IP "" 0
1714
+ .
1594
1715
  .SS "storeconfigs"
1595
1716
  Whether to store each client\'s configuration, including catalogs, facts, and related data\. This also enables the import and export of resources in the Puppet language \- a mechanism for exchange resources between nodes\.
1596
1717
  .
@@ -1613,6 +1734,39 @@ Configure the backend terminus used for StoreConfigs\. By default, this uses the
1613
1734
  .
1614
1735
  .IP "" 0
1615
1736
  .
1737
+ .SS "strict"
1738
+ The strictness level of puppet\. Allowed values are:
1739
+ .
1740
+ .IP "\(bu" 4
1741
+ off \- do not perform extra validation, do not report
1742
+ .
1743
+ .IP "\(bu" 4
1744
+ warning \- perform extra validation, report as warning (default)
1745
+ .
1746
+ .IP "\(bu" 4
1747
+ error \- perform extra validation, fail with error
1748
+ .
1749
+ .IP "" 0
1750
+ .
1751
+ .P
1752
+ The strictness level is for both language semantics and runtime evaluation validation\. In addition to controlling the behavior with this master switch some individual warnings may also be controlled by the disable_warnings setting\.
1753
+ .
1754
+ .P
1755
+ No new validations will be added to a micro (x\.y\.z) release, but may be added in minor releases (x\.y\.0)\. In major releases it expected that most (if not all) strictness validation become standard behavior\.
1756
+ .
1757
+ .IP "\(bu" 4
1758
+ \fIDefault\fR: warning
1759
+ .
1760
+ .IP "" 0
1761
+ .
1762
+ .SS "strict_environment_mode"
1763
+ Whether the agent specified environment should be considered authoritative, causing the run to fail if the retrieved catalog does not match it\.
1764
+ .
1765
+ .IP "\(bu" 4
1766
+ \fIDefault\fR: false
1767
+ .
1768
+ .IP "" 0
1769
+ .
1616
1770
  .SS "strict_hostname_checking"
1617
1771
  Whether to only search for the complete hostname as it is in the certificate when searching for node information in the catalogs\.
1618
1772
  .
@@ -1622,7 +1776,7 @@ Whether to only search for the complete hostname as it is in the certificate whe
1622
1776
  .IP "" 0
1623
1777
  .
1624
1778
  .SS "strict_variables"
1625
- Makes the parser raise errors when referencing unknown variables\. (This does not affect referencing variables that are explicitly set to undef)\.
1779
+ Causes an evaluation error when referencing unknown variables\. (This does not affect referencing variables that are explicitly set to undef)\.
1626
1780
  .
1627
1781
  .IP "\(bu" 4
1628
1782
  \fIDefault\fR: false
@@ -1637,6 +1791,14 @@ Whether to print a transaction summary\.
1637
1791
  .
1638
1792
  .IP "" 0
1639
1793
  .
1794
+ .SS "supported_checksum_types"
1795
+ Checksum types supported by this agent for use in file resources of a static catalog\. Values must be comma\-separated\. Valid types are md5, md5lite, sha256, sha256lite, sha1, sha1lite, mtime, ctime\.
1796
+ .
1797
+ .IP "\(bu" 4
1798
+ \fIDefault\fR: ["md5", "sha256"]
1799
+ .
1800
+ .IP "" 0
1801
+ .
1640
1802
  .SS "syslogfacility"
1641
1803
  What syslog facility to use when logging to syslog\. Syslog has a fixed list of valid facilities, and you must choose one of those; you cannot just make one up\.
1642
1804
  .
@@ -1656,6 +1818,14 @@ Whether to print stack traces on some errors
1656
1818
  .
1657
1819
  .IP "" 0
1658
1820
  .
1821
+ .SS "transactionstorefile"
1822
+ Transactional storage file for persisting data between transactions for the purposes of infering information (such as corrective_change) on new data received\.
1823
+ .
1824
+ .IP "\(bu" 4
1825
+ \fIDefault\fR: $statedir/transactionstore\.yaml
1826
+ .
1827
+ .IP "" 0
1828
+ .
1659
1829
  .SS "trusted_oid_mapping_file"
1660
1830
  File that provides mapping between custom SSL oids and user\-friendly names
1661
1831
  .
@@ -1665,10 +1835,10 @@ File that provides mapping between custom SSL oids and user\-friendly names
1665
1835
  .IP "" 0
1666
1836
  .
1667
1837
  .SS "trusted_server_facts"
1668
- Stores a trusted set of server\-side global variables in a hash called $server_facts, which cannot be cannot be overridden by client_facts or logic in manifests\. Makes it illegal to assign to the variable $server_facts in any scope\.
1838
+ The \'trusted_server_facts\' setting is deprecated and has no effect as the feature this enabled is now always on\. The setting will be removed in a future version of puppet\.
1669
1839
  .
1670
1840
  .IP "\(bu" 4
1671
- \fIDefault\fR: false
1841
+ \fIDefault\fR: true
1672
1842
  .
1673
1843
  .IP "" 0
1674
1844
  .
@@ -1708,7 +1878,7 @@ The user puppet master should run as\.
1708
1878
  Where Puppet stores dynamic and growing data\. The default for this setting is calculated specially, like \fBconfdir\fR_\.
1709
1879
  .
1710
1880
  .IP "\(bu" 4
1711
- \fIDefault\fR: /opt/puppetlabs/puppet/cache
1881
+ \fIDefault\fR: Unix/Linux: /opt/puppetlabs/puppet/cache \-\- Windows: C:\eProgramData\ePuppetLabs\epuppet\ecache \-\- Non\-root user: ~/\.puppetlabs/opt/puppet/cache
1712
1882
  .
1713
1883
  .IP "" 0
1714
1884
  .
@@ -1735,4 +1905,4 @@ The directory in which YAML data is stored, usually in a subdirectory\.
1735
1905
  .IP "" 0
1736
1906
  .
1737
1907
  .P
1738
- \fIThis page autogenerated on 2015\-05\-18 10:15:47 \-0700\fR
1908
+ \fIThis page autogenerated on 2017\-06\-29 14:42:23 \-0700\fR