puppet 5.3.4 → 6.29.0
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.
- checksums.yaml +7 -0
- data/CODEOWNERS +11 -0
- data/CODE_OF_CONDUCT.md +70 -0
- data/CONTRIBUTING.md +59 -55
- data/Gemfile +52 -70
- data/Gemfile.lock +251 -0
- data/Guardfile.example +76 -0
- data/LICENSE +189 -4
- data/README.md +31 -37
- data/Rakefile +53 -52
- data/conf/auth.conf +7 -2
- data/conf/environment.conf +1 -1
- data/conf/fileserver.conf +1 -1
- data/conf/puppet.conf +4 -4
- data/{ext → examples/enc}/regexp_nodes/classes/databases +0 -0
- data/{ext → examples/enc}/regexp_nodes/classes/webservers +0 -0
- data/{ext → examples/enc}/regexp_nodes/environment/development +0 -0
- data/{ext → examples/enc}/regexp_nodes/parameters/service/prod +0 -0
- data/{ext → examples/enc}/regexp_nodes/parameters/service/qa +0 -0
- data/{ext → examples/enc}/regexp_nodes/parameters/service/sandbox +0 -0
- data/{ext → examples/enc}/regexp_nodes/regexp_nodes.rb +19 -20
- data/{ext → examples}/nagios/check_puppet.rb +2 -2
- data/ext/README.md +13 -0
- data/ext/build_defaults.yaml +1 -2
- data/ext/hiera/hiera.yaml +1 -1
- data/ext/osx/puppet.plist +2 -0
- data/ext/project_data.yaml +16 -12
- data/ext/redhat/client.init +2 -2
- data/ext/solaris/smf/puppet +11 -11
- data/ext/solaris/smf/puppet.xml +2 -0
- data/ext/windows/service/daemon.rb +40 -10
- data/install.rb +8 -27
- data/lib/hiera/puppet_function.rb +1 -1
- data/lib/hiera/scope.rb +31 -2
- data/lib/hiera_puppet.rb +2 -1
- data/lib/puppet/agent/locker.rb +0 -7
- data/lib/puppet/agent.rb +68 -26
- data/lib/puppet/application/agent.rb +107 -59
- data/lib/puppet/application/apply.rb +144 -74
- data/lib/puppet/application/cert.rb +27 -285
- data/lib/puppet/application/describe.rb +10 -15
- data/lib/puppet/application/device.rb +241 -89
- data/lib/puppet/application/doc.rb +8 -5
- data/lib/puppet/application/face_base.rb +23 -16
- data/lib/puppet/application/facts.rb +5 -0
- data/lib/puppet/application/filebucket.rb +51 -16
- data/lib/puppet/application/lookup.rb +92 -20
- data/lib/puppet/application/plugin.rb +1 -0
- data/lib/puppet/application/resource.rb +39 -23
- data/lib/puppet/application/script.rb +264 -0
- data/lib/puppet/application/ssl.rb +288 -0
- data/lib/puppet/application.rb +25 -9
- data/lib/puppet/application_support.rb +9 -3
- data/lib/puppet/concurrent/lock.rb +16 -0
- data/lib/puppet/concurrent/synchronized.rb +15 -0
- data/lib/puppet/concurrent/thread_local_singleton.rb +17 -0
- data/lib/puppet/concurrent.rb +2 -0
- data/lib/puppet/configurer/downloader.rb +36 -18
- data/lib/puppet/configurer/fact_handler.rb +5 -1
- data/lib/puppet/configurer/plugin_handler.rb +36 -11
- data/lib/puppet/configurer.rb +367 -152
- data/lib/puppet/confine/any.rb +1 -1
- data/lib/puppet/confine/boolean.rb +45 -0
- data/lib/puppet/confine/false.rb +7 -1
- data/lib/puppet/confine/true.rb +7 -1
- data/lib/puppet/confine/variable.rb +1 -1
- data/lib/puppet/confine.rb +6 -3
- data/lib/puppet/confine_collection.rb +2 -1
- data/lib/puppet/context/trusted_information.rb +48 -4
- data/lib/puppet/context.rb +120 -48
- data/lib/puppet/daemon.rb +17 -30
- data/lib/puppet/datatypes/error.rb +21 -0
- data/lib/puppet/datatypes/impl/error.rb +40 -0
- data/lib/puppet/datatypes.rb +213 -0
- data/lib/puppet/defaults.rb +651 -371
- data/lib/puppet/environments.rb +218 -105
- data/lib/puppet/error.rb +52 -4
- data/lib/puppet/etc.rb +26 -7
- data/lib/puppet/external/dot.rb +23 -24
- data/lib/puppet/external/pson/pure/generator.rb +1 -1
- data/lib/puppet/external/pson/pure/parser.rb +3 -2
- data/lib/puppet/face/catalog.rb +20 -1
- data/lib/puppet/face/config.rb +167 -32
- data/lib/puppet/face/epp.rb +52 -15
- data/lib/puppet/face/facts.rb +210 -0
- data/lib/puppet/face/generate.rb +2 -0
- data/lib/puppet/face/help/action.erb +5 -1
- data/lib/puppet/face/help/face.erb +2 -1
- data/lib/puppet/face/help/global.erb +2 -2
- data/lib/puppet/face/help/man.erb +1 -1
- data/lib/puppet/face/help.rb +80 -41
- data/lib/puppet/face/key.rb +1 -1
- data/lib/puppet/face/man.rb +55 -12
- data/lib/puppet/face/module/build.rb +5 -54
- data/lib/puppet/face/module/changes.rb +2 -1
- data/lib/puppet/face/module/generate.rb +6 -243
- data/lib/puppet/face/module/install.rb +1 -4
- data/lib/puppet/face/module/list.rb +5 -10
- data/lib/puppet/face/module/search.rb +13 -4
- data/lib/puppet/face/module/uninstall.rb +2 -5
- data/lib/puppet/face/module/upgrade.rb +2 -5
- data/lib/puppet/face/node/clean.rb +26 -12
- data/lib/puppet/face/node.rb +3 -3
- data/lib/puppet/face/parser.rb +78 -12
- data/lib/puppet/face/plugin.rb +9 -4
- data/lib/puppet/face/status.rb +3 -3
- data/lib/puppet/facter_impl.rb +96 -0
- data/lib/puppet/feature/base.rb +9 -28
- data/lib/puppet/feature/bolt.rb +3 -0
- data/lib/puppet/feature/eventlog.rb +1 -1
- data/lib/puppet/ffi/posix/constants.rb +14 -0
- data/lib/puppet/ffi/posix/functions.rb +24 -0
- data/lib/puppet/ffi/posix.rb +10 -0
- data/lib/puppet/file_bucket/dipper.rb +5 -5
- data/lib/puppet/file_bucket/file.rb +0 -2
- data/lib/puppet/file_serving/base.rb +16 -16
- data/lib/puppet/file_serving/configuration/parser.rb +2 -0
- data/lib/puppet/file_serving/configuration.rb +5 -1
- data/lib/puppet/file_serving/fileset.rb +17 -5
- data/lib/puppet/file_serving/http_metadata.rb +19 -5
- data/lib/puppet/file_serving/metadata.rb +12 -4
- data/lib/puppet/file_serving/mount/file.rb +6 -5
- data/lib/puppet/file_serving/mount/locales.rb +3 -3
- data/lib/puppet/file_serving/mount/modules.rb +4 -2
- data/lib/puppet/file_serving/mount/pluginfacts.rb +3 -3
- data/lib/puppet/file_serving/mount/plugins.rb +3 -3
- data/lib/puppet/file_serving/mount/scripts.rb +24 -0
- data/lib/puppet/file_serving/mount/tasks.rb +4 -2
- data/lib/puppet/file_serving/terminus_selector.rb +7 -8
- data/lib/puppet/file_system/file_impl.rb +45 -11
- data/lib/puppet/file_system/jruby.rb +23 -0
- data/lib/puppet/file_system/memory_file.rb +15 -2
- data/lib/puppet/file_system/memory_impl.rb +13 -0
- data/lib/puppet/file_system/posix.rb +3 -2
- data/lib/puppet/file_system/uniquefile.rb +15 -17
- data/lib/puppet/file_system/windows.rb +85 -2
- data/lib/puppet/file_system.rb +29 -15
- data/lib/puppet/forge/cache.rb +1 -1
- data/lib/puppet/forge/errors.rb +5 -5
- data/lib/puppet/forge/repository.rb +28 -87
- data/lib/puppet/forge.rb +45 -22
- data/lib/puppet/functions/abs.rb +61 -0
- data/lib/puppet/functions/alert.rb +1 -1
- data/lib/puppet/functions/all.rb +15 -11
- data/lib/puppet/functions/annotate.rb +11 -11
- data/lib/puppet/functions/any.rb +15 -11
- data/lib/puppet/functions/assert_type.rb +7 -7
- data/lib/puppet/functions/binary_file.rb +14 -2
- data/lib/puppet/functions/break.rb +34 -9
- data/lib/puppet/functions/call.rb +43 -5
- data/lib/puppet/functions/camelcase.rb +62 -0
- data/lib/puppet/functions/capitalize.rb +61 -0
- data/lib/puppet/functions/ceiling.rb +37 -0
- data/lib/puppet/functions/chomp.rb +57 -0
- data/lib/puppet/functions/chop.rb +67 -0
- data/lib/puppet/functions/compare.rb +125 -0
- data/lib/puppet/functions/contain.rb +25 -3
- data/lib/puppet/functions/convert_to.rb +34 -0
- data/lib/puppet/functions/crit.rb +1 -1
- data/lib/puppet/functions/debug.rb +1 -1
- data/lib/puppet/functions/defined.rb +11 -12
- data/lib/puppet/functions/dig.rb +47 -3
- data/lib/puppet/functions/downcase.rb +89 -0
- data/lib/puppet/functions/each.rb +20 -16
- data/lib/puppet/functions/emerg.rb +1 -1
- data/lib/puppet/functions/empty.rb +85 -0
- data/lib/puppet/functions/epp.rb +5 -4
- data/lib/puppet/functions/err.rb +1 -1
- data/lib/puppet/functions/eyaml_lookup_key.rb +21 -15
- data/lib/puppet/functions/filter.rb +31 -23
- data/lib/puppet/functions/find_file.rb +15 -2
- data/lib/puppet/functions/find_template.rb +63 -0
- data/lib/puppet/functions/flatten.rb +64 -0
- data/lib/puppet/functions/floor.rb +37 -0
- data/lib/puppet/functions/get.rb +150 -0
- data/lib/puppet/functions/getvar.rb +87 -0
- data/lib/puppet/functions/group_by.rb +62 -0
- data/lib/puppet/functions/hiera.rb +11 -11
- data/lib/puppet/functions/hiera_array.rb +11 -11
- data/lib/puppet/functions/hiera_hash.rb +12 -12
- data/lib/puppet/functions/hiera_include.rb +15 -15
- data/lib/puppet/functions/hocon_data.rb +1 -1
- data/lib/puppet/functions/include.rb +34 -2
- data/lib/puppet/functions/index.rb +167 -0
- data/lib/puppet/functions/info.rb +1 -1
- data/lib/puppet/functions/inline_epp.rb +8 -7
- data/lib/puppet/functions/join.rb +56 -0
- data/lib/puppet/functions/json_data.rb +3 -3
- data/lib/puppet/functions/keys.rb +25 -0
- data/lib/puppet/functions/length.rb +44 -0
- data/lib/puppet/functions/lest.rb +39 -1
- data/lib/puppet/functions/lookup.rb +3 -2
- data/lib/puppet/functions/lstrip.rb +58 -0
- data/lib/puppet/functions/map.rb +22 -18
- data/lib/puppet/functions/match.rb +19 -9
- data/lib/puppet/functions/max.rb +183 -0
- data/lib/puppet/functions/min.rb +182 -0
- data/lib/puppet/functions/module_directory.rb +41 -0
- data/lib/puppet/functions/new.rb +987 -8
- data/lib/puppet/functions/next.rb +20 -10
- data/lib/puppet/functions/notice.rb +1 -1
- data/lib/puppet/functions/partition.rb +62 -0
- data/lib/puppet/functions/reduce.rb +9 -11
- data/lib/puppet/functions/regsubst.rb +60 -35
- data/lib/puppet/functions/require.rb +42 -2
- data/lib/puppet/functions/return.rb +2 -9
- data/lib/puppet/functions/reverse_each.rb +72 -3
- data/lib/puppet/functions/round.rb +24 -0
- data/lib/puppet/functions/rstrip.rb +58 -0
- data/lib/puppet/functions/size.rb +15 -0
- data/lib/puppet/functions/slice.rb +23 -9
- data/lib/puppet/functions/sort.rb +74 -0
- data/lib/puppet/functions/split.rb +12 -10
- data/lib/puppet/functions/step.rb +74 -2
- data/lib/puppet/functions/strftime.rb +179 -10
- data/lib/puppet/functions/strip.rb +58 -0
- data/lib/puppet/functions/then.rb +65 -2
- data/lib/puppet/functions/tree_each.rb +32 -35
- data/lib/puppet/functions/type.rb +42 -1
- data/lib/puppet/functions/unique.rb +13 -13
- data/lib/puppet/functions/unwrap.rb +25 -6
- data/lib/puppet/functions/upcase.rb +89 -0
- data/lib/puppet/functions/values.rb +25 -0
- data/lib/puppet/functions/versioncmp.rb +7 -3
- data/lib/puppet/functions/warning.rb +1 -1
- data/lib/puppet/functions/with.rb +9 -7
- data/lib/puppet/functions/yaml_data.rb +11 -9
- data/lib/puppet/functions.rb +208 -91
- data/lib/puppet/generate/type.rb +12 -2
- data/lib/puppet/gettext/config.rb +31 -8
- data/lib/puppet/gettext/module_translations.rb +5 -5
- data/lib/puppet/gettext/stubs.rb +1 -1
- data/lib/puppet/graph/rb_tree_map.rb +2 -2
- data/lib/puppet/graph/relationship_graph.rb +2 -1
- data/lib/puppet/graph/simple_graph.rb +16 -10
- data/lib/puppet/graph.rb +0 -2
- data/lib/puppet/http/client.rb +468 -0
- data/lib/puppet/http/errors.rb +32 -0
- data/lib/puppet/http/external_client.rb +90 -0
- data/lib/puppet/http/redirector.rb +89 -0
- data/lib/puppet/http/resolver/server_list.rb +91 -0
- data/lib/puppet/http/resolver/settings.rb +26 -0
- data/lib/puppet/http/resolver/srv.rb +45 -0
- data/lib/puppet/http/resolver.rb +58 -0
- data/lib/puppet/http/response.rb +120 -0
- data/lib/puppet/http/retry_after_handler.rb +86 -0
- data/lib/puppet/http/service/ca.rb +112 -0
- data/lib/puppet/http/service/compiler.rb +393 -0
- data/lib/puppet/http/service/file_server.rb +207 -0
- data/lib/puppet/http/service/puppetserver.rb +39 -0
- data/lib/puppet/http/service/report.rb +66 -0
- data/lib/puppet/http/service.rb +196 -0
- data/lib/puppet/http/session.rb +131 -0
- data/lib/puppet/http.rb +37 -0
- data/lib/puppet/indirector/catalog/compiler.rb +60 -22
- data/lib/puppet/indirector/catalog/json.rb +14 -3
- data/lib/puppet/indirector/catalog/rest.rb +35 -0
- data/lib/puppet/indirector/catalog/yaml.rb +0 -16
- data/lib/puppet/indirector/certificate/file.rb +1 -1
- data/lib/puppet/indirector/certificate/rest.rb +3 -1
- data/lib/puppet/indirector/certificate_request/file.rb +1 -0
- data/lib/puppet/indirector/certificate_request/memory.rb +1 -0
- data/lib/puppet/indirector/certificate_request/rest.rb +1 -0
- data/lib/puppet/indirector/exec.rb +1 -1
- data/lib/puppet/indirector/face.rb +2 -2
- data/lib/puppet/indirector/fact_search.rb +60 -0
- data/lib/puppet/indirector/facts/facter.rb +31 -12
- data/lib/puppet/indirector/facts/json.rb +27 -0
- data/lib/puppet/indirector/facts/rest.rb +63 -0
- data/lib/puppet/indirector/facts/yaml.rb +7 -64
- data/lib/puppet/indirector/file_bucket_file/file.rb +7 -3
- data/lib/puppet/indirector/file_bucket_file/rest.rb +48 -0
- data/lib/puppet/indirector/file_content/http.rb +8 -1
- data/lib/puppet/indirector/file_content/rest.rb +30 -0
- data/lib/puppet/indirector/file_metadata/http.rb +28 -8
- data/lib/puppet/indirector/file_metadata/rest.rb +53 -0
- data/lib/puppet/indirector/file_server.rb +5 -3
- data/lib/puppet/indirector/hiera.rb +6 -0
- data/lib/puppet/indirector/indirection.rb +59 -31
- data/lib/puppet/indirector/json.rb +6 -2
- data/lib/puppet/indirector/key/file.rb +2 -6
- data/lib/puppet/indirector/key/memory.rb +1 -0
- data/lib/puppet/indirector/msgpack.rb +2 -2
- data/lib/puppet/indirector/node/exec.rb +4 -5
- data/lib/puppet/indirector/node/json.rb +8 -0
- data/lib/puppet/indirector/node/rest.rb +24 -0
- data/lib/puppet/indirector/node/yaml.rb +0 -6
- data/lib/puppet/indirector/report/json.rb +34 -0
- data/lib/puppet/indirector/report/processor.rb +4 -3
- data/lib/puppet/indirector/report/rest.rb +19 -0
- data/lib/puppet/indirector/report/yaml.rb +23 -0
- data/lib/puppet/indirector/request.rb +49 -28
- data/lib/puppet/indirector/resource/ral.rb +7 -4
- data/lib/puppet/indirector/resource/validator.rb +1 -1
- data/lib/puppet/indirector/rest.rb +30 -66
- data/lib/puppet/indirector/ssl_file.rb +13 -52
- data/lib/puppet/indirector/status/rest.rb +18 -0
- data/lib/puppet/indirector/terminus.rb +11 -4
- data/lib/puppet/indirector/yaml.rb +5 -5
- data/lib/puppet/indirector.rb +3 -3
- data/lib/puppet/info_service/class_information_service.rb +1 -1
- data/lib/puppet/info_service/plan_information_service.rb +36 -0
- data/lib/puppet/info_service/task_information_service.rb +7 -3
- data/lib/puppet/info_service.rb +9 -0
- data/lib/puppet/interface/action.rb +23 -10
- data/lib/puppet/interface/action_builder.rb +8 -0
- data/lib/puppet/interface/action_manager.rb +2 -1
- data/lib/puppet/interface/documentation.rb +11 -7
- data/lib/puppet/interface/face_collection.rb +9 -4
- data/lib/puppet/interface/option.rb +4 -2
- data/lib/puppet/interface/option_manager.rb +5 -3
- data/lib/puppet/interface.rb +5 -3
- data/lib/puppet/loaders.rb +10 -1
- data/lib/puppet/metatype/manager.rb +81 -83
- data/lib/puppet/module/plan.rb +159 -0
- data/lib/puppet/module/task.rb +216 -32
- data/lib/puppet/module.rb +51 -39
- data/lib/puppet/module_tool/applications/application.rb +7 -6
- data/lib/puppet/module_tool/applications/checksummer.rb +3 -3
- data/lib/puppet/module_tool/applications/installer.rb +72 -13
- data/lib/puppet/module_tool/applications/uninstaller.rb +6 -5
- data/lib/puppet/module_tool/applications/unpacker.rb +4 -4
- data/lib/puppet/module_tool/applications/upgrader.rb +12 -8
- data/lib/puppet/module_tool/applications.rb +0 -1
- data/lib/puppet/module_tool/contents_description.rb +2 -1
- data/lib/puppet/module_tool/dependency.rb +1 -1
- data/lib/puppet/module_tool/errors/shared.rb +34 -2
- data/lib/puppet/module_tool/installed_modules.rb +3 -3
- data/lib/puppet/module_tool/local_tarball.rb +3 -3
- data/lib/puppet/module_tool/metadata.rb +5 -8
- data/lib/puppet/module_tool/shared_behaviors.rb +8 -7
- data/lib/puppet/module_tool/tar/mini.rb +14 -4
- data/lib/puppet/module_tool.rb +4 -6
- data/lib/puppet/network/authconfig.rb +5 -16
- data/lib/puppet/network/authstore.rb +3 -2
- data/lib/puppet/network/format_support.rb +15 -10
- data/lib/puppet/network/formats.rb +168 -10
- data/lib/puppet/network/http/api/indirected_routes.rb +31 -20
- data/lib/puppet/network/http/api/master/v3/environment.rb +5 -2
- data/lib/puppet/network/http/api/master/v3/environments.rb +2 -3
- data/lib/puppet/network/http/api.rb +1 -10
- data/lib/puppet/network/http/base_pool.rb +36 -0
- data/lib/puppet/network/http/compression.rb +8 -1
- data/lib/puppet/network/http/connection.rb +59 -36
- data/lib/puppet/network/http/connection_adapter.rb +184 -0
- data/lib/puppet/network/http/error.rb +3 -3
- data/lib/puppet/network/http/factory.rb +16 -18
- data/lib/puppet/network/http/handler.rb +60 -27
- data/lib/puppet/network/http/nocache_pool.rb +11 -4
- data/lib/puppet/network/http/pool.rb +24 -16
- data/lib/puppet/network/http/request.rb +2 -1
- data/lib/puppet/network/http/route.rb +4 -3
- data/lib/puppet/network/http/session.rb +3 -2
- data/lib/puppet/network/http/site.rb +5 -1
- data/lib/puppet/network/http.rb +2 -7
- data/lib/puppet/network/http_pool.rb +35 -1
- data/lib/puppet/network/resolver.rb +140 -67
- data/lib/puppet/network/rights.rb +3 -2
- data/lib/puppet/network/uri.rb +18 -0
- data/lib/puppet/node/environment.rb +65 -62
- data/lib/puppet/node/facts.rb +28 -1
- data/lib/puppet/node.rb +65 -8
- data/lib/puppet/pal/catalog_compiler.rb +108 -0
- data/lib/puppet/pal/compiler.rb +222 -0
- data/lib/puppet/pal/function_signature.rb +52 -0
- data/lib/puppet/pal/json_catalog_encoder.rb +67 -0
- data/lib/puppet/pal/pal_api.rb +15 -0
- data/lib/puppet/pal/pal_impl.rb +588 -0
- data/lib/puppet/pal/plan_signature.rb +71 -0
- data/lib/puppet/pal/script_compiler.rb +73 -0
- data/lib/puppet/pal/task_signature.rb +58 -0
- data/lib/puppet/parameter/boolean.rb +1 -1
- data/lib/puppet/parameter/value_collection.rb +8 -8
- data/lib/puppet/parameter.rb +17 -10
- data/lib/puppet/parser/abstract_compiler.rb +36 -0
- data/lib/puppet/parser/ast/branch.rb +4 -4
- data/lib/puppet/parser/ast/leaf.rb +10 -4
- data/lib/puppet/parser/ast/pops_bridge.rb +34 -68
- data/lib/puppet/parser/ast/resourceparam.rb +1 -1
- data/lib/puppet/parser/ast.rb +5 -9
- data/lib/puppet/parser/catalog_compiler.rb +56 -0
- data/lib/puppet/parser/compiler/catalog_validator/env_relationship_validator.rb +3 -1
- data/lib/puppet/parser/compiler/catalog_validator/relationship_validator.rb +9 -2
- data/lib/puppet/parser/compiler/catalog_validator/site_validator.rb +2 -0
- data/lib/puppet/parser/compiler.rb +73 -93
- data/lib/puppet/parser/environment_compiler.rb +4 -1
- data/lib/puppet/parser/files.rb +2 -1
- data/lib/puppet/parser/functions/assert_type.rb +3 -3
- data/lib/puppet/parser/functions/create_resources.rb +18 -14
- data/lib/puppet/parser/functions/each.rb +2 -2
- data/lib/puppet/parser/functions/epp.rb +3 -3
- data/lib/puppet/parser/functions/fail.rb +8 -1
- data/lib/puppet/parser/functions/filter.rb +3 -2
- data/lib/puppet/parser/functions/fqdn_rand.rb +27 -4
- data/lib/puppet/parser/functions/generate.rb +8 -7
- data/lib/puppet/parser/functions/hiera.rb +4 -4
- data/lib/puppet/parser/functions/hiera_array.rb +5 -5
- data/lib/puppet/parser/functions/hiera_hash.rb +6 -6
- data/lib/puppet/parser/functions/hiera_include.rb +10 -11
- data/lib/puppet/parser/functions/inline_epp.rb +5 -5
- data/lib/puppet/parser/functions/inline_template.rb +7 -1
- data/lib/puppet/parser/functions/lest.rb +1 -1
- data/lib/puppet/parser/functions/lookup.rb +1 -1
- data/lib/puppet/parser/functions/map.rb +1 -1
- data/lib/puppet/parser/functions/new.rb +32 -47
- data/lib/puppet/parser/functions/realize.rb +6 -0
- data/lib/puppet/parser/functions/reduce.rb +1 -1
- data/lib/puppet/parser/functions/return.rb +22 -1
- data/lib/puppet/parser/functions/reverse_each.rb +2 -2
- data/lib/puppet/parser/functions/scanf.rb +1 -1
- data/lib/puppet/parser/functions/sha256.rb +5 -0
- data/lib/puppet/parser/functions/sprintf.rb +12 -1
- data/lib/puppet/parser/functions/step.rb +1 -1
- data/lib/puppet/parser/functions/tag.rb +6 -0
- data/lib/puppet/parser/functions/tagged.rb +6 -3
- data/lib/puppet/parser/functions/template.rb +5 -0
- data/lib/puppet/parser/functions/then.rb +1 -1
- data/lib/puppet/parser/functions/with.rb +4 -4
- data/lib/puppet/parser/functions.rb +60 -17
- data/lib/puppet/parser/parser_factory.rb +1 -1
- data/lib/puppet/parser/relationship.rb +2 -1
- data/lib/puppet/parser/resource/param.rb +18 -5
- data/lib/puppet/parser/resource.rb +11 -8
- data/lib/puppet/parser/scope.rb +48 -22
- data/lib/puppet/parser/script_compiler.rb +123 -0
- data/lib/puppet/parser/templatewrapper.rb +4 -2
- data/lib/puppet/parser/type_loader.rb +15 -14
- data/lib/puppet/parser.rb +1 -0
- data/lib/puppet/plugins/configuration.rb +5 -1
- data/lib/puppet/pops/adaptable.rb +8 -17
- data/lib/puppet/pops/adapters.rb +22 -4
- data/lib/puppet/pops/evaluator/access_operator.rb +39 -5
- data/lib/puppet/pops/evaluator/closure.rb +19 -9
- data/lib/puppet/pops/evaluator/collector_transformer.rb +1 -1
- data/lib/puppet/pops/evaluator/collectors/abstract_collector.rb +4 -4
- data/lib/puppet/pops/evaluator/collectors/catalog_collector.rb +1 -1
- data/lib/puppet/pops/evaluator/collectors/exported_collector.rb +3 -2
- data/lib/puppet/pops/evaluator/collectors/fixed_set_collector.rb +2 -1
- data/lib/puppet/pops/evaluator/compare_operator.rb +7 -5
- data/lib/puppet/pops/evaluator/deferred_resolver.rb +132 -0
- data/lib/puppet/pops/evaluator/epp_evaluator.rb +15 -2
- data/lib/puppet/pops/evaluator/evaluator_impl.rb +82 -16
- data/lib/puppet/pops/evaluator/external_syntax_support.rb +6 -5
- data/lib/puppet/pops/evaluator/literal_evaluator.rb +1 -1
- data/lib/puppet/pops/evaluator/runtime3_converter.rb +24 -5
- data/lib/puppet/pops/evaluator/runtime3_resource_support.rb +5 -3
- data/lib/puppet/pops/evaluator/runtime3_support.rb +18 -21
- data/lib/puppet/pops/functions/dispatch.rb +13 -6
- data/lib/puppet/pops/functions/function.rb +2 -2
- data/lib/puppet/pops/issue_reporter.rb +18 -1
- data/lib/puppet/pops/issues.rb +73 -10
- data/lib/puppet/pops/loader/base_loader.rb +14 -2
- data/lib/puppet/pops/loader/dependency_loader.rb +11 -2
- data/lib/puppet/pops/loader/gem_support.rb +4 -2
- data/lib/puppet/pops/loader/generic_plan_instantiator.rb +28 -0
- data/lib/puppet/pops/loader/loader.rb +26 -5
- data/lib/puppet/pops/loader/loader_paths.rb +221 -32
- data/lib/puppet/pops/loader/module_loaders.rb +242 -40
- data/lib/puppet/pops/loader/puppet_plan_instantiator.rb +93 -0
- data/lib/puppet/pops/loader/puppet_resource_type_impl_instantiator.rb +9 -9
- data/lib/puppet/pops/loader/ruby_data_type_instantiator.rb +39 -0
- data/lib/puppet/pops/loader/ruby_function_instantiator.rb +1 -2
- data/lib/puppet/pops/loader/ruby_legacy_function_instantiator.rb +121 -0
- data/lib/puppet/pops/loader/runtime3_type_loader.rb +10 -3
- data/lib/puppet/pops/loader/static_loader.rb +23 -44
- data/lib/puppet/pops/loader/task_instantiator.rb +44 -0
- data/lib/puppet/pops/loader/type_definition_instantiator.rb +8 -1
- data/lib/puppet/pops/loaders.rb +169 -50
- data/lib/puppet/pops/lookup/context.rb +1 -1
- data/lib/puppet/pops/lookup/data_dig_function_provider.rb +1 -1
- data/lib/puppet/pops/lookup/global_data_provider.rb +1 -1
- data/lib/puppet/pops/lookup/hiera_config.rb +16 -2
- data/lib/puppet/pops/lookup/interpolation.rb +3 -2
- data/lib/puppet/pops/lookup/invocation.rb +10 -3
- data/lib/puppet/pops/lookup/key_recorder.rb +18 -0
- data/lib/puppet/pops/lookup/lookup_adapter.rb +65 -9
- data/lib/puppet/pops/lookup/sub_lookup.rb +1 -1
- data/lib/puppet/pops/lookup.rb +1 -0
- data/lib/puppet/pops/merge_strategy.rb +22 -18
- data/lib/puppet/pops/model/ast.pp +19 -0
- data/lib/puppet/pops/model/ast.rb +129 -1
- data/lib/puppet/pops/model/ast_transformer.rb +1 -1
- data/lib/puppet/pops/model/factory.rb +93 -13
- data/lib/puppet/pops/model/model_label_provider.rb +9 -1
- data/lib/puppet/pops/model/model_tree_dumper.rb +16 -1
- data/lib/puppet/pops/model/pn_transformer.rb +401 -0
- data/lib/puppet/pops/model/tree_dumper.rb +1 -1
- data/lib/puppet/pops/parser/code_merger.rb +4 -4
- data/lib/puppet/pops/parser/egrammar.ra +60 -18
- data/lib/puppet/pops/parser/eparser.rb +1926 -1745
- data/lib/puppet/pops/parser/epp_parser.rb +1 -1
- data/lib/puppet/pops/parser/epp_support.rb +9 -6
- data/lib/puppet/pops/parser/evaluating_parser.rb +9 -12
- data/lib/puppet/pops/parser/heredoc_support.rb +20 -10
- data/lib/puppet/pops/parser/interpolation_support.rb +16 -11
- data/lib/puppet/pops/parser/lexer2.rb +109 -100
- data/lib/puppet/pops/parser/lexer_support.rb +5 -4
- data/lib/puppet/pops/parser/locatable.rb +1 -1
- data/lib/puppet/pops/parser/locator.rb +116 -103
- data/lib/puppet/pops/parser/parser_support.rb +14 -5
- data/lib/puppet/pops/parser/pn_parser.rb +317 -0
- data/lib/puppet/pops/parser/slurp_support.rb +1 -3
- data/lib/puppet/pops/pcore.rb +43 -10
- data/lib/puppet/pops/pn.rb +236 -0
- data/lib/puppet/pops/puppet_stack.rb +55 -37
- data/lib/puppet/pops/resource/param.rb +1 -1
- data/lib/puppet/pops/resource/resource_type_impl.rb +4 -2
- data/lib/puppet/pops/serialization/abstract_reader.rb +4 -0
- data/lib/puppet/pops/serialization/abstract_writer.rb +6 -0
- data/lib/puppet/pops/serialization/extension.rb +1 -0
- data/lib/puppet/pops/serialization/from_data_converter.rb +68 -13
- data/lib/puppet/pops/serialization/json.rb +7 -7
- data/lib/puppet/pops/serialization/json_path.rb +5 -4
- data/lib/puppet/pops/serialization/object.rb +3 -4
- data/lib/puppet/pops/serialization/serializer.rb +2 -1
- data/lib/puppet/pops/serialization/to_data_converter.rb +24 -12
- data/lib/puppet/pops/serialization/to_stringified_converter.rb +226 -0
- data/lib/puppet/pops/serialization.rb +4 -2
- data/lib/puppet/pops/time/timespan.rb +4 -6
- data/lib/puppet/pops/types/class_loader.rb +6 -3
- data/lib/puppet/pops/types/implementation_registry.rb +28 -35
- data/lib/puppet/pops/types/iterable.rb +68 -13
- data/lib/puppet/pops/types/p_binary_type.rb +1 -2
- data/lib/puppet/pops/types/p_init_type.rb +1 -1
- data/lib/puppet/pops/types/p_meta_type.rb +5 -1
- data/lib/puppet/pops/types/p_object_type.rb +152 -17
- data/lib/puppet/pops/types/p_object_type_extension.rb +228 -0
- data/lib/puppet/pops/types/p_sem_ver_range_type.rb +0 -1
- data/lib/puppet/pops/types/p_sem_ver_type.rb +18 -4
- data/lib/puppet/pops/types/p_sensitive_type.rb +11 -1
- data/lib/puppet/pops/types/p_timespan_type.rb +4 -4
- data/lib/puppet/pops/types/p_type_set_type.rb +28 -2
- data/lib/puppet/pops/types/p_uri_type.rb +190 -0
- data/lib/puppet/pops/types/puppet_object.rb +15 -1
- data/lib/puppet/pops/types/ruby_generator.rb +49 -58
- data/lib/puppet/pops/types/string_converter.rb +55 -23
- data/lib/puppet/pops/types/tree_iterators.rb +5 -1
- data/lib/puppet/pops/types/type_acceptor.rb +1 -1
- data/lib/puppet/pops/types/type_calculator.rb +45 -16
- data/lib/puppet/pops/types/type_factory.rb +46 -9
- data/lib/puppet/pops/types/type_formatter.rb +79 -17
- data/lib/puppet/pops/types/type_mismatch_describer.rb +3 -3
- data/lib/puppet/pops/types/type_parser.rb +112 -15
- data/lib/puppet/pops/types/type_with_members.rb +43 -0
- data/lib/puppet/pops/types/types.rb +231 -115
- data/lib/puppet/pops/utils.rb +2 -2
- data/lib/puppet/pops/validation/checker4_0.rb +181 -12
- data/lib/puppet/pops/validation/tasks_checker.rb +105 -0
- data/lib/puppet/pops/validation/validator_factory_4_0.rb +14 -8
- data/lib/puppet/pops/validation.rb +13 -20
- data/lib/puppet/pops/visitor.rb +12 -6
- data/lib/puppet/pops.rb +2 -1
- data/lib/puppet/property/ensure.rb +3 -2
- data/lib/puppet/property/keyvalue.rb +72 -9
- data/lib/puppet/property/list.rb +3 -2
- data/lib/puppet/property.rb +21 -18
- data/lib/puppet/provider/aix_object.rb +485 -0
- data/lib/puppet/provider/exec/posix.rb +16 -4
- data/lib/puppet/provider/exec.rb +71 -64
- data/lib/puppet/provider/file/posix.rb +11 -3
- data/lib/puppet/provider/file/windows.rb +50 -2
- data/lib/puppet/provider/group/aix.rb +69 -113
- data/lib/puppet/provider/group/groupadd.rb +92 -24
- data/lib/puppet/provider/group/ldap.rb +7 -4
- data/lib/puppet/provider/group/pw.rb +4 -2
- data/lib/puppet/provider/group/windows_adsi.rb +12 -8
- data/lib/puppet/provider/ldap.rb +8 -4
- data/lib/puppet/provider/nameservice/directoryservice.rb +12 -8
- data/lib/puppet/provider/nameservice/objectadd.rb +13 -24
- data/lib/puppet/provider/nameservice/pw.rb +14 -14
- data/lib/puppet/provider/nameservice.rb +20 -29
- data/lib/puppet/provider/network_device.rb +4 -2
- data/lib/puppet/provider/package/aix.rb +21 -4
- data/lib/puppet/provider/package/appdmg.rb +4 -3
- data/lib/puppet/provider/package/apple.rb +2 -2
- data/lib/puppet/provider/package/apt.rb +156 -10
- data/lib/puppet/provider/package/aptitude.rb +7 -1
- data/lib/puppet/provider/package/blastwave.rb +2 -1
- data/lib/puppet/provider/package/dnf.rb +7 -4
- data/lib/puppet/provider/package/dnfmodule.rb +141 -0
- data/lib/puppet/provider/package/dpkg.rb +51 -14
- data/lib/puppet/provider/package/fink.rb +22 -4
- data/lib/puppet/provider/package/gem.rb +151 -53
- data/lib/puppet/provider/package/macports.rb +8 -5
- data/lib/puppet/provider/package/nim.rb +19 -10
- data/lib/puppet/provider/package/openbsd.rb +30 -12
- data/lib/puppet/provider/package/opkg.rb +2 -1
- data/lib/puppet/provider/package/pacman.rb +9 -12
- data/lib/puppet/provider/package/pip.rb +271 -115
- data/lib/puppet/provider/package/pip2.rb +17 -0
- data/lib/puppet/provider/package/pip3.rb +2 -5
- data/lib/puppet/provider/package/pkg.rb +57 -10
- data/lib/puppet/provider/package/pkgdmg.rb +8 -7
- data/lib/puppet/provider/package/pkgng.rb +56 -26
- data/lib/puppet/provider/package/pkgutil.rb +4 -3
- data/lib/puppet/provider/package/portage.rb +32 -23
- data/lib/puppet/provider/package/portupgrade.rb +2 -1
- data/lib/puppet/provider/package/puppet_gem.rb +12 -3
- data/lib/puppet/provider/package/puppetserver_gem.rb +171 -0
- data/lib/puppet/provider/package/rpm.rb +87 -242
- data/lib/puppet/provider/package/sun.rb +2 -2
- data/lib/puppet/provider/package/windows/exe_package.rb +45 -10
- data/lib/puppet/provider/package/windows/msi_package.rb +8 -0
- data/lib/puppet/provider/package/windows/package.rb +14 -4
- data/lib/puppet/provider/package/windows.rb +21 -4
- data/lib/puppet/provider/package/yum.rb +143 -39
- data/lib/puppet/provider/package/zypper.rb +68 -7
- data/lib/puppet/provider/package.rb +4 -1
- data/lib/puppet/provider/package_targetable.rb +69 -0
- data/lib/puppet/provider/parsedfile.rb +43 -12
- data/lib/puppet/provider/service/base.rb +10 -7
- data/lib/puppet/provider/service/daemontools.rb +9 -9
- data/lib/puppet/provider/service/debian.rb +3 -0
- data/lib/puppet/provider/service/init.rb +11 -9
- data/lib/puppet/provider/service/launchd.rb +49 -17
- data/lib/puppet/provider/service/openbsd.rb +1 -1
- data/lib/puppet/provider/service/rcng.rb +2 -2
- data/lib/puppet/provider/service/redhat.rb +3 -2
- data/lib/puppet/provider/service/runit.rb +2 -8
- data/lib/puppet/provider/service/service.rb +2 -1
- data/lib/puppet/provider/service/smf.rb +60 -6
- data/lib/puppet/provider/service/systemd.rb +70 -26
- data/lib/puppet/provider/service/upstart.rb +39 -13
- data/lib/puppet/provider/service/windows.rb +117 -41
- data/lib/puppet/provider/user/aix.rb +223 -244
- data/lib/puppet/provider/user/directoryservice.rb +72 -16
- data/lib/puppet/provider/user/hpux.rb +2 -2
- data/lib/puppet/provider/user/ldap.rb +8 -4
- data/lib/puppet/provider/user/openbsd.rb +3 -2
- data/lib/puppet/provider/user/pw.rb +15 -5
- data/lib/puppet/provider/user/user_role_add.rb +17 -5
- data/lib/puppet/provider/user/useradd.rb +237 -62
- data/lib/puppet/provider/user/windows_adsi.rb +26 -2
- data/lib/puppet/provider.rb +41 -19
- data/lib/puppet/reference/configuration.rb +12 -3
- data/lib/puppet/reference/indirection.rb +2 -2
- data/lib/puppet/reference/metaparameter.rb +1 -3
- data/lib/puppet/reference/providers.rb +6 -7
- data/lib/puppet/reference/report.rb +1 -1
- data/lib/puppet/reference/type.rb +14 -19
- data/lib/puppet/relationship.rb +4 -9
- data/lib/puppet/reports/http.rb +15 -8
- data/lib/puppet/reports/store.rb +1 -1
- data/lib/puppet/reports.rb +3 -3
- data/lib/puppet/resource/capability_finder.rb +18 -14
- data/lib/puppet/resource/catalog.rb +49 -64
- data/lib/puppet/resource/status.rb +11 -3
- data/lib/puppet/resource/type.rb +28 -11
- data/lib/puppet/resource/type_collection.rb +27 -20
- data/lib/puppet/resource.rb +100 -24
- data/lib/puppet/rest/errors.rb +15 -0
- data/lib/puppet/rest/response.rb +35 -0
- data/lib/puppet/rest/route.rb +85 -0
- data/lib/puppet/rest/routes.rb +135 -0
- data/lib/puppet/runtime.rb +66 -0
- data/lib/puppet/settings/alias_setting.rb +37 -0
- data/lib/puppet/settings/base_setting.rb +34 -4
- data/lib/puppet/settings/config_file.rb +5 -5
- data/lib/puppet/settings/environment_conf.rb +12 -2
- data/lib/puppet/settings/file_setting.rb +3 -2
- data/lib/puppet/settings/http_extra_headers_setting.rb +25 -0
- data/lib/puppet/settings/ini_file.rb +67 -12
- data/lib/puppet/settings/server_list_setting.rb +9 -0
- data/lib/puppet/settings/ttl_setting.rb +5 -0
- data/lib/puppet/settings.rb +220 -67
- data/lib/puppet/ssl/base.rb +4 -11
- data/lib/puppet/ssl/certificate.rb +11 -4
- data/lib/puppet/ssl/certificate_request.rb +31 -23
- data/lib/puppet/ssl/certificate_request_attributes.rb +1 -1
- data/lib/puppet/ssl/certificate_signer.rb +11 -0
- data/lib/puppet/ssl/error.rb +26 -0
- data/lib/puppet/ssl/host.rb +291 -186
- data/lib/puppet/ssl/key.rb +5 -7
- data/lib/puppet/ssl/oids.rb +4 -3
- data/lib/puppet/ssl/openssl_loader.rb +24 -0
- data/lib/puppet/ssl/ssl_context.rb +30 -0
- data/lib/puppet/ssl/ssl_provider.rb +333 -0
- data/lib/puppet/ssl/state_machine.rb +472 -0
- data/lib/puppet/ssl/validator/default_validator.rb +61 -25
- data/lib/puppet/ssl/validator/no_validator.rb +3 -1
- data/lib/puppet/ssl/validator.rb +2 -1
- data/lib/puppet/ssl/verifier.rb +140 -0
- data/lib/puppet/ssl/verifier_adapter.rb +58 -0
- data/lib/puppet/ssl.rb +9 -3
- data/lib/puppet/syntax_checkers/base64.rb +1 -1
- data/lib/puppet/syntax_checkers/epp.rb +34 -0
- data/lib/puppet/syntax_checkers/json.rb +1 -1
- data/lib/puppet/syntax_checkers/pp.rb +34 -0
- data/lib/puppet/test/test_helper.rb +33 -18
- data/lib/puppet/thread_local.rb +7 -0
- data/lib/puppet/transaction/additional_resource_generator.rb +3 -3
- data/lib/puppet/transaction/event.rb +40 -16
- data/lib/puppet/transaction/event_manager.rb +17 -5
- data/lib/puppet/transaction/persistence.rb +22 -2
- data/lib/puppet/transaction/report.rb +57 -34
- data/lib/puppet/transaction/resource_harness.rb +9 -4
- data/lib/puppet/transaction.rb +77 -23
- data/lib/puppet/trusted_external.rb +41 -0
- data/lib/puppet/type/component.rb +2 -1
- data/lib/puppet/type/exec.rb +156 -66
- data/lib/puppet/type/file/checksum.rb +10 -4
- data/lib/puppet/type/file/checksum_value.rb +4 -3
- data/lib/puppet/type/file/content.rb +24 -8
- data/lib/puppet/type/file/ctime.rb +2 -1
- data/lib/puppet/type/file/data_sync.rb +8 -3
- data/lib/puppet/type/file/ensure.rb +11 -8
- data/lib/puppet/type/file/mode.rb +15 -3
- data/lib/puppet/type/file/mtime.rb +2 -1
- data/lib/puppet/type/file/selcontext.rb +2 -1
- data/lib/puppet/type/file/source.rb +98 -75
- data/lib/puppet/type/file/target.rb +2 -1
- data/lib/puppet/type/file/type.rb +2 -1
- data/lib/puppet/type/file.rb +146 -51
- data/lib/puppet/type/filebucket.rb +15 -11
- data/lib/puppet/type/group.rb +43 -12
- data/lib/puppet/type/notify.rb +6 -5
- data/lib/puppet/type/package.rb +185 -35
- data/lib/puppet/type/resources.rb +15 -4
- data/lib/puppet/type/schedule.rb +59 -99
- data/lib/puppet/type/service.rb +76 -25
- data/lib/puppet/type/stage.rb +1 -1
- data/lib/puppet/type/tidy.rb +57 -18
- data/lib/puppet/type/user.rb +186 -101
- data/lib/puppet/type.rb +159 -90
- data/lib/puppet/util/at_fork.rb +1 -1
- data/lib/puppet/util/autoload.rb +51 -62
- data/lib/puppet/util/backups.rb +1 -1
- data/lib/puppet/util/character_encoding.rb +11 -29
- data/lib/puppet/util/checksums.rb +101 -7
- data/lib/puppet/util/classgen.rb +12 -12
- data/lib/puppet/util/command_line/trollop.rb +1 -1
- data/lib/puppet/util/command_line.rb +16 -10
- data/lib/puppet/util/connection.rb +88 -0
- data/lib/puppet/util/diff.rb +4 -2
- data/lib/puppet/util/errors.rb +0 -2
- data/lib/puppet/util/execution.rb +28 -11
- data/lib/puppet/util/fact_dif.rb +81 -0
- data/lib/puppet/util/feature.rb +77 -43
- data/lib/puppet/util/fileparsing.rb +79 -46
- data/lib/puppet/util/filetype.rb +62 -13
- data/lib/puppet/util/http_proxy.rb +37 -25
- data/lib/puppet/util/inifile.rb +3 -4
- data/lib/puppet/util/instance_loader.rb +16 -29
- data/lib/puppet/util/json.rb +89 -0
- data/lib/puppet/util/json_lockfile.rb +3 -3
- data/lib/puppet/util/ldap/connection.rb +11 -9
- data/lib/puppet/util/ldap/manager.rb +6 -3
- data/lib/puppet/util/log/destinations.rb +21 -17
- data/lib/puppet/util/log.rb +26 -17
- data/lib/puppet/util/logging.rb +36 -47
- data/lib/puppet/util/metric.rb +4 -3
- data/lib/puppet/util/monkey_patches.rb +76 -23
- data/lib/puppet/util/network_device/base.rb +1 -1
- data/lib/puppet/util/network_device/config.rb +2 -3
- data/lib/puppet/util/package/version/debian.rb +175 -0
- data/lib/puppet/util/package/version/gem.rb +15 -0
- data/lib/puppet/util/package/version/pip.rb +167 -0
- data/lib/puppet/util/package/version/range/eq.rb +14 -0
- data/lib/puppet/util/package/version/range/gt.rb +14 -0
- data/lib/puppet/util/package/version/range/gt_eq.rb +14 -0
- data/lib/puppet/util/package/version/range/lt.rb +14 -0
- data/lib/puppet/util/package/version/range/lt_eq.rb +14 -0
- data/lib/puppet/util/package/version/range/min_max.rb +21 -0
- data/lib/puppet/util/package/version/range/simple.rb +11 -0
- data/lib/puppet/util/package/version/range.rb +53 -0
- data/lib/puppet/util/package/version/rpm.rb +73 -0
- data/lib/puppet/util/package.rb +25 -16
- data/lib/puppet/util/pidlock.rb +45 -5
- data/lib/puppet/util/platform.rb +48 -0
- data/lib/puppet/util/plist.rb +10 -4
- data/lib/puppet/util/posix.rb +69 -3
- data/lib/puppet/util/provider_features.rb +5 -10
- data/lib/puppet/util/rdoc/code_objects.rb +2 -1
- data/lib/puppet/util/rdoc/generators/puppet_generator.rb +6 -4
- data/lib/puppet/util/rdoc/parser/puppet_parser_core.rb +2 -2
- data/lib/puppet/util/rdoc/parser/puppet_parser_rdoc2.rb +1 -1
- data/lib/puppet/util/rdoc.rb +2 -2
- data/lib/puppet/util/reference.rb +10 -16
- data/lib/puppet/util/resource_template.rb +1 -1
- data/lib/puppet/util/rpm_compare.rb +193 -0
- data/lib/puppet/util/rubygems.rb +6 -14
- data/lib/puppet/util/run_mode.rb +6 -2
- data/lib/puppet/util/selinux.rb +41 -8
- data/lib/puppet/util/skip_tags.rb +4 -0
- data/lib/puppet/util/ssl.rb +31 -1
- data/lib/puppet/util/storage.rb +13 -2
- data/lib/puppet/util/suidmanager.rb +8 -7
- data/lib/puppet/util/symbolic_file_mode.rb +29 -17
- data/lib/puppet/util/tag_set.rb +1 -1
- data/lib/puppet/util/tagging.rb +19 -5
- data/lib/puppet/util/warnings.rb +0 -2
- data/lib/puppet/util/windows/adsi.rb +305 -206
- data/lib/puppet/util/windows/api_types.rb +60 -33
- data/lib/puppet/util/windows/com.rb +2 -1
- data/lib/puppet/util/windows/eventlog.rb +1 -6
- data/lib/puppet/util/windows/file.rb +20 -2
- data/lib/puppet/util/windows/monkey_patches/dir.rb +40 -0
- data/lib/puppet/util/windows/principal.rb +24 -14
- data/lib/puppet/util/windows/process.rb +93 -4
- data/lib/puppet/util/windows/registry.rb +48 -16
- data/lib/puppet/util/windows/root_certs.rb +1 -1
- data/lib/puppet/util/windows/security.rb +66 -16
- data/lib/puppet/util/windows/service.rb +1147 -0
- data/lib/puppet/util/windows/sid.rb +68 -12
- data/lib/puppet/util/windows/user.rb +254 -14
- data/lib/puppet/util/windows.rb +23 -2
- data/lib/puppet/util/yaml.rb +62 -7
- data/lib/puppet/util.rb +130 -55
- data/lib/puppet/vendor/pathspec/lib/pathspec/gitignorespec.rb +18 -18
- data/lib/puppet/vendor/require_vendored.rb +0 -1
- data/lib/puppet/vendor.rb +1 -1
- data/lib/puppet/version.rb +2 -5
- data/lib/puppet/x509/cert_provider.rb +355 -0
- data/lib/puppet/x509/pem_store.rb +55 -0
- data/lib/puppet/x509.rb +7 -0
- data/lib/puppet.rb +83 -36
- data/lib/puppet_pal.rb +8 -0
- data/locales/puppet.pot +5 -9763
- data/man/man5/puppet.conf.5 +651 -390
- data/man/man8/puppet-agent.8 +88 -67
- data/man/man8/puppet-apply.8 +8 -5
- data/man/man8/puppet-catalog.8 +39 -11
- data/man/man8/puppet-config.8 +42 -8
- data/man/man8/puppet-describe.8 +1 -1
- data/man/man8/puppet-device.8 +55 -22
- data/man/man8/puppet-doc.8 +1 -1
- data/man/man8/puppet-epp.8 +35 -13
- data/man/man8/puppet-facts.8 +144 -6
- data/man/man8/puppet-filebucket.8 +58 -12
- data/man/man8/puppet-generate.8 +2 -2
- data/man/man8/puppet-help.8 +7 -4
- data/man/man8/puppet-key.8 +9 -15
- data/man/man8/puppet-lookup.8 +10 -7
- data/man/man8/puppet-man.8 +11 -5
- data/man/man8/puppet-module.8 +28 -106
- data/man/man8/puppet-node.8 +13 -13
- data/man/man8/puppet-parser.8 +32 -9
- data/man/man8/puppet-plugin.8 +2 -2
- data/man/man8/puppet-report.8 +9 -6
- data/man/man8/puppet-resource.8 +2 -2
- data/man/man8/puppet-script.8 +70 -0
- data/man/man8/puppet-ssl.8 +59 -0
- data/man/man8/puppet-status.8 +7 -7
- data/man/man8/puppet.8 +12 -3
- data/spec/fixtures/integration/application/agent/cached_deferred_catalog.json +92 -0
- data/spec/fixtures/integration/application/agent/lib/facter/agent_spec_role.rb +3 -0
- data/spec/fixtures/integration/application/apply/environments/spec/modules/amod/lib/puppet/provider/applytest/applytest.rb +2 -0
- data/spec/fixtures/integration/application/apply/environments/spec/modules/amod/lib/puppet/type/applytest.rb +25 -0
- data/spec/fixtures/integration/l10n/envs/prod/modules/demo/Gemfile +4 -0
- data/spec/fixtures/integration/l10n/envs/prod/modules/demo/Rakefile +3 -0
- data/spec/fixtures/integration/l10n/envs/prod/modules/demo/lib/puppet/functions/l10n.rb +8 -0
- data/{lib/puppet/vendor/semantic_puppet → spec/fixtures/integration/l10n/envs/prod/modules/demo}/locales/config.yaml +8 -4
- data/spec/fixtures/integration/l10n/envs/prod/modules/demo/locales/ja/puppet-l10n.po +19 -0
- data/spec/fixtures/integration/l10n/envs/prod/modules/demo/locales/puppet-l10n.pot +20 -0
- data/spec/fixtures/integration/l10n/envs/prod/modules/demo/metadata.json +8 -0
- data/spec/fixtures/ssl/127.0.0.1-key.pem +117 -0
- data/spec/fixtures/ssl/127.0.0.1.pem +69 -0
- data/spec/fixtures/ssl/bad-basic-constraints.pem +81 -0
- data/spec/fixtures/ssl/bad-int-basic-constraints.pem +81 -0
- data/spec/fixtures/ssl/ca.pem +81 -0
- data/spec/fixtures/ssl/crl.pem +40 -0
- data/spec/fixtures/ssl/ec-key.pem +18 -0
- data/spec/fixtures/ssl/ec.pem +49 -0
- data/spec/fixtures/ssl/encrypted-ec-key.pem +21 -0
- data/spec/fixtures/ssl/encrypted-key.pem +120 -0
- data/spec/fixtures/ssl/intermediate-agent-crl.pem +40 -0
- data/spec/fixtures/ssl/intermediate-agent.pem +81 -0
- data/spec/fixtures/ssl/intermediate-crl.pem +46 -0
- data/spec/fixtures/ssl/intermediate.pem +81 -0
- data/spec/fixtures/ssl/netlock-arany-utf8.pem +23 -0
- data/spec/fixtures/ssl/oid-key.pem +117 -0
- data/spec/fixtures/ssl/oid.pem +69 -0
- data/spec/fixtures/ssl/pluto-key.pem +117 -0
- data/spec/fixtures/ssl/pluto.pem +66 -0
- data/spec/fixtures/ssl/request-key.pem +117 -0
- data/spec/fixtures/ssl/request.pem +60 -0
- data/spec/fixtures/ssl/revoked-key.pem +117 -0
- data/spec/fixtures/ssl/revoked.pem +66 -0
- data/spec/fixtures/ssl/signed-key.pem +117 -0
- data/spec/fixtures/ssl/signed.pem +66 -0
- data/spec/fixtures/ssl/tampered-cert.pem +66 -0
- data/spec/fixtures/ssl/tampered-csr.pem +60 -0
- data/spec/fixtures/ssl/trusted_oid_mapping.yaml +5 -0
- data/spec/fixtures/ssl/unknown-127.0.0.1-key.pem +117 -0
- data/spec/fixtures/ssl/unknown-127.0.0.1.pem +69 -0
- data/spec/fixtures/ssl/unknown-ca-key.pem +117 -0
- data/spec/fixtures/ssl/unknown-ca.pem +81 -0
- data/spec/fixtures/unit/forge/bacula-releases.json +128 -0
- data/spec/fixtures/unit/forge/bacula.json +76 -0
- data/spec/fixtures/unit/forge/bacula.tar.gz +0 -0
- data/spec/fixtures/unit/functions/hiera/hiera/backend/hieraspec_backend.rb +22 -0
- data/spec/fixtures/unit/functions/lookup/hiera/backend/custom_backend.rb +18 -0
- data/spec/fixtures/unit/functions/lookup/hiera/backend/other_backend.rb +7 -0
- data/spec/fixtures/unit/pops/binder/bindings_composer/ok/modules/awesome2/lib/puppet_x/awesome2/echo_scheme_handler.rb +1 -1
- data/spec/fixtures/unit/pops/loaders/loaders/dependent_modules_with_metadata/modules/user/manifests/init.pp +6 -6
- data/spec/fixtures/unit/pops/loaders/loaders/mix_4x_and_3x_functions/usee/lib/puppet/parser/functions/bad_func_load.rb +11 -0
- data/spec/fixtures/unit/pops/loaders/loaders/mix_4x_and_3x_functions/usee/lib/puppet/parser/functions/bad_func_load2.rb +11 -0
- data/spec/fixtures/unit/pops/loaders/loaders/mix_4x_and_3x_functions/usee/lib/puppet/parser/functions/bad_func_load3.rb +11 -0
- data/spec/fixtures/unit/pops/loaders/loaders/mix_4x_and_3x_functions/usee/lib/puppet/parser/functions/bad_func_load4.rb +11 -0
- data/spec/fixtures/unit/pops/loaders/loaders/mix_4x_and_3x_functions/usee/lib/puppet/parser/functions/bad_func_load5.rb +12 -0
- data/spec/fixtures/unit/pops/loaders/loaders/mix_4x_and_3x_functions/usee/lib/puppet/parser/functions/func_with_syntax_error.rb +9 -0
- data/spec/fixtures/unit/pops/loaders/loaders/mix_4x_and_3x_functions/usee/lib/puppet/parser/functions/good_func_load.rb +9 -0
- data/spec/fixtures/unit/provider/aix_object/aix_colon_list_real_world_input.out +1 -0
- data/spec/fixtures/unit/provider/aix_object/aix_colon_list_real_world_output.out +1 -0
- data/spec/fixtures/unit/provider/package/dnfmodule/dnf-module-list.txt +19 -0
- data/spec/fixtures/unit/provider/package/pkgng/pkg.query +7 -1
- data/spec/fixtures/unit/provider/package/pkgng/pkg.query.zsh +1 -0
- data/spec/fixtures/unit/provider/package/pkgng/pkg.version +2 -0
- data/spec/fixtures/unit/provider/package/puppetserver_gem/gem-list-local-packages +30 -0
- data/spec/fixtures/unit/provider/package/yum/yum-check-update-subscription-manager.txt +9 -0
- data/spec/fixtures/unit/provider/package/zypper/zypper-search-uninstalled.out +13 -0
- data/spec/fixtures/unit/provider/parsedfile/aliases.txt +2 -0
- data/spec/fixtures/unit/provider/service/smf/svcs_fmri.out +6 -0
- data/spec/fixtures/unit/provider/service/smf/svcs_multiple_fmris.out +13 -0
- data/spec/fixtures/unit/provider/service/systemd/list_unit_files_services +9 -0
- data/spec/fixtures/unit/provider/service/systemd/list_unit_files_services_vendor_preset +9 -0
- data/spec/fixtures/unit/provider/user/aix/aix_passwd_file.out +36 -0
- data/spec/fixtures/vcr/cassettes/Puppet_Type_File/when_sourcing/from_http/using_md5/should_fetch_if_not_on_the_local_disk.yml +1 -102
- data/spec/fixtures/vcr/cassettes/Puppet_Type_File/when_sourcing/from_http/using_md5/should_not_update_if_content_on_disk_is_up-to-date.yml +1 -106
- data/spec/fixtures/vcr/cassettes/Puppet_Type_File/when_sourcing/from_http/using_md5/should_update_if_content_differs_on_disk.yml +1 -106
- data/spec/fixtures/vcr/cassettes/Puppet_Type_File/when_sourcing/from_http/using_mtime/should_fetch_if_mtime_is_older_on_disk.yml +1 -102
- data/spec/fixtures/vcr/cassettes/Puppet_Type_File/when_sourcing/from_http/using_mtime/should_fetch_if_no_header_specified.yml +1 -98
- data/spec/fixtures/vcr/cassettes/Puppet_Type_File/when_sourcing/from_http/using_mtime/should_fetch_if_not_on_the_local_disk.yml +1 -102
- data/spec/fixtures/vcr/cassettes/Puppet_Type_File/when_sourcing/from_http/using_mtime/should_not_update_if_mtime_is_newer_on_disk.yml +1 -102
- data/spec/integration/agent/logging_spec.rb +7 -9
- data/spec/integration/application/agent_spec.rb +848 -0
- data/spec/integration/application/apply_spec.rb +338 -178
- data/spec/integration/application/doc_spec.rb +16 -7
- data/spec/integration/application/filebucket_spec.rb +255 -0
- data/spec/integration/application/help_spec.rb +42 -0
- data/spec/integration/application/lookup_spec.rb +105 -40
- data/spec/integration/application/module_spec.rb +89 -0
- data/spec/integration/application/plugin_spec.rb +123 -0
- data/spec/integration/application/resource_spec.rb +68 -0
- data/spec/integration/application/ssl_spec.rb +20 -0
- data/spec/integration/configurer_spec.rb +109 -12
- data/spec/integration/data_binding_spec.rb +83 -0
- data/spec/integration/defaults_spec.rb +30 -19
- data/spec/integration/directory_environments_spec.rb +17 -17
- data/spec/integration/environments/setting_hooks_spec.rb +1 -1
- data/spec/integration/environments/settings_interpolation_spec.rb +0 -4
- data/spec/integration/http/client_spec.rb +213 -0
- data/spec/integration/indirector/catalog/compiler_spec.rb +10 -11
- data/spec/integration/indirector/direct_file_server_spec.rb +2 -4
- data/spec/integration/indirector/facts/facter_spec.rb +112 -63
- data/spec/integration/indirector/file_content/file_server_spec.rb +7 -8
- data/spec/integration/indirector/file_metadata/file_server_spec.rb +7 -8
- data/spec/integration/l10n/compiler_spec.rb +37 -0
- data/spec/integration/network/authconfig_spec.rb +23 -24
- data/spec/integration/network/formats_spec.rb +0 -1
- data/spec/integration/network/http/api/indirected_routes_spec.rb +9 -38
- data/spec/integration/network/http_pool_spec.rb +293 -0
- data/spec/integration/node/environment_spec.rb +16 -2
- data/spec/integration/node/facts_spec.rb +9 -10
- data/spec/integration/node_spec.rb +6 -11
- data/spec/integration/parser/catalog_spec.rb +8 -8
- data/spec/integration/parser/collection_spec.rb +6 -11
- data/spec/integration/parser/compiler_spec.rb +60 -30
- data/spec/integration/parser/pcore_resource_spec.rb +13 -3
- data/spec/integration/parser/scope_spec.rb +3 -3
- data/spec/integration/parser/script_compiler_spec.rb +113 -0
- data/spec/integration/parser/undef_param_spec.rb +1 -1
- data/spec/integration/provider/file/windows_spec.rb +162 -0
- data/spec/integration/resource/catalog_spec.rb +14 -17
- data/spec/integration/resource/type_collection_spec.rb +3 -8
- data/spec/integration/transaction/report_spec.rb +12 -17
- data/spec/integration/transaction_spec.rb +37 -39
- data/spec/integration/type/exec_spec.rb +71 -47
- data/spec/integration/type/file_spec.rb +142 -42
- data/spec/integration/type/notify_spec.rb +46 -0
- data/spec/integration/type/package_spec.rb +27 -31
- data/spec/integration/type/tidy_spec.rb +1 -2
- data/spec/integration/type_spec.rb +1 -3
- data/spec/integration/util/autoload_spec.rb +10 -8
- data/spec/integration/util/execution_spec.rb +54 -5
- data/spec/integration/util/rdoc/parser_spec.rb +14 -25
- data/spec/integration/util/settings_spec.rb +2 -2
- data/spec/integration/util/windows/adsi_spec.rb +116 -8
- data/spec/integration/util/windows/monkey_patches/dir_spec.rb +11 -0
- data/spec/integration/util/windows/principal_spec.rb +33 -4
- data/spec/integration/util/windows/process_spec.rb +28 -44
- data/spec/integration/util/windows/registry_spec.rb +130 -53
- data/spec/integration/util/windows/security_spec.rb +103 -12
- data/spec/integration/util/windows/user_spec.rb +108 -29
- data/spec/integration/util_spec.rb +9 -38
- data/spec/lib/matchers/json.rb +13 -19
- data/{lib/puppet/ssl → spec/lib/puppet}/certificate_factory.rb +7 -8
- data/spec/lib/puppet/test_ca.rb +164 -0
- data/spec/lib/puppet_spec/compiler.rb +28 -1
- data/spec/lib/puppet_spec/files.rb +28 -24
- data/spec/lib/puppet_spec/fixtures.rb +24 -0
- data/spec/lib/puppet_spec/https.rb +95 -0
- data/spec/lib/puppet_spec/language.rb +34 -35
- data/spec/lib/puppet_spec/matchers.rb +0 -93
- data/spec/lib/puppet_spec/module_tool/shared_functions.rb +3 -3
- data/spec/lib/puppet_spec/modules.rb +39 -4
- data/spec/lib/puppet_spec/puppetserver.rb +179 -0
- data/spec/lib/puppet_spec/scope.rb +1 -2
- data/spec/lib/puppet_spec/settings.rb +7 -1
- data/spec/lib/puppet_spec/ssl.rb +265 -0
- data/spec/shared_behaviours/all_parsedfile_providers.rb +1 -1
- data/spec/shared_behaviours/documentation_on_faces.rb +0 -2
- data/spec/shared_behaviours/file_server_terminus.rb +8 -11
- data/spec/shared_behaviours/file_serving.rb +6 -8
- data/spec/shared_behaviours/hiera_indirections.rb +3 -4
- data/spec/shared_behaviours/iterative_functions.rb +0 -1
- data/spec/shared_behaviours/memory_terminus.rb +2 -2
- data/spec/shared_behaviours/path_parameters.rb +1 -1
- data/spec/shared_behaviours/things_that_declare_options.rb +2 -2
- data/spec/shared_contexts/checksum.rb +4 -1
- data/spec/shared_contexts/digests.rb +46 -1
- data/spec/shared_contexts/https.rb +29 -0
- data/spec/shared_contexts/l10n.rb +32 -0
- data/spec/shared_contexts/types_setup.rb +10 -3
- data/spec/shared_examples/rhel_package_provider.rb +112 -70
- data/spec/spec_helper.rb +49 -22
- data/spec/unit/agent/disabler_spec.rb +4 -5
- data/spec/unit/agent/locker_spec.rb +12 -13
- data/spec/unit/agent_spec.rb +181 -104
- data/spec/unit/application/agent_spec.rb +159 -130
- data/spec/unit/application/apply_spec.rb +199 -145
- data/spec/unit/application/config_spec.rb +224 -5
- data/spec/unit/application/describe_spec.rb +88 -51
- data/spec/unit/application/device_spec.rb +424 -300
- data/spec/unit/application/doc_spec.rb +46 -48
- data/spec/unit/application/face_base_spec.rb +69 -68
- data/spec/unit/application/facts_spec.rb +518 -9
- data/spec/unit/application/filebucket_spec.rb +98 -74
- data/spec/unit/application/indirection_base_spec.rb +8 -6
- data/spec/unit/application/lookup_spec.rb +176 -47
- data/spec/unit/application/man_spec.rb +52 -0
- data/spec/unit/application/resource_spec.rb +76 -51
- data/spec/unit/application/ssl_spec.rb +458 -0
- data/spec/unit/application_spec.rb +171 -94
- data/spec/unit/capability_spec.rb +17 -15
- data/spec/unit/{ssl/certificate_factory_spec.rb → certificate_factory_spec.rb} +11 -22
- data/spec/unit/concurrent/lock_spec.rb +29 -0
- data/spec/unit/concurrent/thread_local_singleton_spec.rb +39 -0
- data/spec/unit/configurer/downloader_spec.rb +41 -21
- data/spec/unit/configurer/fact_handler_spec.rb +6 -11
- data/spec/unit/configurer/plugin_handler_spec.rb +71 -48
- data/spec/unit/configurer_spec.rb +851 -480
- data/spec/unit/confine/exists_spec.rb +17 -15
- data/spec/unit/confine/false_spec.rb +32 -6
- data/spec/unit/confine/feature_spec.rb +7 -5
- data/spec/unit/confine/true_spec.rb +32 -6
- data/spec/unit/confine/variable_spec.rb +14 -15
- data/spec/unit/confine_collection_spec.rb +28 -29
- data/spec/unit/confine_spec.rb +36 -14
- data/spec/unit/confiner_spec.rb +10 -11
- data/spec/unit/context/trusted_information_spec.rb +68 -5
- data/spec/unit/context_spec.rb +119 -38
- data/spec/unit/daemon_spec.rb +39 -107
- data/spec/unit/data_providers/function_data_provider_spec.rb +0 -1
- data/spec/unit/data_providers/hiera_data_provider_spec.rb +4 -5
- data/spec/unit/datatypes_spec.rb +352 -0
- data/spec/unit/defaults_spec.rb +182 -19
- data/spec/unit/environments_spec.rb +592 -104
- data/spec/unit/etc_spec.rb +52 -29
- data/spec/unit/external/pson_spec.rb +0 -1
- data/spec/unit/face/config_spec.rb +247 -33
- data/spec/unit/face/epp_face_spec.rb +63 -9
- data/spec/unit/face/facts_spec.rb +70 -1
- data/spec/unit/face/generate_spec.rb +68 -5
- data/spec/unit/face/help_spec.rb +67 -74
- data/spec/unit/face/key_spec.rb +0 -1
- data/spec/unit/face/module/install_spec.rb +3 -5
- data/spec/unit/face/module/list_spec.rb +2 -73
- data/spec/unit/face/module/search_spec.rb +39 -9
- data/spec/unit/face/module/uninstall_spec.rb +4 -8
- data/spec/unit/face/node_spec.rb +22 -59
- data/spec/unit/face/parser_spec.rb +177 -25
- data/spec/unit/face/plugin_spec.rb +56 -19
- data/spec/unit/face/status_spec.rb +0 -1
- data/spec/unit/facter_impl_spec.rb +31 -0
- data/spec/unit/file_bucket/dipper_spec.rb +39 -28
- data/spec/unit/file_bucket/file_spec.rb +0 -2
- data/spec/unit/file_serving/base_spec.rb +17 -21
- data/spec/unit/file_serving/configuration/parser_spec.rb +49 -28
- data/spec/unit/file_serving/configuration_spec.rb +77 -70
- data/spec/unit/file_serving/content_spec.rb +10 -12
- data/spec/unit/file_serving/fileset_spec.rb +123 -59
- data/spec/unit/file_serving/http_metadata_spec.rb +38 -14
- data/spec/unit/file_serving/metadata_spec.rb +41 -42
- data/spec/unit/file_serving/mount/file_spec.rb +31 -32
- data/spec/unit/file_serving/mount/locales_spec.rb +25 -26
- data/spec/unit/file_serving/mount/modules_spec.rb +14 -15
- data/spec/unit/file_serving/mount/pluginfacts_spec.rb +25 -26
- data/spec/unit/file_serving/mount/plugins_spec.rb +25 -26
- data/spec/unit/file_serving/mount/scripts_spec.rb +69 -0
- data/spec/unit/file_serving/mount/tasks_spec.rb +14 -15
- data/spec/unit/file_serving/mount_spec.rb +0 -1
- data/spec/unit/file_serving/terminus_helper_spec.rb +47 -45
- data/spec/unit/file_serving/terminus_selector_spec.rb +45 -29
- data/spec/unit/file_system/path_pattern_spec.rb +1 -1
- data/spec/unit/file_system/uniquefile_spec.rb +41 -6
- data/spec/unit/file_system_spec.rb +330 -9
- data/spec/unit/forge/errors_spec.rb +1 -1
- data/spec/unit/forge/forge_spec.rb +14 -57
- data/spec/unit/forge/module_release_spec.rb +161 -48
- data/spec/unit/forge/repository_spec.rb +66 -163
- data/spec/unit/forge_spec.rb +47 -114
- data/spec/unit/functions/abs_spec.rb +70 -0
- data/spec/unit/functions/assert_type_spec.rb +2 -2
- data/spec/unit/functions/binary_file_spec.rb +3 -3
- data/spec/unit/functions/break_spec.rb +34 -2
- data/spec/unit/functions/call_spec.rb +59 -5
- data/spec/unit/functions/camelcase_spec.rb +34 -0
- data/spec/unit/functions/capitalize_spec.rb +34 -0
- data/spec/unit/functions/ceiling_spec.rb +65 -0
- data/spec/unit/functions/chomp_spec.rb +46 -0
- data/spec/unit/functions/chop_spec.rb +38 -0
- data/spec/unit/functions/compare_spec.rb +147 -0
- data/spec/unit/functions/contain_spec.rb +2 -3
- data/spec/unit/functions/convert_to_spec.rb +25 -0
- data/spec/unit/functions/defined_spec.rb +0 -1
- data/spec/unit/functions/downcase_spec.rb +34 -0
- data/spec/unit/functions/empty_spec.rb +87 -0
- data/spec/unit/functions/epp_spec.rb +13 -5
- data/spec/unit/functions/filter_spec.rb +4 -4
- data/spec/unit/functions/find_file_spec.rb +7 -7
- data/spec/unit/functions/find_template_spec.rb +69 -0
- data/spec/unit/functions/flatten_spec.rb +31 -0
- data/spec/unit/functions/floor_spec.rb +65 -0
- data/spec/unit/functions/get_spec.rb +135 -0
- data/spec/unit/functions/getvar_spec.rb +121 -0
- data/spec/unit/functions/group_by_spec.rb +40 -0
- data/spec/unit/functions/hiera_spec.rb +14 -48
- data/spec/unit/functions/include_spec.rb +16 -5
- data/spec/unit/functions/index_spec.rb +184 -0
- data/spec/unit/functions/inline_epp_spec.rb +27 -2
- data/spec/unit/functions/join_spec.rb +33 -0
- data/spec/unit/functions/keys_spec.rb +31 -0
- data/spec/unit/functions/length_spec.rb +50 -0
- data/spec/unit/functions/logging_spec.rb +11 -3
- data/spec/unit/functions/lookup_fixture_spec.rb +1 -2
- data/spec/unit/functions/lookup_spec.rb +165 -63
- data/spec/unit/functions/lstrip_spec.rb +30 -0
- data/spec/unit/functions/match_spec.rb +21 -4
- data/spec/unit/functions/max_spec.rb +129 -0
- data/spec/unit/functions/min_spec.rb +129 -0
- data/spec/unit/functions/module_directory_spec.rb +43 -0
- data/spec/unit/functions/new_spec.rb +30 -14
- data/spec/unit/functions/partition_spec.rb +40 -0
- data/spec/unit/functions/regsubst_spec.rb +3 -4
- data/spec/unit/functions/require_spec.rb +1 -2
- data/spec/unit/functions/round_spec.rb +41 -0
- data/spec/unit/functions/rstrip_spec.rb +30 -0
- data/spec/unit/functions/shared.rb +15 -6
- data/spec/unit/functions/size_spec.rb +50 -0
- data/spec/unit/functions/sort_spec.rb +79 -0
- data/spec/unit/functions/split_spec.rb +3 -4
- data/spec/unit/functions/step_spec.rb +1 -1
- data/spec/unit/functions/strftime_spec.rb +2 -2
- data/spec/unit/functions/strip_spec.rb +30 -0
- data/spec/unit/functions/tree_each_spec.rb +49 -0
- data/spec/unit/functions/unwrap_spec.rb +8 -0
- data/spec/unit/functions/upcase_spec.rb +34 -0
- data/spec/unit/functions/values_spec.rb +30 -0
- data/spec/unit/functions/versioncmp_spec.rb +43 -9
- data/spec/unit/functions4_spec.rb +154 -86
- data/spec/unit/gettext/config_spec.rb +45 -14
- data/spec/unit/gettext/module_loading_spec.rb +7 -7
- data/spec/unit/graph/rb_tree_map_spec.rb +0 -2
- data/spec/unit/graph/relationship_graph_spec.rb +1 -2
- data/spec/unit/graph/simple_graph_spec.rb +51 -12
- data/spec/unit/hiera/scope_spec.rb +7 -0
- data/spec/unit/hiera_puppet_spec.rb +20 -20
- data/spec/unit/http/client_spec.rb +938 -0
- data/spec/unit/http/external_client_spec.rb +201 -0
- data/spec/unit/http/resolver_spec.rb +133 -0
- data/spec/unit/http/response_spec.rb +75 -0
- data/spec/unit/http/service/ca_spec.rb +198 -0
- data/spec/unit/http/service/compiler_spec.rb +806 -0
- data/spec/unit/http/service/file_server_spec.rb +307 -0
- data/spec/unit/http/service/puppetserver_spec.rb +82 -0
- data/spec/unit/http/service/report_spec.rb +117 -0
- data/spec/unit/http/service_spec.rb +144 -0
- data/spec/unit/http/session_spec.rb +307 -0
- data/spec/unit/indirector/catalog/compiler_spec.rb +343 -194
- data/spec/unit/indirector/catalog/json_spec.rb +10 -5
- data/spec/unit/indirector/catalog/msgpack_spec.rb +0 -1
- data/spec/unit/indirector/catalog/rest_spec.rb +67 -3
- data/spec/unit/indirector/catalog/store_configs_spec.rb +0 -1
- data/spec/unit/indirector/catalog/yaml_spec.rb +0 -1
- data/spec/unit/indirector/certificate/file_spec.rb +0 -9
- data/spec/unit/indirector/certificate/rest_spec.rb +8 -10
- data/spec/unit/indirector/certificate_request/file_spec.rb +0 -1
- data/spec/unit/indirector/certificate_request/rest_spec.rb +0 -1
- data/spec/unit/indirector/direct_file_server_spec.rb +47 -50
- data/spec/unit/indirector/envelope_spec.rb +1 -2
- data/spec/unit/indirector/exec_spec.rb +29 -24
- data/spec/unit/indirector/face_spec.rb +8 -9
- data/spec/unit/indirector/facts/facter_spec.rb +131 -43
- data/spec/unit/indirector/facts/json_spec.rb +255 -0
- data/spec/unit/indirector/facts/network_device_spec.rb +8 -9
- data/spec/unit/indirector/facts/rest_spec.rb +99 -0
- data/spec/unit/indirector/facts/store_configs_spec.rb +0 -1
- data/spec/unit/indirector/facts/yaml_spec.rb +95 -79
- data/spec/unit/indirector/file_bucket_file/file_spec.rb +156 -100
- data/spec/unit/indirector/file_bucket_file/rest_spec.rb +82 -3
- data/spec/unit/indirector/file_bucket_file/selector_spec.rb +26 -9
- data/spec/unit/indirector/file_content/file_server_spec.rb +0 -1
- data/spec/unit/indirector/file_content/file_spec.rb +0 -1
- data/spec/unit/indirector/file_content/rest_spec.rb +53 -3
- data/spec/unit/indirector/file_content/selector_spec.rb +0 -1
- data/spec/unit/indirector/file_metadata/file_server_spec.rb +0 -1
- data/spec/unit/indirector/file_metadata/file_spec.rb +12 -13
- data/spec/unit/indirector/file_metadata/http_spec.rb +194 -0
- data/spec/unit/indirector/file_metadata/rest_spec.rb +110 -3
- data/spec/unit/indirector/file_metadata/selector_spec.rb +0 -1
- data/spec/unit/indirector/file_server_spec.rb +143 -137
- data/spec/unit/indirector/indirection_spec.rb +296 -231
- data/spec/unit/indirector/json_spec.rb +10 -12
- data/spec/unit/indirector/key/file_spec.rb +20 -39
- data/spec/unit/indirector/memory_spec.rb +6 -7
- data/spec/unit/indirector/msgpack_spec.rb +10 -12
- data/spec/unit/indirector/node/exec_spec.rb +43 -23
- data/spec/unit/indirector/node/json_spec.rb +33 -0
- data/spec/unit/indirector/node/memory_spec.rb +2 -4
- data/spec/unit/indirector/node/msgpack_spec.rb +0 -1
- data/spec/unit/indirector/node/plain_spec.rb +2 -4
- data/spec/unit/indirector/node/rest_spec.rb +57 -3
- data/spec/unit/indirector/node/store_configs_spec.rb +0 -1
- data/spec/unit/indirector/node/yaml_spec.rb +0 -1
- data/spec/unit/indirector/none_spec.rb +5 -5
- data/spec/unit/indirector/plain_spec.rb +7 -8
- data/spec/unit/indirector/report/json_spec.rb +72 -0
- data/spec/unit/indirector/report/msgpack_spec.rb +0 -1
- data/spec/unit/indirector/report/processor_spec.rb +21 -22
- data/spec/unit/indirector/report/rest_spec.rb +58 -52
- data/spec/unit/indirector/report/yaml_spec.rb +72 -9
- data/spec/unit/indirector/request_spec.rb +27 -29
- data/spec/unit/indirector/resource/ral_spec.rb +40 -82
- data/spec/unit/indirector/resource/store_configs_spec.rb +0 -1
- data/spec/unit/indirector/rest_spec.rb +166 -107
- data/spec/unit/indirector/ssl_file_spec.rb +99 -122
- data/spec/unit/indirector/status/local_spec.rb +0 -1
- data/spec/unit/indirector/status/rest_spec.rb +43 -3
- data/spec/unit/indirector/terminus_spec.rb +29 -29
- data/spec/unit/indirector/yaml_spec.rb +92 -70
- data/spec/unit/indirector_spec.rb +2 -4
- data/spec/unit/info_service_spec.rb +195 -11
- data/spec/unit/interface/action_builder_spec.rb +0 -1
- data/spec/unit/interface/action_manager_spec.rb +1 -2
- data/spec/unit/interface/action_spec.rb +36 -13
- data/spec/unit/interface/documentation_spec.rb +0 -1
- data/spec/unit/interface/face_collection_spec.rb +19 -12
- data/spec/unit/interface_spec.rb +6 -6
- data/spec/unit/module_spec.rb +135 -113
- data/spec/unit/module_tool/applications/installer_spec.rb +116 -13
- data/spec/unit/module_tool/applications/searcher_spec.rb +3 -3
- data/spec/unit/module_tool/applications/uninstaller_spec.rb +16 -0
- data/spec/unit/module_tool/applications/unpacker_spec.rb +17 -17
- data/spec/unit/module_tool/applications/upgrader_spec.rb +11 -5
- data/spec/unit/module_tool/install_directory_spec.rb +8 -8
- data/spec/unit/module_tool/installed_modules_spec.rb +3 -3
- data/spec/unit/module_tool/tar/gnu_spec.rb +6 -6
- data/spec/unit/module_tool/tar/mini_spec.rb +32 -12
- data/spec/unit/module_tool/tar_spec.rb +12 -13
- data/spec/unit/module_tool_spec.rb +7 -34
- data/spec/unit/network/auth_config_parser_spec.rb +11 -13
- data/spec/unit/network/authconfig_spec.rb +16 -20
- data/spec/unit/network/authorization_spec.rb +4 -5
- data/spec/unit/network/authstore_spec.rb +0 -16
- data/spec/unit/network/format_handler_spec.rb +0 -1
- data/spec/unit/network/format_spec.rb +9 -10
- data/spec/unit/network/format_support_spec.rb +29 -29
- data/spec/unit/network/formats_spec.rb +82 -18
- data/spec/unit/network/http/api/indirected_routes_spec.rb +54 -48
- data/spec/unit/network/http/api/master/v3/authorization_spec.rb +7 -9
- data/spec/unit/network/http/api/master/v3/environment_spec.rb +1 -2
- data/spec/unit/network/http/api/master/v3/environments_spec.rb +11 -23
- data/spec/unit/network/http/api_spec.rb +0 -28
- data/spec/unit/network/http/compression_spec.rb +27 -25
- data/spec/unit/network/http/connection_spec.rb +537 -275
- data/spec/unit/network/http/factory_spec.rb +82 -36
- data/spec/unit/network/http/handler_spec.rb +10 -23
- data/spec/unit/network/http/nocache_pool_spec.rb +32 -11
- data/spec/unit/network/http/pool_spec.rb +166 -59
- data/spec/unit/network/http/request_spec.rb +0 -2
- data/spec/unit/network/http/response_spec.rb +11 -13
- data/spec/unit/network/http/route_spec.rb +0 -1
- data/spec/unit/network/http/session_spec.rb +9 -3
- data/spec/unit/network/http/site_spec.rb +7 -1
- data/spec/unit/network/http_pool_spec.rb +99 -48
- data/spec/unit/network/http_spec.rb +1 -2
- data/spec/unit/network/resolver_spec.rb +103 -29
- data/spec/unit/network/rights_spec.rb +52 -53
- data/spec/unit/network/uri_spec.rb +47 -0
- data/spec/unit/node/environment_spec.rb +72 -24
- data/spec/unit/node/facts_spec.rb +20 -8
- data/spec/unit/node_spec.rb +38 -23
- data/spec/unit/other/selinux_spec.rb +0 -72
- data/spec/unit/parameter/boolean_spec.rb +1 -2
- data/spec/unit/parameter/package_options_spec.rb +1 -2
- data/spec/unit/parameter/path_spec.rb +0 -1
- data/spec/unit/parameter/value_collection_spec.rb +0 -1
- data/spec/unit/parameter/value_spec.rb +0 -1
- data/spec/unit/parameter_spec.rb +9 -9
- data/spec/unit/parser/ast/block_expression_spec.rb +7 -9
- data/spec/unit/parser/ast/leaf_spec.rb +20 -21
- data/spec/unit/parser/compiler_spec.rb +93 -114
- data/spec/unit/parser/environment_compiler_spec.rb +67 -23
- data/spec/unit/parser/files_spec.rb +0 -1
- data/spec/unit/parser/functions/create_resources_spec.rb +10 -1
- data/spec/unit/parser/functions/digest_spec.rb +0 -5
- data/spec/unit/parser/functions/fail_spec.rb +2 -7
- data/spec/unit/parser/functions/file_spec.rb +13 -18
- data/spec/unit/parser/functions/fqdn_rand_spec.rb +39 -2
- data/spec/unit/parser/functions/generate_spec.rb +36 -39
- data/spec/unit/parser/functions/inline_template_spec.rb +7 -5
- data/spec/unit/parser/functions/realize_spec.rb +9 -0
- data/spec/unit/parser/functions/regsubst_spec.rb +0 -5
- data/spec/unit/parser/functions/scanf_spec.rb +0 -5
- data/spec/unit/parser/functions/shellquote_spec.rb +0 -1
- data/spec/unit/parser/functions/split_spec.rb +0 -5
- data/spec/unit/parser/functions/sprintf_spec.rb +0 -5
- data/spec/unit/parser/functions/tag_spec.rb +8 -6
- data/spec/unit/parser/functions/tagged_spec.rb +36 -0
- data/spec/unit/parser/functions/template_spec.rb +21 -17
- data/spec/unit/parser/functions/versioncmp_spec.rb +1 -6
- data/spec/unit/parser/functions_spec.rb +28 -4
- data/spec/unit/parser/relationship_spec.rb +0 -1
- data/spec/unit/parser/resource/param_spec.rb +1 -1
- data/spec/unit/parser/resource_spec.rb +53 -48
- data/spec/unit/parser/scope_spec.rb +72 -39
- data/spec/unit/parser/templatewrapper_spec.rb +25 -15
- data/spec/unit/parser/type_loader_spec.rb +18 -20
- data/spec/unit/plan_spec.rb +65 -0
- data/spec/unit/pops/adaptable_spec.rb +0 -2
- data/spec/unit/pops/benchmark_spec.rb +0 -1
- data/spec/unit/pops/evaluator/access_ops_spec.rb +0 -1
- data/spec/unit/pops/evaluator/arithmetic_ops_spec.rb +10 -1
- data/spec/unit/pops/evaluator/basic_expressions_spec.rb +0 -1
- data/spec/unit/pops/evaluator/collections_ops_spec.rb +0 -1
- data/spec/unit/pops/evaluator/comparison_ops_spec.rb +0 -1
- data/spec/unit/pops/evaluator/conditionals_spec.rb +1 -2
- data/spec/unit/pops/evaluator/deferred_resolver_spec.rb +20 -0
- data/spec/unit/pops/evaluator/evaluating_parser_spec.rb +133 -17
- data/spec/unit/pops/evaluator/logical_ops_spec.rb +0 -1
- data/spec/unit/pops/evaluator/runtime3_converter_spec.rb +24 -11
- data/spec/unit/pops/evaluator/string_interpolation_spec.rb +0 -1
- data/spec/unit/pops/evaluator/variables_spec.rb +0 -1
- data/spec/unit/pops/factory_rspec_helper.rb +1 -1
- data/spec/unit/pops/factory_spec.rb +8 -9
- data/spec/unit/pops/issues_spec.rb +40 -26
- data/spec/unit/pops/loaders/dependency_loader_spec.rb +2 -2
- data/spec/unit/pops/loaders/loader_spec.rb +516 -0
- data/spec/unit/pops/loaders/loaders_spec.rb +294 -46
- data/spec/unit/pops/loaders/module_loaders_spec.rb +112 -0
- data/spec/unit/pops/loaders/static_loader_spec.rb +16 -44
- data/spec/unit/pops/lookup/context_spec.rb +0 -1
- data/spec/unit/pops/lookup/interpolation_spec.rb +7 -3
- data/spec/unit/pops/lookup/lookup_spec.rb +81 -0
- data/spec/unit/pops/merge_strategy_spec.rb +0 -1
- data/spec/unit/pops/migration_spec.rb +3 -5
- data/spec/unit/pops/model/model_spec.rb +5 -1
- data/spec/unit/pops/model/pn_transformer_spec.rb +56 -0
- data/spec/unit/pops/parser/lexer2_spec.rb +89 -26
- data/spec/unit/pops/parser/locator_spec.rb +63 -1
- data/spec/unit/pops/parser/parse_application_spec.rb +0 -1
- data/spec/unit/pops/parser/parse_basic_expressions_spec.rb +42 -10
- data/spec/unit/pops/parser/parse_calls_spec.rb +28 -1
- data/spec/unit/pops/parser/parse_capabilities_spec.rb +0 -1
- data/spec/unit/pops/parser/parse_conditionals_spec.rb +12 -1
- data/spec/unit/pops/parser/parse_containers_spec.rb +2 -14
- data/spec/unit/pops/parser/parse_functions_spec.rb +1 -1
- data/spec/unit/pops/parser/parse_heredoc_spec.rb +124 -12
- data/spec/unit/pops/parser/parse_lambda_spec.rb +1 -1
- data/spec/unit/pops/parser/parse_plan_spec.rb +47 -0
- data/spec/unit/pops/parser/parse_resource_spec.rb +35 -36
- data/spec/unit/pops/parser/parse_site_spec.rb +0 -1
- data/spec/unit/pops/parser/pn_parser_spec.rb +100 -0
- data/spec/unit/pops/pn_spec.rb +147 -0
- data/spec/unit/pops/puppet_stack_spec.rb +38 -9
- data/spec/unit/pops/resource/resource_type_impl_spec.rb +0 -1
- data/spec/unit/pops/serialization/packer_spec.rb +8 -0
- data/spec/unit/pops/serialization/serialization_spec.rb +37 -5
- data/spec/unit/pops/serialization/to_from_hr_spec.rb +74 -4
- data/spec/unit/pops/serialization/to_stringified_spec.rb +162 -0
- data/spec/unit/pops/types/deferred_spec.rb +87 -0
- data/spec/unit/pops/types/error_spec.rb +207 -0
- data/spec/unit/pops/types/iterable_spec.rb +1 -1
- data/spec/unit/pops/types/p_init_type_spec.rb +98 -0
- data/spec/unit/pops/types/p_object_type_spec.rb +298 -13
- data/spec/unit/pops/types/p_sem_ver_type_spec.rb +18 -0
- data/spec/unit/pops/types/p_sensitive_type_spec.rb +18 -0
- data/spec/unit/pops/types/p_timespan_type_spec.rb +33 -4
- data/spec/unit/pops/types/p_timestamp_type_spec.rb +28 -2
- data/spec/unit/pops/types/p_type_set_type_spec.rb +106 -2
- data/spec/unit/pops/types/p_uri_type_spec.rb +191 -0
- data/spec/unit/pops/types/recursion_guard_spec.rb +10 -10
- data/spec/unit/pops/types/ruby_generator_spec.rb +87 -54
- data/spec/unit/pops/types/string_converter_spec.rb +39 -6
- data/spec/unit/pops/types/task_spec.rb +411 -0
- data/spec/unit/pops/types/type_asserter_spec.rb +2 -2
- data/spec/unit/pops/types/type_calculator_spec.rb +120 -53
- data/spec/unit/pops/types/type_formatter_spec.rb +31 -13
- data/spec/unit/pops/types/type_mismatch_describer_spec.rb +9 -0
- data/spec/unit/pops/types/type_parser_spec.rb +26 -14
- data/spec/unit/pops/types/types_spec.rb +99 -6
- data/spec/unit/pops/validator/validator_spec.rb +455 -7
- data/spec/unit/pops/visitor_spec.rb +0 -1
- data/spec/unit/property/boolean_spec.rb +1 -1
- data/spec/unit/property/ensure_spec.rb +0 -1
- data/spec/unit/property/keyvalue_spec.rb +127 -38
- data/spec/unit/property/list_spec.rb +26 -27
- data/spec/unit/property/ordered_list_spec.rb +10 -14
- data/spec/unit/property_spec.rb +55 -46
- data/spec/unit/provider/aix_object_spec.rb +821 -0
- data/spec/unit/provider/command_spec.rb +9 -9
- data/spec/unit/provider/exec/posix_spec.rb +38 -15
- data/spec/unit/provider/exec/shell_spec.rb +2 -2
- data/spec/unit/provider/exec/windows_spec.rb +4 -6
- data/spec/unit/provider/exec_spec.rb +210 -1
- data/spec/unit/provider/file/posix_spec.rb +22 -24
- data/spec/unit/provider/file/windows_spec.rb +17 -19
- data/spec/unit/provider/group/aix_spec.rb +91 -0
- data/spec/unit/provider/group/groupadd_spec.rb +237 -29
- data/spec/unit/provider/group/ldap_spec.rb +33 -36
- data/spec/unit/provider/group/pw_spec.rb +15 -18
- data/spec/unit/provider/group/windows_adsi_spec.rb +173 -68
- data/spec/unit/provider/ldap_spec.rb +61 -63
- data/spec/unit/provider/nameservice/directoryservice_spec.rb +102 -109
- data/spec/unit/provider/nameservice_spec.rb +99 -100
- data/spec/unit/provider/package/aix_spec.rb +48 -22
- data/spec/unit/provider/package/appdmg_spec.rb +13 -13
- data/spec/unit/provider/package/apt_spec.rb +174 -37
- data/spec/unit/provider/package/aptitude_spec.rb +8 -7
- data/spec/unit/provider/package/aptrpm_spec.rb +8 -13
- data/spec/unit/provider/package/base_spec.rb +7 -6
- data/spec/unit/provider/package/dnf_spec.rb +43 -18
- data/spec/unit/provider/package/dnfmodule_spec.rb +256 -0
- data/spec/unit/provider/package/dpkg_spec.rb +348 -137
- data/spec/unit/provider/package/freebsd_spec.rb +15 -18
- data/spec/unit/provider/package/gem_spec.rb +210 -83
- data/spec/unit/provider/package/hpux_spec.rb +15 -18
- data/spec/unit/provider/package/macports_spec.rb +56 -54
- data/spec/unit/provider/package/nim_spec.rb +76 -59
- data/spec/unit/provider/package/openbsd_spec.rb +62 -49
- data/spec/unit/provider/package/opkg_spec.rb +23 -26
- data/spec/unit/provider/package/pacman_spec.rb +103 -133
- data/spec/unit/provider/package/pip2_spec.rb +36 -0
- data/spec/unit/provider/package/pip3_spec.rb +20 -6
- data/spec/unit/provider/package/pip_spec.rb +252 -157
- data/spec/unit/provider/package/pkg_spec.rb +194 -98
- data/spec/unit/provider/package/pkgdmg_spec.rb +64 -66
- data/spec/unit/provider/package/pkgin_spec.rb +21 -24
- data/spec/unit/provider/package/pkgng_spec.rb +80 -38
- data/spec/unit/provider/package/pkgutil_spec.rb +45 -49
- data/spec/unit/provider/package/portage_spec.rb +89 -74
- data/spec/unit/provider/package/puppet_gem_spec.rb +53 -21
- data/spec/unit/provider/package/puppetserver_gem_spec.rb +137 -0
- data/spec/unit/provider/package/rpm_spec.rb +280 -261
- data/spec/unit/provider/package/sun_spec.rb +16 -18
- data/spec/unit/provider/package/tdnf_spec.rb +9 -12
- data/spec/unit/provider/package/up2date_spec.rb +2 -4
- data/spec/unit/provider/package/urpmi_spec.rb +18 -14
- data/spec/unit/provider/package/windows/exe_package_spec.rb +32 -18
- data/spec/unit/provider/package/windows/msi_package_spec.rb +20 -23
- data/spec/unit/provider/package/windows/package_spec.rb +38 -43
- data/spec/unit/provider/package/windows_spec.rb +51 -36
- data/spec/unit/provider/package/yum_spec.rb +442 -13
- data/spec/unit/provider/package/zypper_spec.rb +202 -106
- data/spec/unit/provider/package_targetable_spec.rb +60 -0
- data/spec/unit/provider/parsedfile_spec.rb +81 -46
- data/spec/unit/provider/service/base_spec.rb +6 -11
- data/spec/unit/provider/service/bsd_spec.rb +52 -51
- data/spec/unit/provider/service/daemontools_spec.rb +71 -52
- data/spec/unit/provider/service/debian_spec.rb +51 -53
- data/spec/unit/provider/service/freebsd_spec.rb +21 -21
- data/spec/unit/provider/service/gentoo_spec.rb +78 -82
- data/spec/unit/provider/service/init_spec.rb +117 -67
- data/spec/unit/provider/service/launchd_spec.rb +196 -114
- data/spec/unit/provider/service/openbsd_spec.rb +98 -92
- data/spec/unit/provider/service/openrc_spec.rb +73 -75
- data/spec/unit/provider/service/openwrt_spec.rb +36 -44
- data/spec/unit/provider/service/rcng_spec.rb +20 -21
- data/spec/unit/provider/service/redhat_spec.rb +76 -58
- data/spec/unit/provider/service/runit_spec.rb +62 -43
- data/spec/unit/provider/service/smf_spec.rb +143 -73
- data/spec/unit/provider/service/src_spec.rb +60 -69
- data/spec/unit/provider/service/systemd_spec.rb +330 -155
- data/spec/unit/provider/service/upstart_spec.rb +106 -84
- data/spec/unit/provider/service/windows_spec.rb +336 -91
- data/spec/unit/provider/user/aix_spec.rb +263 -112
- data/spec/unit/provider/user/directoryservice_spec.rb +229 -124
- data/spec/unit/provider/user/hpux_spec.rb +19 -20
- data/spec/unit/provider/user/ldap_spec.rb +80 -83
- data/spec/unit/provider/user/openbsd_spec.rb +11 -12
- data/spec/unit/provider/user/pw_spec.rb +82 -44
- data/spec/unit/provider/user/user_role_add_spec.rb +109 -92
- data/spec/unit/provider/user/useradd_spec.rb +479 -90
- data/spec/unit/provider/user/windows_adsi_spec.rb +144 -63
- data/spec/unit/provider_spec.rb +241 -47
- data/spec/unit/puppet_pal_2pec.rb +1033 -0
- data/spec/unit/puppet_pal_catalog_spec.rb +962 -0
- data/spec/unit/puppet_pal_spec.rb +3 -0
- data/spec/unit/puppet_spec.rb +58 -25
- data/spec/unit/relationship_spec.rb +0 -1
- data/spec/unit/reports/http_spec.rb +70 -54
- data/spec/unit/reports/store_spec.rb +20 -17
- data/spec/unit/reports_spec.rb +12 -14
- data/spec/unit/resource/capability_finder_spec.rb +31 -29
- data/spec/unit/resource/catalog_spec.rb +104 -82
- data/spec/unit/resource/status_spec.rb +23 -12
- data/spec/unit/resource/type_collection_spec.rb +19 -17
- data/spec/unit/resource/type_spec.rb +52 -38
- data/spec/unit/resource_spec.rb +207 -49
- data/spec/unit/rest/route_spec.rb +132 -0
- data/spec/unit/scheduler/job_spec.rb +0 -1
- data/spec/unit/scheduler/scheduler_spec.rb +0 -1
- data/spec/unit/scheduler/splay_job_spec.rb +1 -2
- data/spec/unit/settings/array_setting_spec.rb +1 -1
- data/spec/unit/settings/autosign_setting_spec.rb +11 -11
- data/spec/unit/settings/certificate_revocation_setting_spec.rb +1 -1
- data/spec/unit/settings/config_file_spec.rb +9 -1
- data/spec/unit/settings/directory_setting_spec.rb +2 -7
- data/spec/unit/settings/duration_setting_spec.rb +1 -2
- data/spec/unit/settings/enum_setting_spec.rb +1 -1
- data/spec/unit/settings/environment_conf_spec.rb +4 -6
- data/spec/unit/settings/file_setting_spec.rb +54 -48
- data/spec/unit/settings/http_extra_headers_spec.rb +64 -0
- data/spec/unit/settings/ini_file_spec.rb +314 -5
- data/spec/unit/settings/path_setting_spec.rb +2 -3
- data/spec/unit/settings/priority_setting_spec.rb +1 -2
- data/spec/unit/settings/server_list_setting_spec.rb +21 -0
- data/spec/unit/settings/string_setting_spec.rb +14 -15
- data/spec/unit/settings/terminus_setting_spec.rb +1 -2
- data/spec/unit/settings/value_translator_spec.rb +0 -1
- data/spec/unit/settings_spec.rb +905 -448
- data/spec/unit/ssl/base_spec.rb +13 -15
- data/spec/unit/ssl/certificate_request_attributes_spec.rb +21 -8
- data/spec/unit/ssl/certificate_request_spec.rb +84 -65
- data/spec/unit/ssl/certificate_spec.rb +34 -32
- data/spec/unit/ssl/digest_spec.rb +0 -1
- data/spec/unit/ssl/host_spec.rb +336 -649
- data/spec/unit/ssl/key_spec.rb +31 -49
- data/spec/unit/ssl/oids_spec.rb +1 -0
- data/spec/unit/ssl/ssl_provider_spec.rb +630 -0
- data/spec/unit/ssl/state_machine_spec.rb +983 -0
- data/spec/unit/ssl/validator_spec.rb +74 -214
- data/spec/unit/ssl/verifier_spec.rb +123 -0
- data/spec/unit/task_spec.rb +216 -27
- data/spec/unit/test/test_helper_spec.rb +17 -0
- data/spec/unit/transaction/additional_resource_generator_spec.rb +66 -72
- data/spec/unit/transaction/event_manager_spec.rb +114 -89
- data/spec/unit/transaction/event_spec.rb +16 -15
- data/spec/unit/transaction/persistence_spec.rb +83 -27
- data/spec/unit/transaction/report_spec.rb +55 -27
- data/spec/unit/transaction/resource_harness_spec.rb +72 -33
- data/spec/unit/transaction_spec.rb +328 -115
- data/spec/unit/type/component_spec.rb +0 -1
- data/spec/unit/type/exec_spec.rb +210 -95
- data/spec/unit/type/file/checksum_spec.rb +29 -10
- data/spec/unit/type/file/checksum_value_spec.rb +31 -32
- data/spec/unit/type/file/content_spec.rb +72 -58
- data/spec/unit/type/file/ctime_spec.rb +0 -1
- data/spec/unit/type/file/ensure_spec.rb +13 -15
- data/spec/unit/type/file/group_spec.rb +5 -7
- data/spec/unit/type/file/mode_spec.rb +4 -6
- data/spec/unit/type/file/mtime_spec.rb +0 -1
- data/spec/unit/type/file/owner_spec.rb +6 -8
- data/spec/unit/type/file/selinux_spec.rb +16 -21
- data/spec/unit/type/file/source_spec.rb +186 -126
- data/spec/unit/type/file/type_spec.rb +0 -1
- data/spec/unit/type/file_spec.rb +321 -267
- data/spec/unit/type/filebucket_spec.rb +12 -11
- data/spec/unit/type/group_spec.rb +32 -11
- data/spec/unit/type/noop_metaparam_spec.rb +1 -2
- data/spec/unit/type/package/package_settings_spec.rb +44 -23
- data/spec/unit/type/package_spec.rb +76 -54
- data/spec/unit/type/resources_spec.rb +105 -75
- data/spec/unit/type/schedule_spec.rb +29 -29
- data/spec/unit/type/service_spec.rb +252 -76
- data/spec/unit/type/stage_spec.rb +0 -1
- data/spec/unit/type/tidy_spec.rb +92 -61
- data/spec/unit/type/user_spec.rb +79 -143
- data/spec/unit/type/whit_spec.rb +0 -1
- data/spec/unit/type_spec.rb +288 -140
- data/spec/unit/util/at_fork_spec.rb +21 -21
- data/spec/unit/util/autoload_spec.rb +126 -94
- data/spec/unit/util/backups_spec.rb +33 -35
- data/spec/unit/util/character_encoding_spec.rb +5 -48
- data/spec/unit/util/checksums_spec.rb +57 -42
- data/spec/unit/util/colors_spec.rb +1 -2
- data/spec/unit/util/command_line_spec.rb +50 -25
- data/spec/unit/util/constant_inflector_spec.rb +0 -1
- data/spec/unit/util/diff_spec.rb +12 -5
- data/spec/unit/util/docs_spec.rb +1 -1
- data/spec/unit/util/errors_spec.rb +0 -1
- data/spec/unit/util/execution_spec.rb +288 -167
- data/spec/unit/util/execution_stub_spec.rb +2 -3
- data/spec/unit/util/feature_spec.rb +56 -29
- data/spec/unit/util/filetype_spec.rb +62 -50
- data/spec/unit/util/http_proxy_spec.rb +178 -17
- data/spec/unit/util/inifile_spec.rb +70 -52
- data/spec/unit/util/json_lockfile_spec.rb +3 -5
- data/spec/unit/util/json_spec.rb +126 -0
- data/spec/unit/util/ldap/connection_spec.rb +26 -25
- data/spec/unit/util/ldap/generator_spec.rb +0 -1
- data/spec/unit/util/ldap/manager_spec.rb +100 -129
- data/spec/unit/util/lockfile_spec.rb +1 -2
- data/spec/unit/util/log/destinations_spec.rb +68 -37
- data/spec/unit/util/log_spec.rb +55 -151
- data/spec/unit/util/logging_spec.rb +323 -105
- data/spec/unit/util/metric_spec.rb +0 -1
- data/spec/unit/util/monkey_patches_spec.rb +23 -13
- data/spec/unit/util/multi_match_spec.rb +0 -1
- data/spec/unit/util/network_device/config_spec.rb +0 -1
- data/spec/unit/util/network_device/transport/base_spec.rb +5 -6
- data/spec/unit/util/network_device_spec.rb +7 -9
- data/spec/unit/util/package/version/debian_spec.rb +83 -0
- data/spec/unit/util/package/version/pip_spec.rb +464 -0
- data/spec/unit/util/package/version/range_spec.rb +175 -0
- data/spec/unit/util/package/version/rpm_spec.rb +121 -0
- data/spec/unit/util/package_spec.rb +0 -1
- data/spec/unit/util/pidlock_spec.rb +130 -15
- data/spec/unit/util/plist_spec.rb +66 -33
- data/spec/unit/util/posix_spec.rb +426 -47
- data/spec/unit/util/profiler/object_counts_spec.rb +2 -1
- data/spec/unit/util/rdoc_spec.rb +9 -10
- data/spec/unit/util/reference_spec.rb +0 -1
- data/spec/unit/util/resource_template_spec.rb +20 -20
- data/spec/unit/util/retry_action_spec.rb +7 -8
- data/spec/unit/util/rpm_compare_spec.rb +196 -0
- data/spec/unit/util/rubygems_spec.rb +8 -43
- data/spec/unit/util/run_mode_spec.rb +16 -17
- data/spec/unit/util/selinux_spec.rb +204 -98
- data/spec/unit/util/skip_tags_spec.rb +14 -0
- data/spec/unit/util/splayer_spec.rb +8 -9
- data/spec/unit/util/ssl_spec.rb +0 -1
- data/spec/unit/util/storage_spec.rb +125 -12
- data/spec/unit/util/suidmanager_spec.rb +83 -91
- data/spec/unit/util/symbolic_file_mode_spec.rb +0 -1
- data/spec/unit/util/tag_set_spec.rb +8 -2
- data/spec/unit/util/tagging_spec.rb +27 -9
- data/spec/unit/util/terminal_spec.rb +9 -10
- data/spec/unit/util/user_attr_spec.rb +1 -2
- data/spec/unit/util/warnings_spec.rb +3 -4
- data/spec/unit/util/watcher/periodic_watcher_spec.rb +2 -2
- data/spec/unit/util/watcher_spec.rb +51 -21
- data/spec/unit/util/windows/access_control_entry_spec.rb +1 -2
- data/spec/unit/util/windows/access_control_list_spec.rb +1 -2
- data/spec/unit/util/windows/adsi_spec.rb +285 -137
- data/spec/unit/util/windows/api_types_spec.rb +105 -42
- data/spec/unit/util/windows/eventlog_spec.rb +10 -13
- data/spec/unit/util/windows/file_spec.rb +0 -1
- data/spec/unit/util/windows/root_certs_spec.rb +1 -2
- data/spec/unit/util/windows/security_descriptor_spec.rb +1 -3
- data/spec/unit/util/windows/service_spec.rb +677 -0
- data/spec/unit/util/windows/sid_spec.rb +131 -21
- data/spec/unit/util/windows/string_spec.rb +1 -2
- data/spec/unit/util/windows_spec.rb +23 -0
- data/spec/unit/util/yaml_spec.rb +193 -34
- data/spec/unit/util_spec.rb +110 -130
- data/spec/unit/version_spec.rb +6 -6
- data/spec/unit/x509/cert_provider_spec.rb +606 -0
- data/spec/unit/x509/pem_store_spec.rb +160 -0
- data/tasks/benchmark.rake +41 -0
- data/tasks/ci.rake +0 -5
- data/tasks/generate_cert_fixtures.rake +194 -0
- data/tasks/manpages.rake +15 -36
- data/tasks/parallel.rake +3 -3
- data/tasks/parser.rake +11 -3
- metadata +3497 -3514
- data/COMMITTERS.md +0 -244
- data/MAINTAINERS +0 -66
- data/ext/README.environment +0 -8
- data/ext/autotest/Rakefile +0 -8
- data/ext/autotest/config +0 -43
- data/ext/autotest/readme.rst +0 -16
- data/ext/cert_inspector +0 -140
- data/ext/dbfix.sql +0 -132
- data/ext/debian/README.Debian +0 -8
- data/ext/debian/README.source +0 -2
- data/ext/debian/TODO.Debian +0 -1
- data/ext/debian/changelog.erb +0 -1122
- data/ext/debian/compat +0 -1
- data/ext/debian/control +0 -144
- data/ext/debian/copyright +0 -361
- data/ext/debian/docs +0 -1
- data/ext/debian/fileserver.conf +0 -41
- data/ext/debian/puppet-common.dirs +0 -13
- data/ext/debian/puppet-common.install +0 -3
- data/ext/debian/puppet-common.lintian-overrides +0 -5
- data/ext/debian/puppet-common.manpages +0 -28
- data/ext/debian/puppet-common.postinst +0 -35
- data/ext/debian/puppet-common.postrm +0 -33
- data/ext/debian/puppet-el.dirs +0 -1
- data/ext/debian/puppet-el.emacsen-install +0 -25
- data/ext/debian/puppet-el.emacsen-remove +0 -11
- data/ext/debian/puppet-el.emacsen-startup +0 -9
- data/ext/debian/puppet-el.install +0 -1
- data/ext/debian/puppet-testsuite.install +0 -2
- data/ext/debian/puppet-testsuite.lintian-overrides +0 -4
- data/ext/debian/puppet.lintian-overrides +0 -3
- data/ext/debian/puppet.logrotate +0 -20
- data/ext/debian/puppet.postinst +0 -20
- data/ext/debian/puppet.postrm +0 -20
- data/ext/debian/puppet.preinst +0 -20
- data/ext/debian/puppetmaster-common.install +0 -2
- data/ext/debian/puppetmaster-common.manpages +0 -2
- data/ext/debian/puppetmaster-common.postinst +0 -6
- data/ext/debian/puppetmaster-passenger.dirs +0 -4
- data/ext/debian/puppetmaster-passenger.postinst +0 -162
- data/ext/debian/puppetmaster-passenger.postrm +0 -61
- data/ext/debian/puppetmaster.README.debian +0 -17
- data/ext/debian/puppetmaster.default +0 -14
- data/ext/debian/puppetmaster.init +0 -137
- data/ext/debian/puppetmaster.lintian-overrides +0 -3
- data/ext/debian/puppetmaster.postinst +0 -20
- data/ext/debian/puppetmaster.postrm +0 -5
- data/ext/debian/puppetmaster.preinst +0 -22
- data/ext/debian/rules +0 -132
- data/ext/debian/source/format +0 -1
- data/ext/debian/source/options +0 -1
- data/ext/debian/vim-puppet.README.Debian +0 -13
- data/ext/debian/vim-puppet.dirs +0 -5
- data/ext/debian/vim-puppet.yaml +0 -7
- data/ext/debian/watch +0 -2
- data/ext/envpuppet +0 -139
- data/ext/envpuppet.bat +0 -14
- data/ext/freebsd/puppetd +0 -26
- data/ext/freebsd/puppetmasterd +0 -26
- data/ext/gentoo/conf.d/puppet +0 -5
- data/ext/gentoo/conf.d/puppetmaster +0 -12
- data/ext/gentoo/init.d/puppet +0 -38
- data/ext/gentoo/init.d/puppetmaster +0 -51
- data/ext/gentoo/puppet/fileserver.conf +0 -41
- data/ext/ips/puppet-agent +0 -44
- data/ext/ips/puppet-master +0 -44
- data/ext/ips/puppet.p5m.erb +0 -12
- data/ext/ips/puppetagent.xml +0 -42
- data/ext/ips/puppetmaster.xml +0 -42
- data/ext/ips/rules +0 -19
- data/ext/ips/transforms +0 -34
- data/ext/ldap/puppet.schema +0 -24
- data/ext/logcheck/puppet +0 -23
- data/ext/osx/file_mapping.yaml +0 -33
- data/ext/osx/postflight.erb +0 -109
- data/ext/osx/preflight.erb +0 -52
- data/ext/osx/prototype.plist.erb +0 -38
- data/ext/puppet-test +0 -477
- data/ext/pure_ruby_dsl/dsl_test.rb +0 -7
- data/ext/rack/config.ru +0 -44
- data/ext/rack/example-passenger-vhost.conf +0 -57
- data/ext/redhat/fileserver.conf +0 -41
- data/ext/redhat/logrotate +0 -21
- data/ext/redhat/puppet.spec.erb +0 -846
- data/ext/redhat/server.init +0 -128
- data/ext/redhat/server.sysconfig +0 -13
- data/ext/solaris/pkginfo +0 -6
- data/ext/solaris/smf/puppetd.xml +0 -77
- data/ext/solaris/smf/puppetmasterd.xml +0 -77
- data/ext/solaris/smf/svc-puppetd +0 -64
- data/ext/solaris/smf/svc-puppetmasterd +0 -60
- data/ext/suse/puppet.spec +0 -310
- data/ext/suse/server.init +0 -173
- data/ext/upload_facts.rb +0 -119
- data/ext/windows/eventlog/Rakefile +0 -32
- data/ext/windows/eventlog/puppetres.dll +0 -0
- data/ext/windows/eventlog/puppetres.mc +0 -18
- data/ext/yaml_nodes.rb +0 -105
- data/lib/puppet/application/ca.rb +0 -11
- data/lib/puppet/application/certificate.rb +0 -17
- data/lib/puppet/application/certificate_request.rb +0 -7
- data/lib/puppet/application/certificate_revocation_list.rb +0 -7
- data/lib/puppet/application/master.rb +0 -317
- data/lib/puppet/bindings.rb +0 -148
- data/lib/puppet/configurer/downloader_factory.rb +0 -44
- data/lib/puppet/external/nagios/base.rb +0 -472
- data/lib/puppet/external/nagios/grammar.ry +0 -248
- data/lib/puppet/external/nagios/makefile +0 -9
- data/lib/puppet/external/nagios/parser.rb +0 -400
- data/lib/puppet/external/nagios.rb +0 -46
- data/lib/puppet/face/ca.rb +0 -266
- data/lib/puppet/face/certificate.rb +0 -165
- data/lib/puppet/face/certificate_request.rb +0 -56
- data/lib/puppet/face/certificate_revocation_list.rb +0 -56
- data/lib/puppet/feature/rack.rb +0 -19
- data/lib/puppet/graph/random_prioritizer.rb +0 -16
- data/lib/puppet/graph/title_hash_prioritizer.rb +0 -16
- data/lib/puppet/indirector/certificate/ca.rb +0 -9
- data/lib/puppet/indirector/certificate/disabled_ca.rb +0 -22
- data/lib/puppet/indirector/certificate_request/ca.rb +0 -22
- data/lib/puppet/indirector/certificate_request/disabled_ca.rb +0 -22
- data/lib/puppet/indirector/certificate_revocation_list/ca.rb +0 -8
- data/lib/puppet/indirector/certificate_revocation_list/disabled_ca.rb +0 -22
- data/lib/puppet/indirector/certificate_revocation_list/file.rb +0 -8
- data/lib/puppet/indirector/certificate_revocation_list/rest.rb +0 -22
- data/lib/puppet/indirector/certificate_status/file.rb +0 -91
- data/lib/puppet/indirector/certificate_status/rest.rb +0 -11
- data/lib/puppet/indirector/certificate_status.rb +0 -4
- data/lib/puppet/indirector/key/ca.rb +0 -16
- data/lib/puppet/indirector/key/disabled_ca.rb +0 -22
- data/lib/puppet/indirector/ldap.rb +0 -80
- data/lib/puppet/indirector/node/ldap.rb +0 -259
- data/lib/puppet/indirector/node/write_only_yaml.rb +0 -39
- data/lib/puppet/module_tool/applications/builder.rb +0 -148
- data/lib/puppet/module_tool/skeleton/templates/generator/Gemfile +0 -18
- data/lib/puppet/module_tool/skeleton/templates/generator/README.md.erb +0 -89
- data/lib/puppet/module_tool/skeleton/templates/generator/Rakefile +0 -32
- data/lib/puppet/module_tool/skeleton/templates/generator/examples/init.pp.erb +0 -12
- data/lib/puppet/module_tool/skeleton/templates/generator/manifests/init.pp.erb +0 -48
- data/lib/puppet/module_tool/skeleton/templates/generator/metadata.json.erb +0 -1
- data/lib/puppet/module_tool/skeleton/templates/generator/spec/classes/init_spec.rb.erb +0 -6
- data/lib/puppet/module_tool/skeleton/templates/generator/spec/spec_helper.rb +0 -1
- data/lib/puppet/network/http/api/ca/v1.rb +0 -11
- data/lib/puppet/network/http/api/ca.rb +0 -2
- data/lib/puppet/network/http/rack/rest.rb +0 -162
- data/lib/puppet/network/http/rack.rb +0 -33
- data/lib/puppet/network/http/webrick/rest.rb +0 -114
- data/lib/puppet/network/http/webrick.rb +0 -123
- data/lib/puppet/network/server.rb +0 -39
- data/lib/puppet/pops/loader/null_loader.rb +0 -60
- data/lib/puppet/provider/aixobject.rb +0 -392
- data/lib/puppet/provider/augeas/augeas.rb +0 -567
- data/lib/puppet/provider/cisco.rb +0 -9
- data/lib/puppet/provider/computer/computer.rb +0 -20
- data/lib/puppet/provider/cron/crontab.rb +0 -297
- data/lib/puppet/provider/host/parsed.rb +0 -46
- data/lib/puppet/provider/interface/cisco.rb +0 -27
- data/lib/puppet/provider/macauthorization/macauthorization.rb +0 -298
- data/lib/puppet/provider/mailalias/aliases.rb +0 -50
- data/lib/puppet/provider/maillist/mailman.rb +0 -108
- data/lib/puppet/provider/mcx/mcxcontent.rb +0 -173
- data/lib/puppet/provider/mount/parsed.rb +0 -282
- data/lib/puppet/provider/mount.rb +0 -59
- data/lib/puppet/provider/naginator.rb +0 -63
- data/lib/puppet/provider/scheduled_task/win32_taskscheduler.rb +0 -590
- data/lib/puppet/provider/selboolean/getsetsebool.rb +0 -47
- data/lib/puppet/provider/selmodule/semodule.rb +0 -140
- data/lib/puppet/provider/ssh_authorized_key/parsed.rb +0 -105
- data/lib/puppet/provider/sshkey/parsed.rb +0 -50
- data/lib/puppet/provider/vlan/cisco.rb +0 -28
- data/lib/puppet/provider/yumrepo/inifile.rb +0 -305
- data/lib/puppet/provider/zfs/zfs.rb +0 -88
- data/lib/puppet/provider/zone/solaris.rb +0 -364
- data/lib/puppet/provider/zpool/zpool.rb +0 -125
- data/lib/puppet/ssl/certificate_authority/autosign_command.rb +0 -45
- data/lib/puppet/ssl/certificate_authority/interface.rb +0 -324
- data/lib/puppet/ssl/certificate_authority.rb +0 -553
- data/lib/puppet/ssl/certificate_revocation_list.rb +0 -110
- data/lib/puppet/ssl/configuration.rb +0 -61
- data/lib/puppet/ssl/inventory.rb +0 -55
- data/lib/puppet/type/augeas.rb +0 -211
- data/lib/puppet/type/computer.rb +0 -66
- data/lib/puppet/type/cron.rb +0 -475
- data/lib/puppet/type/host.rb +0 -95
- data/lib/puppet/type/interface.rb +0 -121
- data/lib/puppet/type/k5login.rb +0 -88
- data/lib/puppet/type/macauthorization.rb +0 -167
- data/lib/puppet/type/mailalias.rb +0 -46
- data/lib/puppet/type/maillist.rb +0 -62
- data/lib/puppet/type/mcx.rb +0 -98
- data/lib/puppet/type/mount.rb +0 -310
- data/lib/puppet/type/nagios_command.rb +0 -3
- data/lib/puppet/type/nagios_contact.rb +0 -3
- data/lib/puppet/type/nagios_contactgroup.rb +0 -3
- data/lib/puppet/type/nagios_host.rb +0 -3
- data/lib/puppet/type/nagios_hostdependency.rb +0 -3
- data/lib/puppet/type/nagios_hostescalation.rb +0 -3
- data/lib/puppet/type/nagios_hostextinfo.rb +0 -3
- data/lib/puppet/type/nagios_hostgroup.rb +0 -3
- data/lib/puppet/type/nagios_service.rb +0 -3
- data/lib/puppet/type/nagios_servicedependency.rb +0 -3
- data/lib/puppet/type/nagios_serviceescalation.rb +0 -3
- data/lib/puppet/type/nagios_serviceextinfo.rb +0 -3
- data/lib/puppet/type/nagios_servicegroup.rb +0 -3
- data/lib/puppet/type/nagios_timeperiod.rb +0 -3
- data/lib/puppet/type/router.rb +0 -17
- data/lib/puppet/type/scheduled_task.rb +0 -183
- data/lib/puppet/type/selboolean.rb +0 -26
- data/lib/puppet/type/selmodule.rb +0 -59
- data/lib/puppet/type/ssh_authorized_key.rb +0 -143
- data/lib/puppet/type/sshkey.rb +0 -83
- data/lib/puppet/type/vlan.rb +0 -26
- data/lib/puppet/type/yumrepo.rb +0 -409
- data/lib/puppet/type/zfs.rb +0 -150
- data/lib/puppet/type/zone.rb +0 -382
- data/lib/puppet/type/zpool.rb +0 -91
- data/lib/puppet/util/methodhelper.rb +0 -32
- data/lib/puppet/util/nagios_maker.rb +0 -85
- data/lib/puppet/util/network_device/cisco/device.rb +0 -285
- data/lib/puppet/util/network_device/cisco/facts.rb +0 -72
- data/lib/puppet/util/network_device/cisco/interface.rb +0 -94
- data/lib/puppet/util/network_device/cisco.rb +0 -4
- data/lib/puppet/util/network_device/ipcalc.rb +0 -68
- data/lib/puppet/util/network_device/transport/ssh.rb +0 -126
- data/lib/puppet/util/network_device/transport/telnet.rb +0 -47
- data/lib/puppet/util/windows/taskscheduler.rb +0 -1276
- data/lib/puppet/vendor/deep_merge/CHANGELOG +0 -45
- data/lib/puppet/vendor/deep_merge/Gemfile +0 -3
- data/lib/puppet/vendor/deep_merge/LICENSE +0 -21
- data/lib/puppet/vendor/deep_merge/PUPPET_README.md +0 -6
- data/lib/puppet/vendor/deep_merge/README.md +0 -113
- data/lib/puppet/vendor/deep_merge/Rakefile +0 -19
- data/lib/puppet/vendor/deep_merge/deep_merge.gemspec +0 -35
- data/lib/puppet/vendor/deep_merge/lib/deep_merge/core.rb +0 -210
- data/lib/puppet/vendor/deep_merge/lib/deep_merge/deep_merge_hash.rb +0 -28
- data/lib/puppet/vendor/deep_merge/lib/deep_merge/rails_compat.rb +0 -27
- data/lib/puppet/vendor/deep_merge/lib/deep_merge.rb +0 -2
- data/lib/puppet/vendor/deep_merge/test/test_deep_merge.rb +0 -608
- data/lib/puppet/vendor/load_deep_merge.rb +0 -1
- data/lib/puppet/vendor/load_semantic.rb +0 -1
- data/lib/puppet/vendor/load_semantic_puppet.rb +0 -1
- data/lib/puppet/vendor/semantic/lib/semantic.rb +0 -5
- data/lib/puppet/vendor/semantic_puppet/lib/semantic_puppet/dependency/graph.rb +0 -60
- data/lib/puppet/vendor/semantic_puppet/lib/semantic_puppet/dependency/graph_node.rb +0 -117
- data/lib/puppet/vendor/semantic_puppet/lib/semantic_puppet/dependency/module_release.rb +0 -58
- data/lib/puppet/vendor/semantic_puppet/lib/semantic_puppet/dependency/source.rb +0 -25
- data/lib/puppet/vendor/semantic_puppet/lib/semantic_puppet/dependency/unsatisfiable_graph.rb +0 -31
- data/lib/puppet/vendor/semantic_puppet/lib/semantic_puppet/dependency.rb +0 -181
- data/lib/puppet/vendor/semantic_puppet/lib/semantic_puppet/gem_version.rb +0 -3
- data/lib/puppet/vendor/semantic_puppet/lib/semantic_puppet/version.rb +0 -203
- data/lib/puppet/vendor/semantic_puppet/lib/semantic_puppet/version_range.rb +0 -758
- data/lib/puppet/vendor/semantic_puppet/lib/semantic_puppet.rb +0 -11
- data/locales/ja/puppet.po +0 -11234
- data/man/man8/puppet-ca.8 +0 -196
- data/man/man8/puppet-cert.8 +0 -118
- data/man/man8/puppet-certificate.8 +0 -240
- data/man/man8/puppet-certificate_request.8 +0 -161
- data/man/man8/puppet-certificate_revocation_list.8 +0 -139
- data/man/man8/puppet-master.8 +0 -85
- data/spec/fixtures/integration/provider/cron/crontab/create_normal_entry +0 -19
- data/spec/fixtures/integration/provider/cron/crontab/create_special_entry +0 -18
- data/spec/fixtures/integration/provider/cron/crontab/crontab_user1 +0 -15
- data/spec/fixtures/integration/provider/cron/crontab/crontab_user2 +0 -4
- data/spec/fixtures/integration/provider/cron/crontab/modify_entry +0 -13
- data/spec/fixtures/integration/provider/cron/crontab/moved_cronjob_input1 +0 -15
- data/spec/fixtures/integration/provider/cron/crontab/moved_cronjob_input2 +0 -6
- data/spec/fixtures/integration/provider/cron/crontab/purged +0 -8
- data/spec/fixtures/integration/provider/cron/crontab/remove_named_resource +0 -12
- data/spec/fixtures/integration/provider/cron/crontab/remove_unnamed_resource +0 -14
- data/spec/fixtures/integration/provider/cron/crontab/unspecialized +0 -15
- data/spec/fixtures/integration/provider/mailalias/aliases/test1 +0 -31
- data/spec/fixtures/integration/provider/sshkey/sample +0 -21
- data/spec/fixtures/unit/provider/augeas/augeas/augeas/lenses/test.aug +0 -13
- data/spec/fixtures/unit/provider/augeas/augeas/etc/fstab +0 -10
- data/spec/fixtures/unit/provider/augeas/augeas/etc/hosts +0 -6
- data/spec/fixtures/unit/provider/augeas/augeas/etc/test +0 -3
- data/spec/fixtures/unit/provider/augeas/augeas/test.aug +0 -13
- data/spec/fixtures/unit/provider/host/parsed/valid_hosts +0 -19
- data/spec/fixtures/unit/provider/mount/mount-output.aix.txt +0 -7
- data/spec/fixtures/unit/provider/mount/parsed/aix.filesystems +0 -152
- data/spec/fixtures/unit/provider/mount/parsed/aix.mount +0 -11
- data/spec/fixtures/unit/provider/mount/parsed/darwin.mount +0 -6
- data/spec/fixtures/unit/provider/mount/parsed/freebsd.fstab +0 -8
- data/spec/fixtures/unit/provider/mount/parsed/freebsd.mount +0 -3
- data/spec/fixtures/unit/provider/mount/parsed/hpux.mount +0 -17
- data/spec/fixtures/unit/provider/mount/parsed/linux.fstab +0 -11
- data/spec/fixtures/unit/provider/mount/parsed/linux.mount +0 -5
- data/spec/fixtures/unit/provider/mount/parsed/netbsd.fstab +0 -9
- data/spec/fixtures/unit/provider/mount/parsed/netbsd.mount +0 -8
- data/spec/fixtures/unit/provider/mount/parsed/openbsd.fstab +0 -4
- data/spec/fixtures/unit/provider/mount/parsed/openbsd.mount +0 -4
- data/spec/fixtures/unit/provider/mount/parsed/solaris.fstab +0 -11
- data/spec/fixtures/unit/provider/mount/parsed/solaris.mount +0 -6
- data/spec/fixtures/unit/provider/naginator/define_empty_param +0 -6
- data/spec/fixtures/unit/provider/package/pkgng/pkg.info +0 -8
- data/spec/fixtures/unit/provider/package/pkgng/pkg.query_absent +0 -1
- data/spec/fixtures/unit/provider/ssh_authorized_key/parsed/authorized_keys +0 -7
- data/spec/fixtures/unit/provider/ssh_authorized_key/parsed/authorized_keys1 +0 -3
- data/spec/fixtures/unit/provider/ssh_authorized_key/parsed/authorized_keys2 +0 -1
- data/spec/fixtures/unit/provider/sshkey/parsed/sample +0 -21
- data/spec/fixtures/unit/provider/sshkey/parsed/sample_with_blank_lines +0 -8
- data/spec/fixtures/unit/provider/zfs/zfs/zfs-list.out +0 -2
- data/spec/fixtures/unit/provider/zpool/zpool/zpool-list.out +0 -2
- data/spec/fixtures/vcr/cassettes/Puppet_Network_HTTP_Connection/when_handling_requests/_request_get/should_yield_to_the_block.yml +0 -24
- data/spec/fixtures/vcr/cassettes/Puppet_Network_HTTP_Connection/when_handling_requests/_request_head/should_yield_to_the_block.yml +0 -24
- data/spec/fixtures/vcr/cassettes/Puppet_Network_HTTP_Connection/when_handling_requests/_request_post/should_yield_to_the_block.yml +0 -24
- data/spec/integration/faces/ca_spec.rb +0 -354
- data/spec/integration/faces/config_spec.rb +0 -80
- data/spec/integration/faces/documentation_spec.rb +0 -58
- data/spec/integration/faces/plugin_spec.rb +0 -59
- data/spec/integration/file_bucket/file_spec.rb +0 -69
- data/spec/integration/file_serving/content_spec.rb +0 -8
- data/spec/integration/file_serving/fileset_spec.rb +0 -13
- data/spec/integration/file_serving/metadata_spec.rb +0 -9
- data/spec/integration/file_serving/terminus_helper_spec.rb +0 -21
- data/spec/integration/file_system/uniquefile_spec.rb +0 -29
- data/spec/integration/indirector/node/ldap_spec.rb +0 -14
- data/spec/integration/module_tool/tar/mini_spec.rb +0 -28
- data/spec/integration/provider/cron/crontab_spec.rb +0 -242
- data/spec/integration/provider/mailalias/aliases_spec.rb +0 -10
- data/spec/integration/provider/mount_spec.rb +0 -161
- data/spec/integration/provider/service/init_spec.rb +0 -46
- data/spec/integration/provider/service/systemd_spec.rb +0 -20
- data/spec/integration/provider/service/windows_spec.rb +0 -49
- data/spec/integration/provider/ssh_authorized_key_spec.rb +0 -219
- data/spec/integration/provider/sshkey_spec.rb +0 -159
- data/spec/integration/provider/yumrepo_spec.rb +0 -130
- data/spec/integration/reference/providers_spec.rb +0 -16
- data/spec/integration/reports_spec.rb +0 -14
- data/spec/integration/ssl/autosign_spec.rb +0 -145
- data/spec/integration/ssl/certificate_authority_spec.rb +0 -162
- data/spec/integration/ssl/certificate_request_spec.rb +0 -47
- data/spec/integration/ssl/certificate_revocation_list_spec.rb +0 -34
- data/spec/integration/ssl/host_spec.rb +0 -81
- data/spec/integration/ssl/key_spec.rb +0 -104
- data/spec/integration/test/test_helper_spec.rb +0 -32
- data/spec/integration/type/nagios_spec.rb +0 -71
- data/spec/integration/type/user_spec.rb +0 -64
- data/spec/lib/matchers/include.rb +0 -27
- data/spec/lib/matchers/include_spec.rb +0 -32
- data/spec/shared_behaviours/file_serving_model.rb +0 -72
- data/spec/unit/application/cert_spec.rb +0 -240
- data/spec/unit/application/certificate_spec.rb +0 -22
- data/spec/unit/application/master_spec.rb +0 -404
- data/spec/unit/configurer/downloader_factory_spec.rb +0 -129
- data/spec/unit/face/ca_spec.rb +0 -10
- data/spec/unit/face/catalog_spec.rb +0 -7
- data/spec/unit/face/certificate_request_spec.rb +0 -10
- data/spec/unit/face/certificate_revocation_list_spec.rb +0 -10
- data/spec/unit/face/certificate_spec.rb +0 -231
- data/spec/unit/face/module/build_spec.rb +0 -69
- data/spec/unit/face/module_spec.rb +0 -3
- data/spec/unit/graph/title_hash_prioritizer_spec.rb +0 -49
- data/spec/unit/indirector/certificate/ca_spec.rb +0 -23
- data/spec/unit/indirector/certificate/disabled_ca_spec.rb +0 -33
- data/spec/unit/indirector/certificate_request/ca_spec.rb +0 -57
- data/spec/unit/indirector/certificate_request/disabled_ca_spec.rb +0 -33
- data/spec/unit/indirector/certificate_revocation_list/ca_spec.rb +0 -16
- data/spec/unit/indirector/certificate_revocation_list/disabled_ca_spec.rb +0 -33
- data/spec/unit/indirector/certificate_revocation_list/file_spec.rb +0 -17
- data/spec/unit/indirector/certificate_revocation_list/rest_spec.rb +0 -34
- data/spec/unit/indirector/certificate_status/file_spec.rb +0 -191
- data/spec/unit/indirector/certificate_status/rest_spec.rb +0 -18
- data/spec/unit/indirector/code_spec.rb +0 -31
- data/spec/unit/indirector/key/ca_spec.rb +0 -23
- data/spec/unit/indirector/key/disabled_ca_spec.rb +0 -33
- data/spec/unit/indirector/ldap_spec.rb +0 -137
- data/spec/unit/indirector/node/ldap_spec.rb +0 -462
- data/spec/unit/indirector/node/write_only_yaml_spec.rb +0 -12
- data/spec/unit/indirector/store_configs_spec.rb +0 -8
- data/spec/unit/man_spec.rb +0 -32
- data/spec/unit/module_tool/applications/builder_spec.rb +0 -432
- data/spec/unit/network/http/api/ca/v1_spec.rb +0 -26
- data/spec/unit/network/http/rack/rest_spec.rb +0 -325
- data/spec/unit/network/http/rack_spec.rb +0 -43
- data/spec/unit/network/http/webrick/rest_spec.rb +0 -231
- data/spec/unit/network/http/webrick_spec.rb +0 -280
- data/spec/unit/network/server_spec.rb +0 -95
- data/spec/unit/provider/aixobject_spec.rb +0 -101
- data/spec/unit/provider/augeas/augeas_spec.rb +0 -1025
- data/spec/unit/provider/cisco_spec.rb +0 -15
- data/spec/unit/provider/cron/crontab_spec.rb +0 -207
- data/spec/unit/provider/cron/parsed_spec.rb +0 -358
- data/spec/unit/provider/host/parsed_spec.rb +0 -233
- data/spec/unit/provider/interface/cisco_spec.rb +0 -57
- data/spec/unit/provider/macauthorization_spec.rb +0 -155
- data/spec/unit/provider/mcx/mcxcontent_spec.rb +0 -192
- data/spec/unit/provider/mount/parsed_spec.rb +0 -317
- data/spec/unit/provider/mount_spec.rb +0 -165
- data/spec/unit/provider/naginator_spec.rb +0 -79
- data/spec/unit/provider/network_device_spec.rb +0 -152
- data/spec/unit/provider/scheduled_task/win32_taskscheduler_spec.rb +0 -2060
- data/spec/unit/provider/selboolean_spec.rb +0 -36
- data/spec/unit/provider/selmodule-example.pp +0 -0
- data/spec/unit/provider/selmodule_spec.rb +0 -79
- data/spec/unit/provider/ssh_authorized_key/parsed_spec.rb +0 -277
- data/spec/unit/provider/sshkey/parsed_spec.rb +0 -95
- data/spec/unit/provider/vlan/cisco_spec.rb +0 -55
- data/spec/unit/provider/yumrepo/inifile_spec.rb +0 -326
- data/spec/unit/provider/zfs/zfs_spec.rb +0 -112
- data/spec/unit/provider/zone/solaris_spec.rb +0 -247
- data/spec/unit/provider/zpool/zpool_spec.rb +0 -251
- data/spec/unit/ssl/certificate_authority/autosign_command_spec.rb +0 -30
- data/spec/unit/ssl/certificate_authority/interface_spec.rb +0 -560
- data/spec/unit/ssl/certificate_authority_spec.rb +0 -1184
- data/spec/unit/ssl/certificate_revocation_list_spec.rb +0 -196
- data/spec/unit/ssl/configuration_spec.rb +0 -141
- data/spec/unit/ssl/inventory_spec.rb +0 -151
- data/spec/unit/type/augeas_spec.rb +0 -119
- data/spec/unit/type/computer_spec.rb +0 -80
- data/spec/unit/type/cron_spec.rb +0 -543
- data/spec/unit/type/host_spec.rb +0 -681
- data/spec/unit/type/interface_spec.rb +0 -129
- data/spec/unit/type/k5login_spec.rb +0 -115
- data/spec/unit/type/macauthorization_spec.rb +0 -113
- data/spec/unit/type/mailalias_spec.rb +0 -49
- data/spec/unit/type/maillist_spec.rb +0 -41
- data/spec/unit/type/mcx_spec.rb +0 -79
- data/spec/unit/type/mount_spec.rb +0 -634
- data/spec/unit/type/nagios_spec.rb +0 -313
- data/spec/unit/type/scheduled_task_spec.rb +0 -103
- data/spec/unit/type/selboolean_spec.rb +0 -44
- data/spec/unit/type/selmodule_spec.rb +0 -17
- data/spec/unit/type/ssh_authorized_key_spec.rb +0 -258
- data/spec/unit/type/sshkey_spec.rb +0 -77
- data/spec/unit/type/vlan_spec.rb +0 -44
- data/spec/unit/type/yumrepo_spec.rb +0 -398
- data/spec/unit/type/zfs_spec.rb +0 -46
- data/spec/unit/type/zone_spec.rb +0 -172
- data/spec/unit/type/zpool_spec.rb +0 -109
- data/spec/unit/util/nagios_maker_spec.rb +0 -122
- data/spec/unit/util/network_device/cisco/device_spec.rb +0 -482
- data/spec/unit/util/network_device/cisco/facts_spec.rb +0 -64
- data/spec/unit/util/network_device/cisco/interface_spec.rb +0 -88
- data/spec/unit/util/network_device/ipcalc_spec.rb +0 -62
- data/spec/unit/util/network_device/transport/ssh_spec.rb +0 -218
- data/spec/unit/util/network_device/transport/telnet_spec.rb +0 -86
- data/spec/watchr.rb +0 -138
data/man/man5/puppet.conf.5
CHANGED
@@ -1,15 +1,18 @@
|
|
1
1
|
.\" generated with Ronn/v0.7.3
|
2
2
|
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
3
3
|
.
|
4
|
-
.TH "PUPPETCONF" "5" "
|
5
|
-
\fBThis page is autogenerated; any changes will get overwritten\fR
|
4
|
+
.TH "PUPPETCONF" "5" "January 2023" "Puppet, Inc." "Puppet manual"
|
5
|
+
\fBThis page is autogenerated; any changes will get overwritten\fR
|
6
6
|
.
|
7
|
-
.SH "Configuration
|
7
|
+
.SH "Configuration settings"
|
8
8
|
.
|
9
9
|
.IP "\(bu" 4
|
10
10
|
Each of these settings can be specified in \fBpuppet\.conf\fR or on the command line\.
|
11
11
|
.
|
12
12
|
.IP "\(bu" 4
|
13
|
+
Puppet Enterprise (PE) and open source Puppet share the configuration settings documented here\. However, PE defaults differ from open source defaults for some settings, such as \fBnode_terminus\fR, \fBstoreconfigs\fR, \fBalways_retry_plugins\fR, \fBdisable18n\fR, \fBenvironment_timeout\fR (when Code Manager is enabled), and the Puppet Server JRuby \fBmax\-active\-instances\fR setting\. To verify PE configuration defaults, check the \fBpuppet\.conf\fR or \fBpe\-puppet\-server\.conf\fR file after installation\.
|
14
|
+
.
|
15
|
+
.IP "\(bu" 4
|
13
16
|
When using boolean settings on the command line, use \fB\-\-setting\fR and \fB\-\-no\-setting\fR instead of \fB\-\-setting (true|false)\fR\. (Using \fB\-\-setting false\fR results in "Error: Could not parse application options: needless argument"\.)
|
14
17
|
.
|
15
18
|
.IP "\(bu" 4
|
@@ -22,21 +25,24 @@ Multiple values should be specified as comma\-separated lists; multiple director
|
|
22
25
|
Settings that represent time intervals should be specified in duration format: an integer immediately followed by one of the units \'y\' (years of 365 days), \'d\' (days), \'h\' (hours), \'m\' (minutes), or \'s\' (seconds)\. The unit cannot be combined with other units, and defaults to seconds when omitted\. Examples are \'3600\' which is equivalent to \'1h\' (one hour), and \'1825d\' which is equivalent to \'5y\' (5 years)\.
|
23
26
|
.
|
24
27
|
.IP "\(bu" 4
|
28
|
+
If you use the \fBsplay\fR setting, note that the period that it waits changes each time the Puppet agent is restarted\.
|
29
|
+
.
|
30
|
+
.IP "\(bu" 4
|
25
31
|
Settings that take a single file or directory can optionally set the owner, group, and mode for their value: \fBrundir = $vardir/run { owner = puppet, group = puppet, mode = 644 }\fR
|
26
32
|
.
|
27
33
|
.IP "\(bu" 4
|
28
|
-
The Puppet executables
|
34
|
+
The Puppet executables ignores any setting that isn\'t relevant to their function\.
|
29
35
|
.
|
30
36
|
.IP "" 0
|
31
37
|
.
|
32
38
|
.P
|
33
|
-
See the configuration guide \fIhttps://
|
39
|
+
See the configuration guide \fIhttps://puppet\.com/docs/puppet/latest/config_about_settings\.html\fR for more details\.
|
34
40
|
.
|
35
41
|
.SS "agent_catalog_run_lockfile"
|
36
42
|
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\.
|
37
43
|
.
|
38
44
|
.IP "\(bu" 4
|
39
|
-
\fIDefault\fR: $statedir/agent_catalog_run\.lock
|
45
|
+
\fIDefault\fR: \fB$statedir/agent_catalog_run\.lock\fR
|
40
46
|
.
|
41
47
|
.IP "" 0
|
42
48
|
.
|
@@ -44,15 +50,15 @@ A lock file to indicate that a puppet agent catalog run is currently in progress
|
|
44
50
|
A lock file to indicate that puppet agent runs have been administratively disabled\. File contains a JSON object with state information\.
|
45
51
|
.
|
46
52
|
.IP "\(bu" 4
|
47
|
-
\fIDefault\fR: $statedir/agent_disabled\.lock
|
53
|
+
\fIDefault\fR: \fB$statedir/agent_disabled\.lock\fR
|
48
54
|
.
|
49
55
|
.IP "" 0
|
50
56
|
.
|
51
57
|
.SS "allow_duplicate_certs"
|
52
|
-
Whether to allow a new certificate request to overwrite an existing certificate\.
|
58
|
+
Whether to allow a new certificate request to overwrite an existing certificate request\. If true, then the old certificate must be cleaned using \fBpuppetserver ca clean\fR, and the new request signed using \fBpuppetserver ca sign\fR\.
|
53
59
|
.
|
54
60
|
.IP "\(bu" 4
|
55
|
-
\fIDefault\fR:
|
61
|
+
\fIDefault\fR: \fBfalse\fR
|
56
62
|
.
|
57
63
|
.IP "" 0
|
58
64
|
.
|
@@ -63,15 +69,7 @@ Affects how we cache attempts to load Puppet resource types and features\. If tr
|
|
63
69
|
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\.
|
64
70
|
.
|
65
71
|
.IP "\(bu" 4
|
66
|
-
\fIDefault\fR:
|
67
|
-
.
|
68
|
-
.IP "" 0
|
69
|
-
.
|
70
|
-
.SS "app_management"
|
71
|
-
This setting has no effect and will be removed in a future Puppet version\.
|
72
|
-
.
|
73
|
-
.IP "\(bu" 4
|
74
|
-
\fIDefault\fR: false
|
72
|
+
\fIDefault\fR: \fBtrue\fR
|
75
73
|
.
|
76
74
|
.IP "" 0
|
77
75
|
.
|
@@ -79,12 +77,12 @@ This setting has no effect and will be removed in a future Puppet version\.
|
|
79
77
|
Whether log files should always flush to disk\.
|
80
78
|
.
|
81
79
|
.IP "\(bu" 4
|
82
|
-
\fIDefault\fR:
|
80
|
+
\fIDefault\fR: \fBtrue\fR
|
83
81
|
.
|
84
82
|
.IP "" 0
|
85
83
|
.
|
86
84
|
.SS "autosign"
|
87
|
-
Whether (and how) to autosign certificate requests\. This setting is only relevant on a
|
85
|
+
Whether (and how) to autosign certificate requests\. This setting is only relevant on a Puppet Server acting as a certificate authority (CA)\.
|
88
86
|
.
|
89
87
|
.P
|
90
88
|
Valid values are true (autosigns all certificate requests; not recommended), false (disables autosigning certificates), or the absolute path to a file\.
|
@@ -93,16 +91,16 @@ Valid values are true (autosigns all certificate requests; not recommended), fal
|
|
93
91
|
The file specified in this setting may be either a \fBconfiguration file\fR or a \fBcustom policy executable\.\fR Puppet will automatically determine what it is: If the Puppet user (see the \fBuser\fR setting) can execute the file, it will be treated as a policy executable; otherwise, it will be treated as a config file\.
|
94
92
|
.
|
95
93
|
.P
|
96
|
-
If a custom policy executable is configured, the CA
|
94
|
+
If a custom policy executable is configured, the CA Puppet Server will run it every time it receives a CSR\. The executable will be passed the subject CN of the request \fIas a command line argument,\fR and the contents of the CSR in PEM format \fIon stdin\.\fR It should exit with a status of 0 if the cert should be autosigned and non\-zero if the cert should not be autosigned\.
|
97
95
|
.
|
98
96
|
.P
|
99
|
-
If a certificate request is not autosigned, it will persist for review\. An admin user can use the \
|
97
|
+
If a certificate request is not autosigned, it will persist for review\. An admin user can use the \fBpuppetserver ca sign\fR command to manually sign it, or can delete the request\.
|
100
98
|
.
|
101
99
|
.P
|
102
|
-
For info on autosign configuration files, see the guide to Puppet\'s config files \fIhttps://
|
100
|
+
For info on autosign configuration files, see the guide to Puppet\'s config files \fIhttps://puppet\.com/docs/puppet/latest/config_file_autosign\.html\fR\.
|
103
101
|
.
|
104
102
|
.IP "\(bu" 4
|
105
|
-
\fIDefault\fR: $confdir/autosign\.conf
|
103
|
+
\fIDefault\fR: \fB$confdir/autosign\.conf\fR
|
106
104
|
.
|
107
105
|
.IP "" 0
|
108
106
|
.
|
@@ -110,41 +108,34 @@ For info on autosign configuration files, see the guide to Puppet\'s config file
|
|
110
108
|
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 \';\'\.)
|
111
109
|
.
|
112
110
|
.P
|
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://
|
111
|
+
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://puppet\.com/docs/puppet/latest/environments_about\.html\fR
|
114
112
|
.
|
115
113
|
.IP "\(bu" 4
|
116
|
-
\fIDefault\fR: $codedir/modules:/opt/puppetlabs/puppet/modules
|
114
|
+
\fIDefault\fR: \fB$codedir/modules:/opt/puppetlabs/puppet/modules\fR
|
117
115
|
.
|
118
116
|
.IP "" 0
|
119
117
|
.
|
120
|
-
.SS "
|
121
|
-
The
|
118
|
+
.SS "binder_config"
|
119
|
+
The binder configuration file\. Puppet reads this file on each request to configure the bindings system\. If set to nil (the default), a $confdir/binder_config\.yaml is optionally loaded\. If it does not exists, a default configuration is used\. If the setting :binding_config is specified, it must reference a valid and existing yaml file\.
|
122
120
|
.
|
123
121
|
.IP "\(bu" 4
|
124
|
-
\fIDefault\fR:
|
122
|
+
\fIDefault\fR: ``
|
125
123
|
.
|
126
124
|
.IP "" 0
|
127
|
-
.
|
128
|
-
.SS "binder_config"
|
129
|
-
The binder configuration file\. Puppet reads this file on each request to configure the bindings system\. If set to nil (the default), a $confdir/binder_config\.yaml is optionally loaded\. If it does not exists, a default configuration is used\. If the setting :binding_config is specified, it must reference a valid and existing yaml file\.
|
130
|
-
.
|
131
|
-
.TP
|
132
|
-
\fIDefault\fR:
|
133
|
-
|
134
125
|
.
|
135
126
|
.SS "bucketdir"
|
136
127
|
Where FileBucket files are stored\.
|
137
128
|
.
|
138
129
|
.IP "\(bu" 4
|
139
|
-
\fIDefault\fR: $vardir/bucket
|
130
|
+
\fIDefault\fR: \fB$vardir/bucket\fR
|
140
131
|
.
|
141
132
|
.IP "" 0
|
142
133
|
.
|
143
|
-
.SS "
|
144
|
-
|
134
|
+
.SS "ca_fingerprint"
|
135
|
+
The expected fingerprint of the CA certificate\. If specified, the agent will compare the CA certificate fingerprint that it downloads against this value and reject the CA certificate if the values do not match\. This only applies during the first download of the CA certificate\.
|
145
136
|
.
|
146
137
|
.IP "\(bu" 4
|
147
|
-
\fIDefault\fR:
|
138
|
+
\fIDefault\fR: ``
|
148
139
|
.
|
149
140
|
.IP "" 0
|
150
141
|
.
|
@@ -152,7 +143,7 @@ Whether the master should function as a certificate authority\.
|
|
152
143
|
The name to use the Certificate Authority certificate\.
|
153
144
|
.
|
154
145
|
.IP "\(bu" 4
|
155
|
-
\fIDefault\fR:
|
146
|
+
\fIDefault\fR: \fBPuppet CA: $certname\fR
|
156
147
|
.
|
157
148
|
.IP "" 0
|
158
149
|
.
|
@@ -160,7 +151,7 @@ The name to use the Certificate Authority certificate\.
|
|
160
151
|
The port to use for the certificate authority\.
|
161
152
|
.
|
162
153
|
.IP "\(bu" 4
|
163
|
-
\fIDefault\fR: $
|
154
|
+
\fIDefault\fR: \fB$serverport\fR
|
164
155
|
.
|
165
156
|
.IP "" 0
|
166
157
|
.
|
@@ -168,7 +159,7 @@ The port to use for the certificate authority\.
|
|
168
159
|
The server to use for certificate authority requests\. It\'s a separate server because it cannot and does not need to horizontally scale\.
|
169
160
|
.
|
170
161
|
.IP "\(bu" 4
|
171
|
-
\fIDefault\fR: $server
|
162
|
+
\fIDefault\fR: \fB$server\fR
|
172
163
|
.
|
173
164
|
.IP "" 0
|
174
165
|
.
|
@@ -176,7 +167,7 @@ The server to use for certificate authority requests\. It\'s a separate server b
|
|
176
167
|
The default TTL for new certificates\. This setting can be a time interval in seconds (30 or 30s), minutes (30m), hours (6h), days (2d), or years (5y)\.
|
177
168
|
.
|
178
169
|
.IP "\(bu" 4
|
179
|
-
\fIDefault\fR:
|
170
|
+
\fIDefault\fR: \fB5y\fR
|
180
171
|
.
|
181
172
|
.IP "" 0
|
182
173
|
.
|
@@ -184,15 +175,15 @@ The default TTL for new certificates\. This setting can be a time interval in se
|
|
184
175
|
The CA certificate\.
|
185
176
|
.
|
186
177
|
.IP "\(bu" 4
|
187
|
-
\fIDefault\fR: $cadir/ca_crt\.pem
|
178
|
+
\fIDefault\fR: \fB$cadir/ca_crt\.pem\fR
|
188
179
|
.
|
189
180
|
.IP "" 0
|
190
181
|
.
|
191
182
|
.SS "cacrl"
|
192
|
-
The certificate revocation list (CRL) for the CA\.
|
183
|
+
The certificate revocation list (CRL) for the CA\.
|
193
184
|
.
|
194
185
|
.IP "\(bu" 4
|
195
|
-
\fIDefault\fR: $cadir/ca_crl\.pem
|
186
|
+
\fIDefault\fR: \fB$cadir/ca_crl\.pem\fR
|
196
187
|
.
|
197
188
|
.IP "" 0
|
198
189
|
.
|
@@ -200,7 +191,7 @@ The certificate revocation list (CRL) for the CA\. Will be used if present but o
|
|
200
191
|
The root directory for the certificate authority\.
|
201
192
|
.
|
202
193
|
.IP "\(bu" 4
|
203
|
-
\fIDefault\fR:
|
194
|
+
\fIDefault\fR: \fB/var/lib/jenkins/\.puppetlabs/etc/puppet/ssl/ca\fR
|
204
195
|
.
|
205
196
|
.IP "" 0
|
206
197
|
.
|
@@ -208,23 +199,7 @@ The root directory for the certificate authority\.
|
|
208
199
|
The CA private key\.
|
209
200
|
.
|
210
201
|
.IP "\(bu" 4
|
211
|
-
\fIDefault\fR: $cadir/ca_key\.pem
|
212
|
-
.
|
213
|
-
.IP "" 0
|
214
|
-
.
|
215
|
-
.SS "capass"
|
216
|
-
Where the CA stores the password for the private key\.
|
217
|
-
.
|
218
|
-
.IP "\(bu" 4
|
219
|
-
\fIDefault\fR: $caprivatedir/ca\.pass
|
220
|
-
.
|
221
|
-
.IP "" 0
|
222
|
-
.
|
223
|
-
.SS "caprivatedir"
|
224
|
-
Where the CA stores private certificate information\.
|
225
|
-
.
|
226
|
-
.IP "\(bu" 4
|
227
|
-
\fIDefault\fR: $cadir/private
|
202
|
+
\fIDefault\fR: \fB$cadir/ca_key\.pem\fR
|
228
203
|
.
|
229
204
|
.IP "" 0
|
230
205
|
.
|
@@ -232,22 +207,23 @@ Where the CA stores private certificate information\.
|
|
232
207
|
The CA public key\.
|
233
208
|
.
|
234
209
|
.IP "\(bu" 4
|
235
|
-
\fIDefault\fR: $cadir/ca_pub\.pem
|
210
|
+
\fIDefault\fR: \fB$cadir/ca_pub\.pem\fR
|
236
211
|
.
|
237
212
|
.IP "" 0
|
238
213
|
.
|
239
214
|
.SS "catalog_cache_terminus"
|
240
215
|
How to store cached catalogs\. Valid values are \'json\', \'msgpack\' and \'yaml\'\. The agent application defaults to \'json\'\.
|
241
216
|
.
|
242
|
-
.
|
243
|
-
\fIDefault\fR:
|
244
|
-
|
217
|
+
.IP "\(bu" 4
|
218
|
+
\fIDefault\fR: ``
|
219
|
+
.
|
220
|
+
.IP "" 0
|
245
221
|
.
|
246
222
|
.SS "catalog_terminus"
|
247
223
|
Where to get node catalogs\. This is useful to change if, for instance, you\'d like to pre\-compile catalogs and store them in memcached or some other easily\-accessed store\.
|
248
224
|
.
|
249
225
|
.IP "\(bu" 4
|
250
|
-
\fIDefault\fR:
|
226
|
+
\fIDefault\fR: \fBcompiler\fR
|
251
227
|
.
|
252
228
|
.IP "" 0
|
253
229
|
.
|
@@ -255,7 +231,7 @@ Where to get node catalogs\. This is useful to change if, for instance, you\'d l
|
|
255
231
|
The inventory file\. This is a text file to which the CA writes a complete listing of all certificates\.
|
256
232
|
.
|
257
233
|
.IP "\(bu" 4
|
258
|
-
\fIDefault\fR: $cadir/inventory\.txt
|
234
|
+
\fIDefault\fR: \fB$cadir/inventory\.txt\fR
|
259
235
|
.
|
260
236
|
.IP "" 0
|
261
237
|
.
|
@@ -263,26 +239,38 @@ The inventory file\. This is a text file to which the CA writes a complete listi
|
|
263
239
|
The certificate directory\.
|
264
240
|
.
|
265
241
|
.IP "\(bu" 4
|
266
|
-
\fIDefault\fR: $ssldir/certs
|
242
|
+
\fIDefault\fR: \fB$ssldir/certs\fR
|
267
243
|
.
|
268
244
|
.IP "" 0
|
269
245
|
.
|
270
246
|
.SS "certificate_revocation"
|
271
|
-
Whether certificate revocation should be
|
247
|
+
Whether certificate revocation checking should be enabled, and what level of checking should be performed\.
|
248
|
+
.
|
249
|
+
.P
|
250
|
+
When certificate revocation is enabled, Puppet expects the contents of its CRL to be one or more PEM\-encoded CRLs concatenated together\. When using a cert bundle, CRLs for all CAs in the chain of trust must be included in the crl file\. The chain should be ordered from least to most authoritative, with the first CRL listed being for the root of the chain and the last being for the leaf CA\.
|
251
|
+
.
|
252
|
+
.P
|
253
|
+
When certificate_revocation is set to \'true\' or \'chain\', Puppet ensures that each CA in the chain of trust has not been revoked by its issuing CA\.
|
254
|
+
.
|
255
|
+
.P
|
256
|
+
When certificate_revocation is set to \'leaf\', Puppet verifies certs against the issuing CA\'s revocation list, but it does not verify the revocation status of the issuing CA or any CA above it within the chain of trust\.
|
257
|
+
.
|
258
|
+
.P
|
259
|
+
When certificate_revocation is set to \'false\', Puppet disables all certificate revocation checking and does not attempt to download the CRL\.
|
272
260
|
.
|
273
261
|
.IP "\(bu" 4
|
274
|
-
\fIDefault\fR:
|
262
|
+
\fIDefault\fR: \fBchain\fR
|
275
263
|
.
|
276
264
|
.IP "" 0
|
277
265
|
.
|
278
266
|
.SS "certname"
|
279
|
-
The name to use when handling certificates\. When a node requests a certificate from the CA
|
267
|
+
The name to use when handling certificates\. When a node requests a certificate from the CA Puppet Server, it uses the value of the \fBcertname\fR setting as its requested Subject CN\.
|
280
268
|
.
|
281
269
|
.P
|
282
|
-
This is the name used when managing a node\'s permissions in auth\.conf \fIhttps://
|
270
|
+
This is the name used when managing a node\'s permissions in auth\.conf \fIhttps://puppet\.com/docs/puppet/latest/config_file_auth\.html\fR\. In most cases, it is also used as the node\'s name when matching node definitions \fIhttps://puppet\.com/docs/puppet/latest/lang_node_definitions\.html\fR and requesting data from an ENC\. (This can be changed with the \fBnode_name_value\fR and \fBnode_name_fact\fR settings, although you should only do so if you have a compelling reason\.)
|
283
271
|
.
|
284
272
|
.P
|
285
|
-
A node\'s certname is available in Puppet manifests as \fB$trusted[\'certname\']\fR\. (See Facts and Built\-In Variables \fIhttps://
|
273
|
+
A node\'s certname is available in Puppet manifests as \fB$trusted[\'certname\']\fR\. (See Facts and Built\-In Variables \fIhttps://puppet\.com/docs/puppet/latest/lang_facts_and_builtin_vars\.html\fR for more details\.)
|
286
274
|
.
|
287
275
|
.IP "\(bu" 4
|
288
276
|
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\.)
|
@@ -290,13 +278,24 @@ For best compatibility, you should limit the value of \fBcertname\fR to only use
|
|
290
278
|
.IP "\(bu" 4
|
291
279
|
The special value \fBca\fR is reserved, and can\'t be used as the certname for a normal node\.
|
292
280
|
.
|
281
|
+
.IP
|
282
|
+
\fBNote:\fR You must set the certname in the main section of the puppet\.conf file\. Setting it in a different section causes errors\.
|
283
|
+
.
|
293
284
|
.IP "" 0
|
294
285
|
.
|
295
286
|
.P
|
296
287
|
Defaults to the node\'s fully qualified domain name\.
|
297
288
|
.
|
298
289
|
.IP "\(bu" 4
|
299
|
-
\fIDefault\fR:
|
290
|
+
\fIDefault\fR: \fBthe Host\'s fully qualified domain name, as determined by Facter\fR
|
291
|
+
.
|
292
|
+
.IP "" 0
|
293
|
+
.
|
294
|
+
.SS "ciphers"
|
295
|
+
The list of ciphersuites for TLS connections initiated by puppet\. The default value is chosen to support TLS 1\.0 and up, but can be made more restrictive if needed\. The ciphersuites must be specified in OpenSSL format, not IANA\.
|
296
|
+
.
|
297
|
+
.IP "\(bu" 4
|
298
|
+
\fIDefault\fR: \fBECDHE\-ECDSA\-AES128\-GCM\-SHA256:ECDHE\-RSA\-AES128\-GCM\-SHA256:ECDHE\-ECDSA\-AES256\-GCM\-SHA384:ECDHE\-RSA\-AES256\-GCM\-SHA384:ECDHE\-ECDSA\-CHACHA20\-POLY1305:ECDHE\-RSA\-CHACHA20\-POLY1305:DHE\-RSA\-AES128\-GCM\-SHA256:DHE\-RSA\-AES256\-GCM\-SHA384:DHE\-RSA\-CHACHA20\-POLY1305:ECDHE\-ECDSA\-AES128\-SHA256:ECDHE\-RSA\-AES128\-SHA256:ECDHE\-ECDSA\-AES128\-SHA:ECDHE\-RSA\-AES128\-SHA:ECDHE\-ECDSA\-AES256\-SHA384:ECDHE\-RSA\-AES256\-SHA384:ECDHE\-ECDSA\-AES256\-SHA:ECDHE\-RSA\-AES256\-SHA:DHE\-RSA\-AES128\-SHA256:DHE\-RSA\-AES256\-SHA256:AES128\-GCM\-SHA256:AES256\-GCM\-SHA384:AES128\-SHA256:AES256\-SHA256\fR
|
300
299
|
.
|
301
300
|
.IP "" 0
|
302
301
|
.
|
@@ -304,7 +303,7 @@ Defaults to the node\'s fully qualified domain name\.
|
|
304
303
|
The file in which puppet agent stores a list of the classes associated with the retrieved configuration\. Can be loaded in the separate \fBpuppet\fR executable using the \fB\-\-loadclasses\fR option\.
|
305
304
|
.
|
306
305
|
.IP "\(bu" 4
|
307
|
-
\fIDefault\fR: $statedir/classes\.txt
|
306
|
+
\fIDefault\fR: \fB$statedir/classes\.txt\fR
|
308
307
|
.
|
309
308
|
.IP "" 0
|
310
309
|
.
|
@@ -312,7 +311,7 @@ The file in which puppet agent stores a list of the classes associated with the
|
|
312
311
|
The directory in which serialized data is stored on the client\.
|
313
312
|
.
|
314
313
|
.IP "\(bu" 4
|
315
|
-
\fIDefault\fR: $vardir/client_data
|
314
|
+
\fIDefault\fR: \fB$vardir/client_data\fR
|
316
315
|
.
|
317
316
|
.IP "" 0
|
318
317
|
.
|
@@ -320,7 +319,7 @@ The directory in which serialized data is stored on the client\.
|
|
320
319
|
Where FileBucket files are stored locally\.
|
321
320
|
.
|
322
321
|
.IP "\(bu" 4
|
323
|
-
\fIDefault\fR: $vardir/clientbucket
|
322
|
+
\fIDefault\fR: \fB$vardir/clientbucket\fR
|
324
323
|
.
|
325
324
|
.IP "" 0
|
326
325
|
.
|
@@ -328,7 +327,7 @@ Where FileBucket files are stored locally\.
|
|
328
327
|
The directory in which client\-side YAML data is stored\.
|
329
328
|
.
|
330
329
|
.IP "\(bu" 4
|
331
|
-
\fIDefault\fR: $vardir/client_yaml
|
330
|
+
\fIDefault\fR: \fB$vardir/client_yaml\fR
|
332
331
|
.
|
333
332
|
.IP "" 0
|
334
333
|
.
|
@@ -339,15 +338,15 @@ Code to parse directly\. This is essentially only used by \fBpuppet\fR, and shou
|
|
339
338
|
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\.
|
340
339
|
.
|
341
340
|
.IP "\(bu" 4
|
342
|
-
\fIDefault\fR:
|
341
|
+
\fIDefault\fR: \fBUnix/Linux: /etc/puppetlabs/code \-\- Windows: C:\eProgramData\ePuppetLabs\ecode \-\- Non\-root user: ~/\.puppetlabs/etc/code\fR
|
343
342
|
.
|
344
343
|
.IP "" 0
|
345
344
|
.
|
346
345
|
.SS "color"
|
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\.
|
346
|
+
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\.
|
348
347
|
.
|
349
348
|
.IP "\(bu" 4
|
350
|
-
\fIDefault\fR:
|
349
|
+
\fIDefault\fR: \fBansi\fR
|
351
350
|
.
|
352
351
|
.IP "" 0
|
353
352
|
.
|
@@ -355,7 +354,7 @@ Whether to use colors when logging to the console\. Valid values are \fBansi\fR
|
|
355
354
|
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\.
|
356
355
|
.
|
357
356
|
.IP "\(bu" 4
|
358
|
-
\fIDefault\fR:
|
357
|
+
\fIDefault\fR: \fBUnix/Linux: /etc/puppetlabs/puppet \-\- Windows: C:\eProgramData\ePuppetLabs\epuppet\eetc \-\- Non\-root user: ~/\.puppetlabs/etc/puppet\fR
|
359
358
|
.
|
360
359
|
.IP "" 0
|
361
360
|
.
|
@@ -363,7 +362,7 @@ The main Puppet configuration directory\. The default for this setting is calcul
|
|
363
362
|
The configuration file for the current puppet application\.
|
364
363
|
.
|
365
364
|
.IP "\(bu" 4
|
366
|
-
\fIDefault\fR: $confdir/${config_file_name}
|
365
|
+
\fIDefault\fR: \fB$confdir/${config_file_name}\fR
|
367
366
|
.
|
368
367
|
.IP "" 0
|
369
368
|
.
|
@@ -371,7 +370,7 @@ The configuration file for the current puppet application\.
|
|
371
370
|
The name of the puppet config file\.
|
372
371
|
.
|
373
372
|
.IP "\(bu" 4
|
374
|
-
\fIDefault\fR:
|
373
|
+
\fIDefault\fR: \fBpuppet\.conf\fR
|
375
374
|
.
|
376
375
|
.IP "" 0
|
377
376
|
.
|
@@ -379,21 +378,27 @@ The name of the puppet config file\.
|
|
379
378
|
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\.
|
380
379
|
.
|
381
380
|
.P
|
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://
|
381
|
+
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://puppet\.com/docs/puppet/latest/environments_about\.html\fR
|
383
382
|
.
|
384
383
|
.SS "configprint"
|
385
|
-
|
384
|
+
Prints 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\'\. This setting is deprecated, the \'puppet config\' command replaces this functionality\.
|
385
|
+
.
|
386
|
+
.SS "crl_refresh_interval"
|
387
|
+
How often the Puppet agent refreshes its local CRL\. By default the CRL is only downloaded once, and never refreshed\. If a duration is specified, then the agent will refresh its CRL whenever it next runs and the elapsed time since the CRL was last refreshed exceeds the duration\.
|
388
|
+
.
|
389
|
+
.P
|
390
|
+
In general, the duration should be greater than the \fBruninterval\fR\. Setting it to an equal or lesser value will cause the CRL to be refreshed on every run\.
|
386
391
|
.
|
387
|
-
.
|
388
|
-
|
392
|
+
.P
|
393
|
+
If the agent downloads a new CRL, the agent will use it for subsequent network requests\. If the refresh request fails or if the CRL is unchanged on the server, then the agent run will continue using the local CRL it already has\.This setting can be a time interval in seconds (30 or 30s), minutes (30m), hours (6h), days (2d), or years (5y)\.
|
389
394
|
.
|
390
395
|
.IP "\(bu" 4
|
391
|
-
\fIDefault\fR:
|
396
|
+
\fIDefault\fR: ``
|
392
397
|
.
|
393
398
|
.IP "" 0
|
394
399
|
.
|
395
400
|
.SS "csr_attributes"
|
396
|
-
An optional file containing custom attributes to add to certificate signing requests (CSRs)\. You should ensure that this file does not exist on your CA
|
401
|
+
An optional file containing custom attributes to add to certificate signing requests (CSRs)\. You should ensure that this file does not exist on your CA Puppet Server; if it does, unwanted certificate extensions may leak into certificates created with the \fBpuppetserver ca generate\fR command\.
|
397
402
|
.
|
398
403
|
.P
|
399
404
|
If present, this file must be a YAML hash containing a \fBcustom_attributes\fR key and/or an \fBextension_requests\fR key\. The value of each key must be a hash, where each key is a valid OID and each value is an object that can be cast to a string\.
|
@@ -402,18 +407,18 @@ If present, this file must be a YAML hash containing a \fBcustom_attributes\fR k
|
|
402
407
|
Custom attributes can be used by the CA when deciding whether to sign the certificate, but are then discarded\. Attribute OIDs can be any OID value except the standard CSR attributes (i\.e\. attributes described in RFC 2985 section 5\.4)\. This is useful for embedding a pre\-shared key for autosigning policy executables (see the \fBautosign\fR setting), often by using the \fB1\.2\.840\.113549\.1\.9\.7\fR ("challenge password") OID\.
|
403
408
|
.
|
404
409
|
.P
|
405
|
-
Extension requests will be permanently embedded in the final certificate\. Extension OIDs must be in the "ppRegCertExt" (\fB1\.3\.6\.1\.4\.1\.34380\.1\.1\fR)
|
410
|
+
Extension requests will be permanently embedded in the final certificate\. Extension OIDs must be in the "ppRegCertExt" (\fB1\.3\.6\.1\.4\.1\.34380\.1\.1\fR), "ppPrivCertExt" (\fB1\.3\.6\.1\.4\.1\.34380\.1\.2\fR), or "ppAuthCertExt" (\fB1\.3\.6\.1\.4\.1\.34380\.1\.3\fR) OID arcs\. The ppRegCertExt arc is reserved for four of the most common pieces of data to embed: \fBpp_uuid\fR (\fB\.1\fR), \fBpp_instance_id\fR (\fB\.2\fR), \fBpp_image_name\fR (\fB\.3\fR), and \fBpp_preshared_key\fR (\fB\.4\fR) \-\-\- in the YAML file, these can be referred to by their short descriptive names instead of their full OID\. The ppPrivCertExt arc is unregulated, and can be used for site\-specific extensions\. The ppAuthCert arc is reserved for two pieces of data to embed: \fBpp_authorization\fR (\fB\.1\fR) and \fBpp_auth_role\fR (\fB\.13\fR)\. As with ppRegCertExt, in the YAML file, these can be referred to by their short descriptive name instead of their full OID\.
|
406
411
|
.
|
407
412
|
.IP "\(bu" 4
|
408
|
-
\fIDefault\fR: $confdir/csr_attributes\.yaml
|
413
|
+
\fIDefault\fR: \fB$confdir/csr_attributes\.yaml\fR
|
409
414
|
.
|
410
415
|
.IP "" 0
|
411
416
|
.
|
412
417
|
.SS "csrdir"
|
413
|
-
Where the CA stores certificate requests
|
418
|
+
Where the CA stores certificate requests\.
|
414
419
|
.
|
415
420
|
.IP "\(bu" 4
|
416
|
-
\fIDefault\fR: $cadir/requests
|
421
|
+
\fIDefault\fR: \fB$cadir/requests\fR
|
417
422
|
.
|
418
423
|
.IP "" 0
|
419
424
|
.
|
@@ -421,7 +426,7 @@ Where the CA stores certificate requests
|
|
421
426
|
Whether to send the process into the background\. This defaults to true on POSIX systems, and to false on Windows (where Puppet currently cannot daemonize)\.
|
422
427
|
.
|
423
428
|
.IP "\(bu" 4
|
424
|
-
\fIDefault\fR:
|
429
|
+
\fIDefault\fR: \fBtrue\fR
|
425
430
|
.
|
426
431
|
.IP "" 0
|
427
432
|
.
|
@@ -429,7 +434,7 @@ Whether to send the process into the background\. This defaults to true on POSIX
|
|
429
434
|
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\.
|
430
435
|
.
|
431
436
|
.IP "\(bu" 4
|
432
|
-
\fIDefault\fR:
|
437
|
+
\fIDefault\fR: \fBhiera\fR
|
433
438
|
.
|
434
439
|
.IP "" 0
|
435
440
|
.
|
@@ -437,7 +442,7 @@ This setting has been deprecated\. Use of any value other than \'hiera\' should
|
|
437
442
|
The default source for files if no server is given in a uri, e\.g\. puppet:///file\. The default of \fBrest\fR causes the file to be retrieved using the \fBserver\fR setting\. When running \fBapply\fR the default is \fBfile_server\fR, causing requests to be filled locally\.
|
438
443
|
.
|
439
444
|
.IP "\(bu" 4
|
440
|
-
\fIDefault\fR:
|
445
|
+
\fIDefault\fR: \fBrest\fR
|
441
446
|
.
|
442
447
|
.IP "" 0
|
443
448
|
.
|
@@ -451,7 +456,7 @@ This setting\'s value can be an absolute or relative path\. An absolute path wil
|
|
451
456
|
In either case, the path can point to a single file or to a directory of manifests to be evaluated in alphabetical order\.
|
452
457
|
.
|
453
458
|
.IP "\(bu" 4
|
454
|
-
\fIDefault\fR: \./manifests
|
459
|
+
\fIDefault\fR: \fB\./manifests\fR
|
455
460
|
.
|
456
461
|
.IP "" 0
|
457
462
|
.
|
@@ -459,7 +464,15 @@ In either case, the path can point to a single file or to a directory of manifes
|
|
459
464
|
Boolean; whether to generate the default schedule resources\. Setting this to false is useful for keeping external report processors clean of skipped schedule resources\.
|
460
465
|
.
|
461
466
|
.IP "\(bu" 4
|
462
|
-
\fIDefault\fR:
|
467
|
+
\fIDefault\fR: \fBtrue\fR
|
468
|
+
.
|
469
|
+
.IP "" 0
|
470
|
+
.
|
471
|
+
.SS "deviceconfdir"
|
472
|
+
The root directory of devices\' $confdir\.
|
473
|
+
.
|
474
|
+
.IP "\(bu" 4
|
475
|
+
\fIDefault\fR: \fB$confdir/devices\fR
|
463
476
|
.
|
464
477
|
.IP "" 0
|
465
478
|
.
|
@@ -467,7 +480,7 @@ Boolean; whether to generate the default schedule resources\. Setting this to fa
|
|
467
480
|
Path to the device config file for puppet device\.
|
468
481
|
.
|
469
482
|
.IP "\(bu" 4
|
470
|
-
\fIDefault\fR: $confdir/device\.conf
|
483
|
+
\fIDefault\fR: \fB$confdir/device\.conf\fR
|
471
484
|
.
|
472
485
|
.IP "" 0
|
473
486
|
.
|
@@ -475,7 +488,7 @@ Path to the device config file for puppet device\.
|
|
475
488
|
The root directory of devices\' $vardir\.
|
476
489
|
.
|
477
490
|
.IP "\(bu" 4
|
478
|
-
\fIDefault\fR: $vardir/devices
|
491
|
+
\fIDefault\fR: \fB$vardir/devices\fR
|
479
492
|
.
|
480
493
|
.IP "" 0
|
481
494
|
.
|
@@ -483,7 +496,7 @@ The root directory of devices\' $vardir\.
|
|
483
496
|
Which diff command to use when printing differences between files\. This setting has no default value on Windows, as standard \fBdiff\fR is not available, but Puppet can use many third\-party diff tools\.
|
484
497
|
.
|
485
498
|
.IP "\(bu" 4
|
486
|
-
\fIDefault\fR:
|
499
|
+
\fIDefault\fR: \fBdiff\fR
|
487
500
|
.
|
488
501
|
.IP "" 0
|
489
502
|
.
|
@@ -491,15 +504,23 @@ Which diff command to use when printing differences between files\. This setting
|
|
491
504
|
Which arguments to pass to the diff command when printing differences between files\. The command to use can be chosen with the \fBdiff\fR setting\.
|
492
505
|
.
|
493
506
|
.IP "\(bu" 4
|
494
|
-
\fIDefault\fR: \-u
|
507
|
+
\fIDefault\fR: \fB\-u\fR
|
495
508
|
.
|
496
509
|
.IP "" 0
|
497
510
|
.
|
498
511
|
.SS "digest_algorithm"
|
499
|
-
Which digest algorithm to use for file resources and the filebucket\. Valid values are md5, sha256\. Default is md5\.
|
512
|
+
Which digest algorithm to use for file resources and the filebucket\. Valid values are md5, sha256, sha384, sha512, sha224\. Default is md5\.
|
513
|
+
.
|
514
|
+
.IP "\(bu" 4
|
515
|
+
\fIDefault\fR: \fBmd5\fR
|
516
|
+
.
|
517
|
+
.IP "" 0
|
518
|
+
.
|
519
|
+
.SS "disable_i18n"
|
520
|
+
If true, turns off all translations of Puppet and module log messages, which affects error, warning, and info log messages, as well as any translations in the report and CLI\.
|
500
521
|
.
|
501
522
|
.IP "\(bu" 4
|
502
|
-
\fIDefault\fR:
|
523
|
+
\fIDefault\fR: \fBfalse\fR
|
503
524
|
.
|
504
525
|
.IP "" 0
|
505
526
|
.
|
@@ -510,7 +531,7 @@ Whether to disallow an environment\-specific main manifest\. When set to \fBtrue
|
|
510
531
|
This setting requires \fBdefault_manifest\fR to be set to an absolute path\.
|
511
532
|
.
|
512
533
|
.IP "\(bu" 4
|
513
|
-
\fIDefault\fR:
|
534
|
+
\fIDefault\fR: \fBfalse\fR
|
514
535
|
.
|
515
536
|
.IP "" 0
|
516
537
|
.
|
@@ -533,90 +554,85 @@ Valid values for this setting are:
|
|
533
554
|
\fBundefined_resources\fR \-\-\- disables warnings about non existing resources\.
|
534
555
|
.
|
535
556
|
.IP "\(bu" 4
|
536
|
-
\fIDefault\fR: []
|
557
|
+
\fIDefault\fR: \fB[]\fR
|
537
558
|
.
|
538
559
|
.IP "" 0
|
539
560
|
.
|
540
561
|
.SS "dns_alt_names"
|
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
|
562
|
+
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 creating a certificate for Puppet agent or Puppet Server\. These can be either IP or DNS, and the type should be specified and followed with a colon\. Untyped inputs will default to DNS\.
|
542
563
|
.
|
543
564
|
.P
|
544
565
|
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\.
|
545
566
|
.
|
546
567
|
.P
|
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
|
548
|
-
.
|
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
|
568
|
+
\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 regenerate the certificate\. For more information on that process, see the cert regen docs \fIhttps://puppet\.com/docs/puppet/latest/ssl_regenerate_certificates\.html\fR\.
|
571
569
|
.
|
572
570
|
.P
|
573
|
-
To see all the alternate names your servers are using, log into your CA server and run \
|
571
|
+
To see all the alternate names your servers are using, log into your CA server and run \fBpuppetserver ca list \-\-all\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\.
|
574
572
|
.
|
575
573
|
.SS "document_all"
|
576
574
|
Whether to document all resources when using \fBpuppet doc\fR to generate manifest documentation\.
|
577
575
|
.
|
578
576
|
.IP "\(bu" 4
|
579
|
-
\fIDefault\fR:
|
577
|
+
\fIDefault\fR: \fBfalse\fR
|
580
578
|
.
|
581
579
|
.IP "" 0
|
582
580
|
.
|
583
581
|
.SS "environment"
|
584
|
-
The environment Puppet is running
|
582
|
+
The environment in which Puppet is running\. For clients, such as \fBpuppet agent\fR, this determines the environment itself, which Puppet uses to find modules and much more\. For servers, such as \fBpuppet server\fR, this provides the default environment for nodes that Puppet knows nothing about\.
|
583
|
+
.
|
584
|
+
.P
|
585
|
+
When defining an environment in the \fB[agent]\fR section, this refers to the environment that the agent requests from the primary server\. The environment doesn\'t have to exist on the local filesystem because the agent fetches it from the primary server\. This definition is used when running \fBpuppet agent\fR\.
|
586
|
+
.
|
587
|
+
.P
|
588
|
+
When defined in the \fB[user]\fR section, the environment refers to the path that Puppet uses to search for code and modules related to its execution\. This requires the environment to exist locally on the filesystem where puppet is being executed\. Puppet subcommands, including \fBpuppet module\fR and \fBpuppet apply\fR, use this definition\.
|
589
|
+
.
|
590
|
+
.P
|
591
|
+
Given that the context and effects vary depending on the config section \fIhttps://puppet\.com/docs/puppet/latest/config_file_main\.html#config\-sections\fR in which the \fBenvironment\fR setting is defined, do not set it globally\.
|
585
592
|
.
|
586
593
|
.IP "\(bu" 4
|
587
|
-
\fIDefault\fR:
|
594
|
+
\fIDefault\fR: \fBproduction\fR
|
588
595
|
.
|
589
596
|
.IP "" 0
|
590
597
|
.
|
591
598
|
.SS "environment_data_provider"
|
592
599
|
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\.
|
593
600
|
.
|
594
|
-
.
|
595
|
-
\fIDefault\fR:
|
596
|
-
|
601
|
+
.IP "\(bu" 4
|
602
|
+
\fIDefault\fR: ``
|
603
|
+
.
|
604
|
+
.IP "" 0
|
597
605
|
.
|
598
606
|
.SS "environment_timeout"
|
599
|
-
How long the Puppet
|
607
|
+
How long the Puppet server should cache data it loads from an environment\.
|
600
608
|
.
|
601
609
|
.P
|
602
|
-
|
610
|
+
A value of \fB0\fR will disable caching\. This setting can also be set to \fBunlimited\fR, which will cache environments until the server is restarted or told to refresh the cache\. All other values will result in Puppet server evicting expired environments\. The expiration time is computed based on either when the environment was created or last accessed, see \fBenvironment_timeout_mode\fR\.
|
603
611
|
.
|
604
612
|
.P
|
605
|
-
|
613
|
+
You should change this setting once your Puppet deployment is doing non\-trivial work\. We chose the default value of \fB0\fR because it lets new users update their code without any extra steps, but it lowers the performance of your Puppet server\. We recommend either:
|
606
614
|
.
|
607
615
|
.IP "\(bu" 4
|
608
|
-
|
616
|
+
Setting this to \fBunlimited\fR and explicitly refreshing your Puppet server as part of your code deployment process\.
|
609
617
|
.
|
610
618
|
.IP "\(bu" 4
|
611
|
-
|
619
|
+
Setting this to a number that will keep your most actively used environments cached, but allow testing environments to fall out of the cache and reduce memory usage\. A value of 3 minutes (3m) is a reasonable value\. This option requires setting \fBenvironment_timeout_mode\fR to \fBfrom_last_used\fR\.
|
612
620
|
.
|
613
621
|
.IP "" 0
|
614
622
|
.
|
615
623
|
.P
|
616
|
-
|
624
|
+
Once you set \fBenvironment_timeout\fR to a non\-zero value, you need to tell Puppet server to read new code from disk using the \fBenvironment\-cache\fR API endpoint after you deploy new code\. See the docs for the Puppet Server administrative API \fIhttps://puppet\.com/docs/puppetserver/latest/admin\-api/v1/environment\-cache\.html\fR\.
|
617
625
|
.
|
618
626
|
.IP "\(bu" 4
|
619
|
-
\fIDefault\fR:
|
627
|
+
\fIDefault\fR: \fB0\fR
|
628
|
+
.
|
629
|
+
.IP "" 0
|
630
|
+
.
|
631
|
+
.SS "environment_timeout_mode"
|
632
|
+
How Puppet interprets the \fBenvironment_timeout\fR setting when \fBenvironment_timeout\fR is neither \fB0\fR nor \fBunlimited\fR\. If set to \fBfrom_created\fR, then the environment will be evicted \fBenvironment_timeout\fR seconds from when it was created\. If set to \fBfrom_last_used\fR then the environment will be evicted \fBenvironment_timeout\fR seconds from when it was last used\.
|
633
|
+
.
|
634
|
+
.IP "\(bu" 4
|
635
|
+
\fIDefault\fR: \fBfrom_created\fR
|
620
636
|
.
|
621
637
|
.IP "" 0
|
622
638
|
.
|
@@ -624,10 +640,10 @@ We don\'t recommend using any value other than \fB0\fR or \fBunlimited\fR, since
|
|
624
640
|
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 \';\'\.)
|
625
641
|
.
|
626
642
|
.P
|
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://
|
643
|
+
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://puppet\.com/docs/puppet/latest/environments_about\.html\fR
|
628
644
|
.
|
629
645
|
.IP "\(bu" 4
|
630
|
-
\fIDefault\fR: $codedir/environments
|
646
|
+
\fIDefault\fR: \fB$codedir/environments\fR
|
631
647
|
.
|
632
648
|
.IP "" 0
|
633
649
|
.
|
@@ -635,7 +651,7 @@ This setting must have a value set to enable \fBdirectory environments\.\fR The
|
|
635
651
|
Whether each resource should log when it is being evaluated\. This allows you to interactively see exactly what is being done\.
|
636
652
|
.
|
637
653
|
.IP "\(bu" 4
|
638
|
-
\fIDefault\fR:
|
654
|
+
\fIDefault\fR: \fBfalse\fR
|
639
655
|
.
|
640
656
|
.IP "" 0
|
641
657
|
.
|
@@ -674,10 +690,18 @@ For unknown nodes, exit with a non\-zero exit code\.
|
|
674
690
|
Generally, an ENC script makes requests to an external data source\.
|
675
691
|
.
|
676
692
|
.P
|
677
|
-
For more info, see the ENC documentation \fIhttps://
|
693
|
+
For more info, see the ENC documentation \fIhttps://puppet\.com/docs/puppet/latest/nodes_external\.html\fR\.
|
678
694
|
.
|
679
695
|
.IP "\(bu" 4
|
680
|
-
\fIDefault\fR:
|
696
|
+
\fIDefault\fR: \fBnone\fR
|
697
|
+
.
|
698
|
+
.IP "" 0
|
699
|
+
.
|
700
|
+
.SS "facterng"
|
701
|
+
Whether to enable a pre\-Facter 4\.0 release of Facter (distributed as the "facter\-ng" gem)\. This is not necessary if Facter 3\.x or later is installed\. This setting is still experimental\.
|
702
|
+
.
|
703
|
+
.IP "\(bu" 4
|
704
|
+
\fIDefault\fR: \fBfalse\fR
|
681
705
|
.
|
682
706
|
.IP "" 0
|
683
707
|
.
|
@@ -685,7 +709,7 @@ For more info, see the ENC documentation \fIhttps://docs\.puppet\.com/puppet/lat
|
|
685
709
|
Where Puppet should look for facts\. Multiple directories should be separated by the system path separator character\. (The POSIX path separator is \':\', and the Windows path separator is \';\'\.)
|
686
710
|
.
|
687
711
|
.IP "\(bu" 4
|
688
|
-
\fIDefault\fR: $vardir/lib/facter:$vardir/facts
|
712
|
+
\fIDefault\fR: \fB$vardir/lib/facter:$vardir/facts\fR
|
689
713
|
.
|
690
714
|
.IP "" 0
|
691
715
|
.
|
@@ -693,7 +717,7 @@ Where Puppet should look for facts\. Multiple directories should be separated by
|
|
693
717
|
The node facts terminus\.
|
694
718
|
.
|
695
719
|
.IP "\(bu" 4
|
696
|
-
\fIDefault\fR:
|
720
|
+
\fIDefault\fR: \fBfacter\fR
|
697
721
|
.
|
698
722
|
.IP "" 0
|
699
723
|
.
|
@@ -701,30 +725,47 @@ The node facts terminus\.
|
|
701
725
|
Where the fileserver configuration is stored\.
|
702
726
|
.
|
703
727
|
.IP "\(bu" 4
|
704
|
-
\fIDefault\fR: $confdir/fileserver\.conf
|
728
|
+
\fIDefault\fR: \fB$confdir/fileserver\.conf\fR
|
705
729
|
.
|
706
730
|
.IP "" 0
|
707
731
|
.
|
708
732
|
.SS "filetimeout"
|
709
|
-
The minimum time to wait between checking for updates in configuration files\. This timeout determines how quickly Puppet checks whether a file (such as manifests or
|
733
|
+
The minimum time to wait between checking for updates in configuration files\. This timeout determines how quickly Puppet checks whether a file (such as manifests or puppet\.conf) has changed on disk\. The default will change in a future release to be \'unlimited\', requiring a reload of the Puppet service to pick up changes to its internal configuration\. Currently we do not accept a value of \'unlimited\'\. To reparse files within an environment in Puppet Server please use the environment_cache endpoint
|
710
734
|
.
|
711
735
|
.IP "\(bu" 4
|
712
|
-
\fIDefault\fR:
|
736
|
+
\fIDefault\fR: \fB15s\fR
|
713
737
|
.
|
714
738
|
.IP "" 0
|
715
739
|
.
|
716
740
|
.SS "forge_authorization"
|
717
741
|
The authorization key to connect to the Puppet Forge\. Leave blank for unauthorized or license based connections
|
718
742
|
.
|
719
|
-
.
|
720
|
-
\fIDefault\fR:
|
721
|
-
|
743
|
+
.IP "\(bu" 4
|
744
|
+
\fIDefault\fR: ``
|
745
|
+
.
|
746
|
+
.IP "" 0
|
722
747
|
.
|
723
748
|
.SS "freeze_main"
|
724
749
|
Freezes the \'main\' class, disallowing any code to be added to it\. This essentially means that you can\'t have any code outside of a node, class, or definition other than in the site manifest\.
|
725
750
|
.
|
726
751
|
.IP "\(bu" 4
|
727
|
-
\fIDefault\fR:
|
752
|
+
\fIDefault\fR: \fBfalse\fR
|
753
|
+
.
|
754
|
+
.IP "" 0
|
755
|
+
.
|
756
|
+
.SS "func3x_check"
|
757
|
+
Causes validation of loaded legacy Ruby functions (3x API) to raise errors about illegal constructs that could cause harm or that simply does not work\. This flag is on by default\. This flag is made available so that the validation can be turned off in case the method of validation is faulty \- if encountered, please file a bug report\.
|
758
|
+
.
|
759
|
+
.IP "\(bu" 4
|
760
|
+
\fIDefault\fR: \fBtrue\fR
|
761
|
+
.
|
762
|
+
.IP "" 0
|
763
|
+
.
|
764
|
+
.SS "future_features"
|
765
|
+
Whether or not to enable all features currently being developed for future major releases of Puppet\. Should be used with caution, as in development features are experimental and can have unexpected effects\.
|
766
|
+
.
|
767
|
+
.IP "\(bu" 4
|
768
|
+
\fIDefault\fR: \fBfalse\fR
|
728
769
|
.
|
729
770
|
.IP "" 0
|
730
771
|
.
|
@@ -732,7 +773,7 @@ Freezes the \'main\' class, disallowing any code to be added to it\. This essent
|
|
732
773
|
When true, causes Puppet applications to print an example config file to stdout and exit\. The example will include descriptions of each setting, and the current (or default) value of each setting, incorporating any settings overridden on the CLI (with the exception of \fBgenconfig\fR itself)\. This setting only makes sense when specified on the command line as \fB\-\-genconfig\fR\.
|
733
774
|
.
|
734
775
|
.IP "\(bu" 4
|
735
|
-
\fIDefault\fR:
|
776
|
+
\fIDefault\fR: \fBfalse\fR
|
736
777
|
.
|
737
778
|
.IP "" 0
|
738
779
|
.
|
@@ -740,7 +781,7 @@ When true, causes Puppet applications to print an example config file to stdout
|
|
740
781
|
Whether to just print a manifest to stdout and exit\. Only makes sense when specified on the command line as \fB\-\-genmanifest\fR\. Takes into account arguments specified on the CLI\.
|
741
782
|
.
|
742
783
|
.IP "\(bu" 4
|
743
|
-
\fIDefault\fR:
|
784
|
+
\fIDefault\fR: \fBfalse\fR
|
744
785
|
.
|
745
786
|
.IP "" 0
|
746
787
|
.
|
@@ -757,7 +798,7 @@ The \fBgraphdir\fR setting determines where Puppet will save graphs\. Note that
|
|
757
798
|
See your graphing software\'s documentation for details on opening \.dot files\. If you\'re using GraphViz\'s \fBdot\fR command, you can do a quick PNG render with \fBdot \-Tpng <DOT FILE> \-o <OUTPUT FILE>\fR\.
|
758
799
|
.
|
759
800
|
.IP "\(bu" 4
|
760
|
-
\fIDefault\fR:
|
801
|
+
\fIDefault\fR: \fBfalse\fR
|
761
802
|
.
|
762
803
|
.IP "" 0
|
763
804
|
.
|
@@ -765,23 +806,23 @@ See your graphing software\'s documentation for details on opening \.dot files\.
|
|
765
806
|
Where to save \.dot\-format graphs (when the \fBgraph\fR setting is enabled)\.
|
766
807
|
.
|
767
808
|
.IP "\(bu" 4
|
768
|
-
\fIDefault\fR: $statedir/graphs
|
809
|
+
\fIDefault\fR: \fB$statedir/graphs\fR
|
769
810
|
.
|
770
811
|
.IP "" 0
|
771
812
|
.
|
772
813
|
.SS "group"
|
773
|
-
The group
|
814
|
+
The group Puppet Server will run as\. Used to ensure the agent side processes (agent, apply, etc) create files and directories readable by Puppet Server when necessary\.
|
774
815
|
.
|
775
816
|
.IP "\(bu" 4
|
776
|
-
\fIDefault\fR:
|
817
|
+
\fIDefault\fR: \fBpuppet\fR
|
777
818
|
.
|
778
819
|
.IP "" 0
|
779
820
|
.
|
780
821
|
.SS "hiera_config"
|
781
|
-
The hiera configuration file\. Puppet only reads this file on startup, so you must restart the puppet
|
822
|
+
The hiera configuration file\. Puppet only reads this file on startup, so you must restart the puppet server every time you edit it\.
|
782
823
|
.
|
783
824
|
.IP "\(bu" 4
|
784
|
-
\fIDefault\fR: $confdir/hiera\.yaml\. However, if a file exists at $codedir/hiera\.yaml, Puppet uses that instead
|
825
|
+
\fIDefault\fR: \fB$confdir/hiera\.yaml\. However, for backwards compatibility, if a file exists at $codedir/hiera\.yaml, Puppet uses that instead\.\fR
|
785
826
|
.
|
786
827
|
.IP "" 0
|
787
828
|
.
|
@@ -789,7 +830,7 @@ The hiera configuration file\. Puppet only reads this file on startup, so you mu
|
|
789
830
|
Where individual hosts store and look for their certificates\.
|
790
831
|
.
|
791
832
|
.IP "\(bu" 4
|
792
|
-
\fIDefault\fR: $certdir/$certname\.pem
|
833
|
+
\fIDefault\fR: \fB$certdir/$certname\.pem\fR
|
793
834
|
.
|
794
835
|
.IP "" 0
|
795
836
|
.
|
@@ -797,15 +838,15 @@ Where individual hosts store and look for their certificates\.
|
|
797
838
|
Where the host\'s certificate revocation list can be found\. This is distinct from the certificate authority\'s CRL\.
|
798
839
|
.
|
799
840
|
.IP "\(bu" 4
|
800
|
-
\fIDefault\fR: $ssldir/crl\.pem
|
841
|
+
\fIDefault\fR: \fB$ssldir/crl\.pem\fR
|
801
842
|
.
|
802
843
|
.IP "" 0
|
803
844
|
.
|
804
845
|
.SS "hostcsr"
|
805
|
-
|
846
|
+
This setting is deprecated\.
|
806
847
|
.
|
807
848
|
.IP "\(bu" 4
|
808
|
-
\fIDefault\fR: $ssldir/csr_$certname\.pem
|
849
|
+
\fIDefault\fR: \fB$ssldir/csr_$certname\.pem\fR
|
809
850
|
.
|
810
851
|
.IP "" 0
|
811
852
|
.
|
@@ -813,7 +854,7 @@ Where individual hosts store and look for their certificate requests\.
|
|
813
854
|
Where individual hosts store and look for their private key\.
|
814
855
|
.
|
815
856
|
.IP "\(bu" 4
|
816
|
-
\fIDefault\fR: $privatekeydir/$certname\.pem
|
857
|
+
\fIDefault\fR: \fB$privatekeydir/$certname\.pem\fR
|
817
858
|
.
|
818
859
|
.IP "" 0
|
819
860
|
.
|
@@ -821,7 +862,7 @@ Where individual hosts store and look for their private key\.
|
|
821
862
|
Where individual hosts store and look for their public key\.
|
822
863
|
.
|
823
864
|
.IP "\(bu" 4
|
824
|
-
\fIDefault\fR: $publickeydir/$certname\.pem
|
865
|
+
\fIDefault\fR: \fB$publickeydir/$certname\.pem\fR
|
825
866
|
.
|
826
867
|
.IP "" 0
|
827
868
|
.
|
@@ -829,7 +870,7 @@ Where individual hosts store and look for their public key\.
|
|
829
870
|
The maximum amount of time to wait when establishing an HTTP connection\. The default value is 2 minutes\. This setting can be a time interval in seconds (30 or 30s), minutes (30m), hours (6h), days (2d), or years (5y)\.
|
830
871
|
.
|
831
872
|
.IP "\(bu" 4
|
832
|
-
\fIDefault\fR:
|
873
|
+
\fIDefault\fR: \fB2m\fR
|
833
874
|
.
|
834
875
|
.IP "" 0
|
835
876
|
.
|
@@ -837,7 +878,15 @@ The maximum amount of time to wait when establishing an HTTP connection\. The de
|
|
837
878
|
Whether to write HTTP request and responses to stderr\. This should never be used in a production environment\.
|
838
879
|
.
|
839
880
|
.IP "\(bu" 4
|
840
|
-
\fIDefault\fR:
|
881
|
+
\fIDefault\fR: \fBfalse\fR
|
882
|
+
.
|
883
|
+
.IP "" 0
|
884
|
+
.
|
885
|
+
.SS "http_extra_headers"
|
886
|
+
The list of extra headers that will be sent with http requests to the primary server\. The header definition consists of a name and a value separated by a colon\.
|
887
|
+
.
|
888
|
+
.IP "\(bu" 4
|
889
|
+
\fIDefault\fR: \fB[]\fR
|
841
890
|
.
|
842
891
|
.IP "" 0
|
843
892
|
.
|
@@ -845,15 +894,15 @@ Whether to write HTTP request and responses to stderr\. This should never be use
|
|
845
894
|
The maximum amount of time a persistent HTTP connection can remain idle in the connection pool, before it is closed\. This timeout should be shorter than the keepalive timeout used on the HTTP server, e\.g\. Apache KeepAliveTimeout directive\. This setting can be a time interval in seconds (30 or 30s), minutes (30m), hours (6h), days (2d), or years (5y)\.
|
846
895
|
.
|
847
896
|
.IP "\(bu" 4
|
848
|
-
\fIDefault\fR:
|
897
|
+
\fIDefault\fR: \fB4s\fR
|
849
898
|
.
|
850
899
|
.IP "" 0
|
851
900
|
.
|
852
901
|
.SS "http_proxy_host"
|
853
|
-
The HTTP proxy host to use for outgoing connections\. Note: You may need to use a FQDN for the server hostname when using a proxy\. Environment variable http_proxy or HTTP_PROXY will override this value
|
902
|
+
The HTTP proxy host to use for outgoing connections\. The proxy will be bypassed if the server\'s hostname matches the NO_PROXY environment variable or \fBno_proxy\fR setting\. Note: You may need to use a FQDN for the server hostname when using a proxy\. Environment variable http_proxy or HTTP_PROXY will override this value\.
|
854
903
|
.
|
855
904
|
.IP "\(bu" 4
|
856
|
-
\fIDefault\fR:
|
905
|
+
\fIDefault\fR: \fBnone\fR
|
857
906
|
.
|
858
907
|
.IP "" 0
|
859
908
|
.
|
@@ -864,7 +913,7 @@ The password for the user of an authenticated HTTP proxy\. Requires the \fBhttp_
|
|
864
913
|
Note that passwords must be valid when used as part of a URL\. If a password contains any characters with special meanings in URLs (as specified by RFC 3986 section 2\.2), they must be URL\-encoded\. (For example, \fB#\fR would become \fB%23\fR\.)
|
865
914
|
.
|
866
915
|
.IP "\(bu" 4
|
867
|
-
\fIDefault\fR:
|
916
|
+
\fIDefault\fR: \fBnone\fR
|
868
917
|
.
|
869
918
|
.IP "" 0
|
870
919
|
.
|
@@ -872,7 +921,7 @@ Note that passwords must be valid when used as part of a URL\. If a password con
|
|
872
921
|
The HTTP proxy port to use for outgoing connections
|
873
922
|
.
|
874
923
|
.IP "\(bu" 4
|
875
|
-
\fIDefault\fR:
|
924
|
+
\fIDefault\fR: \fB3128\fR
|
876
925
|
.
|
877
926
|
.IP "" 0
|
878
927
|
.
|
@@ -880,38 +929,39 @@ The HTTP proxy port to use for outgoing connections
|
|
880
929
|
The user name for an authenticated HTTP proxy\. Requires the \fBhttp_proxy_host\fR setting\.
|
881
930
|
.
|
882
931
|
.IP "\(bu" 4
|
883
|
-
\fIDefault\fR:
|
932
|
+
\fIDefault\fR: \fBnone\fR
|
884
933
|
.
|
885
934
|
.IP "" 0
|
886
935
|
.
|
887
936
|
.SS "http_read_timeout"
|
888
|
-
The time to wait for
|
937
|
+
The time to wait for data to be read from an HTTP connection\. If nothing is read after the elapsed interval then the connection will be closed\. The default value is 10 minutes\. This setting can be a time interval in seconds (30 or 30s), minutes (30m), hours (6h), days (2d), or years (5y)\.
|
889
938
|
.
|
890
|
-
.
|
891
|
-
\fIDefault\fR:
|
892
|
-
|
939
|
+
.IP "\(bu" 4
|
940
|
+
\fIDefault\fR: \fB10m\fR
|
941
|
+
.
|
942
|
+
.IP "" 0
|
893
943
|
.
|
894
944
|
.SS "http_user_agent"
|
895
945
|
The HTTP User\-Agent string to send when making network requests\.
|
896
946
|
.
|
897
947
|
.IP "\(bu" 4
|
898
|
-
\fIDefault\fR:
|
948
|
+
\fIDefault\fR: \fBPuppet/6\.29\.0 Ruby/2\.7\.5\-p203 (x86_64\-linux)\fR
|
899
949
|
.
|
900
950
|
.IP "" 0
|
901
951
|
.
|
902
|
-
.SS "
|
903
|
-
|
952
|
+
.SS "ignore_plugin_errors"
|
953
|
+
Whether the puppet run should ignore errors during pluginsync\. If the setting is false and there are errors during pluginsync, then the agent will abort the run and submit a report containing information about the failed run\.
|
904
954
|
.
|
905
955
|
.IP "\(bu" 4
|
906
|
-
\fIDefault\fR:
|
956
|
+
\fIDefault\fR: \fBtrue\fR
|
907
957
|
.
|
908
958
|
.IP "" 0
|
909
959
|
.
|
910
960
|
.SS "ignoremissingtypes"
|
911
|
-
Skip searching for classes and definitions that were missing during a prior compilation\. The list of missing objects is maintained per\-environment and persists until the environment is cleared or the
|
961
|
+
Skip searching for classes and definitions that were missing during a prior compilation\. The list of missing objects is maintained per\-environment and persists until the environment is cleared or the primary server is restarted\.
|
912
962
|
.
|
913
963
|
.IP "\(bu" 4
|
914
|
-
\fIDefault\fR:
|
964
|
+
\fIDefault\fR: \fBfalse\fR
|
915
965
|
.
|
916
966
|
.IP "" 0
|
917
967
|
.
|
@@ -919,7 +969,15 @@ Skip searching for classes and definitions that were missing during a prior comp
|
|
919
969
|
Boolean; whether puppet agent should ignore schedules\. This is useful for initial puppet agent runs\.
|
920
970
|
.
|
921
971
|
.IP "\(bu" 4
|
922
|
-
\fIDefault\fR:
|
972
|
+
\fIDefault\fR: \fBfalse\fR
|
973
|
+
.
|
974
|
+
.IP "" 0
|
975
|
+
.
|
976
|
+
.SS "key_type"
|
977
|
+
The type of private key\. Valid values are \fBrsa\fR and \fBec\fR\. Default is \fBrsa\fR\.
|
978
|
+
.
|
979
|
+
.IP "\(bu" 4
|
980
|
+
\fIDefault\fR: \fBrsa\fR
|
923
981
|
.
|
924
982
|
.IP "" 0
|
925
983
|
.
|
@@ -927,7 +985,7 @@ Boolean; whether puppet agent should ignore schedules\. This is useful for initi
|
|
927
985
|
The bit length of keys\.
|
928
986
|
.
|
929
987
|
.IP "\(bu" 4
|
930
|
-
\fIDefault\fR:
|
988
|
+
\fIDefault\fR: \fB4096\fR
|
931
989
|
.
|
932
990
|
.IP "" 0
|
933
991
|
.
|
@@ -935,15 +993,15 @@ The bit length of keys\.
|
|
935
993
|
Where puppet agent stores the last run report summary in yaml format\.
|
936
994
|
.
|
937
995
|
.IP "\(bu" 4
|
938
|
-
\fIDefault\fR: $statedir/last_run_summary\.yaml
|
996
|
+
\fIDefault\fR: \fB$statedir/last_run_summary\.yaml\fR
|
939
997
|
.
|
940
998
|
.IP "" 0
|
941
999
|
.
|
942
1000
|
.SS "lastrunreport"
|
943
|
-
Where
|
1001
|
+
Where Puppet Agent stores the last run report, by default, in yaml format\. The format of the report can be changed by setting the \fBcache\fR key of the \fBreport\fR terminus in the routes\.yaml \fIhttps://puppet\.com/docs/puppet/latest/config_file_routes\.html\fR file\. To avoid mismatches between content and file extension, this setting needs to be manually updated to reflect the terminus changes\.
|
944
1002
|
.
|
945
1003
|
.IP "\(bu" 4
|
946
|
-
\fIDefault\fR: $statedir/last_run_report\.yaml
|
1004
|
+
\fIDefault\fR: \fB$statedir/last_run_report\.yaml\fR
|
947
1005
|
.
|
948
1006
|
.IP "" 0
|
949
1007
|
.
|
@@ -951,7 +1009,7 @@ Where puppet agent stores the last run report in yaml format\.
|
|
951
1009
|
The LDAP attributes to include when querying LDAP for nodes\. All returned attributes are set as variables in the top\-level scope\. Multiple values should be comma\-separated\. The value \'all\' returns all attributes\.
|
952
1010
|
.
|
953
1011
|
.IP "\(bu" 4
|
954
|
-
\fIDefault\fR:
|
1012
|
+
\fIDefault\fR: \fBall\fR
|
955
1013
|
.
|
956
1014
|
.IP "" 0
|
957
1015
|
.
|
@@ -962,7 +1020,7 @@ The search base for LDAP searches\. It\'s impossible to provide a meaningful def
|
|
962
1020
|
The LDAP attributes to use to define Puppet classes\. Values should be comma\-separated\.
|
963
1021
|
.
|
964
1022
|
.IP "\(bu" 4
|
965
|
-
\fIDefault\fR:
|
1023
|
+
\fIDefault\fR: \fBpuppetclass\fR
|
966
1024
|
.
|
967
1025
|
.IP "" 0
|
968
1026
|
.
|
@@ -970,7 +1028,7 @@ The LDAP attributes to use to define Puppet classes\. Values should be comma\-se
|
|
970
1028
|
The attribute to use to define the parent node\.
|
971
1029
|
.
|
972
1030
|
.IP "\(bu" 4
|
973
|
-
\fIDefault\fR:
|
1031
|
+
\fIDefault\fR: \fBparentnode\fR
|
974
1032
|
.
|
975
1033
|
.IP "" 0
|
976
1034
|
.
|
@@ -978,18 +1036,18 @@ The attribute to use to define the parent node\.
|
|
978
1036
|
The password to use to connect to LDAP\.
|
979
1037
|
.
|
980
1038
|
.SS "ldapport"
|
981
|
-
The LDAP port\.
|
1039
|
+
The LDAP port\.
|
982
1040
|
.
|
983
1041
|
.IP "\(bu" 4
|
984
|
-
\fIDefault\fR:
|
1042
|
+
\fIDefault\fR: \fB389\fR
|
985
1043
|
.
|
986
1044
|
.IP "" 0
|
987
1045
|
.
|
988
1046
|
.SS "ldapserver"
|
989
|
-
The LDAP server\.
|
1047
|
+
The LDAP server\.
|
990
1048
|
.
|
991
1049
|
.IP "\(bu" 4
|
992
|
-
\fIDefault\fR:
|
1050
|
+
\fIDefault\fR: \fBldap\fR
|
993
1051
|
.
|
994
1052
|
.IP "" 0
|
995
1053
|
.
|
@@ -997,7 +1055,7 @@ The LDAP server\. Only used if \fBnode_terminus\fR is set to \fBldap\fR\.
|
|
997
1055
|
Whether SSL should be used when searching for nodes\. Defaults to false because SSL usually requires certificates to be set up on the client side\.
|
998
1056
|
.
|
999
1057
|
.IP "\(bu" 4
|
1000
|
-
\fIDefault\fR:
|
1058
|
+
\fIDefault\fR: \fBfalse\fR
|
1001
1059
|
.
|
1002
1060
|
.IP "" 0
|
1003
1061
|
.
|
@@ -1005,7 +1063,7 @@ Whether SSL should be used when searching for nodes\. Defaults to false because
|
|
1005
1063
|
The LDAP attributes that should be stacked to arrays by adding the values in all hierarchy elements of the tree\. Values should be comma\-separated\.
|
1006
1064
|
.
|
1007
1065
|
.IP "\(bu" 4
|
1008
|
-
\fIDefault\fR:
|
1066
|
+
\fIDefault\fR: \fBpuppetvar\fR
|
1009
1067
|
.
|
1010
1068
|
.IP "" 0
|
1011
1069
|
.
|
@@ -1013,7 +1071,7 @@ The LDAP attributes that should be stacked to arrays by adding the values in all
|
|
1013
1071
|
The search string used to find an LDAP node\.
|
1014
1072
|
.
|
1015
1073
|
.IP "\(bu" 4
|
1016
|
-
\fIDefault\fR: (&(objectclass=puppetClient)(cn=%s))
|
1074
|
+
\fIDefault\fR: \fB(&(objectclass=puppetClient)(cn=%s))\fR
|
1017
1075
|
.
|
1018
1076
|
.IP "" 0
|
1019
1077
|
.
|
@@ -1021,7 +1079,7 @@ The search string used to find an LDAP node\.
|
|
1021
1079
|
Whether TLS should be used when searching for nodes\. Defaults to false because TLS usually requires certificates to be set up on the client side\.
|
1022
1080
|
.
|
1023
1081
|
.IP "\(bu" 4
|
1024
|
-
\fIDefault\fR:
|
1082
|
+
\fIDefault\fR: \fBfalse\fR
|
1025
1083
|
.
|
1026
1084
|
.IP "" 0
|
1027
1085
|
.
|
@@ -1032,7 +1090,7 @@ The user to use to connect to LDAP\. Must be specified as a full DN\.
|
|
1032
1090
|
An extra search path for Puppet\. This is only useful for those files that Puppet will load on demand, and is only guaranteed to work for those cases\. In fact, the autoload mechanism is responsible for making sure this directory is in Ruby\'s search path
|
1033
1091
|
.
|
1034
1092
|
.IP "\(bu" 4
|
1035
|
-
\fIDefault\fR: $vardir/lib
|
1093
|
+
\fIDefault\fR: \fB$vardir/lib\fR
|
1036
1094
|
.
|
1037
1095
|
.IP "" 0
|
1038
1096
|
.
|
@@ -1040,7 +1098,31 @@ An extra search path for Puppet\. This is only useful for those files that Puppe
|
|
1040
1098
|
Where each client stores the CA certificate\.
|
1041
1099
|
.
|
1042
1100
|
.IP "\(bu" 4
|
1043
|
-
\fIDefault\fR: $certdir/ca\.pem
|
1101
|
+
\fIDefault\fR: \fB$certdir/ca\.pem\fR
|
1102
|
+
.
|
1103
|
+
.IP "" 0
|
1104
|
+
.
|
1105
|
+
.SS "localedest"
|
1106
|
+
Where Puppet should store translation files that it pulls down from the central server\.
|
1107
|
+
.
|
1108
|
+
.IP "\(bu" 4
|
1109
|
+
\fIDefault\fR: \fB$vardir/locales\fR
|
1110
|
+
.
|
1111
|
+
.IP "" 0
|
1112
|
+
.
|
1113
|
+
.SS "localesource"
|
1114
|
+
From where to retrieve translation files\. The standard Puppet \fBfile\fR type is used for retrieval, so anything that is a valid file source can be used here\.
|
1115
|
+
.
|
1116
|
+
.IP "\(bu" 4
|
1117
|
+
\fIDefault\fR: \fBpuppet:///locales\fR
|
1118
|
+
.
|
1119
|
+
.IP "" 0
|
1120
|
+
.
|
1121
|
+
.SS "location_trusted"
|
1122
|
+
This will allow sending the name + password and the cookie header to all hosts that puppet may redirect to\. This may or may not introduce a security breach if puppet redirects you to a site to which you\'ll send your authentication info and cookies\.
|
1123
|
+
.
|
1124
|
+
.IP "\(bu" 4
|
1125
|
+
\fIDefault\fR: \fBfalse\fR
|
1044
1126
|
.
|
1045
1127
|
.IP "" 0
|
1046
1128
|
.
|
@@ -1072,7 +1154,15 @@ emerg
|
|
1072
1154
|
crit
|
1073
1155
|
.
|
1074
1156
|
.IP "\(bu" 4
|
1075
|
-
\fIDefault\fR:
|
1157
|
+
\fIDefault\fR: \fBnotice\fR
|
1158
|
+
.
|
1159
|
+
.IP "" 0
|
1160
|
+
.
|
1161
|
+
.SS "logdest"
|
1162
|
+
Where to send log messages\. Choose between \'syslog\' (the POSIX syslog service), \'eventlog\' (the Windows Event Log), \'console\', or the path to a log file\. Multiple destinations can be set using a comma separated list (eg: \fB/path/file1,console,/path/file2\fR)
|
1163
|
+
.
|
1164
|
+
.IP "\(bu" 4
|
1165
|
+
\fIDefault\fR: ``
|
1076
1166
|
.
|
1077
1167
|
.IP "" 0
|
1078
1168
|
.
|
@@ -1080,41 +1170,34 @@ crit
|
|
1080
1170
|
The directory in which to store log files
|
1081
1171
|
.
|
1082
1172
|
.IP "\(bu" 4
|
1083
|
-
\fIDefault\fR:
|
1173
|
+
\fIDefault\fR: \fBUnix/Linux: /var/log/puppetlabs/puppet \-\- Windows: C:\eProgramData\ePuppetLabs\epuppet\evar\elog \-\- Non\-root user: ~/\.puppetlabs/var/log\fR
|
1084
1174
|
.
|
1085
1175
|
.IP "" 0
|
1086
1176
|
.
|
1087
1177
|
.SS "manage_internal_file_permissions"
|
1088
|
-
Whether Puppet should manage the owner, group, and mode of files it uses internally
|
1178
|
+
Whether Puppet should manage the owner, group, and mode of files it uses internally\. \fBNote\fR: For Windows agents, the default is \fBfalse\fR for versions 4\.10\.13 and greater, versions 5\.5\.6 and greater, and versions 6\.0 and greater\.
|
1089
1179
|
.
|
1090
1180
|
.IP "\(bu" 4
|
1091
|
-
\fIDefault\fR:
|
1181
|
+
\fIDefault\fR: \fBtrue\fR
|
1092
1182
|
.
|
1093
1183
|
.IP "" 0
|
1094
1184
|
.
|
1095
1185
|
.SS "manifest"
|
1096
|
-
The entry\-point manifest for
|
1186
|
+
The entry\-point manifest for the primary server\. 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 \.
|
1097
1187
|
.
|
1098
1188
|
.P
|
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://
|
1100
|
-
.
|
1101
|
-
.TP
|
1102
|
-
\fIDefault\fR:
|
1103
|
-
|
1104
|
-
.
|
1105
|
-
.SS "masterhttplog"
|
1106
|
-
Where the puppet master web server saves its access log\. This is only used when running a WEBrick puppet master\. When puppet master is running under a Rack server like Passenger, that web server will have its own logging behavior\.
|
1189
|
+
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://puppet\.com/docs/puppet/latest/environments_about\.html\fR
|
1107
1190
|
.
|
1108
1191
|
.IP "\(bu" 4
|
1109
|
-
\fIDefault\fR:
|
1192
|
+
\fIDefault\fR: ``
|
1110
1193
|
.
|
1111
1194
|
.IP "" 0
|
1112
1195
|
.
|
1113
1196
|
.SS "masterport"
|
1114
|
-
The port
|
1197
|
+
The default port puppet subcommands use to communicate with Puppet Server\. (eg \fBpuppet facts upload\fR, \fBpuppet agent\fR)\. May be overridden by more specific settings (see \fBca_port\fR, \fBreport_port\fR)\.
|
1115
1198
|
.
|
1116
1199
|
.IP "\(bu" 4
|
1117
|
-
\fIDefault\fR:
|
1200
|
+
\fIDefault\fR: \fB8140\fR
|
1118
1201
|
.
|
1119
1202
|
.IP "" 0
|
1120
1203
|
.
|
@@ -1122,7 +1205,7 @@ The port for puppet master traffic\. For puppet master, this is the port to list
|
|
1122
1205
|
Sets the max number of logged/displayed parser validation deprecation warnings in case multiple deprecation warnings have been detected\. A value of 0 blocks the logging of deprecation warnings\. The count is per manifest\.
|
1123
1206
|
.
|
1124
1207
|
.IP "\(bu" 4
|
1125
|
-
\fIDefault\fR:
|
1208
|
+
\fIDefault\fR: \fB10\fR
|
1126
1209
|
.
|
1127
1210
|
.IP "" 0
|
1128
1211
|
.
|
@@ -1130,7 +1213,7 @@ Sets the max number of logged/displayed parser validation deprecation warnings i
|
|
1130
1213
|
Sets the max number of logged/displayed parser validation errors in case multiple errors have been detected\. A value of 0 is the same as a value of 1; a minimum of one error is always raised\. The count is per manifest\.
|
1131
1214
|
.
|
1132
1215
|
.IP "\(bu" 4
|
1133
|
-
\fIDefault\fR:
|
1216
|
+
\fIDefault\fR: \fB10\fR
|
1134
1217
|
.
|
1135
1218
|
.IP "" 0
|
1136
1219
|
.
|
@@ -1138,7 +1221,7 @@ Sets the max number of logged/displayed parser validation errors in case multipl
|
|
1138
1221
|
Sets the max number of logged/displayed parser validation warnings in case multiple warnings have been detected\. A value of 0 blocks logging of warnings\. The count is per manifest\.
|
1139
1222
|
.
|
1140
1223
|
.IP "\(bu" 4
|
1141
|
-
\fIDefault\fR:
|
1224
|
+
\fIDefault\fR: \fB10\fR
|
1142
1225
|
.
|
1143
1226
|
.IP "" 0
|
1144
1227
|
.
|
@@ -1146,7 +1229,37 @@ Sets the max number of logged/displayed parser validation warnings in case multi
|
|
1146
1229
|
The maximum allowed UID\. Some platforms use negative UIDs but then ship with tools that do not know how to handle signed ints, so the UIDs show up as huge numbers that can then not be fed back into the system\. This is a hackish way to fail in a slightly more useful way when that happens\.
|
1147
1230
|
.
|
1148
1231
|
.IP "\(bu" 4
|
1149
|
-
\fIDefault\fR:
|
1232
|
+
\fIDefault\fR: \fB4294967290\fR
|
1233
|
+
.
|
1234
|
+
.IP "" 0
|
1235
|
+
.
|
1236
|
+
.SS "maxwaitforcert"
|
1237
|
+
The maximum amount of time the Puppet agent should wait for its certificate request to be signed\. A value of \fBunlimited\fR will cause puppet agent to ask for a signed certificate indefinitely\. This setting can be a time interval in seconds (30 or 30s), minutes (30m), hours (6h), days (2d), or years (5y)\.
|
1238
|
+
.
|
1239
|
+
.IP "\(bu" 4
|
1240
|
+
\fIDefault\fR: \fBunlimited\fR
|
1241
|
+
.
|
1242
|
+
.IP "" 0
|
1243
|
+
.
|
1244
|
+
.SS "maxwaitforlock"
|
1245
|
+
The maximum amount of time the puppet agent should wait for an already running puppet agent to finish before starting a new one\. This is set by default to 1 minute\. A value of \fBunlimited\fR will cause puppet agent to wait indefinitely\. This setting can be a time interval in seconds (30 or 30s), minutes (30m), hours (6h), days (2d), or years (5y)\.
|
1246
|
+
.
|
1247
|
+
.IP "\(bu" 4
|
1248
|
+
\fIDefault\fR: \fB1m\fR
|
1249
|
+
.
|
1250
|
+
.IP "" 0
|
1251
|
+
.
|
1252
|
+
.SS "merge_dependency_warnings"
|
1253
|
+
Whether to merge class\-level dependency failure warnings\.
|
1254
|
+
.
|
1255
|
+
.P
|
1256
|
+
When a class has a failed dependency, every resource in the class generates a notice level message about the dependency failure, and a warning level message about skipping the resource\.
|
1257
|
+
.
|
1258
|
+
.P
|
1259
|
+
If true, all messages caused by a class dependency failure are merged into one message associated with the class\.
|
1260
|
+
.
|
1261
|
+
.IP "\(bu" 4
|
1262
|
+
\fIDefault\fR: \fBfalse\fR
|
1150
1263
|
.
|
1151
1264
|
.IP "" 0
|
1152
1265
|
.
|
@@ -1154,30 +1267,23 @@ The maximum allowed UID\. Some platforms use negative UIDs but then ship with to
|
|
1154
1267
|
Whether to create the necessary user and group that puppet agent will run as\.
|
1155
1268
|
.
|
1156
1269
|
.IP "\(bu" 4
|
1157
|
-
\fIDefault\fR:
|
1270
|
+
\fIDefault\fR: \fBfalse\fR
|
1158
1271
|
.
|
1159
1272
|
.IP "" 0
|
1160
1273
|
.
|
1161
1274
|
.SS "module_groups"
|
1162
1275
|
Extra module groups to request from the Puppet Forge\. This is an internal setting, and users should never change it\.
|
1163
1276
|
.
|
1164
|
-
.TP
|
1165
|
-
\fIDefault\fR:
|
1166
|
-
|
1167
|
-
.
|
1168
|
-
.SS "module_repository"
|
1169
|
-
The module repository
|
1170
|
-
.
|
1171
1277
|
.IP "\(bu" 4
|
1172
|
-
\fIDefault\fR:
|
1278
|
+
\fIDefault\fR: ``
|
1173
1279
|
.
|
1174
1280
|
.IP "" 0
|
1175
1281
|
.
|
1176
|
-
.SS "
|
1177
|
-
The
|
1282
|
+
.SS "module_repository"
|
1283
|
+
The module repository
|
1178
1284
|
.
|
1179
1285
|
.IP "\(bu" 4
|
1180
|
-
\fIDefault\fR:
|
1286
|
+
\fIDefault\fR: \fBhttps://forgeapi\.puppet\.com\fR
|
1181
1287
|
.
|
1182
1288
|
.IP "" 0
|
1183
1289
|
.
|
@@ -1185,7 +1291,7 @@ The directory which the skeleton for module tool generate is stored\.
|
|
1185
1291
|
The directory into which module tool data is stored
|
1186
1292
|
.
|
1187
1293
|
.IP "\(bu" 4
|
1188
|
-
\fIDefault\fR: $vardir/puppet\-module
|
1294
|
+
\fIDefault\fR: \fB$vardir/puppet\-module\fR
|
1189
1295
|
.
|
1190
1296
|
.IP "" 0
|
1191
1297
|
.
|
@@ -1193,38 +1299,59 @@ The directory into which module tool data is stored
|
|
1193
1299
|
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 \';\'\.)
|
1194
1300
|
.
|
1195
1301
|
.P
|
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://
|
1302
|
+
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://puppet\.com/docs/puppet/latest/environments_about\.html\fR
|
1197
1303
|
.
|
1198
1304
|
.SS "name"
|
1199
1305
|
The name of the application, if we are running as one\. The default is essentially $0 without the path or \fB\.rb\fR\.
|
1200
1306
|
.
|
1201
|
-
.
|
1202
|
-
\fIDefault\fR:
|
1203
|
-
|
1307
|
+
.IP "\(bu" 4
|
1308
|
+
\fIDefault\fR: ``
|
1309
|
+
.
|
1310
|
+
.IP "" 0
|
1311
|
+
.
|
1312
|
+
.SS "named_curve"
|
1313
|
+
The short name for the EC curve used to generate the EC private key\. Valid values must be one of the curves in \fBOpenSSL::PKey::EC\.builtin_curves\fR\. Default is \fBprime256v1\fR\.
|
1314
|
+
.
|
1315
|
+
.IP "\(bu" 4
|
1316
|
+
\fIDefault\fR: \fBprime256v1\fR
|
1317
|
+
.
|
1318
|
+
.IP "" 0
|
1319
|
+
.
|
1320
|
+
.SS "no_proxy"
|
1321
|
+
List of host or domain names that should not go through \fBhttp_proxy_host\fR\. Environment variable no_proxy or NO_PROXY will override this value\. Names can be specified as an FQDN \fBhost\.example\.com\fR, wildcard \fB*\.example\.com\fR, dotted domain \fB\.example\.com\fR, or suffix \fBexample\.com\fR\.
|
1322
|
+
.
|
1323
|
+
.IP "\(bu" 4
|
1324
|
+
\fIDefault\fR: \fBlocalhost, 127\.0\.0\.1\fR
|
1325
|
+
.
|
1326
|
+
.IP "" 0
|
1204
1327
|
.
|
1205
1328
|
.SS "node_cache_terminus"
|
1206
|
-
How to store cached nodes\. Valid values are (none), \'json\', \'msgpack\',
|
1329
|
+
How to store cached nodes\. Valid values are (none), \'json\', \'msgpack\', or \'yaml\'\.
|
1207
1330
|
.
|
1208
|
-
.
|
1209
|
-
\fIDefault\fR:
|
1210
|
-
|
1331
|
+
.IP "\(bu" 4
|
1332
|
+
\fIDefault\fR: ``
|
1333
|
+
.
|
1334
|
+
.IP "" 0
|
1211
1335
|
.
|
1212
1336
|
.SS "node_name"
|
1213
|
-
How the puppet master determines the client\'s identity and sets the \'hostname\', \'fqdn\' and \'domain\' facts for use in the manifest, in particular for determining which \'node\' statement applies to the client\. Possible values are \'cert\' (use the subject\'s CN in the client\'s certificate) and \'facter\' (use the hostname that the client reported in its facts)
|
1337
|
+
How the puppet master determines the client\'s identity and sets the \'hostname\', \'fqdn\' and \'domain\' facts for use in the manifest, in particular for determining which \'node\' statement applies to the client\. Possible values are \'cert\' (use the subject\'s CN in the client\'s certificate) and \'facter\' (use the hostname that the client reported in its facts)\.
|
1338
|
+
.
|
1339
|
+
.P
|
1340
|
+
This setting is deprecated, please use explicit fact matching for classification\.
|
1214
1341
|
.
|
1215
1342
|
.IP "\(bu" 4
|
1216
|
-
\fIDefault\fR:
|
1343
|
+
\fIDefault\fR: \fBcert\fR
|
1217
1344
|
.
|
1218
1345
|
.IP "" 0
|
1219
1346
|
.
|
1220
1347
|
.SS "node_name_fact"
|
1221
|
-
The fact name used to determine the node name used for all requests the agent makes to the
|
1348
|
+
The fact name used to determine the node name used for all requests the agent makes to the primary server\. 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\.
|
1222
1349
|
.
|
1223
1350
|
.SS "node_name_value"
|
1224
|
-
The explicit value used for the node name for all requests the agent makes to the
|
1351
|
+
The explicit value used for the node name for all requests the agent makes to the primary server\. 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\.
|
1225
1352
|
.
|
1226
1353
|
.IP "\(bu" 4
|
1227
|
-
\fIDefault\fR: $certname
|
1354
|
+
\fIDefault\fR: \fB$certname\fR
|
1228
1355
|
.
|
1229
1356
|
.IP "" 0
|
1230
1357
|
.
|
@@ -1252,13 +1379,13 @@ The three main node data plugins are:
|
|
1252
1379
|
\fBplain\fR \-\-\- Returns no data, so that the main manifest controls all node configuration\.
|
1253
1380
|
.
|
1254
1381
|
.IP "\(bu" 4
|
1255
|
-
\fBexec\fR \-\-\- Uses an external node classifier (ENC) \fIhttps://
|
1382
|
+
\fBexec\fR \-\-\- Uses an external node classifier (ENC) \fIhttps://puppet\.com/docs/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
1383
|
.
|
1257
1384
|
.IP "\(bu" 4
|
1258
1385
|
\fBclassifier\fR (formerly \fBconsole\fR) \-\-\- Specific to Puppet Enterprise\. Uses the PE console for node data\."
|
1259
1386
|
.
|
1260
1387
|
.IP "\(bu" 4
|
1261
|
-
\fIDefault\fR:
|
1388
|
+
\fIDefault\fR: \fBplain\fR
|
1262
1389
|
.
|
1263
1390
|
.IP "" 0
|
1264
1391
|
.
|
@@ -1266,13 +1393,13 @@ The three main node data plugins are:
|
|
1266
1393
|
Whether to apply catalogs in noop mode, which allows Puppet to partially simulate a normal run\. This setting affects puppet agent and puppet apply\.
|
1267
1394
|
.
|
1268
1395
|
.P
|
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
|
1396
|
+
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 primary Puppet server, 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\.
|
1270
1397
|
.
|
1271
1398
|
.P
|
1272
|
-
\fBImportant note:\fR The \fBnoop\fR metaparameter \fIhttps://
|
1399
|
+
\fBImportant note:\fR The \fBnoop\fR metaparameter \fIhttps://puppet\.com/docs/puppet/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\.)
|
1273
1400
|
.
|
1274
1401
|
.IP "\(bu" 4
|
1275
|
-
\fIDefault\fR:
|
1402
|
+
\fIDefault\fR: \fBfalse\fR
|
1276
1403
|
.
|
1277
1404
|
.IP "" 0
|
1278
1405
|
.
|
@@ -1280,29 +1407,7 @@ When running in noop mode, Puppet will check whether each resource is in sync, l
|
|
1280
1407
|
Perform one configuration run and exit, rather than spawning a long\-running daemon\. This is useful for interactively running puppet agent, or running puppet agent from cron\.
|
1281
1408
|
.
|
1282
1409
|
.IP "\(bu" 4
|
1283
|
-
\fIDefault\fR:
|
1284
|
-
.
|
1285
|
-
.IP "" 0
|
1286
|
-
.
|
1287
|
-
.SS "ordering"
|
1288
|
-
How unrelated resources should be ordered when applying a catalog\. Allowed values are \fBtitle\-hash\fR, \fBmanifest\fR, and \fBrandom\fR\. This setting affects puppet agent and puppet apply, but not puppet master\.
|
1289
|
-
.
|
1290
|
-
.IP "\(bu" 4
|
1291
|
-
\fBmanifest\fR (the default) will use the order in which the resources were declared in their manifest files\.
|
1292
|
-
.
|
1293
|
-
.IP "\(bu" 4
|
1294
|
-
\fBtitle\-hash\fR (the default in 3\.x) will order resources randomly, but will use the same order across runs and across nodes\. It is only of value if you\'re migrating from 3\.x and have errors running with \fBmanifest\fR\.
|
1295
|
-
.
|
1296
|
-
.IP "\(bu" 4
|
1297
|
-
\fBrandom\fR will order resources randomly and change their order with each run\. This can work like a fuzzer for shaking out undeclared dependencies\.
|
1298
|
-
.
|
1299
|
-
.IP "" 0
|
1300
|
-
.
|
1301
|
-
.P
|
1302
|
-
Regardless of this setting\'s value, Puppet will always obey explicit dependencies set with the before/require/notify/subscribe metaparameters and the \fB\->\fR/\fB~>\fR chaining arrows; this setting only affects the relative ordering of \fIunrelated\fR resources\.
|
1303
|
-
.
|
1304
|
-
.IP "\(bu" 4
|
1305
|
-
\fIDefault\fR: manifest
|
1410
|
+
\fIDefault\fR: \fBfalse\fR
|
1306
1411
|
.
|
1307
1412
|
.IP "" 0
|
1308
1413
|
.
|
@@ -1310,7 +1415,7 @@ Regardless of this setting\'s value, Puppet will always obey explicit dependenci
|
|
1310
1415
|
Where puppet agent stores the password for its private key\. Generally unused\.
|
1311
1416
|
.
|
1312
1417
|
.IP "\(bu" 4
|
1313
|
-
\fIDefault\fR: $privatedir/password
|
1418
|
+
\fIDefault\fR: \fB$privatedir/password\fR
|
1314
1419
|
.
|
1315
1420
|
.IP "" 0
|
1316
1421
|
.
|
@@ -1318,10 +1423,10 @@ Where puppet agent stores the password for its private key\. Generally unused\.
|
|
1318
1423
|
The shell search path\. Defaults to whatever is inherited from the parent process\.
|
1319
1424
|
.
|
1320
1425
|
.P
|
1321
|
-
This setting can only be set in the \fB[main]\fR section of puppet\.conf; it cannot be set in \fB[
|
1426
|
+
This setting can only be set in the \fB[main]\fR section of puppet\.conf; it cannot be set in \fB[server]\fR, \fB[agent]\fR, or an environment config section\.
|
1322
1427
|
.
|
1323
1428
|
.IP "\(bu" 4
|
1324
|
-
\fIDefault\fR:
|
1429
|
+
\fIDefault\fR: \fBnone\fR
|
1325
1430
|
.
|
1326
1431
|
.IP "" 0
|
1327
1432
|
.
|
@@ -1329,7 +1434,7 @@ This setting can only be set in the \fB[main]\fR section of puppet\.conf; it can
|
|
1329
1434
|
The file containing the PID of a running process\. This file is intended to be used by service management frameworks and monitoring systems to determine if a puppet process is still in the process table\.
|
1330
1435
|
.
|
1331
1436
|
.IP "\(bu" 4
|
1332
|
-
\fIDefault\fR: $rundir/${run_mode}\.pid
|
1437
|
+
\fIDefault\fR: \fB$rundir/${run_mode}\.pid\fR
|
1333
1438
|
.
|
1334
1439
|
.IP "" 0
|
1335
1440
|
.
|
@@ -1337,7 +1442,7 @@ The file containing the PID of a running process\. This file is intended to be u
|
|
1337
1442
|
Where Puppet should store plugins that it pulls down from the central server\.
|
1338
1443
|
.
|
1339
1444
|
.IP "\(bu" 4
|
1340
|
-
\fIDefault\fR: $libdir
|
1445
|
+
\fIDefault\fR: \fB$libdir\fR
|
1341
1446
|
.
|
1342
1447
|
.IP "" 0
|
1343
1448
|
.
|
@@ -1345,7 +1450,7 @@ Where Puppet should store plugins that it pulls down from the central server\.
|
|
1345
1450
|
Where Puppet should store external facts that are being handled by pluginsync
|
1346
1451
|
.
|
1347
1452
|
.IP "\(bu" 4
|
1348
|
-
\fIDefault\fR: $vardir/facts\.d
|
1453
|
+
\fIDefault\fR: \fB$vardir/facts\.d\fR
|
1349
1454
|
.
|
1350
1455
|
.IP "" 0
|
1351
1456
|
.
|
@@ -1353,7 +1458,7 @@ Where Puppet should store external facts that are being handled by pluginsync
|
|
1353
1458
|
Where to retrieve external facts for pluginsync
|
1354
1459
|
.
|
1355
1460
|
.IP "\(bu" 4
|
1356
|
-
\fIDefault\fR:
|
1461
|
+
\fIDefault\fR: \fBpuppet:///pluginfacts\fR
|
1357
1462
|
.
|
1358
1463
|
.IP "" 0
|
1359
1464
|
.
|
@@ -1361,7 +1466,7 @@ Where to retrieve external facts for pluginsync
|
|
1361
1466
|
What files to ignore when pulling down plugins\.
|
1362
1467
|
.
|
1363
1468
|
.IP "\(bu" 4
|
1364
|
-
\fIDefault\fR: \.svn CVS \.git \.hg
|
1469
|
+
\fIDefault\fR: \fB\.svn CVS \.git \.hg\fR
|
1365
1470
|
.
|
1366
1471
|
.IP "" 0
|
1367
1472
|
.
|
@@ -1369,7 +1474,7 @@ What files to ignore when pulling down plugins\.
|
|
1369
1474
|
From where to retrieve plugins\. The standard Puppet \fBfile\fR type is used for retrieval, so anything that is a valid file source can be used here\.
|
1370
1475
|
.
|
1371
1476
|
.IP "\(bu" 4
|
1372
|
-
\fIDefault\fR:
|
1477
|
+
\fIDefault\fR: \fBpuppet:///plugins\fR
|
1373
1478
|
.
|
1374
1479
|
.IP "" 0
|
1375
1480
|
.
|
@@ -1377,7 +1482,7 @@ From where to retrieve plugins\. The standard Puppet \fBfile\fR type is used for
|
|
1377
1482
|
Whether plugins should be synced with the central server\. This setting is deprecated\.
|
1378
1483
|
.
|
1379
1484
|
.IP "\(bu" 4
|
1380
|
-
\fIDefault\fR:
|
1485
|
+
\fIDefault\fR: \fBtrue\fR
|
1381
1486
|
.
|
1382
1487
|
.IP "" 0
|
1383
1488
|
.
|
@@ -1388,7 +1493,7 @@ A command to run after every agent run\. If this command returns a non\-zero ret
|
|
1388
1493
|
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\.
|
1389
1494
|
.
|
1390
1495
|
.IP "\(bu" 4
|
1391
|
-
\fIDefault\fR:
|
1496
|
+
\fIDefault\fR: \fBjson\fR
|
1392
1497
|
.
|
1393
1498
|
.IP "" 0
|
1394
1499
|
.
|
@@ -1399,22 +1504,23 @@ A command to run before every agent run\. If this command returns a non\-zero re
|
|
1399
1504
|
The directory where catalog previews per node are generated\.
|
1400
1505
|
.
|
1401
1506
|
.IP "\(bu" 4
|
1402
|
-
\fIDefault\fR: $vardir/preview
|
1507
|
+
\fIDefault\fR: \fB$vardir/preview\fR
|
1403
1508
|
.
|
1404
1509
|
.IP "" 0
|
1405
1510
|
.
|
1406
1511
|
.SS "priority"
|
1407
1512
|
The scheduling priority of the process\. Valid values are \'high\', \'normal\', \'low\', or \'idle\', which are mapped to platform\-specific values\. The priority can also be specified as an integer value and will be passed as is, e\.g\. \-5\. Puppet must be running as a privileged user in order to increase scheduling priority\.
|
1408
1513
|
.
|
1409
|
-
.
|
1410
|
-
\fIDefault\fR:
|
1411
|
-
|
1514
|
+
.IP "\(bu" 4
|
1515
|
+
\fIDefault\fR: ``
|
1516
|
+
.
|
1517
|
+
.IP "" 0
|
1412
1518
|
.
|
1413
1519
|
.SS "privatedir"
|
1414
1520
|
Where the client stores private certificate information\.
|
1415
1521
|
.
|
1416
1522
|
.IP "\(bu" 4
|
1417
|
-
\fIDefault\fR: $ssldir/private
|
1523
|
+
\fIDefault\fR: \fB$ssldir/private\fR
|
1418
1524
|
.
|
1419
1525
|
.IP "" 0
|
1420
1526
|
.
|
@@ -1422,7 +1528,7 @@ Where the client stores private certificate information\.
|
|
1422
1528
|
The private key directory\.
|
1423
1529
|
.
|
1424
1530
|
.IP "\(bu" 4
|
1425
|
-
\fIDefault\fR: $ssldir/private_keys
|
1531
|
+
\fIDefault\fR: \fB$ssldir/private_keys\fR
|
1426
1532
|
.
|
1427
1533
|
.IP "" 0
|
1428
1534
|
.
|
@@ -1430,7 +1536,7 @@ The private key directory\.
|
|
1430
1536
|
Whether to enable experimental performance profiling
|
1431
1537
|
.
|
1432
1538
|
.IP "\(bu" 4
|
1433
|
-
\fIDefault\fR:
|
1539
|
+
\fIDefault\fR: \fBfalse\fR
|
1434
1540
|
.
|
1435
1541
|
.IP "" 0
|
1436
1542
|
.
|
@@ -1438,7 +1544,15 @@ Whether to enable experimental performance profiling
|
|
1438
1544
|
The public key directory\.
|
1439
1545
|
.
|
1440
1546
|
.IP "\(bu" 4
|
1441
|
-
\fIDefault\fR: $ssldir/public_keys
|
1547
|
+
\fIDefault\fR: \fB$ssldir/public_keys\fR
|
1548
|
+
.
|
1549
|
+
.IP "" 0
|
1550
|
+
.
|
1551
|
+
.SS "puppet_trace"
|
1552
|
+
Whether to print the Puppet stack trace on some errors\. This is a noop if \fBtrace\fR is also set\.
|
1553
|
+
.
|
1554
|
+
.IP "\(bu" 4
|
1555
|
+
\fIDefault\fR: \fBfalse\fR
|
1442
1556
|
.
|
1443
1557
|
.IP "" 0
|
1444
1558
|
.
|
@@ -1446,13 +1560,13 @@ The public key directory\.
|
|
1446
1560
|
The fallback log file\. This is only used when the \fB\-\-logdest\fR option is not specified AND Puppet is running on an operating system where both the POSIX syslog service and the Windows Event Log are unavailable\. (Currently, no supported operating systems match that description\.)
|
1447
1561
|
.
|
1448
1562
|
.P
|
1449
|
-
Despite the name, both puppet agent and puppet
|
1563
|
+
Despite the name, both puppet agent and puppet server will use this file as the fallback logging destination\.
|
1450
1564
|
.
|
1451
1565
|
.P
|
1452
|
-
For control over logging destinations, see the \fB\-\-logdest\fR command line option in the manual pages for puppet
|
1566
|
+
For control over logging destinations, see the \fB\-\-logdest\fR command line option in the manual pages for puppet server, puppet agent, and puppet apply\. You can see man pages by running \fBpuppet <SUBCOMMAND> \-\-help\fR, or read them online at https://puppet\.com/docs/puppet/latest/man/\.
|
1453
1567
|
.
|
1454
1568
|
.IP "\(bu" 4
|
1455
|
-
\fIDefault\fR: $logdir/puppetd\.log
|
1569
|
+
\fIDefault\fR: \fB$logdir/puppetd\.log\fR
|
1456
1570
|
.
|
1457
1571
|
.IP "" 0
|
1458
1572
|
.
|
@@ -1460,7 +1574,15 @@ For control over logging destinations, see the \fB\-\-logdest\fR command line op
|
|
1460
1574
|
Whether to send reports after every transaction\.
|
1461
1575
|
.
|
1462
1576
|
.IP "\(bu" 4
|
1463
|
-
\fIDefault\fR:
|
1577
|
+
\fIDefault\fR: \fBtrue\fR
|
1578
|
+
.
|
1579
|
+
.IP "" 0
|
1580
|
+
.
|
1581
|
+
.SS "report_include_system_store"
|
1582
|
+
Whether the \'http\' report processor should include the system certificate store when submitting reports to HTTPS URLs\. If false, then the \'http\' processor will only trust HTTPS report servers whose certificates are issued by the puppet CA or one of its intermediate CAs\. If true, the processor will additionally trust CA certificates in the system\'s certificate store\.
|
1583
|
+
.
|
1584
|
+
.IP "\(bu" 4
|
1585
|
+
\fIDefault\fR: \fBfalse\fR
|
1464
1586
|
.
|
1465
1587
|
.IP "" 0
|
1466
1588
|
.
|
@@ -1468,7 +1590,7 @@ Whether to send reports after every transaction\.
|
|
1468
1590
|
The port to communicate with the report_server\.
|
1469
1591
|
.
|
1470
1592
|
.IP "\(bu" 4
|
1471
|
-
\fIDefault\fR: $
|
1593
|
+
\fIDefault\fR: \fB$serverport\fR
|
1472
1594
|
.
|
1473
1595
|
.IP "" 0
|
1474
1596
|
.
|
@@ -1476,7 +1598,7 @@ The port to communicate with the report_server\.
|
|
1476
1598
|
The server to send transaction reports to\.
|
1477
1599
|
.
|
1478
1600
|
.IP "\(bu" 4
|
1479
|
-
\fIDefault\fR: $server
|
1601
|
+
\fIDefault\fR: \fB$server\fR
|
1480
1602
|
.
|
1481
1603
|
.IP "" 0
|
1482
1604
|
.
|
@@ -1484,7 +1606,7 @@ The server to send transaction reports to\.
|
|
1484
1606
|
The directory in which to store reports\. Each node gets a separate subdirectory in this directory\. This setting is only used when the \fBstore\fR report processor is enabled (see the \fBreports\fR setting)\.
|
1485
1607
|
.
|
1486
1608
|
.IP "\(bu" 4
|
1487
|
-
\fIDefault\fR: $vardir/reports
|
1609
|
+
\fIDefault\fR: \fB$vardir/reports\fR
|
1488
1610
|
.
|
1489
1611
|
.IP "" 0
|
1490
1612
|
.
|
@@ -1492,13 +1614,16 @@ The directory in which to store reports\. Each node gets a separate subdirectory
|
|
1492
1614
|
The list of report handlers to use\. When using multiple report handlers, their names should be comma\-separated, with whitespace allowed\. (For example, \fBreports = http, store\fR\.)
|
1493
1615
|
.
|
1494
1616
|
.P
|
1495
|
-
This setting is relevant to puppet
|
1617
|
+
This setting is relevant to puppet server and puppet apply\. The primary Puppet server will call these report handlers with the reports it receives from agent nodes, and puppet apply will call them with its own report\. (In all cases, the node applying the catalog must have \fBreport = true\fR\.)
|
1496
1618
|
.
|
1497
1619
|
.P
|
1498
1620
|
See the report reference for information on the built\-in report handlers; custom report handlers can also be loaded from modules\. (Report handlers are loaded from the lib directory, at \fBpuppet/reports/NAME\.rb\fR\.)
|
1499
1621
|
.
|
1622
|
+
.P
|
1623
|
+
To turn off reports entirely, set this to \fBnone\fR
|
1624
|
+
.
|
1500
1625
|
.IP "\(bu" 4
|
1501
|
-
\fIDefault\fR:
|
1626
|
+
\fIDefault\fR: \fBstore\fR
|
1502
1627
|
.
|
1503
1628
|
.IP "" 0
|
1504
1629
|
.
|
@@ -1506,7 +1631,7 @@ See the report reference for information on the built\-in report handlers; custo
|
|
1506
1631
|
The URL that reports should be forwarded to\. This setting is only used when the \fBhttp\fR report processor is enabled (see the \fBreports\fR setting)\.
|
1507
1632
|
.
|
1508
1633
|
.IP "\(bu" 4
|
1509
|
-
\fIDefault\fR:
|
1634
|
+
\fIDefault\fR: \fBhttp://localhost:3000/reports/upload\fR
|
1510
1635
|
.
|
1511
1636
|
.IP "" 0
|
1512
1637
|
.
|
@@ -1514,7 +1639,7 @@ The URL that reports should be forwarded to\. This setting is only used when the
|
|
1514
1639
|
Where host certificate requests are stored\.
|
1515
1640
|
.
|
1516
1641
|
.IP "\(bu" 4
|
1517
|
-
\fIDefault\fR: $ssldir/certificate_requests
|
1642
|
+
\fIDefault\fR: \fB$ssldir/certificate_requests\fR
|
1518
1643
|
.
|
1519
1644
|
.IP "" 0
|
1520
1645
|
.
|
@@ -1522,23 +1647,31 @@ Where host certificate requests are stored\.
|
|
1522
1647
|
The file in which puppet agent stores a list of the resources associated with the retrieved configuration\.
|
1523
1648
|
.
|
1524
1649
|
.IP "\(bu" 4
|
1525
|
-
\fIDefault\fR: $statedir/resources\.txt
|
1650
|
+
\fIDefault\fR: \fB$statedir/resources\.txt\fR
|
1526
1651
|
.
|
1527
1652
|
.IP "" 0
|
1528
1653
|
.
|
1529
1654
|
.SS "rest_authconfig"
|
1530
|
-
The configuration file that defines the rights to the different rest indirections\. This can be used as a fine\-grained authorization system for \fBpuppet master\fR\.
|
1655
|
+
The configuration file that defines the rights to the different rest indirections\. This can be used as a fine\-grained authorization system for \fBpuppet master\fR\. The \fBpuppet master\fR command is deprecated and Puppet Server uses its own auth\.conf that must be placed within its configuration directory\.
|
1656
|
+
.
|
1657
|
+
.IP "\(bu" 4
|
1658
|
+
\fIDefault\fR: \fB$confdir/auth\.conf\fR
|
1659
|
+
.
|
1660
|
+
.IP "" 0
|
1661
|
+
.
|
1662
|
+
.SS "resubmit_facts"
|
1663
|
+
Whether to send updated facts after every transaction\. By default puppet only submits facts at the beginning of the transaction before applying a catalog\. Since puppet can modify the state of the system, the value of the facts may change after puppet finishes\. Therefore, any facts stored in puppetdb may not be consistent until the agent next runs, typically in 30 minutes\. If this feature is enabled, puppet will resubmit facts after applying its catalog, ensuring facts for the node stored in puppetdb are current\. However, this will double the fact submission load on puppetdb, so it is disabled by default\.
|
1531
1664
|
.
|
1532
1665
|
.IP "\(bu" 4
|
1533
|
-
\fIDefault\fR:
|
1666
|
+
\fIDefault\fR: \fBfalse\fR
|
1534
1667
|
.
|
1535
1668
|
.IP "" 0
|
1536
1669
|
.
|
1537
1670
|
.SS "rich_data"
|
1538
|
-
Enables having extended data in the catalog by storing them as a hash with the special key \
|
1671
|
+
Enables having extended data in the catalog by storing them as a hash with the special key \fB__ptype\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
1672
|
.
|
1540
1673
|
.IP "\(bu" 4
|
1541
|
-
\fIDefault\fR:
|
1674
|
+
\fIDefault\fR: \fBtrue\fR
|
1542
1675
|
.
|
1543
1676
|
.IP "" 0
|
1544
1677
|
.
|
@@ -1546,7 +1679,7 @@ Enables having extended data in the catalog by storing them as a hash with the s
|
|
1546
1679
|
The YAML file containing indirector route configuration\.
|
1547
1680
|
.
|
1548
1681
|
.IP "\(bu" 4
|
1549
|
-
\fIDefault\fR: $confdir/routes\.yaml
|
1682
|
+
\fIDefault\fR: \fB$confdir/routes\.yaml\fR
|
1550
1683
|
.
|
1551
1684
|
.IP "" 0
|
1552
1685
|
.
|
@@ -1554,15 +1687,23 @@ The YAML file containing indirector route configuration\.
|
|
1554
1687
|
Where Puppet PID files are kept\.
|
1555
1688
|
.
|
1556
1689
|
.IP "\(bu" 4
|
1557
|
-
\fIDefault\fR:
|
1690
|
+
\fIDefault\fR: \fBUnix/Linux: /var/run/puppetlabs \-\- Windows: C:\eProgramData\ePuppetLabs\epuppet\evar\erun \-\- Non\-root user: ~/\.puppetlabs/var/run\fR
|
1558
1691
|
.
|
1559
1692
|
.IP "" 0
|
1560
1693
|
.
|
1561
1694
|
.SS "runinterval"
|
1562
|
-
How often puppet agent applies the catalog\. Note that a runinterval of 0 means "run continuously" rather than "never run\."
|
1695
|
+
How often puppet agent applies the catalog\. Note that a runinterval of 0 means "run continuously" rather than "never run\." This setting can be a time interval in seconds (30 or 30s), minutes (30m), hours (6h), days (2d), or years (5y)\.
|
1696
|
+
.
|
1697
|
+
.IP "\(bu" 4
|
1698
|
+
\fIDefault\fR: \fB30m\fR
|
1699
|
+
.
|
1700
|
+
.IP "" 0
|
1701
|
+
.
|
1702
|
+
.SS "runtimeout"
|
1703
|
+
The maximum amount of time an agent run is allowed to take\. A Puppet agent run that exceeds this timeout will be aborted\. A value of 0 disables the timeout\. Defaults to 1 hour\. This setting can be a time interval in seconds (30 or 30s), minutes (30m), hours (6h), days (2d), or years (5y)\.
|
1563
1704
|
.
|
1564
1705
|
.IP "\(bu" 4
|
1565
|
-
\fIDefault\fR:
|
1706
|
+
\fIDefault\fR: \fB1h\fR
|
1566
1707
|
.
|
1567
1708
|
.IP "" 0
|
1568
1709
|
.
|
@@ -1570,15 +1711,15 @@ How often puppet agent applies the catalog\. Note that a runinterval of 0 means
|
|
1570
1711
|
Where the serial number for certificates is stored\.
|
1571
1712
|
.
|
1572
1713
|
.IP "\(bu" 4
|
1573
|
-
\fIDefault\fR: $cadir/serial
|
1714
|
+
\fIDefault\fR: \fB$cadir/serial\fR
|
1574
1715
|
.
|
1575
1716
|
.IP "" 0
|
1576
1717
|
.
|
1577
1718
|
.SS "server"
|
1578
|
-
The
|
1719
|
+
The primary Puppet server to which the Puppet agent should connect\.
|
1579
1720
|
.
|
1580
1721
|
.IP "\(bu" 4
|
1581
|
-
\fIDefault\fR:
|
1722
|
+
\fIDefault\fR: \fBpuppet\fR
|
1582
1723
|
.
|
1583
1724
|
.IP "" 0
|
1584
1725
|
.
|
@@ -1586,15 +1727,23 @@ The puppet master server to which the puppet agent should connect\.
|
|
1586
1727
|
The directory in which serialized data is stored, usually in a subdirectory\.
|
1587
1728
|
.
|
1588
1729
|
.IP "\(bu" 4
|
1589
|
-
\fIDefault\fR: $vardir/server_data
|
1730
|
+
\fIDefault\fR: \fB$vardir/server_data\fR
|
1590
1731
|
.
|
1591
1732
|
.IP "" 0
|
1592
1733
|
.
|
1593
1734
|
.SS "server_list"
|
1594
|
-
The list of
|
1735
|
+
The list of primary Puppet servers to which the Puppet agent should connect, in the order that they will be tried\.
|
1736
|
+
.
|
1737
|
+
.IP "\(bu" 4
|
1738
|
+
\fIDefault\fR: \fB[]\fR
|
1739
|
+
.
|
1740
|
+
.IP "" 0
|
1741
|
+
.
|
1742
|
+
.SS "serverport"
|
1743
|
+
The default port puppet subcommands use to communicate with Puppet Server\. (eg \fBpuppet facts upload\fR, \fBpuppet agent\fR)\. May be overridden by more specific settings (see \fBca_port\fR, \fBreport_port\fR)\.
|
1595
1744
|
.
|
1596
1745
|
.IP "\(bu" 4
|
1597
|
-
\fIDefault\fR:
|
1746
|
+
\fIDefault\fR: \fB8140\fR
|
1598
1747
|
.
|
1599
1748
|
.IP "" 0
|
1600
1749
|
.
|
@@ -1602,7 +1751,7 @@ The list of puppet master servers to which the puppet agent should connect, in t
|
|
1602
1751
|
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\.
|
1603
1752
|
.
|
1604
1753
|
.IP "\(bu" 4
|
1605
|
-
\fIDefault\fR:
|
1754
|
+
\fIDefault\fR: \fBfalse\fR
|
1606
1755
|
.
|
1607
1756
|
.IP "" 0
|
1608
1757
|
.
|
@@ -1610,29 +1759,43 @@ Whether to log and report a contextual diff when files are being replaced\. This
|
|
1610
1759
|
Where the CA stores signed certificates\.
|
1611
1760
|
.
|
1612
1761
|
.IP "\(bu" 4
|
1613
|
-
\fIDefault\fR: $cadir/signed
|
1762
|
+
\fIDefault\fR: \fB$cadir/signed\fR
|
1614
1763
|
.
|
1615
1764
|
.IP "" 0
|
1616
1765
|
.
|
1617
1766
|
.SS "skip_tags"
|
1618
1767
|
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
1768
|
.
|
1769
|
+
.SS "sourceaddress"
|
1770
|
+
The address the agent should use to initiate requests\.
|
1771
|
+
.
|
1772
|
+
.IP "\(bu" 4
|
1773
|
+
\fIDefault\fR: ``
|
1774
|
+
.
|
1775
|
+
.IP "" 0
|
1776
|
+
.
|
1620
1777
|
.SS "splay"
|
1621
|
-
Whether to sleep for a
|
1778
|
+
Whether to sleep for a random amount of time, ranging from immediately up to its \fB$splaylimit\fR, before performing its first agent run after a service restart\. After this period, the agent runs periodically on its \fB$runinterval\fR\.
|
1622
1779
|
.
|
1623
1780
|
.P
|
1624
|
-
For example,
|
1781
|
+
For example, assume a default 30\-minute \fB$runinterval\fR, \fBsplay\fR set to its default of \fBfalse\fR, and an agent starting at :00 past the hour\. The agent would check in every 30 minutes at :01 and :31 past the hour\.
|
1782
|
+
.
|
1783
|
+
.P
|
1784
|
+
With \fBsplay\fR enabled, it waits any amount of time up to its \fB$splaylimit\fR before its first run\. For example, it might randomly wait 8 minutes, then start its first run at :08 past the hour\. With the \fB$runinterval\fR at its default 30 minutes, its next run will be at :38 past the hour\.
|
1785
|
+
.
|
1786
|
+
.P
|
1787
|
+
If you restart an agent\'s puppet service with \fBsplay\fR enabled, it recalculates its splay period and delays its first agent run after restarting for this new period\. If you simultaneously restart a group of puppet agents with \fBsplay\fR enabled, their checkins to your primary servers can be distributed more evenly\.
|
1625
1788
|
.
|
1626
1789
|
.IP "\(bu" 4
|
1627
|
-
\fIDefault\fR:
|
1790
|
+
\fIDefault\fR: \fBfalse\fR
|
1628
1791
|
.
|
1629
1792
|
.IP "" 0
|
1630
1793
|
.
|
1631
1794
|
.SS "splaylimit"
|
1632
|
-
The maximum time to delay before
|
1795
|
+
The maximum time to delay before an agent\'s first run when \fBsplay\fR is enabled\. Defaults to the agent\'s \fB$runinterval\fR\. The \fBsplay\fR interval is random and recalculated each time the agent is started or restarted\. This setting can be a time interval in seconds (30 or 30s), minutes (30m), hours (6h), days (2d), or years (5y)\.
|
1633
1796
|
.
|
1634
1797
|
.IP "\(bu" 4
|
1635
|
-
\fIDefault\fR: $runinterval
|
1798
|
+
\fIDefault\fR: \fB$runinterval\fR
|
1636
1799
|
.
|
1637
1800
|
.IP "" 0
|
1638
1801
|
.
|
@@ -1640,16 +1803,17 @@ The maximum time to delay before runs\. Defaults to being the same as the run in
|
|
1640
1803
|
The domain which will be queried to find the SRV records of servers to use\.
|
1641
1804
|
.
|
1642
1805
|
.IP "\(bu" 4
|
1643
|
-
\fIDefault\fR:
|
1806
|
+
\fIDefault\fR: \fBci\-jenkins\-setup\-platform\.svc\.cluster\.local\fR
|
1644
1807
|
.
|
1645
1808
|
.IP "" 0
|
1646
1809
|
.
|
1647
1810
|
.SS "ssl_client_ca_auth"
|
1648
1811
|
Certificate authorities who issue server certificates\. SSL servers will not be considered authentic unless they possess a certificate issued by an authority listed in this file\. If this setting has no value then the Puppet master\'s CA certificate (localcacert) will be used\.
|
1649
1812
|
.
|
1650
|
-
.
|
1651
|
-
\fIDefault\fR:
|
1652
|
-
|
1813
|
+
.IP "\(bu" 4
|
1814
|
+
\fIDefault\fR: ``
|
1815
|
+
.
|
1816
|
+
.IP "" 0
|
1653
1817
|
.
|
1654
1818
|
.SS "ssl_client_header"
|
1655
1819
|
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\.
|
@@ -1658,7 +1822,7 @@ The header containing an authenticated client\'s SSL DN\. This header must be se
|
|
1658
1822
|
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\.
|
1659
1823
|
.
|
1660
1824
|
.IP "\(bu" 4
|
1661
|
-
\fIDefault\fR:
|
1825
|
+
\fIDefault\fR: \fBHTTP_X_CLIENT_DN\fR
|
1662
1826
|
.
|
1663
1827
|
.IP "" 0
|
1664
1828
|
.
|
@@ -1669,22 +1833,39 @@ The header containing the status message of the client verification\. This heade
|
|
1669
1833
|
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\.
|
1670
1834
|
.
|
1671
1835
|
.IP "\(bu" 4
|
1672
|
-
\fIDefault\fR:
|
1836
|
+
\fIDefault\fR: \fBHTTP_X_CLIENT_VERIFY\fR
|
1837
|
+
.
|
1838
|
+
.IP "" 0
|
1839
|
+
.
|
1840
|
+
.SS "ssl_lockfile"
|
1841
|
+
A lock file to indicate that the ssl bootstrap process is currently in progress\.
|
1842
|
+
.
|
1843
|
+
.IP "\(bu" 4
|
1844
|
+
\fIDefault\fR: \fB$ssldir/ssl\.lock\fR
|
1673
1845
|
.
|
1674
1846
|
.IP "" 0
|
1675
1847
|
.
|
1676
1848
|
.SS "ssl_server_ca_auth"
|
1677
|
-
|
1849
|
+
The setting is deprecated and has no effect\. Ensure all root and intermediate certificate authorities used to issue client certificates are contained in the server\'s \fBcacert\fR file on the server\.
|
1678
1850
|
.
|
1679
|
-
.
|
1680
|
-
\fIDefault\fR:
|
1681
|
-
|
1851
|
+
.IP "\(bu" 4
|
1852
|
+
\fIDefault\fR: ``
|
1853
|
+
.
|
1854
|
+
.IP "" 0
|
1855
|
+
.
|
1856
|
+
.SS "ssl_trust_store"
|
1857
|
+
A file containing CA certificates in PEM format that puppet should trust when making HTTPS requests\. This \fBonly\fR applies to https requests to non\-puppet infrastructure, such as retrieving file metadata and content from https file sources, puppet module tool and the \'http\' report processor\. This setting is ignored when making requests to puppet:// URLs such as catalog and report requests\.
|
1858
|
+
.
|
1859
|
+
.IP "\(bu" 4
|
1860
|
+
\fIDefault\fR: ``
|
1861
|
+
.
|
1862
|
+
.IP "" 0
|
1682
1863
|
.
|
1683
1864
|
.SS "ssldir"
|
1684
1865
|
Where SSL certificates are kept\.
|
1685
1866
|
.
|
1686
1867
|
.IP "\(bu" 4
|
1687
|
-
\fIDefault\fR: $confdir/ssl
|
1868
|
+
\fIDefault\fR: \fB$confdir/ssl\fR
|
1688
1869
|
.
|
1689
1870
|
.IP "" 0
|
1690
1871
|
.
|
@@ -1692,23 +1873,34 @@ Where SSL certificates are kept\.
|
|
1692
1873
|
The directory where Puppet state is stored\. Generally, this directory can be removed without causing harm (although it might result in spurious service restarts)\.
|
1693
1874
|
.
|
1694
1875
|
.IP "\(bu" 4
|
1695
|
-
\fIDefault\fR: $vardir/state
|
1876
|
+
\fIDefault\fR: \fB$vardir/state\fR
|
1696
1877
|
.
|
1697
1878
|
.IP "" 0
|
1698
1879
|
.
|
1699
1880
|
.SS "statefile"
|
1700
|
-
Where
|
1881
|
+
Where Puppet agent and Puppet Server store state associated with the running configuration\. In the case of Puppet Server, this file reflects the state discovered through interacting with clients\.
|
1882
|
+
.
|
1883
|
+
.IP "\(bu" 4
|
1884
|
+
\fIDefault\fR: \fB$statedir/state\.yaml\fR
|
1885
|
+
.
|
1886
|
+
.IP "" 0
|
1887
|
+
.
|
1888
|
+
.SS "statettl"
|
1889
|
+
How long the Puppet agent should cache when a resource was last checked or synced\. 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 or \fBunlimited\fR will disable cache pruning\.
|
1890
|
+
.
|
1891
|
+
.P
|
1892
|
+
This setting affects the usage of \fBschedule\fR resources, as the information about when a resource was last checked (and therefore when it needs to be checked again) is stored in the \fBstatefile\fR\. The \fBstatettl\fR needs to be large enough to ensure that a resource will not trigger multiple times during a schedule due to its entry expiring from the cache\.
|
1701
1893
|
.
|
1702
1894
|
.IP "\(bu" 4
|
1703
|
-
\fIDefault\fR:
|
1895
|
+
\fIDefault\fR: \fB32d\fR
|
1704
1896
|
.
|
1705
1897
|
.IP "" 0
|
1706
1898
|
.
|
1707
1899
|
.SS "static_catalogs"
|
1708
|
-
Whether to compile a static catalog\.
|
1900
|
+
Whether to compile a static catalog \fIhttps://puppet\.com/docs/puppet/latest/static_catalogs\.html#enabling\-or\-disabling\-static\-catalogs\fR, which occurs only on Puppet Server when the \fBcode\-id\-command\fR and \fBcode\-content\-command\fR settings are configured in its \fBpuppetserver\.conf\fR file\.
|
1709
1901
|
.
|
1710
1902
|
.IP "\(bu" 4
|
1711
|
-
\fIDefault\fR:
|
1903
|
+
\fIDefault\fR: \fBtrue\fR
|
1712
1904
|
.
|
1713
1905
|
.IP "" 0
|
1714
1906
|
.
|
@@ -1722,7 +1914,7 @@ By default this uses the \'puppetdb\' backend\.
|
|
1722
1914
|
You can adjust the backend using the storeconfigs_backend setting\.
|
1723
1915
|
.
|
1724
1916
|
.IP "\(bu" 4
|
1725
|
-
\fIDefault\fR:
|
1917
|
+
\fIDefault\fR: \fBfalse\fR
|
1726
1918
|
.
|
1727
1919
|
.IP "" 0
|
1728
1920
|
.
|
@@ -1730,7 +1922,7 @@ You can adjust the backend using the storeconfigs_backend setting\.
|
|
1730
1922
|
Configure the backend terminus used for StoreConfigs\. By default, this uses the PuppetDB store, which must be installed and configured before turning on StoreConfigs\.
|
1731
1923
|
.
|
1732
1924
|
.IP "\(bu" 4
|
1733
|
-
\fIDefault\fR:
|
1925
|
+
\fIDefault\fR: \fBpuppetdb\fR
|
1734
1926
|
.
|
1735
1927
|
.IP "" 0
|
1736
1928
|
.
|
@@ -1749,13 +1941,13 @@ error \- perform extra validation, fail with error
|
|
1749
1941
|
.IP "" 0
|
1750
1942
|
.
|
1751
1943
|
.P
|
1752
|
-
The strictness level is for both language semantics and runtime evaluation validation\. In addition to controlling the behavior with this
|
1944
|
+
The strictness level is for both language semantics and runtime evaluation validation\. In addition to controlling the behavior with this primary server switch some individual warnings may also be controlled by the disable_warnings setting\.
|
1753
1945
|
.
|
1754
1946
|
.P
|
1755
1947
|
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
1948
|
.
|
1757
1949
|
.IP "\(bu" 4
|
1758
|
-
\fIDefault\fR:
|
1950
|
+
\fIDefault\fR: \fBwarning\fR
|
1759
1951
|
.
|
1760
1952
|
.IP "" 0
|
1761
1953
|
.
|
@@ -1763,15 +1955,18 @@ No new validations will be added to a micro (x\.y\.z) release, but may be added
|
|
1763
1955
|
Whether the agent specified environment should be considered authoritative, causing the run to fail if the retrieved catalog does not match it\.
|
1764
1956
|
.
|
1765
1957
|
.IP "\(bu" 4
|
1766
|
-
\fIDefault\fR:
|
1958
|
+
\fIDefault\fR: \fBfalse\fR
|
1767
1959
|
.
|
1768
1960
|
.IP "" 0
|
1769
1961
|
.
|
1770
1962
|
.SS "strict_hostname_checking"
|
1771
|
-
Whether to only search for the complete hostname as it is in the certificate when searching for node information in the catalogs\.
|
1963
|
+
Whether to only search for the complete hostname as it is in the certificate when searching for node information in the catalogs or to match dot delimited segments of the cert\'s certname and the hostname, fqdn, and/or domain facts\.
|
1964
|
+
.
|
1965
|
+
.P
|
1966
|
+
This setting is deprecated and will be removed in a future release\.
|
1772
1967
|
.
|
1773
1968
|
.IP "\(bu" 4
|
1774
|
-
\fIDefault\fR:
|
1969
|
+
\fIDefault\fR: \fBtrue\fR
|
1775
1970
|
.
|
1776
1971
|
.IP "" 0
|
1777
1972
|
.
|
@@ -1779,7 +1974,7 @@ Whether to only search for the complete hostname as it is in the certificate whe
|
|
1779
1974
|
Causes an evaluation error when referencing unknown variables\. (This does not affect referencing variables that are explicitly set to undef)\.
|
1780
1975
|
.
|
1781
1976
|
.IP "\(bu" 4
|
1782
|
-
\fIDefault\fR:
|
1977
|
+
\fIDefault\fR: \fBfalse\fR
|
1783
1978
|
.
|
1784
1979
|
.IP "" 0
|
1785
1980
|
.
|
@@ -1787,15 +1982,15 @@ Causes an evaluation error when referencing unknown variables\. (This does not a
|
|
1787
1982
|
Whether to print a transaction summary\.
|
1788
1983
|
.
|
1789
1984
|
.IP "\(bu" 4
|
1790
|
-
\fIDefault\fR:
|
1985
|
+
\fIDefault\fR: \fBfalse\fR
|
1791
1986
|
.
|
1792
1987
|
.IP "" 0
|
1793
1988
|
.
|
1794
1989
|
.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\.
|
1990
|
+
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, sha384, sha512, sha224, sha1, sha1lite, mtime, ctime\. Default is md5, sha256, sha384, sha512, sha224\.
|
1796
1991
|
.
|
1797
1992
|
.IP "\(bu" 4
|
1798
|
-
\fIDefault\fR: ["md5", "sha256"]
|
1993
|
+
\fIDefault\fR: \fB["md5", "sha256", "sha384", "sha512", "sha224"]\fR
|
1799
1994
|
.
|
1800
1995
|
.IP "" 0
|
1801
1996
|
.
|
@@ -1803,18 +1998,26 @@ Checksum types supported by this agent for use in file resources of a static cat
|
|
1803
1998
|
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\.
|
1804
1999
|
.
|
1805
2000
|
.IP "\(bu" 4
|
1806
|
-
\fIDefault\fR:
|
2001
|
+
\fIDefault\fR: \fBdaemon\fR
|
1807
2002
|
.
|
1808
2003
|
.IP "" 0
|
1809
2004
|
.
|
1810
2005
|
.SS "tags"
|
1811
2006
|
Tags to use to find resources\. If this is set, then only resources tagged with the specified tags will be applied\. Values must be comma\-separated\.
|
1812
2007
|
.
|
2008
|
+
.SS "tasks"
|
2009
|
+
Turns on experimental support for tasks and plans in the puppet language\. This is for internal API use only\. Do not change this setting\.
|
2010
|
+
.
|
2011
|
+
.IP "\(bu" 4
|
2012
|
+
\fIDefault\fR: \fBfalse\fR
|
2013
|
+
.
|
2014
|
+
.IP "" 0
|
2015
|
+
.
|
1813
2016
|
.SS "trace"
|
1814
|
-
Whether to print stack traces on some errors
|
2017
|
+
Whether to print stack traces on some errors\. Will print internal Ruby stack trace interleaved with Puppet function frames\.
|
1815
2018
|
.
|
1816
2019
|
.IP "\(bu" 4
|
1817
|
-
\fIDefault\fR:
|
2020
|
+
\fIDefault\fR: \fBfalse\fR
|
1818
2021
|
.
|
1819
2022
|
.IP "" 0
|
1820
2023
|
.
|
@@ -1822,7 +2025,29 @@ Whether to print stack traces on some errors
|
|
1822
2025
|
Transactional storage file for persisting data between transactions for the purposes of infering information (such as corrective_change) on new data received\.
|
1823
2026
|
.
|
1824
2027
|
.IP "\(bu" 4
|
1825
|
-
\fIDefault\fR: $statedir/transactionstore\.yaml
|
2028
|
+
\fIDefault\fR: \fB$statedir/transactionstore\.yaml\fR
|
2029
|
+
.
|
2030
|
+
.IP "" 0
|
2031
|
+
.
|
2032
|
+
.SS "trusted_external_command"
|
2033
|
+
The external trusted facts script or directory to use\. This setting\'s value can be set to the path to an executable command that can produce external trusted facts or to a directory containing those executable commands\. The command(s) must:
|
2034
|
+
.
|
2035
|
+
.IP "\(bu" 4
|
2036
|
+
Take the name of a node as a command\-line argument\.
|
2037
|
+
.
|
2038
|
+
.IP "\(bu" 4
|
2039
|
+
Return a JSON hash with the external trusted facts for this node\.
|
2040
|
+
.
|
2041
|
+
.IP "\(bu" 4
|
2042
|
+
For unknown or invalid nodes, exit with a non\-zero exit code\.
|
2043
|
+
.
|
2044
|
+
.IP "" 0
|
2045
|
+
.
|
2046
|
+
.P
|
2047
|
+
If the setting points to an executable command, then the external trusted facts will be stored in the \'external\' key of the trusted facts hash\. Otherwise for each executable file in the directory, the external trusted facts will be stored in the \fB<basename>\fR key of the \fBtrusted[\'external\']\fR hash\. For example, if the files foo\.rb and bar\.sh are in the directory, then \fBtrusted[\'external\']\fR will be the hash \fB{ \'foo\' => <foo\.rb output>, \'bar\' => <bar\.sh output> }\fR\.
|
2048
|
+
.
|
2049
|
+
.IP "\(bu" 4
|
2050
|
+
\fIDefault\fR: ``
|
1826
2051
|
.
|
1827
2052
|
.IP "" 0
|
1828
2053
|
.
|
@@ -1830,23 +2055,26 @@ Transactional storage file for persisting data between transactions for the purp
|
|
1830
2055
|
File that provides mapping between custom SSL oids and user\-friendly names
|
1831
2056
|
.
|
1832
2057
|
.IP "\(bu" 4
|
1833
|
-
\fIDefault\fR: $confdir/custom_trusted_oid_mapping\.yaml
|
2058
|
+
\fIDefault\fR: \fB$confdir/custom_trusted_oid_mapping\.yaml\fR
|
1834
2059
|
.
|
1835
2060
|
.IP "" 0
|
1836
2061
|
.
|
1837
|
-
.SS "
|
1838
|
-
|
2062
|
+
.SS "use_cached_catalog"
|
2063
|
+
Whether to only use the cached catalog rather than compiling a new catalog on every run\. Puppet can be run with this enabled by default and then selectively disabled when a recompile is desired\. Because a Puppet agent using cached catalogs does not contact the primary server for a new catalog, it also does not upload facts at the beginning of the Puppet run\.
|
1839
2064
|
.
|
1840
2065
|
.IP "\(bu" 4
|
1841
|
-
\fIDefault\fR:
|
2066
|
+
\fIDefault\fR: \fBfalse\fR
|
1842
2067
|
.
|
1843
2068
|
.IP "" 0
|
1844
2069
|
.
|
1845
|
-
.SS "
|
1846
|
-
|
2070
|
+
.SS "use_last_environment"
|
2071
|
+
Puppet saves both the initial and converged environment in the last_run_summary file\. If they differ, and this setting is set to true, we will use the last converged environment and skip the node request\.
|
2072
|
+
.
|
2073
|
+
.P
|
2074
|
+
When set to false, we will do the node request and ignore the environment data from the last_run_summary file\.
|
1847
2075
|
.
|
1848
2076
|
.IP "\(bu" 4
|
1849
|
-
\fIDefault\fR:
|
2077
|
+
\fIDefault\fR: \fBtrue\fR
|
1850
2078
|
.
|
1851
2079
|
.IP "" 0
|
1852
2080
|
.
|
@@ -1854,7 +2082,7 @@ Whether to only use the cached catalog rather than compiling a new catalog on ev
|
|
1854
2082
|
Whether the server will search for SRV records in DNS for the current domain\.
|
1855
2083
|
.
|
1856
2084
|
.IP "\(bu" 4
|
1857
|
-
\fIDefault\fR:
|
2085
|
+
\fIDefault\fR: \fBfalse\fR
|
1858
2086
|
.
|
1859
2087
|
.IP "" 0
|
1860
2088
|
.
|
@@ -1862,15 +2090,15 @@ Whether the server will search for SRV records in DNS for the current domain\.
|
|
1862
2090
|
Whether to use the cached configuration when the remote configuration will not compile\. This option is useful for testing new configurations, where you want to fix the broken configuration rather than reverting to a known\-good one\.
|
1863
2091
|
.
|
1864
2092
|
.IP "\(bu" 4
|
1865
|
-
\fIDefault\fR:
|
2093
|
+
\fIDefault\fR: \fBtrue\fR
|
1866
2094
|
.
|
1867
2095
|
.IP "" 0
|
1868
2096
|
.
|
1869
2097
|
.SS "user"
|
1870
|
-
The user
|
2098
|
+
The user Puppet Server will run as\. Used to ensure the agent side processes (agent, apply, etc) create files and directories readable by Puppet Server when necessary\.
|
1871
2099
|
.
|
1872
2100
|
.IP "\(bu" 4
|
1873
|
-
\fIDefault\fR:
|
2101
|
+
\fIDefault\fR: \fBpuppet\fR
|
1874
2102
|
.
|
1875
2103
|
.IP "" 0
|
1876
2104
|
.
|
@@ -1878,7 +2106,23 @@ The user puppet master should run as\.
|
|
1878
2106
|
Where Puppet stores dynamic and growing data\. The default for this setting is calculated specially, like \fBconfdir\fR_\.
|
1879
2107
|
.
|
1880
2108
|
.IP "\(bu" 4
|
1881
|
-
\fIDefault\fR:
|
2109
|
+
\fIDefault\fR: \fBUnix/Linux: /opt/puppetlabs/puppet/cache \-\- Windows: C:\eProgramData\ePuppetLabs\epuppet\ecache \-\- Non\-root user: ~/\.puppetlabs/opt/puppet/cache\fR
|
2110
|
+
.
|
2111
|
+
.IP "" 0
|
2112
|
+
.
|
2113
|
+
.SS "vendormoduledir"
|
2114
|
+
The directory containing \fBvendored\fR modules\. These modules will be used by \fIall\fR environments like those in the \fBbasemodulepath\fR\. The only difference is that modules in the \fBbasemodulepath\fR are pluginsynced, while vendored modules are not
|
2115
|
+
.
|
2116
|
+
.IP "\(bu" 4
|
2117
|
+
\fIDefault\fR: \fB/opt/puppetlabs/puppet/vendor_modules\fR
|
2118
|
+
.
|
2119
|
+
.IP "" 0
|
2120
|
+
.
|
2121
|
+
.SS "versioned_environment_dirs"
|
2122
|
+
Whether or not to look for versioned environment directories, symlinked from \fB$environmentpath/<environment>\fR\. This is an experimental feature and should be used with caution\.
|
2123
|
+
.
|
2124
|
+
.IP "\(bu" 4
|
2125
|
+
\fIDefault\fR: \fBfalse\fR
|
1882
2126
|
.
|
1883
2127
|
.IP "" 0
|
1884
2128
|
.
|
@@ -1886,13 +2130,32 @@ Where Puppet stores dynamic and growing data\. The default for this setting is c
|
|
1886
2130
|
How frequently puppet agent should ask for a signed certificate\.
|
1887
2131
|
.
|
1888
2132
|
.P
|
1889
|
-
When starting for the first time, puppet agent will submit a certificate signing request (CSR) to the server named in the \fBca_server\fR setting (usually the
|
2133
|
+
When starting for the first time, puppet agent will submit a certificate signing request (CSR) to the server named in the \fBca_server\fR setting (usually the primary Puppet server); this may be autosigned, or may need to be approved by a human, depending on the CA server\'s configuration\.
|
2134
|
+
.
|
2135
|
+
.P
|
2136
|
+
Puppet agent cannot apply configurations until its approved certificate is available\. Since the certificate may or may not be available immediately, puppet agent will repeatedly try to fetch it at this interval\. You can turn off waiting for certificates by specifying a time of 0, or a maximum amount of time to wait in the \fBmaxwaitforcert\fR setting, in which case puppet agent will exit if it cannot get a cert\. This setting can be a time interval in seconds (30 or 30s), minutes (30m), hours (6h), days (2d), or years (5y)\.
|
2137
|
+
.
|
2138
|
+
.IP "\(bu" 4
|
2139
|
+
\fIDefault\fR: \fB2m\fR
|
2140
|
+
.
|
2141
|
+
.IP "" 0
|
2142
|
+
.
|
2143
|
+
.SS "waitforlock"
|
2144
|
+
How frequently puppet agent should try running when there is an already ongoing puppet agent instance\.
|
1890
2145
|
.
|
1891
2146
|
.P
|
1892
|
-
|
2147
|
+
This argument is by default disabled (value set to 0)\. In this case puppet agent will immediately exit if it cannot run at that moment\. When a value other than 0 is set, this can also be used in combination with the \fBmaxwaitforlock\fR argument\. This setting can be a time interval in seconds (30 or 30s), minutes (30m), hours (6h), days (2d), or years (5y)\.
|
2148
|
+
.
|
2149
|
+
.IP "\(bu" 4
|
2150
|
+
\fIDefault\fR: \fB0\fR
|
2151
|
+
.
|
2152
|
+
.IP "" 0
|
2153
|
+
.
|
2154
|
+
.SS "write_catalog_summary"
|
2155
|
+
Whether to write the \fBclassfile\fR and \fBresourcefile\fR after applying the catalog\. It is enabled by default, except when running \fBpuppet apply\fR\.
|
1893
2156
|
.
|
1894
2157
|
.IP "\(bu" 4
|
1895
|
-
\fIDefault\fR:
|
2158
|
+
\fIDefault\fR: \fBtrue\fR
|
1896
2159
|
.
|
1897
2160
|
.IP "" 0
|
1898
2161
|
.
|
@@ -1900,9 +2163,7 @@ Puppet agent cannot apply configurations until its approved certificate is avail
|
|
1900
2163
|
The directory in which YAML data is stored, usually in a subdirectory\.
|
1901
2164
|
.
|
1902
2165
|
.IP "\(bu" 4
|
1903
|
-
\fIDefault\fR: $vardir/yaml
|
2166
|
+
\fIDefault\fR: \fB$vardir/yaml\fR
|
1904
2167
|
.
|
1905
2168
|
.IP "" 0
|
1906
|
-
|
1907
|
-
.P
|
1908
|
-
\fIThis page autogenerated on 2017\-06\-29 14:42:23 \-0700\fR
|
2169
|
+
|