puppet 6.0.5-x64-mingw32 → 8.8.1-x64-mingw32
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CODEOWNERS +11 -0
- data/CODE_OF_CONDUCT.md +70 -0
- data/Gemfile +31 -21
- data/Gemfile.lock +232 -105
- data/Guardfile.example +76 -0
- data/LICENSE +189 -4
- data/README.md +24 -32
- data/Rakefile +47 -59
- data/bin/puppet +1 -0
- data/conf/fileserver.conf +5 -10
- data/examples/enc/regexp_nodes/regexp_nodes.rb +270 -0
- data/examples/hiera/README.md +68 -57
- data/examples/hiera/data/common.yaml +12 -0
- data/examples/hiera/data/dc1.yaml +6 -0
- data/examples/hiera/hiera.yaml +15 -0
- data/examples/hiera/modules/ntp/data/common.yaml +4 -0
- data/examples/hiera/modules/ntp/hiera.yaml +9 -0
- data/examples/hiera/modules/ntp/manifests/config.pp +16 -4
- data/examples/hiera/modules/ntp/templates/ntp.conf.epp +3 -0
- data/examples/hiera/modules/users/manifests/common.pp +7 -2
- data/examples/hiera/modules/users/manifests/dc1.pp +7 -2
- data/examples/hiera/site.pp +1 -1
- data/examples/nagios/check_puppet.rb +123 -0
- data/ext/README.md +13 -0
- data/ext/build_defaults.yaml +1 -1
- data/ext/osx/puppet.plist +2 -0
- data/ext/project_data.yaml +0 -55
- data/ext/solaris/smf/puppet.xml +2 -0
- data/ext/systemd/puppet.service +2 -1
- data/ext/windows/service/daemon.rb +85 -53
- data/install.rb +54 -72
- data/lib/hiera/puppet_function.rb +8 -6
- data/lib/hiera/scope.rb +21 -12
- data/lib/hiera_puppet.rb +7 -8
- data/lib/puppet/agent/disabler.rb +6 -4
- data/lib/puppet/agent/locker.rb +4 -11
- data/lib/puppet/agent.rb +77 -33
- data/lib/puppet/application/agent.rb +348 -290
- data/lib/puppet/application/apply.rb +164 -139
- data/lib/puppet/application/catalog.rb +3 -1
- data/lib/puppet/application/config.rb +3 -1
- data/lib/puppet/application/describe.rb +57 -62
- data/lib/puppet/application/device.rb +242 -205
- data/lib/puppet/application/doc.rb +66 -67
- data/lib/puppet/application/epp.rb +4 -2
- data/lib/puppet/application/face_base.rb +41 -32
- data/lib/puppet/application/facts.rb +3 -1
- data/lib/puppet/application/filebucket.rb +188 -167
- data/lib/puppet/application/generate.rb +4 -2
- data/lib/puppet/application/help.rb +3 -1
- data/lib/puppet/application/indirection_base.rb +3 -1
- data/lib/puppet/application/lookup.rb +258 -196
- data/lib/puppet/application/module.rb +3 -1
- data/lib/puppet/application/node.rb +3 -1
- data/lib/puppet/application/parser.rb +4 -2
- data/lib/puppet/application/plugin.rb +4 -1
- data/lib/puppet/application/report.rb +3 -1
- data/lib/puppet/application/resource.rb +131 -104
- data/lib/puppet/application/script.rb +85 -82
- data/lib/puppet/application/ssl.rb +236 -128
- data/lib/puppet/application.rb +217 -135
- data/lib/puppet/application_support.rb +15 -7
- data/lib/puppet/coercion.rb +5 -3
- data/lib/puppet/compilable_resource_type.rb +5 -3
- data/lib/puppet/concurrent/lock.rb +15 -0
- data/lib/puppet/concurrent/synchronized.rb +15 -0
- data/lib/puppet/concurrent/thread_local_singleton.rb +18 -0
- data/lib/puppet/concurrent.rb +4 -0
- data/lib/puppet/configurer/downloader.rb +46 -22
- data/lib/puppet/configurer/fact_handler.rb +20 -19
- data/lib/puppet/configurer/plugin_handler.rb +24 -11
- data/lib/puppet/configurer.rb +427 -152
- data/lib/puppet/confine/any.rb +4 -2
- data/lib/puppet/confine/boolean.rb +47 -0
- data/lib/puppet/confine/exists.rb +4 -2
- data/lib/puppet/confine/false.rb +10 -2
- data/lib/puppet/confine/feature.rb +4 -3
- data/lib/puppet/confine/true.rb +10 -2
- data/lib/puppet/confine/variable.rb +6 -4
- data/lib/puppet/confine.rb +8 -5
- data/lib/puppet/confine_collection.rb +9 -5
- data/lib/puppet/confiner.rb +6 -4
- data/lib/puppet/context/trusted_information.rb +57 -11
- data/lib/puppet/context.rb +123 -49
- data/lib/puppet/daemon.rb +30 -39
- data/lib/puppet/data_binding.rb +4 -2
- data/lib/puppet/datatypes/error.rb +4 -2
- data/lib/puppet/datatypes/impl/error.rb +2 -0
- data/lib/puppet/datatypes.rb +12 -7
- data/lib/puppet/defaults.rb +584 -267
- data/lib/puppet/environments.rb +206 -112
- data/lib/puppet/error.rb +41 -16
- data/lib/puppet/etc.rb +11 -6
- data/lib/puppet/external/dot.rb +65 -75
- data/lib/puppet/face/catalog/select.rb +4 -2
- data/lib/puppet/face/catalog.rb +25 -4
- data/lib/puppet/face/config.rb +88 -87
- data/lib/puppet/face/epp.rb +46 -35
- data/lib/puppet/face/facts.rb +104 -15
- data/lib/puppet/face/generate.rb +8 -3
- data/lib/puppet/face/help.rb +61 -36
- data/lib/puppet/face/module/changes.rb +6 -4
- data/lib/puppet/face/module/install.rb +9 -6
- data/lib/puppet/face/module/list.rb +65 -57
- data/lib/puppet/face/module/uninstall.rb +3 -1
- data/lib/puppet/face/module/upgrade.rb +6 -4
- data/lib/puppet/face/module.rb +5 -3
- data/lib/puppet/face/node/clean.rb +14 -4
- data/lib/puppet/face/node.rb +7 -5
- data/lib/puppet/face/parser.rb +64 -25
- data/lib/puppet/face/plugin.rb +11 -5
- data/lib/puppet/face/report.rb +9 -9
- data/lib/puppet/face/resource.rb +3 -1
- data/lib/puppet/face.rb +3 -1
- data/lib/puppet/facter_impl.rb +96 -0
- data/lib/puppet/feature/base.rb +15 -15
- data/lib/puppet/feature/bolt.rb +3 -1
- data/lib/puppet/feature/cfpropertylist.rb +3 -1
- data/lib/puppet/feature/eventlog.rb +3 -1
- data/lib/puppet/feature/hiera_eyaml.rb +3 -1
- data/lib/puppet/feature/hocon.rb +3 -1
- data/lib/puppet/feature/libuser.rb +7 -5
- data/lib/puppet/feature/msgpack.rb +3 -1
- data/lib/puppet/feature/pe_license.rb +5 -3
- data/lib/puppet/feature/pson.rb +6 -0
- data/lib/puppet/feature/selinux.rb +3 -1
- data/lib/puppet/feature/ssh.rb +4 -2
- data/lib/puppet/feature/telnet.rb +6 -6
- data/lib/puppet/feature/zlib.rb +4 -2
- data/lib/puppet/ffi/posix/constants.rb +16 -0
- data/lib/puppet/ffi/posix/functions.rb +25 -0
- data/lib/puppet/ffi/posix.rb +12 -0
- data/lib/puppet/ffi/windows/api_types.rb +313 -0
- data/lib/puppet/ffi/windows/constants.rb +406 -0
- data/lib/puppet/ffi/windows/functions.rb +629 -0
- data/lib/puppet/ffi/windows/structs.rb +339 -0
- data/lib/puppet/ffi/windows.rb +14 -0
- data/lib/puppet/file_bucket/dipper.rb +27 -17
- data/lib/puppet/file_bucket/file.rb +11 -9
- data/lib/puppet/file_bucket.rb +2 -0
- data/lib/puppet/file_serving/base.rb +19 -11
- data/lib/puppet/file_serving/configuration/parser.rb +23 -44
- data/lib/puppet/file_serving/configuration.rb +24 -23
- data/lib/puppet/file_serving/content.rb +5 -3
- data/lib/puppet/file_serving/fileset.rb +38 -22
- data/lib/puppet/file_serving/http_metadata.rb +24 -9
- data/lib/puppet/file_serving/metadata.rb +40 -30
- data/lib/puppet/file_serving/mount/file.rb +18 -13
- data/lib/puppet/file_serving/mount/locales.rb +8 -8
- data/lib/puppet/file_serving/mount/modules.rb +8 -3
- data/lib/puppet/file_serving/mount/pluginfacts.rb +8 -8
- data/lib/puppet/file_serving/mount/plugins.rb +8 -8
- data/lib/puppet/file_serving/mount/scripts.rb +27 -0
- data/lib/puppet/file_serving/mount/tasks.rb +8 -3
- data/lib/puppet/file_serving/mount.rb +9 -7
- data/lib/puppet/file_serving/terminus_helper.rb +4 -2
- data/lib/puppet/file_serving/terminus_selector.rb +10 -9
- data/lib/puppet/file_serving.rb +2 -0
- data/lib/puppet/file_system/file_impl.rb +50 -15
- data/lib/puppet/file_system/jruby.rb +25 -0
- data/lib/puppet/file_system/memory_file.rb +18 -2
- data/lib/puppet/file_system/memory_impl.rb +18 -1
- data/lib/puppet/file_system/path_pattern.rb +14 -17
- data/lib/puppet/file_system/posix.rb +11 -5
- data/lib/puppet/file_system/uniquefile.rb +41 -41
- data/lib/puppet/file_system/windows.rb +113 -19
- data/lib/puppet/file_system.rb +42 -25
- data/lib/puppet/forge/cache.rb +7 -6
- data/lib/puppet/forge/errors.rb +8 -9
- data/lib/puppet/forge/repository.rb +36 -93
- data/lib/puppet/forge.rb +53 -40
- data/lib/puppet/functions/abs.rb +8 -5
- data/lib/puppet/functions/alert.rb +2 -0
- data/lib/puppet/functions/all.rb +4 -2
- data/lib/puppet/functions/annotate.rb +2 -0
- data/lib/puppet/functions/any.rb +3 -1
- data/lib/puppet/functions/assert_type.rb +5 -2
- data/lib/puppet/functions/binary_file.rb +4 -1
- data/lib/puppet/functions/break.rb +4 -2
- data/lib/puppet/functions/call.rb +5 -3
- data/lib/puppet/functions/camelcase.rb +7 -6
- data/lib/puppet/functions/capitalize.rb +7 -6
- data/lib/puppet/functions/ceiling.rb +3 -2
- data/lib/puppet/functions/chomp.rb +3 -2
- data/lib/puppet/functions/chop.rb +3 -2
- data/lib/puppet/functions/compare.rb +5 -3
- data/lib/puppet/functions/contain.rb +7 -4
- data/lib/puppet/functions/convert_to.rb +2 -0
- data/lib/puppet/functions/crit.rb +2 -0
- data/lib/puppet/functions/debug.rb +2 -0
- data/lib/puppet/functions/defined.rb +10 -6
- data/lib/puppet/functions/dig.rb +13 -10
- data/lib/puppet/functions/downcase.rb +6 -4
- data/lib/puppet/functions/each.rb +13 -13
- data/lib/puppet/functions/emerg.rb +2 -0
- data/lib/puppet/functions/empty.rb +10 -0
- data/lib/puppet/functions/epp.rb +7 -5
- data/lib/puppet/functions/err.rb +2 -0
- data/lib/puppet/functions/eyaml_lookup_key.rb +29 -23
- data/lib/puppet/functions/filter.rb +12 -18
- data/lib/puppet/functions/find_file.rb +11 -9
- data/lib/puppet/functions/find_template.rb +65 -0
- data/lib/puppet/functions/flatten.rb +2 -0
- data/lib/puppet/functions/floor.rb +3 -2
- data/lib/puppet/functions/get.rb +9 -7
- data/lib/puppet/functions/getvar.rb +7 -5
- data/lib/puppet/functions/group_by.rb +62 -0
- data/lib/puppet/functions/hiera.rb +2 -0
- data/lib/puppet/functions/hiera_array.rb +2 -0
- data/lib/puppet/functions/hiera_hash.rb +2 -0
- data/lib/puppet/functions/hiera_include.rb +3 -0
- data/lib/puppet/functions/hocon_data.rb +5 -5
- data/lib/puppet/functions/import.rb +3 -1
- data/lib/puppet/functions/include.rb +5 -2
- data/lib/puppet/functions/index.rb +168 -0
- data/lib/puppet/functions/info.rb +2 -0
- data/lib/puppet/functions/inline_epp.rb +8 -6
- data/lib/puppet/functions/join.rb +4 -2
- data/lib/puppet/functions/json_data.rb +6 -6
- data/lib/puppet/functions/keys.rb +2 -0
- data/lib/puppet/functions/length.rb +2 -1
- data/lib/puppet/functions/lest.rb +3 -1
- data/lib/puppet/functions/lookup.rb +11 -11
- data/lib/puppet/functions/lstrip.rb +7 -6
- data/lib/puppet/functions/map.rb +9 -8
- data/lib/puppet/functions/match.rb +10 -8
- data/lib/puppet/functions/max.rb +75 -8
- data/lib/puppet/functions/min.rb +75 -8
- data/lib/puppet/functions/module_directory.rb +2 -0
- data/lib/puppet/functions/new.rb +113 -106
- data/lib/puppet/functions/next.rb +20 -1
- data/lib/puppet/functions/notice.rb +2 -0
- data/lib/puppet/functions/partition.rb +62 -0
- data/lib/puppet/functions/reduce.rb +10 -15
- data/lib/puppet/functions/regsubst.rb +60 -42
- data/lib/puppet/functions/require.rb +12 -8
- data/lib/puppet/functions/return.rb +2 -0
- data/lib/puppet/functions/reverse_each.rb +3 -1
- data/lib/puppet/functions/round.rb +2 -0
- data/lib/puppet/functions/rstrip.rb +7 -6
- data/lib/puppet/functions/scanf.rb +2 -0
- data/lib/puppet/functions/size.rb +2 -2
- data/lib/puppet/functions/slice.rb +4 -1
- data/lib/puppet/functions/sort.rb +5 -3
- data/lib/puppet/functions/split.rb +30 -1
- data/lib/puppet/functions/step.rb +3 -1
- data/lib/puppet/functions/strftime.rb +6 -3
- data/lib/puppet/functions/strip.rb +7 -6
- data/lib/puppet/functions/then.rb +3 -0
- data/lib/puppet/functions/tree_each.rb +11 -13
- data/lib/puppet/functions/type.rb +6 -4
- data/lib/puppet/functions/unique.rb +10 -8
- data/lib/puppet/functions/unwrap.rb +19 -2
- data/lib/puppet/functions/upcase.rb +6 -4
- data/lib/puppet/functions/values.rb +2 -0
- data/lib/puppet/functions/versioncmp.rb +10 -5
- data/lib/puppet/functions/warning.rb +2 -0
- data/lib/puppet/functions/with.rb +2 -0
- data/lib/puppet/functions/yaml_data.rb +16 -15
- data/lib/puppet/functions.rb +59 -64
- data/lib/puppet/generate/models/type/property.rb +4 -1
- data/lib/puppet/generate/models/type/type.rb +10 -4
- data/lib/puppet/generate/type.rb +25 -9
- data/lib/puppet/gettext/config.rb +24 -17
- data/lib/puppet/gettext/module_translations.rb +8 -7
- data/lib/puppet/gettext/stubs.rb +2 -0
- data/lib/puppet/graph/key.rb +2 -0
- data/lib/puppet/graph/prioritizer.rb +2 -0
- data/lib/puppet/graph/rb_tree_map.rb +45 -26
- data/lib/puppet/graph/relationship_graph.rb +34 -31
- data/lib/puppet/graph/sequential_prioritizer.rb +2 -0
- data/lib/puppet/graph/simple_graph.rb +72 -63
- data/lib/puppet/graph.rb +8 -6
- data/lib/puppet/http/client.rb +529 -0
- data/lib/puppet/http/dns.rb +159 -0
- data/lib/puppet/http/errors.rb +50 -0
- data/lib/puppet/http/external_client.rb +89 -0
- data/lib/puppet/http/factory.rb +53 -0
- data/lib/puppet/http/pool.rb +174 -0
- data/lib/puppet/http/pool_entry.rb +19 -0
- data/lib/puppet/http/proxy.rb +139 -0
- data/lib/puppet/http/redirector.rb +87 -0
- data/lib/puppet/http/resolver/server_list.rb +88 -0
- data/lib/puppet/http/resolver/settings.rb +24 -0
- data/lib/puppet/http/resolver/srv.rb +42 -0
- data/lib/puppet/http/resolver.rb +50 -0
- data/lib/puppet/http/response.rb +104 -0
- data/lib/puppet/http/response_converter.rb +25 -0
- data/lib/puppet/http/response_net_http.rb +43 -0
- data/lib/puppet/http/retry_after_handler.rb +78 -0
- data/lib/puppet/http/service/ca.rb +133 -0
- data/lib/puppet/http/service/compiler.rb +356 -0
- data/lib/puppet/http/service/file_server.rb +200 -0
- data/lib/puppet/http/service/puppetserver.rb +54 -0
- data/lib/puppet/http/service/report.rb +62 -0
- data/lib/puppet/http/service.rb +177 -0
- data/lib/puppet/http/session.rb +124 -0
- data/lib/puppet/http/site.rb +44 -0
- data/lib/puppet/http.rb +48 -0
- data/lib/puppet/indirector/catalog/compiler.rb +129 -113
- data/lib/puppet/indirector/catalog/json.rb +12 -5
- data/lib/puppet/indirector/catalog/msgpack.rb +4 -2
- data/lib/puppet/indirector/catalog/rest.rb +47 -2
- data/lib/puppet/indirector/catalog/store_configs.rb +5 -5
- data/lib/puppet/indirector/catalog/yaml.rb +4 -2
- data/lib/puppet/indirector/code.rb +3 -1
- data/lib/puppet/indirector/data_binding/hiera.rb +3 -2
- data/lib/puppet/indirector/data_binding/none.rb +3 -1
- data/lib/puppet/indirector/direct_file_server.rb +6 -3
- data/lib/puppet/indirector/envelope.rb +3 -1
- data/lib/puppet/indirector/errors.rb +3 -1
- data/lib/puppet/indirector/exec.rb +8 -6
- data/lib/puppet/indirector/face.rb +20 -31
- data/lib/puppet/indirector/fact_search.rb +62 -0
- data/lib/puppet/indirector/facts/facter.rb +49 -17
- data/lib/puppet/indirector/facts/json.rb +29 -0
- data/lib/puppet/indirector/facts/memory.rb +4 -2
- data/lib/puppet/indirector/facts/network_device.rb +4 -2
- data/lib/puppet/indirector/facts/rest.rb +36 -11
- data/lib/puppet/indirector/facts/store_configs.rb +5 -4
- data/lib/puppet/indirector/facts/yaml.rb +8 -61
- data/lib/puppet/indirector/file_bucket_file/file.rb +38 -32
- data/lib/puppet/indirector/file_bucket_file/rest.rb +47 -2
- data/lib/puppet/indirector/file_bucket_file/selector.rb +3 -2
- data/lib/puppet/indirector/file_content/file.rb +5 -3
- data/lib/puppet/indirector/file_content/file_server.rb +5 -3
- data/lib/puppet/indirector/file_content/rest.rb +32 -4
- data/lib/puppet/indirector/file_content/selector.rb +6 -4
- data/lib/puppet/indirector/file_content.rb +3 -1
- data/lib/puppet/indirector/file_metadata/file.rb +5 -3
- data/lib/puppet/indirector/file_metadata/file_server.rb +5 -3
- data/lib/puppet/indirector/file_metadata/http.rb +33 -11
- data/lib/puppet/indirector/file_metadata/rest.rb +53 -4
- data/lib/puppet/indirector/file_metadata/selector.rb +6 -4
- data/lib/puppet/indirector/file_metadata.rb +3 -1
- data/lib/puppet/indirector/file_server.rb +12 -14
- data/lib/puppet/indirector/generic_http.rb +3 -12
- data/lib/puppet/indirector/hiera.rb +15 -8
- data/lib/puppet/indirector/indirection.rb +98 -57
- data/lib/puppet/indirector/json.rb +15 -8
- data/lib/puppet/indirector/memory.rb +6 -3
- data/lib/puppet/indirector/msgpack.rb +14 -10
- data/lib/puppet/indirector/node/exec.rb +10 -9
- data/lib/puppet/indirector/node/json.rb +9 -0
- data/lib/puppet/indirector/node/memory.rb +4 -2
- data/lib/puppet/indirector/node/msgpack.rb +4 -2
- data/lib/puppet/indirector/node/plain.rb +4 -2
- data/lib/puppet/indirector/node/rest.rb +26 -2
- data/lib/puppet/indirector/node/store_configs.rb +5 -5
- data/lib/puppet/indirector/node/yaml.rb +4 -2
- data/lib/puppet/indirector/none.rb +4 -3
- data/lib/puppet/indirector/plain.rb +3 -1
- data/lib/puppet/indirector/report/json.rb +36 -0
- data/lib/puppet/indirector/report/msgpack.rb +5 -3
- data/lib/puppet/indirector/report/processor.rb +10 -6
- data/lib/puppet/indirector/report/rest.rb +17 -14
- data/lib/puppet/indirector/report/yaml.rb +28 -3
- data/lib/puppet/indirector/request.rb +26 -107
- data/lib/puppet/indirector/resource/ral.rb +18 -15
- data/lib/puppet/indirector/resource/store_configs.rb +5 -3
- data/lib/puppet/indirector/resource/validator.rb +3 -1
- data/lib/puppet/indirector/rest.rb +13 -248
- data/lib/puppet/indirector/store_configs.rb +2 -0
- data/lib/puppet/indirector/terminus.rb +23 -12
- data/lib/puppet/indirector/yaml.rb +10 -8
- data/lib/puppet/indirector.rb +11 -8
- data/lib/puppet/info_service/class_information_service.rb +21 -23
- data/lib/puppet/info_service/plan_information_service.rb +38 -0
- data/lib/puppet/info_service/task_information_service.rb +14 -5
- data/lib/puppet/info_service.rb +12 -2
- data/lib/puppet/interface/action.rb +62 -51
- data/lib/puppet/interface/action_builder.rb +16 -15
- data/lib/puppet/interface/action_manager.rb +11 -7
- data/lib/puppet/interface/documentation.rb +51 -41
- data/lib/puppet/interface/face_collection.rb +24 -17
- data/lib/puppet/interface/option.rb +30 -17
- data/lib/puppet/interface/option_builder.rb +14 -9
- data/lib/puppet/interface/option_manager.rb +16 -12
- data/lib/puppet/interface.rb +23 -20
- data/lib/puppet/loaders.rb +24 -21
- data/lib/puppet/metatype/manager.rb +91 -90
- data/lib/puppet/module/plan.rb +166 -0
- data/lib/puppet/module/task.rb +59 -29
- data/lib/puppet/module.rb +98 -52
- data/lib/puppet/module_tool/applications/application.rb +21 -15
- data/lib/puppet/module_tool/applications/checksummer.rb +5 -5
- data/lib/puppet/module_tool/applications/installer.rb +146 -98
- data/lib/puppet/module_tool/applications/uninstaller.rb +27 -26
- data/lib/puppet/module_tool/applications/unpacker.rb +13 -11
- data/lib/puppet/module_tool/applications/upgrader.rb +75 -67
- data/lib/puppet/module_tool/applications.rb +9 -8
- data/lib/puppet/module_tool/checksums.rb +5 -4
- data/lib/puppet/module_tool/contents_description.rb +8 -7
- data/lib/puppet/module_tool/dependency.rb +7 -6
- data/lib/puppet/module_tool/errors/base.rb +3 -1
- data/lib/puppet/module_tool/errors/installer.rb +6 -5
- data/lib/puppet/module_tool/errors/shared.rb +50 -17
- data/lib/puppet/module_tool/errors/uninstaller.rb +3 -2
- data/lib/puppet/module_tool/errors/upgrader.rb +4 -3
- data/lib/puppet/module_tool/errors.rb +8 -6
- data/lib/puppet/module_tool/install_directory.rb +10 -7
- data/lib/puppet/module_tool/installed_modules.rb +7 -4
- data/lib/puppet/module_tool/local_tarball.rb +12 -10
- data/lib/puppet/module_tool/metadata.rb +42 -37
- data/lib/puppet/module_tool/shared_behaviors.rb +67 -48
- data/lib/puppet/module_tool/tar/gnu.rb +12 -8
- data/lib/puppet/module_tool/tar/mini.rb +18 -6
- data/lib/puppet/module_tool/tar.rb +8 -6
- data/lib/puppet/module_tool.rb +23 -21
- data/lib/puppet/network/authconfig.rb +3 -93
- data/lib/puppet/network/authorization.rb +14 -34
- data/lib/puppet/network/client_request.rb +7 -4
- data/lib/puppet/network/format.rb +10 -4
- data/lib/puppet/network/format_handler.rb +12 -10
- data/lib/puppet/network/format_support.rb +11 -10
- data/lib/puppet/network/formats.rb +97 -19
- data/lib/puppet/network/http/api/indirected_routes.rb +47 -63
- data/lib/puppet/network/http/api/indirection_type.rb +2 -1
- data/lib/puppet/network/http/api/master/v3/environments.rb +3 -34
- data/lib/puppet/network/http/api/master/v3.rb +3 -27
- data/lib/puppet/network/http/api/master.rb +5 -2
- data/lib/puppet/network/http/api/server/v3/environments.rb +54 -0
- data/lib/puppet/network/http/api/server/v3.rb +40 -0
- data/lib/puppet/network/http/api/server.rb +12 -0
- data/lib/puppet/network/http/api.rb +26 -20
- data/lib/puppet/network/http/connection.rb +250 -281
- data/lib/puppet/network/http/error.rb +6 -4
- data/lib/puppet/network/http/handler.rb +16 -18
- data/lib/puppet/network/http/issues.rb +2 -0
- data/lib/puppet/network/http/memory_response.rb +3 -1
- data/lib/puppet/network/http/request.rb +24 -11
- data/lib/puppet/network/http/response.rb +2 -0
- data/lib/puppet/network/http/route.rb +17 -13
- data/lib/puppet/network/http.rb +21 -19
- data/lib/puppet/network/http_pool.rb +42 -25
- data/lib/puppet/network/uri.rb +20 -0
- data/lib/puppet/network.rb +2 -0
- data/lib/puppet/node/environment.rb +140 -77
- data/lib/puppet/node/facts.rb +30 -13
- data/lib/puppet/node/server_facts.rb +43 -0
- data/lib/puppet/node.rb +25 -50
- data/lib/puppet/pal/catalog_compiler.rb +107 -0
- data/lib/puppet/pal/compiler.rb +227 -0
- data/lib/puppet/pal/function_signature.rb +54 -0
- data/lib/puppet/pal/json_catalog_encoder.rb +76 -0
- data/lib/puppet/pal/pal_api.rb +17 -0
- data/lib/puppet/pal/pal_impl.rb +585 -0
- data/lib/puppet/pal/plan_signature.rb +73 -0
- data/lib/puppet/pal/script_compiler.rb +75 -0
- data/lib/puppet/pal/task_signature.rb +64 -0
- data/lib/puppet/parameter/boolean.rb +3 -1
- data/lib/puppet/parameter/package_options.rb +4 -2
- data/lib/puppet/parameter/path.rb +8 -4
- data/lib/puppet/parameter/value.rb +6 -4
- data/lib/puppet/parameter/value_collection.rb +25 -24
- data/lib/puppet/parameter.rb +44 -26
- data/lib/puppet/parser/abstract_compiler.rb +2 -3
- data/lib/puppet/parser/ast/block_expression.rb +4 -2
- data/lib/puppet/parser/ast/branch.rb +2 -0
- data/lib/puppet/parser/ast/hostclass.rb +5 -3
- data/lib/puppet/parser/ast/leaf.rb +10 -6
- data/lib/puppet/parser/ast/node.rb +2 -0
- data/lib/puppet/parser/ast/pops_bridge.rb +23 -69
- data/lib/puppet/parser/ast/resource.rb +8 -8
- data/lib/puppet/parser/ast/resource_instance.rb +3 -0
- data/lib/puppet/parser/ast/resourceparam.rb +10 -8
- data/lib/puppet/parser/ast/top_level_construct.rb +2 -0
- data/lib/puppet/parser/ast.rb +25 -24
- data/lib/puppet/parser/catalog_compiler.rb +5 -5
- data/lib/puppet/parser/compiler/catalog_validator/relationship_validator.rb +18 -41
- data/lib/puppet/parser/compiler/catalog_validator.rb +2 -0
- data/lib/puppet/parser/compiler.rb +88 -270
- data/lib/puppet/parser/e4_parser_adapter.rb +18 -17
- data/lib/puppet/parser/files.rb +10 -7
- data/lib/puppet/parser/functions/assert_type.rb +43 -41
- data/lib/puppet/parser/functions/binary_file.rb +16 -14
- data/lib/puppet/parser/functions/break.rb +29 -27
- data/lib/puppet/parser/functions/contain.rb +3 -1
- data/lib/puppet/parser/functions/create_resources.rb +28 -20
- data/lib/puppet/parser/functions/defined.rb +104 -102
- data/lib/puppet/parser/functions/dig.rb +26 -24
- data/lib/puppet/parser/functions/digest.rb +4 -2
- data/lib/puppet/parser/functions/each.rb +101 -99
- data/lib/puppet/parser/functions/epp.rb +7 -6
- data/lib/puppet/parser/functions/fail.rb +12 -3
- data/lib/puppet/parser/functions/file.rb +17 -15
- data/lib/puppet/parser/functions/filter.rb +57 -54
- data/lib/puppet/parser/functions/find_file.rb +19 -18
- data/lib/puppet/parser/functions/fqdn_rand.rb +31 -21
- data/lib/puppet/parser/functions/generate.rb +30 -27
- data/lib/puppet/parser/functions/hiera.rb +95 -93
- data/lib/puppet/parser/functions/hiera_array.rb +83 -82
- data/lib/puppet/parser/functions/hiera_hash.rb +93 -92
- data/lib/puppet/parser/functions/hiera_include.rb +93 -92
- data/lib/puppet/parser/functions/include.rb +5 -3
- data/lib/puppet/parser/functions/inline_epp.rb +8 -7
- data/lib/puppet/parser/functions/inline_template.rb +15 -13
- data/lib/puppet/parser/functions/lest.rb +36 -34
- data/lib/puppet/parser/functions/lookup.rb +132 -130
- data/lib/puppet/parser/functions/map.rb +54 -52
- data/lib/puppet/parser/functions/match.rb +31 -29
- data/lib/puppet/parser/functions/md5.rb +4 -2
- data/lib/puppet/parser/functions/new.rb +916 -915
- data/lib/puppet/parser/functions/next.rb +36 -34
- data/lib/puppet/parser/functions/realize.rb +13 -11
- data/lib/puppet/parser/functions/reduce.rb +134 -132
- data/lib/puppet/parser/functions/regsubst.rb +8 -5
- data/lib/puppet/parser/functions/require.rb +8 -5
- data/lib/puppet/parser/functions/return.rb +90 -88
- data/lib/puppet/parser/functions/reverse_each.rb +59 -57
- data/lib/puppet/parser/functions/scanf.rb +25 -23
- data/lib/puppet/parser/functions/sha1.rb +4 -2
- data/lib/puppet/parser/functions/sha256.rb +3 -1
- data/lib/puppet/parser/functions/shellquote.rb +2 -0
- data/lib/puppet/parser/functions/slice.rb +27 -25
- data/lib/puppet/parser/functions/split.rb +7 -6
- data/lib/puppet/parser/functions/sprintf.rb +8 -7
- data/lib/puppet/parser/functions/step.rb +62 -60
- data/lib/puppet/parser/functions/strftime.rb +175 -173
- data/lib/puppet/parser/functions/tag.rb +10 -7
- data/lib/puppet/parser/functions/tagged.rb +16 -13
- data/lib/puppet/parser/functions/template.rb +27 -24
- data/lib/puppet/parser/functions/then.rb +54 -52
- data/lib/puppet/parser/functions/type.rb +36 -34
- data/lib/puppet/parser/functions/versioncmp.rb +4 -3
- data/lib/puppet/parser/functions/with.rb +22 -20
- data/lib/puppet/parser/functions.rb +36 -23
- data/lib/puppet/parser/parser_factory.rb +4 -2
- data/lib/puppet/parser/relationship.rb +11 -4
- data/lib/puppet/parser/resource/param.rb +9 -1
- data/lib/puppet/parser/resource.rb +53 -116
- data/lib/puppet/parser/scope.rb +105 -87
- data/lib/puppet/parser/script_compiler.rb +14 -14
- data/lib/puppet/parser/templatewrapper.rb +10 -7
- data/lib/puppet/parser/type_loader.rb +33 -31
- data/lib/puppet/parser.rb +12 -10
- data/lib/puppet/plugins/configuration.rb +10 -4
- data/lib/puppet/plugins/syntax_checkers.rb +2 -1
- data/lib/puppet/plugins.rb +3 -1
- data/lib/puppet/pops/adaptable.rb +13 -20
- data/lib/puppet/pops/adapters.rb +12 -5
- data/lib/puppet/pops/evaluator/access_operator.rb +135 -122
- data/lib/puppet/pops/evaluator/callable_signature.rb +6 -5
- data/lib/puppet/pops/evaluator/closure.rb +272 -275
- data/lib/puppet/pops/evaluator/collector_transformer.rb +18 -15
- data/lib/puppet/pops/evaluator/collectors/abstract_collector.rb +11 -11
- data/lib/puppet/pops/evaluator/collectors/catalog_collector.rb +5 -4
- data/lib/puppet/pops/evaluator/collectors/exported_collector.rb +9 -7
- data/lib/puppet/pops/evaluator/collectors/fixed_set_collector.rb +11 -10
- data/lib/puppet/pops/evaluator/compare_operator.rb +36 -21
- data/lib/puppet/pops/evaluator/deferred_resolver.rb +120 -23
- data/lib/puppet/pops/evaluator/epp_evaluator.rb +19 -18
- data/lib/puppet/pops/evaluator/evaluator_impl.rb +285 -267
- data/lib/puppet/pops/evaluator/external_syntax_support.rb +10 -8
- data/lib/puppet/pops/evaluator/json_strict_literal_evaluator.rb +6 -5
- data/lib/puppet/pops/evaluator/literal_evaluator.rb +21 -8
- data/lib/puppet/pops/evaluator/puppet_proc.rb +6 -3
- data/lib/puppet/pops/evaluator/relationship_operator.rb +15 -12
- data/lib/puppet/pops/evaluator/runtime3_converter.rb +36 -32
- data/lib/puppet/pops/evaluator/runtime3_resource_support.rb +40 -38
- data/lib/puppet/pops/evaluator/runtime3_support.rb +44 -50
- data/lib/puppet/pops/functions/dispatch.rb +7 -7
- data/lib/puppet/pops/functions/dispatcher.rb +17 -12
- data/lib/puppet/pops/functions/function.rb +19 -23
- data/lib/puppet/pops/issue_reporter.rb +25 -22
- data/lib/puppet/pops/issues.rb +21 -9
- data/lib/puppet/pops/label_provider.rb +6 -4
- data/lib/puppet/pops/loader/base_loader.rb +45 -33
- data/lib/puppet/pops/loader/dependency_loader.rb +15 -12
- data/lib/puppet/pops/loader/gem_support.rb +9 -4
- data/lib/puppet/pops/loader/generic_plan_instantiator.rb +30 -0
- data/lib/puppet/pops/loader/loader.rb +25 -13
- data/lib/puppet/pops/loader/loader_paths.rb +87 -51
- data/lib/puppet/pops/loader/module_loaders.rb +57 -54
- data/lib/puppet/pops/loader/predefined_loader.rb +7 -3
- data/lib/puppet/pops/loader/puppet_function_instantiator.rb +6 -2
- data/lib/puppet/pops/loader/puppet_plan_instantiator.rb +18 -5
- data/lib/puppet/pops/loader/puppet_resource_type_impl_instantiator.rb +6 -5
- data/lib/puppet/pops/loader/ruby_data_type_instantiator.rb +6 -2
- data/lib/puppet/pops/loader/ruby_function_instantiator.rb +6 -2
- data/lib/puppet/pops/loader/ruby_legacy_function_instantiator.rb +74 -7
- data/lib/puppet/pops/loader/runtime3_type_loader.rb +9 -6
- data/lib/puppet/pops/loader/simple_environment_loader.rb +3 -3
- data/lib/puppet/pops/loader/static_loader.rb +33 -27
- data/lib/puppet/pops/loader/task_instantiator.rb +9 -3
- data/lib/puppet/pops/loader/type_definition_instantiator.rb +9 -5
- data/lib/puppet/pops/loader/typed_name.rb +4 -2
- data/lib/puppet/pops/loader/uri_helper.rb +3 -1
- data/lib/puppet/pops/loaders.rb +60 -43
- data/lib/puppet/pops/lookup/configured_data_provider.rb +2 -0
- data/lib/puppet/pops/lookup/context.rb +36 -28
- data/lib/puppet/pops/lookup/data_adapter.rb +2 -0
- data/lib/puppet/pops/lookup/data_dig_function_provider.rb +8 -7
- data/lib/puppet/pops/lookup/data_hash_function_provider.rb +5 -3
- data/lib/puppet/pops/lookup/data_provider.rb +2 -0
- data/lib/puppet/pops/lookup/environment_data_provider.rb +2 -0
- data/lib/puppet/pops/lookup/explainer.rb +47 -45
- data/lib/puppet/pops/lookup/function_provider.rb +8 -6
- data/lib/puppet/pops/lookup/global_data_provider.rb +4 -3
- data/lib/puppet/pops/lookup/hiera_config.rb +216 -154
- data/lib/puppet/pops/lookup/interpolation.rb +22 -10
- data/lib/puppet/pops/lookup/invocation.rb +14 -3
- data/lib/puppet/pops/lookup/key_recorder.rb +21 -0
- data/lib/puppet/pops/lookup/location_resolver.rb +4 -2
- data/lib/puppet/pops/lookup/lookup_adapter.rb +47 -34
- data/lib/puppet/pops/lookup/lookup_key.rb +3 -1
- data/lib/puppet/pops/lookup/lookup_key_function_provider.rb +4 -2
- data/lib/puppet/pops/lookup/module_data_provider.rb +12 -9
- data/lib/puppet/pops/lookup/sub_lookup.rb +8 -4
- data/lib/puppet/pops/lookup.rb +17 -11
- data/lib/puppet/pops/merge_strategy.rb +43 -33
- data/lib/puppet/pops/migration/migration_checker.rb +8 -5
- data/lib/puppet/pops/model/ast.pp +0 -42
- data/lib/puppet/pops/model/ast.rb +787 -975
- data/lib/puppet/pops/model/ast_transformer.rb +20 -20
- data/lib/puppet/pops/model/factory.rb +88 -94
- data/lib/puppet/pops/model/model_label_provider.rb +5 -7
- data/lib/puppet/pops/model/model_tree_dumper.rb +32 -52
- data/lib/puppet/pops/model/pn_transformer.rb +10 -31
- data/lib/puppet/pops/model/tree_dumper.rb +7 -4
- data/lib/puppet/pops/parser/code_merger.rb +5 -5
- data/lib/puppet/pops/parser/egrammar.ra +6 -60
- data/lib/puppet/pops/parser/eparser.rb +1699 -1876
- data/lib/puppet/pops/parser/epp_parser.rb +6 -5
- data/lib/puppet/pops/parser/epp_support.rb +12 -10
- data/lib/puppet/pops/parser/evaluating_parser.rb +21 -20
- data/lib/puppet/pops/parser/heredoc_support.rb +31 -20
- data/lib/puppet/pops/parser/interpolation_support.rb +39 -34
- data/lib/puppet/pops/parser/lexer2.rb +160 -143
- data/lib/puppet/pops/parser/lexer_support.rb +58 -58
- data/lib/puppet/pops/parser/locatable.rb +2 -2
- data/lib/puppet/pops/parser/locator.rb +149 -124
- data/lib/puppet/pops/parser/parser_support.rb +37 -32
- data/lib/puppet/pops/parser/pn_parser.rb +27 -25
- data/lib/puppet/pops/parser/slurp_support.rb +42 -40
- data/lib/puppet/pops/patterns.rb +14 -14
- data/lib/puppet/pops/pcore.rb +7 -6
- data/lib/puppet/pops/pn.rb +8 -5
- data/lib/puppet/pops/puppet_stack.rb +54 -48
- data/lib/puppet/pops/resource/param.rb +13 -12
- data/lib/puppet/pops/resource/resource_type_impl.rb +49 -67
- data/lib/puppet/pops/semantic_error.rb +3 -1
- data/lib/puppet/pops/serialization/abstract_reader.rb +6 -4
- data/lib/puppet/pops/serialization/abstract_writer.rb +11 -9
- data/lib/puppet/pops/serialization/deserializer.rb +3 -0
- data/lib/puppet/pops/serialization/extension.rb +8 -0
- data/lib/puppet/pops/serialization/from_data_converter.rb +16 -9
- data/lib/puppet/pops/serialization/instance_reader.rb +2 -0
- data/lib/puppet/pops/serialization/instance_writer.rb +2 -0
- data/lib/puppet/pops/serialization/json.rb +10 -6
- data/lib/puppet/pops/serialization/json_path.rb +6 -4
- data/lib/puppet/pops/serialization/object.rb +6 -3
- data/lib/puppet/pops/serialization/serializer.rb +20 -16
- data/lib/puppet/pops/serialization/time_factory.rb +2 -1
- data/lib/puppet/pops/serialization/to_data_converter.rb +9 -6
- data/lib/puppet/pops/serialization/to_stringified_converter.rb +9 -8
- data/lib/puppet/pops/serialization.rb +10 -8
- data/lib/puppet/pops/time/timespan.rb +37 -27
- data/lib/puppet/pops/time/timestamp.rb +12 -5
- data/lib/puppet/pops/types/annotatable.rb +3 -2
- data/lib/puppet/pops/types/annotation.rb +6 -4
- data/lib/puppet/pops/types/class_loader.rb +17 -15
- data/lib/puppet/pops/types/implementation_registry.rb +4 -1
- data/lib/puppet/pops/types/iterable.rb +57 -21
- data/lib/puppet/pops/types/p_binary_type.rb +6 -6
- data/lib/puppet/pops/types/p_init_type.rb +15 -12
- data/lib/puppet/pops/types/p_meta_type.rb +7 -6
- data/lib/puppet/pops/types/p_object_type.rb +104 -79
- data/lib/puppet/pops/types/p_object_type_extension.rb +25 -14
- data/lib/puppet/pops/types/p_runtime_type.rb +12 -10
- data/lib/puppet/pops/types/p_sem_ver_range_type.rb +3 -2
- data/lib/puppet/pops/types/p_sem_ver_type.rb +16 -10
- data/lib/puppet/pops/types/p_sensitive_type.rb +14 -6
- data/lib/puppet/pops/types/p_timespan_type.rb +7 -5
- data/lib/puppet/pops/types/p_timestamp_type.rb +4 -3
- data/lib/puppet/pops/types/p_type_set_type.rb +56 -45
- data/lib/puppet/pops/types/p_uri_type.rb +42 -34
- data/lib/puppet/pops/types/puppet_object.rb +2 -1
- data/lib/puppet/pops/types/recursion_guard.rb +12 -6
- data/lib/puppet/pops/types/ruby_generator.rb +19 -14
- data/lib/puppet/pops/types/ruby_method.rb +8 -7
- data/lib/puppet/pops/types/string_converter.rb +130 -118
- data/lib/puppet/pops/types/tree_iterators.rb +16 -20
- data/lib/puppet/pops/types/type_acceptor.rb +2 -0
- data/lib/puppet/pops/types/type_asserter.rb +5 -3
- data/lib/puppet/pops/types/type_assertion_error.rb +1 -1
- data/lib/puppet/pops/types/type_calculator.rb +75 -55
- data/lib/puppet/pops/types/type_conversion_error.rb +2 -10
- data/lib/puppet/pops/types/type_factory.rb +25 -16
- data/lib/puppet/pops/types/type_formatter.rb +75 -81
- data/lib/puppet/pops/types/type_mismatch_describer.rb +83 -53
- data/lib/puppet/pops/types/type_parser.rb +131 -126
- data/lib/puppet/pops/types/type_set_reference.rb +3 -0
- data/lib/puppet/pops/types/type_with_members.rb +2 -2
- data/lib/puppet/pops/types/types.rb +274 -254
- data/lib/puppet/pops/utils.rb +43 -45
- data/lib/puppet/pops/validation/checker4_0.rb +126 -100
- data/lib/puppet/pops/validation/tasks_checker.rb +12 -18
- data/lib/puppet/pops/validation/validator_factory_4_0.rb +5 -3
- data/lib/puppet/pops/validation.rb +38 -42
- data/lib/puppet/pops/visitable.rb +2 -0
- data/lib/puppet/pops/visitor.rb +30 -10
- data/lib/puppet/pops.rb +63 -60
- data/lib/puppet/property/boolean.rb +3 -1
- data/lib/puppet/property/ensure.rb +20 -18
- data/lib/puppet/property/keyvalue.rb +18 -16
- data/lib/puppet/property/list.rb +13 -11
- data/lib/puppet/property/ordered_list.rb +7 -6
- data/lib/puppet/property.rb +65 -63
- data/lib/puppet/provider/aix_object.rb +21 -13
- data/lib/puppet/provider/command.rb +2 -0
- data/lib/puppet/provider/confine.rb +4 -2
- data/lib/puppet/provider/exec/posix.rb +21 -6
- data/lib/puppet/provider/exec/shell.rb +2 -0
- data/lib/puppet/provider/exec/windows.rb +7 -5
- data/lib/puppet/provider/exec.rb +26 -12
- data/lib/puppet/provider/file/posix.rb +46 -20
- data/lib/puppet/provider/file/windows.rb +68 -21
- data/lib/puppet/provider/group/aix.rb +6 -3
- data/lib/puppet/provider/group/directoryservice.rb +8 -6
- data/lib/puppet/provider/group/groupadd.rb +103 -34
- data/lib/puppet/provider/group/ldap.rb +11 -5
- data/lib/puppet/provider/group/pw.rb +9 -6
- data/lib/puppet/provider/group/windows_adsi.rb +18 -12
- data/lib/puppet/provider/ldap.rb +15 -9
- data/lib/puppet/provider/nameservice/directoryservice.rb +83 -69
- data/lib/puppet/provider/nameservice/objectadd.rb +5 -5
- data/lib/puppet/provider/nameservice/pw.rb +10 -10
- data/lib/puppet/provider/nameservice.rb +36 -40
- data/lib/puppet/provider/network_device.rb +6 -4
- data/lib/puppet/provider/package/aix.rb +51 -32
- data/lib/puppet/provider/package/appdmg.rb +31 -27
- data/lib/puppet/provider/package/apple.rb +10 -7
- data/lib/puppet/provider/package/apt.rb +174 -23
- data/lib/puppet/provider/package/aptitude.rb +10 -4
- data/lib/puppet/provider/package/aptrpm.rb +18 -14
- data/lib/puppet/provider/package/blastwave.rb +20 -22
- data/lib/puppet/provider/package/dnf.rb +15 -7
- data/lib/puppet/provider/package/dnfmodule.rb +143 -0
- data/lib/puppet/provider/package/dpkg.rb +55 -29
- data/lib/puppet/provider/package/fink.rb +33 -13
- data/lib/puppet/provider/package/freebsd.rb +6 -4
- data/lib/puppet/provider/package/gem.rb +181 -60
- data/lib/puppet/provider/package/hpux.rb +10 -8
- data/lib/puppet/provider/package/macports.rb +14 -9
- data/lib/puppet/provider/package/nim.rb +47 -39
- data/lib/puppet/provider/package/openbsd.rb +66 -45
- data/lib/puppet/provider/package/opkg.rb +20 -16
- data/lib/puppet/provider/package/pacman.rb +55 -51
- data/lib/puppet/provider/package/pip.rb +276 -117
- data/lib/puppet/provider/package/pip2.rb +18 -0
- data/lib/puppet/provider/package/pip3.rb +5 -7
- data/lib/puppet/provider/package/pkg.rb +86 -41
- data/lib/puppet/provider/package/pkgdmg.rb +31 -23
- data/lib/puppet/provider/package/pkgin.rb +15 -14
- data/lib/puppet/provider/package/pkgng.rb +69 -34
- data/lib/puppet/provider/package/pkgutil.rb +41 -41
- data/lib/puppet/provider/package/portage.rb +87 -73
- data/lib/puppet/provider/package/ports.rb +19 -16
- data/lib/puppet/provider/package/portupgrade.rb +51 -57
- data/lib/puppet/provider/package/puppet_gem.rb +16 -8
- data/lib/puppet/provider/package/puppetserver_gem.rb +174 -0
- data/lib/puppet/provider/package/rpm.rb +104 -254
- data/lib/puppet/provider/package/rug.rb +11 -11
- data/lib/puppet/provider/package/sun.rb +31 -27
- data/lib/puppet/provider/package/sunfreeware.rb +3 -1
- data/lib/puppet/provider/package/tdnf.rb +8 -1
- data/lib/puppet/provider/package/up2date.rb +10 -10
- data/lib/puppet/provider/package/urpmi.rb +9 -7
- data/lib/puppet/provider/package/windows/exe_package.rb +38 -7
- data/lib/puppet/provider/package/windows/msi_package.rb +6 -4
- data/lib/puppet/provider/package/windows/package.rb +19 -14
- data/lib/puppet/provider/package/windows.rb +28 -10
- data/lib/puppet/provider/package/xbps.rb +127 -0
- data/lib/puppet/provider/package/yum.rb +165 -60
- data/lib/puppet/provider/package/zypper.rb +90 -29
- data/lib/puppet/provider/package.rb +13 -8
- data/lib/puppet/provider/package_targetable.rb +71 -0
- data/lib/puppet/provider/parsedfile.rb +41 -27
- data/lib/puppet/provider/service/base.rb +29 -28
- data/lib/puppet/provider/service/bsd.rb +7 -5
- data/lib/puppet/provider/service/daemontools.rb +49 -47
- data/lib/puppet/provider/service/debian.rb +17 -15
- data/lib/puppet/provider/service/freebsd.rb +50 -52
- data/lib/puppet/provider/service/gentoo.rb +11 -9
- data/lib/puppet/provider/service/init.rb +39 -39
- data/lib/puppet/provider/service/launchd.rb +72 -42
- data/lib/puppet/provider/service/openbsd.rb +17 -16
- data/lib/puppet/provider/service/openrc.rb +6 -5
- data/lib/puppet/provider/service/openwrt.rb +7 -6
- data/lib/puppet/provider/service/rcng.rb +9 -7
- data/lib/puppet/provider/service/redhat.rb +10 -7
- data/lib/puppet/provider/service/runit.rb +18 -23
- data/lib/puppet/provider/service/service.rb +32 -7
- data/lib/puppet/provider/service/smf.rb +189 -90
- data/lib/puppet/provider/service/src.rb +30 -30
- data/lib/puppet/provider/service/systemd.rb +107 -67
- data/lib/puppet/provider/service/upstart.rb +62 -47
- data/lib/puppet/provider/service/windows.rb +103 -39
- data/lib/puppet/provider/user/aix.rb +74 -26
- data/lib/puppet/provider/user/directoryservice.rb +170 -115
- data/lib/puppet/provider/user/hpux.rb +33 -35
- data/lib/puppet/provider/user/ldap.rb +22 -15
- data/lib/puppet/provider/user/openbsd.rb +27 -24
- data/lib/puppet/provider/user/pw.rb +22 -11
- data/lib/puppet/provider/user/user_role_add.rb +52 -42
- data/lib/puppet/provider/user/useradd.rb +236 -76
- data/lib/puppet/provider/user/windows_adsi.rb +34 -14
- data/lib/puppet/provider.rb +32 -43
- data/lib/puppet/reference/configuration.rb +55 -47
- data/lib/puppet/reference/function.rb +2 -0
- data/lib/puppet/reference/indirection.rb +39 -34
- data/lib/puppet/reference/metaparameter.rb +4 -4
- data/lib/puppet/reference/providers.rb +16 -15
- data/lib/puppet/reference/report.rb +3 -1
- data/lib/puppet/reference/type.rb +12 -14
- data/lib/puppet/relationship.rb +14 -18
- data/lib/puppet/reports/http.rb +19 -11
- data/lib/puppet/reports/log.rb +5 -4
- data/lib/puppet/reports/store.rb +11 -8
- data/lib/puppet/reports.rb +10 -8
- data/lib/puppet/resource/catalog.rb +96 -112
- data/lib/puppet/resource/status.rb +11 -9
- data/lib/puppet/resource/type.rb +64 -157
- data/lib/puppet/resource/type_collection.rb +45 -73
- data/lib/puppet/resource.rb +162 -172
- data/lib/puppet/runtime.rb +67 -0
- data/lib/puppet/scheduler/job.rb +2 -0
- data/lib/puppet/scheduler/scheduler.rb +4 -2
- data/lib/puppet/scheduler/splay_job.rb +2 -0
- data/lib/puppet/scheduler/timer.rb +2 -0
- data/lib/puppet/scheduler.rb +7 -5
- data/lib/puppet/settings/alias_setting.rb +37 -0
- data/lib/puppet/settings/array_setting.rb +2 -1
- data/lib/puppet/settings/autosign_setting.rb +3 -2
- data/lib/puppet/settings/base_setting.rb +56 -25
- data/lib/puppet/settings/boolean_setting.rb +5 -3
- data/lib/puppet/settings/certificate_revocation_setting.rb +3 -2
- data/lib/puppet/settings/config_file.rb +15 -19
- data/lib/puppet/settings/directory_setting.rb +2 -0
- data/lib/puppet/settings/duration_setting.rb +5 -4
- data/lib/puppet/settings/enum_setting.rb +3 -1
- data/lib/puppet/settings/environment_conf.rb +21 -15
- data/lib/puppet/settings/errors.rb +7 -4
- data/lib/puppet/settings/file_or_directory_setting.rb +4 -7
- data/lib/puppet/settings/file_setting.rb +19 -32
- data/lib/puppet/settings/http_extra_headers_setting.rb +26 -0
- data/lib/puppet/settings/ini_file.rb +7 -4
- data/lib/puppet/settings/integer_setting.rb +19 -0
- data/lib/puppet/settings/path_setting.rb +2 -0
- data/lib/puppet/settings/port_setting.rb +17 -0
- data/lib/puppet/settings/priority_setting.rb +16 -14
- data/lib/puppet/settings/server_list_setting.rb +13 -3
- data/lib/puppet/settings/string_setting.rb +2 -0
- data/lib/puppet/settings/symbolic_enum_setting.rb +3 -1
- data/lib/puppet/settings/terminus_setting.rb +2 -0
- data/lib/puppet/settings/ttl_setting.rb +7 -5
- data/lib/puppet/settings/value_translator.rb +9 -8
- data/lib/puppet/settings.rb +397 -232
- data/lib/puppet/ssl/base.rb +17 -15
- data/lib/puppet/ssl/certificate.rb +12 -13
- data/lib/puppet/ssl/certificate_request.rb +45 -50
- data/lib/puppet/ssl/certificate_request_attributes.rb +9 -6
- data/lib/puppet/ssl/certificate_signer.rb +9 -3
- data/lib/puppet/ssl/digest.rb +2 -0
- data/lib/puppet/ssl/error.rb +29 -0
- data/lib/puppet/ssl/oids.rb +17 -11
- data/lib/puppet/ssl/openssl_loader.rb +26 -0
- data/lib/puppet/ssl/ssl_context.rb +27 -0
- data/lib/puppet/ssl/ssl_provider.rb +354 -0
- data/lib/puppet/ssl/state_machine.rb +605 -0
- data/lib/puppet/ssl/verifier.rb +143 -0
- data/lib/puppet/ssl.rb +21 -8
- data/lib/puppet/syntax_checkers/base64.rb +8 -6
- data/lib/puppet/syntax_checkers/epp.rb +35 -0
- data/lib/puppet/syntax_checkers/json.rb +8 -8
- data/lib/puppet/syntax_checkers/pp.rb +35 -0
- data/lib/puppet/syntax_checkers.rb +3 -1
- data/lib/puppet/test/test_helper.rb +50 -50
- data/lib/puppet/thread_local.rb +6 -0
- data/lib/puppet/transaction/additional_resource_generator.rb +13 -8
- data/lib/puppet/transaction/event.rb +14 -10
- data/lib/puppet/transaction/event_manager.rb +18 -19
- data/lib/puppet/transaction/persistence.rb +35 -15
- data/lib/puppet/transaction/report.rb +88 -48
- data/lib/puppet/transaction/resource_harness.rb +17 -10
- data/lib/puppet/transaction.rb +105 -59
- data/lib/puppet/trusted_external.rb +46 -0
- data/lib/puppet/type/component.rb +19 -11
- data/lib/puppet/type/exec.rb +196 -90
- data/lib/puppet/type/file/checksum.rb +8 -6
- data/lib/puppet/type/file/checksum_value.rb +8 -6
- data/lib/puppet/type/file/content.rb +31 -23
- data/lib/puppet/type/file/ctime.rb +8 -6
- data/lib/puppet/type/file/data_sync.rb +18 -10
- data/lib/puppet/type/file/ensure.rb +35 -33
- data/lib/puppet/type/file/group.rb +12 -3
- data/lib/puppet/type/file/mode.rb +28 -13
- data/lib/puppet/type/file/mtime.rb +8 -5
- data/lib/puppet/type/file/owner.rb +11 -3
- data/lib/puppet/type/file/selcontext.rb +25 -23
- data/lib/puppet/type/file/source.rb +110 -99
- data/lib/puppet/type/file/target.rb +25 -26
- data/lib/puppet/type/file/type.rb +5 -3
- data/lib/puppet/type/file.rb +206 -109
- data/lib/puppet/type/filebucket.rb +24 -18
- data/lib/puppet/type/group.rb +22 -19
- data/lib/puppet/type/notify.rb +8 -6
- data/lib/puppet/type/package.rb +206 -60
- data/lib/puppet/type/resources.rb +44 -42
- data/lib/puppet/type/schedule.rb +25 -21
- data/lib/puppet/type/service.rb +79 -24
- data/lib/puppet/type/stage.rb +2 -0
- data/lib/puppet/type/tidy.rb +79 -48
- data/lib/puppet/type/user.rb +146 -102
- data/lib/puppet/type/whit.rb +2 -1
- data/lib/puppet/type.rb +315 -359
- data/lib/puppet/util/at_fork/noop.rb +2 -0
- data/lib/puppet/util/at_fork/solaris.rb +38 -40
- data/lib/puppet/util/at_fork.rb +7 -5
- data/lib/puppet/util/autoload.rb +28 -41
- data/lib/puppet/util/backups.rb +13 -11
- data/lib/puppet/util/character_encoding.rb +18 -11
- data/lib/puppet/util/checksums.rb +37 -19
- data/lib/puppet/util/classgen.rb +29 -28
- data/lib/puppet/util/colors.rb +68 -66
- data/lib/puppet/util/command_line/puppet_option_parser.rb +20 -18
- data/lib/puppet/util/command_line/trollop.rb +695 -673
- data/lib/puppet/util/command_line.rb +25 -15
- data/lib/puppet/util/constant_inflector.rb +4 -3
- data/lib/puppet/util/diff.rb +21 -20
- data/lib/puppet/util/docs.rb +8 -4
- data/lib/puppet/util/errors.rb +13 -11
- data/lib/puppet/util/execution.rb +75 -55
- data/lib/puppet/util/execution_stub.rb +2 -0
- data/lib/puppet/util/feature.rb +26 -14
- data/lib/puppet/util/file_watcher.rb +3 -0
- data/lib/puppet/util/fileparsing.rb +71 -64
- data/lib/puppet/util/filetype.rb +46 -45
- data/lib/puppet/util/http_proxy.rb +4 -205
- data/lib/puppet/util/inifile.rb +15 -20
- data/lib/puppet/util/instance_loader.rb +19 -11
- data/lib/puppet/util/json.rb +27 -2
- data/lib/puppet/util/json_lockfile.rb +5 -2
- data/lib/puppet/util/ldap/connection.rb +26 -22
- data/lib/puppet/util/ldap/generator.rb +3 -1
- data/lib/puppet/util/ldap/manager.rb +29 -27
- data/lib/puppet/util/ldap.rb +2 -0
- data/lib/puppet/util/libuser.rb +3 -2
- data/lib/puppet/util/limits.rb +3 -1
- data/lib/puppet/util/lockfile.rb +8 -8
- data/lib/puppet/util/log/destination.rb +4 -3
- data/lib/puppet/util/log/destinations.rb +27 -33
- data/lib/puppet/util/log.rb +71 -50
- data/lib/puppet/util/logging.rb +69 -77
- data/lib/puppet/util/metaid.rb +2 -1
- data/lib/puppet/util/metric.rb +15 -11
- data/lib/puppet/util/monkey_patches.rb +58 -52
- data/lib/puppet/util/multi_match.rb +9 -5
- data/lib/puppet/util/network_device/base.rb +6 -5
- data/lib/puppet/util/network_device/config.rb +11 -11
- data/lib/puppet/util/network_device/transport/base.rb +3 -3
- data/lib/puppet/util/network_device/transport.rb +3 -1
- data/lib/puppet/util/network_device.rb +2 -0
- data/lib/puppet/util/package/version/debian.rb +177 -0
- data/lib/puppet/util/package/version/gem.rb +18 -0
- data/lib/puppet/util/package/version/pip.rb +173 -0
- data/lib/puppet/util/package/version/range/eq.rb +17 -0
- data/lib/puppet/util/package/version/range/gt.rb +17 -0
- data/lib/puppet/util/package/version/range/gt_eq.rb +17 -0
- data/lib/puppet/util/package/version/range/lt.rb +17 -0
- data/lib/puppet/util/package/version/range/lt_eq.rb +17 -0
- data/lib/puppet/util/package/version/range/min_max.rb +26 -0
- data/lib/puppet/util/package/version/range/simple.rb +13 -0
- data/lib/puppet/util/package/version/range.rb +57 -0
- data/lib/puppet/util/package/version/rpm.rb +75 -0
- data/lib/puppet/util/package.rb +29 -17
- data/lib/puppet/util/pidlock.rb +49 -8
- data/lib/puppet/util/platform.rb +40 -6
- data/lib/puppet/util/plist.rb +23 -17
- data/lib/puppet/util/posix.rb +81 -27
- data/lib/puppet/util/profiler/aggregate.rb +7 -10
- data/lib/puppet/util/profiler/around_profiler.rb +2 -1
- data/lib/puppet/util/profiler/logging.rb +3 -1
- data/lib/puppet/util/profiler/object_counts.rb +3 -1
- data/lib/puppet/util/profiler/wall_clock.rb +5 -4
- data/lib/puppet/util/profiler.rb +5 -3
- data/lib/puppet/util/provider_features.rb +15 -13
- data/lib/puppet/util/psych_support.rb +2 -0
- data/lib/puppet/util/rdoc/code_objects.rb +20 -21
- data/lib/puppet/util/rdoc/generators/puppet_generator.rb +120 -128
- data/lib/puppet/util/rdoc/generators/template/puppet/puppet.rb +62 -79
- data/lib/puppet/util/rdoc/parser/puppet_parser_core.rb +32 -29
- data/lib/puppet/util/rdoc/parser/puppet_parser_rdoc2.rb +3 -1
- data/lib/puppet/util/rdoc/parser.rb +8 -6
- data/lib/puppet/util/rdoc.rb +12 -18
- data/lib/puppet/util/reference.rb +9 -33
- data/lib/puppet/util/resource_template.rb +7 -5
- data/lib/puppet/util/retry_action.rb +7 -6
- data/lib/puppet/util/rpm_compare.rb +196 -0
- data/lib/puppet/util/rubygems.rb +9 -5
- data/lib/puppet/util/run_mode.rb +59 -5
- data/lib/puppet/util/selinux.rb +82 -27
- data/lib/puppet/util/skip_tags.rb +7 -1
- data/lib/puppet/util/splayer.rb +2 -0
- data/lib/puppet/util/storage.rb +14 -15
- data/lib/puppet/util/suidmanager.rb +40 -40
- data/lib/puppet/util/symbolic_file_mode.rb +96 -84
- data/lib/puppet/util/tag_set.rb +5 -3
- data/lib/puppet/util/tagging.rb +14 -14
- data/lib/puppet/util/terminal.rb +6 -4
- data/lib/puppet/util/user_attr.rb +9 -7
- data/lib/puppet/util/warnings.rb +4 -0
- data/lib/puppet/util/watched_file.rb +5 -2
- data/lib/puppet/util/watcher/change_watcher.rb +2 -0
- data/lib/puppet/util/watcher/periodic_watcher.rb +2 -1
- data/lib/puppet/util/watcher/timer.rb +2 -0
- data/lib/puppet/util/watcher.rb +8 -8
- data/lib/puppet/util/windows/access_control_entry.rb +4 -2
- data/lib/puppet/util/windows/access_control_list.rb +10 -7
- data/lib/puppet/util/windows/adsi.rb +168 -77
- data/lib/puppet/util/windows/com.rb +10 -7
- data/lib/puppet/util/windows/daemon.rb +340 -0
- data/lib/puppet/util/windows/error.rb +9 -6
- data/lib/puppet/util/windows/eventlog.rb +18 -24
- data/lib/puppet/util/windows/file.rb +57 -287
- data/lib/puppet/util/windows/monkey_patches/process.rb +413 -0
- data/lib/puppet/util/windows/principal.rb +55 -43
- data/lib/puppet/util/windows/process.rb +87 -244
- data/lib/puppet/util/windows/registry.rb +117 -72
- data/lib/puppet/util/windows/root_certs.rb +7 -5
- data/lib/puppet/util/windows/security.rb +118 -92
- data/lib/puppet/util/windows/security_descriptor.rb +3 -1
- data/lib/puppet/util/windows/service.rb +190 -466
- data/lib/puppet/util/windows/sid.rb +37 -28
- data/lib/puppet/util/windows/string.rb +14 -13
- data/lib/puppet/util/windows/user.rb +277 -33
- data/lib/puppet/util/windows.rb +32 -26
- data/lib/puppet/util/yaml.rb +17 -22
- data/lib/puppet/util.rb +230 -182
- data/lib/puppet/vendor/require_vendored.rb +0 -2
- data/lib/puppet/vendor.rb +5 -3
- data/lib/puppet/version.rb +6 -6
- data/lib/puppet/x509/cert_provider.rb +405 -0
- data/lib/puppet/x509/pem_store.rb +57 -0
- data/lib/puppet/x509.rb +13 -0
- data/lib/puppet.rb +124 -79
- data/lib/puppet_pal.rb +7 -1132
- data/lib/puppet_x.rb +2 -0
- data/locales/puppet.pot +3096 -3030
- data/man/man5/puppet.conf.5 +637 -299
- data/man/man8/puppet-agent.8 +86 -69
- data/man/man8/puppet-apply.8 +7 -4
- data/man/man8/puppet-catalog.8 +38 -14
- data/man/man8/puppet-config.8 +6 -6
- data/man/man8/puppet-describe.8 +1 -1
- data/man/man8/puppet-device.8 +6 -3
- data/man/man8/puppet-doc.8 +1 -1
- data/man/man8/puppet-epp.8 +1 -1
- data/man/man8/puppet-facts.8 +65 -17
- data/man/man8/puppet-filebucket.8 +26 -7
- data/man/man8/puppet-generate.8 +1 -1
- data/man/man8/puppet-help.8 +6 -3
- data/man/man8/puppet-lookup.8 +9 -6
- data/man/man8/puppet-module.8 +3 -57
- data/man/man8/puppet-node.8 +11 -12
- data/man/man8/puppet-parser.8 +1 -1
- data/man/man8/puppet-plugin.8 +1 -1
- data/man/man8/puppet-report.8 +8 -9
- data/man/man8/puppet-resource.8 +5 -1
- data/man/man8/puppet-script.8 +5 -2
- data/man/man8/puppet-ssl.8 +14 -2
- data/man/man8/puppet.8 +3 -3
- metadata +209 -2622
- data/COMMITTERS.md +0 -244
- data/CONTRIBUTING.md +0 -167
- data/MAINTAINERS +0 -47
- data/conf/auth.conf +0 -150
- data/examples/hiera/etc/hiera.yaml +0 -15
- data/examples/hiera/etc/hieradb/common.yaml +0 -3
- data/examples/hiera/etc/hieradb/dc1.yaml +0 -6
- data/examples/hiera/etc/hieradb/development.yaml +0 -2
- data/examples/hiera/etc/puppet.conf +0 -3
- data/examples/hiera/modules/data/manifests/common.pp +0 -4
- data/examples/hiera/modules/ntp/manifests/data.pp +0 -4
- data/examples/hiera/modules/ntp/templates/ntp.conf.erb +0 -3
- data/examples/hiera/modules/users/manifests/development.pp +0 -4
- 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 -339
- 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/nagios/check_puppet.rb +0 -123
- 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 -476
- data/ext/pure_ruby_dsl/dsl_test.rb +0 -7
- data/ext/redhat/fileserver.conf +0 -41
- data/ext/redhat/logrotate +0 -21
- data/ext/redhat/puppet.spec.erb +0 -842
- data/ext/redhat/server.init +0 -128
- data/ext/redhat/server.sysconfig +0 -13
- data/ext/regexp_nodes/regexp_nodes.rb +0 -270
- 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 -71
- data/ext/solaris/smf/svc-puppetmasterd +0 -67
- 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/cert.rb +0 -76
- data/lib/puppet/application/key.rb +0 -4
- data/lib/puppet/application/man.rb +0 -4
- data/lib/puppet/application/status.rb +0 -4
- data/lib/puppet/external/pson/common.rb +0 -374
- data/lib/puppet/external/pson/pure/generator.rb +0 -395
- data/lib/puppet/external/pson/pure/parser.rb +0 -307
- data/lib/puppet/external/pson/pure.rb +0 -15
- data/lib/puppet/external/pson/version.rb +0 -8
- data/lib/puppet/face/key.rb +0 -16
- data/lib/puppet/face/man.rb +0 -145
- data/lib/puppet/face/module/build.rb +0 -14
- data/lib/puppet/face/module/generate.rb +0 -14
- data/lib/puppet/face/module/search.rb +0 -98
- data/lib/puppet/face/status.rb +0 -51
- data/lib/puppet/indirector/certificate/file.rb +0 -8
- data/lib/puppet/indirector/certificate/rest.rb +0 -16
- data/lib/puppet/indirector/certificate_request/file.rb +0 -8
- data/lib/puppet/indirector/certificate_request/memory.rb +0 -6
- data/lib/puppet/indirector/certificate_request/rest.rb +0 -10
- data/lib/puppet/indirector/file_content/http.rb +0 -17
- data/lib/puppet/indirector/key/file.rb +0 -45
- data/lib/puppet/indirector/key/memory.rb +0 -6
- data/lib/puppet/indirector/ssl_file.rb +0 -160
- data/lib/puppet/indirector/status/local.rb +0 -12
- data/lib/puppet/indirector/status/rest.rb +0 -9
- data/lib/puppet/indirector/status.rb +0 -3
- data/lib/puppet/module_tool/applications/searcher.rb +0 -29
- data/lib/puppet/network/auth_config_parser.rb +0 -90
- data/lib/puppet/network/authstore.rb +0 -282
- data/lib/puppet/network/http/api/master/v3/authorization.rb +0 -18
- data/lib/puppet/network/http/api/master/v3/environment.rb +0 -85
- data/lib/puppet/network/http/compression.rb +0 -120
- data/lib/puppet/network/http/factory.rb +0 -55
- data/lib/puppet/network/http/nocache_pool.rb +0 -21
- data/lib/puppet/network/http/pool.rb +0 -129
- data/lib/puppet/network/http/session.rb +0 -17
- data/lib/puppet/network/http/site.rb +0 -39
- data/lib/puppet/network/resolver.rb +0 -158
- data/lib/puppet/network/rest_controller.rb +0 -2
- data/lib/puppet/network/rights.rb +0 -209
- data/lib/puppet/parser/compiler/catalog_validator/env_relationship_validator.rb +0 -64
- data/lib/puppet/parser/compiler/catalog_validator/site_validator.rb +0 -20
- data/lib/puppet/parser/environment_compiler.rb +0 -199
- data/lib/puppet/pops/loader/null_loader.rb +0 -60
- data/lib/puppet/pops/types/enumeration.rb +0 -16
- data/lib/puppet/resource/capability_finder.rb +0 -150
- data/lib/puppet/rest/client.rb +0 -83
- data/lib/puppet/rest/errors.rb +0 -14
- data/lib/puppet/rest/response.rb +0 -34
- data/lib/puppet/rest/route.rb +0 -84
- data/lib/puppet/rest/routes.rb +0 -154
- data/lib/puppet/rest/ssl_context.rb +0 -13
- data/lib/puppet/ssl/host.rb +0 -636
- data/lib/puppet/ssl/key.rb +0 -59
- data/lib/puppet/ssl/validator/default_validator.rb +0 -187
- data/lib/puppet/ssl/validator/no_validator.rb +0 -20
- data/lib/puppet/ssl/validator.rb +0 -60
- data/lib/puppet/status.rb +0 -40
- data/lib/puppet/util/connection.rb +0 -74
- data/lib/puppet/util/ssl.rb +0 -92
- data/lib/puppet/util/windows/api_types.rb +0 -282
- 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_pathspec.rb +0 -1
- data/lib/puppet/vendor/pathspec/CHANGELOG.md +0 -2
- data/lib/puppet/vendor/pathspec/LICENSE +0 -201
- data/lib/puppet/vendor/pathspec/PUPPET_README.md +0 -6
- data/lib/puppet/vendor/pathspec/README.md +0 -53
- data/lib/puppet/vendor/pathspec/lib/pathspec/gitignorespec.rb +0 -275
- data/lib/puppet/vendor/pathspec/lib/pathspec/regexspec.rb +0 -17
- data/lib/puppet/vendor/pathspec/lib/pathspec/spec.rb +0 -14
- data/lib/puppet/vendor/pathspec/lib/pathspec.rb +0 -122
- data/locales/ja/puppet.po +0 -11143
- data/man/man8/puppet-key.8 +0 -126
- data/man/man8/puppet-man.8 +0 -76
- data/man/man8/puppet-status.8 +0 -108
- data/spec/fixtures/faulty_face/puppet/face/syntax.rb +0 -8
- data/spec/fixtures/hiera.yaml +0 -9
- data/spec/fixtures/integration/node/environment/sitedir/00_a.pp +0 -2
- data/spec/fixtures/integration/node/environment/sitedir/01_b.pp +0 -6
- data/spec/fixtures/integration/node/environment/sitedir/03_empty.pp +0 -0
- data/spec/fixtures/integration/node/environment/sitedir/04_include.pp +0 -2
- data/spec/fixtures/integration/node/environment/sitedir2/00_a.pp +0 -2
- data/spec/fixtures/integration/node/environment/sitedir2/02_folder/01_b.pp +0 -6
- data/spec/fixtures/integration/node/environment/sitedir2/03_c.pp +0 -1
- data/spec/fixtures/integration/node/environment/sitedir2/04_include.pp +0 -2
- data/spec/fixtures/java.tgz +0 -0
- data/spec/fixtures/manifests/site.pp +0 -0
- data/spec/fixtures/module.tar.gz +0 -0
- data/spec/fixtures/releases/jamtur01-apache/Modulefile +0 -2
- data/spec/fixtures/releases/jamtur01-apache/files/httpd +0 -24
- data/spec/fixtures/releases/jamtur01-apache/files/test.vhost +0 -18
- data/spec/fixtures/releases/jamtur01-apache/lib/puppet/provider/a2mod/debian.rb +0 -21
- data/spec/fixtures/releases/jamtur01-apache/lib/puppet/type/a2mod.rb +0 -12
- data/spec/fixtures/releases/jamtur01-apache/manifests/dev.pp +0 -5
- data/spec/fixtures/releases/jamtur01-apache/manifests/init.pp +0 -34
- data/spec/fixtures/releases/jamtur01-apache/manifests/params.pp +0 -17
- data/spec/fixtures/releases/jamtur01-apache/manifests/php.pp +0 -5
- data/spec/fixtures/releases/jamtur01-apache/manifests/ssl.pp +0 -15
- data/spec/fixtures/releases/jamtur01-apache/manifests/vhost.pp +0 -15
- data/spec/fixtures/releases/jamtur01-apache/metadata.json +0 -1
- data/spec/fixtures/releases/jamtur01-apache/templates/vhost-default.conf.erb +0 -20
- data/spec/fixtures/releases/jamtur01-apache/tests/apache.pp +0 -1
- data/spec/fixtures/releases/jamtur01-apache/tests/dev.pp +0 -1
- data/spec/fixtures/releases/jamtur01-apache/tests/init.pp +0 -1
- data/spec/fixtures/releases/jamtur01-apache/tests/php.pp +0 -1
- data/spec/fixtures/releases/jamtur01-apache/tests/ssl.pp +0 -1
- data/spec/fixtures/releases/jamtur01-apache/tests/vhost.pp +0 -2
- data/spec/fixtures/stdlib.tgz +0 -0
- data/spec/fixtures/unit/application/environments/production/data/common.yaml +0 -24
- data/spec/fixtures/unit/application/environments/production/environment.conf +0 -1
- data/spec/fixtures/unit/application/environments/production/manifests/site.pp +0 -1
- data/spec/fixtures/unit/application/environments/puppet_func_provider/environment.conf +0 -1
- data/spec/fixtures/unit/application/environments/puppet_func_provider/functions/environment/data.pp +0 -10
- data/spec/fixtures/unit/application/environments/puppet_func_provider/manifests/site.pp +0 -1
- data/spec/fixtures/unit/data_providers/environments/hiera_bad_syntax_json/data/bad.json +0 -3
- data/spec/fixtures/unit/data_providers/environments/hiera_bad_syntax_json/environment.conf +0 -2
- data/spec/fixtures/unit/data_providers/environments/hiera_bad_syntax_json/hiera.yaml +0 -5
- data/spec/fixtures/unit/data_providers/environments/hiera_bad_syntax_json/manifests/site.pp +0 -5
- data/spec/fixtures/unit/data_providers/environments/hiera_bad_syntax_yaml/data/bad.yaml +0 -3
- data/spec/fixtures/unit/data_providers/environments/hiera_bad_syntax_yaml/environment.conf +0 -2
- data/spec/fixtures/unit/data_providers/environments/hiera_bad_syntax_yaml/hiera.yaml +0 -5
- data/spec/fixtures/unit/data_providers/environments/hiera_bad_syntax_yaml/manifests/site.pp +0 -5
- data/spec/fixtures/unit/data_providers/environments/hiera_defaults/data/common.yaml +0 -2
- data/spec/fixtures/unit/data_providers/environments/hiera_defaults/environment.conf +0 -2
- data/spec/fixtures/unit/data_providers/environments/hiera_defaults/manifests/site.pp +0 -1
- data/spec/fixtures/unit/data_providers/environments/hiera_defaults/modules/one/data/common.yaml +0 -2
- data/spec/fixtures/unit/data_providers/environments/hiera_defaults/modules/one/manifests/init.pp +0 -5
- data/spec/fixtures/unit/data_providers/environments/hiera_defaults/modules/one/metadata.json +0 -9
- data/spec/fixtures/unit/data_providers/environments/hiera_env_config/data1/first.json +0 -3
- data/spec/fixtures/unit/data_providers/environments/hiera_env_config/data1/name.yaml +0 -2
- data/spec/fixtures/unit/data_providers/environments/hiera_env_config/data1/second.json +0 -3
- data/spec/fixtures/unit/data_providers/environments/hiera_env_config/data1/single.yaml +0 -2
- data/spec/fixtures/unit/data_providers/environments/hiera_env_config/data1/third_utf8.json +0 -3
- data/spec/fixtures/unit/data_providers/environments/hiera_env_config/data1/utf8.yaml +0 -3
- data/spec/fixtures/unit/data_providers/environments/hiera_env_config/data2/single.yaml +0 -2
- data/spec/fixtures/unit/data_providers/environments/hiera_env_config/environment.conf +0 -2
- data/spec/fixtures/unit/data_providers/environments/hiera_env_config/hiera.yaml +0 -22
- data/spec/fixtures/unit/data_providers/environments/hiera_env_config/manifests/site.pp +0 -5
- data/spec/fixtures/unit/data_providers/environments/hiera_misc/data/common.yaml +0 -48
- data/spec/fixtures/unit/data_providers/environments/hiera_misc/environment.conf +0 -2
- data/spec/fixtures/unit/data_providers/environments/hiera_misc/manifests/site.pp +0 -1
- data/spec/fixtures/unit/data_providers/environments/hiera_misc/modules/one/data/common.yaml +0 -30
- data/spec/fixtures/unit/data_providers/environments/hiera_misc/modules/one/manifests/init.pp +0 -13
- data/spec/fixtures/unit/data_providers/environments/hiera_misc/modules/one/metadata.json +0 -9
- data/spec/fixtures/unit/data_providers/environments/hiera_module_config/data/common.yaml +0 -4
- data/spec/fixtures/unit/data_providers/environments/hiera_module_config/data/specific.yaml +0 -4
- data/spec/fixtures/unit/data_providers/environments/hiera_module_config/environment.conf +0 -2
- data/spec/fixtures/unit/data_providers/environments/hiera_module_config/hiera.yaml +0 -7
- data/spec/fixtures/unit/data_providers/environments/hiera_module_config/manifests/site.pp +0 -1
- data/spec/fixtures/unit/data_providers/environments/hiera_module_config/modules/one/data1/first.json +0 -3
- data/spec/fixtures/unit/data_providers/environments/hiera_module_config/modules/one/data1/name.yaml +0 -2
- data/spec/fixtures/unit/data_providers/environments/hiera_module_config/modules/one/data1/second.json +0 -3
- data/spec/fixtures/unit/data_providers/environments/hiera_module_config/modules/one/data1/server1.yaml +0 -1
- data/spec/fixtures/unit/data_providers/environments/hiera_module_config/modules/one/data1/server2.yaml +0 -1
- data/spec/fixtures/unit/data_providers/environments/hiera_module_config/modules/one/data1/single.yaml +0 -2
- data/spec/fixtures/unit/data_providers/environments/hiera_module_config/modules/one/data2/single.yaml +0 -2
- data/spec/fixtures/unit/data_providers/environments/hiera_module_config/modules/one/hiera.yaml +0 -20
- data/spec/fixtures/unit/data_providers/environments/hiera_module_config/modules/one/manifests/init.pp +0 -5
- data/spec/fixtures/unit/data_providers/environments/hiera_module_config/modules/one/metadata.json +0 -9
- data/spec/fixtures/unit/data_providers/environments/hiera_modules/data/common.yaml +0 -4
- data/spec/fixtures/unit/data_providers/environments/hiera_modules/data/specific.yaml +0 -4
- data/spec/fixtures/unit/data_providers/environments/hiera_modules/environment.conf +0 -2
- data/spec/fixtures/unit/data_providers/environments/hiera_modules/hiera.yaml +0 -7
- data/spec/fixtures/unit/data_providers/environments/hiera_modules/manifests/site.pp +0 -1
- data/spec/fixtures/unit/data_providers/environments/hiera_modules/modules/one/data/common.yaml +0 -6
- data/spec/fixtures/unit/data_providers/environments/hiera_modules/modules/one/hiera.yaml +0 -5
- data/spec/fixtures/unit/data_providers/environments/hiera_modules/modules/one/manifests/init.pp +0 -2
- data/spec/fixtures/unit/data_providers/environments/hiera_modules/modules/one/metadata.json +0 -9
- data/spec/fixtures/unit/data_providers/environments/hiera_modules/modules/two/data/common.yaml +0 -4
- data/spec/fixtures/unit/data_providers/environments/hiera_modules/modules/two/hiera.yaml +0 -5
- data/spec/fixtures/unit/data_providers/environments/hiera_modules/modules/two/manifests/init.pp +0 -3
- data/spec/fixtures/unit/data_providers/environments/hiera_modules/modules/two/metadata.json +0 -9
- data/spec/fixtures/unit/data_providers/environments/production/environment.conf +0 -2
- data/spec/fixtures/unit/data_providers/environments/production/lib/puppet/functions/environment/data.rb +0 -9
- data/spec/fixtures/unit/data_providers/environments/production/modules/abc/lib/puppet/functions/abc/data.rb +0 -9
- data/spec/fixtures/unit/data_providers/environments/production/modules/abc/manifests/init.pp +0 -10
- data/spec/fixtures/unit/data_providers/environments/production/modules/abc/metadata.json +0 -9
- data/spec/fixtures/unit/data_providers/environments/production/modules/xyz/functions/data.pp +0 -6
- data/spec/fixtures/unit/data_providers/environments/production/modules/xyz/manifests/init.pp +0 -9
- data/spec/fixtures/unit/data_providers/environments/production/modules/xyz/metadata.json +0 -9
- data/spec/fixtures/unit/functions/hiera/hiera/backend/hieraspec_backend.rb +0 -22
- data/spec/fixtures/unit/functions/lookup/data/common.yaml +0 -19
- data/spec/fixtures/unit/functions/lookup/hiera/backend/custom_backend.rb +0 -18
- data/spec/fixtures/unit/functions/lookup/hiera/backend/other_backend.rb +0 -7
- data/spec/fixtures/unit/functions/lookup_fixture/data/common.yaml +0 -19
- data/spec/fixtures/unit/functions/lookup_fixture/environments/production/environment.conf +0 -2
- data/spec/fixtures/unit/functions/lookup_fixture/environments/production/lib/puppet/functions/environment/data.rb +0 -13
- data/spec/fixtures/unit/functions/lookup_fixture/environments/production/modules/abc/lib/puppet/functions/abc/data.rb +0 -9
- data/spec/fixtures/unit/functions/lookup_fixture/environments/production/modules/abc/manifests/init.pp +0 -8
- data/spec/fixtures/unit/functions/lookup_fixture/environments/production/modules/abc/metadata.json +0 -9
- data/spec/fixtures/unit/functions/lookup_fixture/environments/production/modules/bad_data/lib/puppet/functions/bad_data/data.rb +0 -7
- data/spec/fixtures/unit/functions/lookup_fixture/environments/production/modules/bad_data/manifests/init.pp +0 -2
- data/spec/fixtures/unit/functions/lookup_fixture/environments/production/modules/bad_data/metadata.json +0 -9
- data/spec/fixtures/unit/functions/lookup_fixture/environments/production/modules/bca/lib/puppet/functions/bca/data.rb +0 -9
- data/spec/fixtures/unit/functions/lookup_fixture/environments/production/modules/bca/manifests/init.pp +0 -2
- data/spec/fixtures/unit/functions/lookup_fixture/environments/production/modules/bca/metadata.json +0 -9
- data/spec/fixtures/unit/functions/lookup_fixture/environments/production/modules/empty_json/data/empty.json +0 -0
- data/spec/fixtures/unit/functions/lookup_fixture/environments/production/modules/empty_json/hiera.yaml +0 -5
- data/spec/fixtures/unit/functions/lookup_fixture/environments/production/modules/empty_json/manifests/init.pp +0 -2
- data/spec/fixtures/unit/functions/lookup_fixture/environments/production/modules/empty_json/metadata.json +0 -9
- data/spec/fixtures/unit/functions/lookup_fixture/environments/production/modules/empty_key_json/data/empty_key.json +0 -1
- data/spec/fixtures/unit/functions/lookup_fixture/environments/production/modules/empty_key_json/hiera.yaml +0 -5
- data/spec/fixtures/unit/functions/lookup_fixture/environments/production/modules/empty_key_json/manifests/init.pp +0 -2
- data/spec/fixtures/unit/functions/lookup_fixture/environments/production/modules/empty_key_json/metadata.json +0 -9
- data/spec/fixtures/unit/functions/lookup_fixture/environments/production/modules/empty_key_yaml/data/empty_key.yaml +0 -1
- data/spec/fixtures/unit/functions/lookup_fixture/environments/production/modules/empty_key_yaml/hiera.yaml +0 -5
- data/spec/fixtures/unit/functions/lookup_fixture/environments/production/modules/empty_key_yaml/manifests/init.pp +0 -2
- data/spec/fixtures/unit/functions/lookup_fixture/environments/production/modules/empty_key_yaml/metadata.json +0 -9
- data/spec/fixtures/unit/functions/lookup_fixture/environments/production/modules/empty_yaml/data/empty.yaml +0 -2
- data/spec/fixtures/unit/functions/lookup_fixture/environments/production/modules/empty_yaml/hiera.yaml +0 -5
- data/spec/fixtures/unit/functions/lookup_fixture/environments/production/modules/empty_yaml/manifests/init.pp +0 -2
- data/spec/fixtures/unit/functions/lookup_fixture/environments/production/modules/empty_yaml/metadata.json +0 -9
- data/spec/fixtures/unit/functions/lookup_fixture/environments/production/modules/hieraprovider/data/first.json +0 -4
- data/spec/fixtures/unit/functions/lookup_fixture/environments/production/modules/hieraprovider/hiera.yaml +0 -8
- data/spec/fixtures/unit/functions/lookup_fixture/environments/production/modules/hieraprovider/manifests/init.pp +0 -5
- data/spec/fixtures/unit/functions/lookup_fixture/environments/production/modules/hieraprovider/metadata.json +0 -9
- data/spec/fixtures/unit/functions/lookup_fixture/environments/production/modules/meta/lib/puppet/functions/meta/data.rb +0 -9
- data/spec/fixtures/unit/functions/lookup_fixture/environments/production/modules/meta/manifests/init.pp +0 -3
- data/spec/fixtures/unit/functions/lookup_fixture/environments/production/modules/meta/metadata.json +0 -9
- data/spec/fixtures/unit/functions/lookup_fixture/environments/production/modules/no_provider/manifests/init.pp +0 -2
- data/spec/fixtures/unit/indirector/data_binding/hiera/global.yaml +0 -10
- data/spec/fixtures/unit/indirector/data_binding/hiera/invalid.yaml +0 -1
- data/spec/fixtures/unit/indirector/hiera/global.yaml +0 -10
- data/spec/fixtures/unit/indirector/hiera/invalid.yaml +0 -1
- data/spec/fixtures/unit/module/trailing-comma.json +0 -24
- data/spec/fixtures/unit/parser/functions/create_resources/foo/manifests/init.pp +0 -3
- data/spec/fixtures/unit/parser/functions/create_resources/foo/manifests/wrongdefine.pp +0 -3
- data/spec/fixtures/unit/parser/lexer/aliastest.pp +0 -16
- data/spec/fixtures/unit/parser/lexer/append.pp +0 -11
- data/spec/fixtures/unit/parser/lexer/argumentdefaults.pp +0 -14
- data/spec/fixtures/unit/parser/lexer/arithmetic_expression.pp +0 -8
- data/spec/fixtures/unit/parser/lexer/arraytrailingcomma.pp +0 -3
- data/spec/fixtures/unit/parser/lexer/casestatement.pp +0 -65
- data/spec/fixtures/unit/parser/lexer/classheirarchy.pp +0 -15
- data/spec/fixtures/unit/parser/lexer/classincludes.pp +0 -17
- data/spec/fixtures/unit/parser/lexer/classpathtest.pp +0 -11
- data/spec/fixtures/unit/parser/lexer/collection.pp +0 -10
- data/spec/fixtures/unit/parser/lexer/collection_override.pp +0 -8
- data/spec/fixtures/unit/parser/lexer/collection_within_virtual_definitions.pp +0 -20
- data/spec/fixtures/unit/parser/lexer/componentmetaparams.pp +0 -11
- data/spec/fixtures/unit/parser/lexer/componentrequire.pp +0 -8
- data/spec/fixtures/unit/parser/lexer/deepclassheirarchy.pp +0 -23
- data/spec/fixtures/unit/parser/lexer/defineoverrides.pp +0 -17
- data/spec/fixtures/unit/parser/lexer/emptyclass.pp +0 -9
- data/spec/fixtures/unit/parser/lexer/emptyexec.pp +0 -3
- data/spec/fixtures/unit/parser/lexer/emptyifelse.pp +0 -9
- data/spec/fixtures/unit/parser/lexer/falsevalues.pp +0 -3
- data/spec/fixtures/unit/parser/lexer/filecreate.pp +0 -11
- data/spec/fixtures/unit/parser/lexer/fqdefinition.pp +0 -5
- data/spec/fixtures/unit/parser/lexer/fqparents.pp +0 -11
- data/spec/fixtures/unit/parser/lexer/funccomma.pp +0 -5
- data/spec/fixtures/unit/parser/lexer/hash.pp +0 -33
- data/spec/fixtures/unit/parser/lexer/ifexpression.pp +0 -12
- data/spec/fixtures/unit/parser/lexer/implicititeration.pp +0 -15
- data/spec/fixtures/unit/parser/lexer/multilinecomments.pp +0 -10
- data/spec/fixtures/unit/parser/lexer/multipleclass.pp +0 -9
- data/spec/fixtures/unit/parser/lexer/multipleinstances.pp +0 -7
- data/spec/fixtures/unit/parser/lexer/multisubs.pp +0 -13
- data/spec/fixtures/unit/parser/lexer/namevartest.pp +0 -9
- data/spec/fixtures/unit/parser/lexer/scopetest.pp +0 -13
- data/spec/fixtures/unit/parser/lexer/selectorvalues.pp +0 -49
- data/spec/fixtures/unit/parser/lexer/simpledefaults.pp +0 -5
- data/spec/fixtures/unit/parser/lexer/simpleselector.pp +0 -38
- data/spec/fixtures/unit/parser/lexer/singleary.pp +0 -19
- data/spec/fixtures/unit/parser/lexer/singlequote.pp +0 -11
- data/spec/fixtures/unit/parser/lexer/singleselector.pp +0 -22
- data/spec/fixtures/unit/parser/lexer/subclass_name_duplication.pp +0 -11
- data/spec/fixtures/unit/parser/lexer/tag.pp +0 -9
- data/spec/fixtures/unit/parser/lexer/tagged.pp +0 -35
- data/spec/fixtures/unit/parser/lexer/virtualresources.pp +0 -14
- data/spec/fixtures/unit/pops/binder/bindings_composer/ok/binder_config.yaml +0 -10
- data/spec/fixtures/unit/pops/binder/bindings_composer/ok/lib/puppet/bindings/confdirtest.rb +0 -10
- data/spec/fixtures/unit/pops/binder/bindings_composer/ok/modules/awesome2/lib/puppet/bindings/awesome2/default.rb +0 -20
- data/spec/fixtures/unit/pops/binder/bindings_composer/ok/modules/awesome2/lib/puppet_x/awesome2/echo_scheme_handler.rb +0 -18
- data/spec/fixtures/unit/pops/binder/bindings_composer/ok/modules/bad/lib/puppet/bindings/bad/default.rb +0 -5
- data/spec/fixtures/unit/pops/binder/bindings_composer/ok/modules/good/lib/puppet/bindings/good/default.rb +0 -6
- data/spec/fixtures/unit/pops/binder/config/binder_config/nolayer/binder_config.yaml +0 -6
- data/spec/fixtures/unit/pops/binder/config/binder_config/ok/binder_config.yaml +0 -9
- data/spec/fixtures/unit/pops/loaders/loaders/dependent_modules_with_metadata/modules/usee/functions/usee_puppet.pp +0 -3
- data/spec/fixtures/unit/pops/loaders/loaders/dependent_modules_with_metadata/modules/usee/lib/puppet/functions/usee/callee.rb +0 -5
- data/spec/fixtures/unit/pops/loaders/loaders/dependent_modules_with_metadata/modules/usee/lib/puppet/functions/usee/usee_ruby.rb +0 -6
- data/spec/fixtures/unit/pops/loaders/loaders/dependent_modules_with_metadata/modules/usee/lib/puppet/type/usee_type.rb +0 -5
- data/spec/fixtures/unit/pops/loaders/loaders/dependent_modules_with_metadata/modules/usee/manifests/init.pp +0 -8
- data/spec/fixtures/unit/pops/loaders/loaders/dependent_modules_with_metadata/modules/usee/types/zero.pp +0 -1
- data/spec/fixtures/unit/pops/loaders/loaders/dependent_modules_with_metadata/modules/usee2/lib/puppet/functions/usee2/callee.rb +0 -5
- data/spec/fixtures/unit/pops/loaders/loaders/dependent_modules_with_metadata/modules/user/functions/puppet_calling_puppet.pp +0 -5
- data/spec/fixtures/unit/pops/loaders/loaders/dependent_modules_with_metadata/modules/user/functions/puppet_calling_puppet_init.pp +0 -5
- data/spec/fixtures/unit/pops/loaders/loaders/dependent_modules_with_metadata/modules/user/functions/puppet_calling_ruby.pp +0 -5
- data/spec/fixtures/unit/pops/loaders/loaders/dependent_modules_with_metadata/modules/user/lib/puppet/functions/user/caller.rb +0 -5
- data/spec/fixtures/unit/pops/loaders/loaders/dependent_modules_with_metadata/modules/user/lib/puppet/functions/user/caller2.rb +0 -5
- data/spec/fixtures/unit/pops/loaders/loaders/dependent_modules_with_metadata/modules/user/lib/puppet/functions/user/ruby_calling_puppet.rb +0 -5
- data/spec/fixtures/unit/pops/loaders/loaders/dependent_modules_with_metadata/modules/user/lib/puppet/functions/user/ruby_calling_puppet_init.rb +0 -5
- data/spec/fixtures/unit/pops/loaders/loaders/dependent_modules_with_metadata/modules/user/lib/puppet/functions/user/ruby_calling_ruby.rb +0 -5
- data/spec/fixtures/unit/pops/loaders/loaders/dependent_modules_with_metadata/modules/user/manifests/init.pp +0 -87
- data/spec/fixtures/unit/pops/loaders/loaders/dependent_modules_with_metadata/modules/user/metadata.json +0 -10
- data/spec/fixtures/unit/pops/loaders/loaders/dependent_modules_with_metadata/modules/user/types/withuseeone.pp +0 -1
- data/spec/fixtures/unit/pops/loaders/loaders/dependent_modules_with_metadata/modules/user/types/withuseezero.pp +0 -1
- data/spec/fixtures/unit/pops/loaders/loaders/mix_4x_and_3x_functions/usee/lib/puppet/parser/functions/bad_func_load.rb +0 -11
- data/spec/fixtures/unit/pops/loaders/loaders/mix_4x_and_3x_functions/usee/lib/puppet/parser/functions/callee.rb +0 -8
- data/spec/fixtures/unit/pops/loaders/loaders/mix_4x_and_3x_functions/usee/lib/puppet/parser/functions/callee_ws.rb +0 -8
- data/spec/fixtures/unit/pops/loaders/loaders/mix_4x_and_3x_functions/usee/metadata.json +0 -9
- data/spec/fixtures/unit/pops/loaders/loaders/mix_4x_and_3x_functions/user/functions/puppetcalled.pp +0 -3
- data/spec/fixtures/unit/pops/loaders/loaders/mix_4x_and_3x_functions/user/functions/puppetcaller.pp +0 -3
- data/spec/fixtures/unit/pops/loaders/loaders/mix_4x_and_3x_functions/user/functions/puppetcaller4.pp +0 -3
- data/spec/fixtures/unit/pops/loaders/loaders/mix_4x_and_3x_functions/user/lib/puppet/functions/user/caller.rb +0 -5
- data/spec/fixtures/unit/pops/loaders/loaders/mix_4x_and_3x_functions/user/lib/puppet/functions/user/caller_ws.rb +0 -12
- data/spec/fixtures/unit/pops/loaders/loaders/mix_4x_and_3x_functions/user/lib/puppet/functions/user/callingpuppet.rb +0 -5
- data/spec/fixtures/unit/pops/loaders/loaders/mix_4x_and_3x_functions/user/metadata.json +0 -9
- data/spec/fixtures/unit/pops/loaders/loaders/module_no_lib/modules/modulea/functions/hello.pp +0 -3
- data/spec/fixtures/unit/pops/loaders/loaders/module_no_lib/modules/modulea/manifests/init.pp +0 -3
- data/spec/fixtures/unit/pops/loaders/loaders/module_no_lib/modules/modulea/metadata.json +0 -10
- data/spec/fixtures/unit/pops/loaders/loaders/no_modules/manifests/site.pp +0 -10
- data/spec/fixtures/unit/pops/loaders/loaders/single_module/modules/modulea/functions/hello.pp +0 -3
- data/spec/fixtures/unit/pops/loaders/loaders/single_module/modules/modulea/functions/subspace/hello.pp +0 -3
- data/spec/fixtures/unit/pops/loaders/loaders/single_module/modules/modulea/lib/puppet/functions/modulea/rb_func_a.rb +0 -5
- data/spec/fixtures/unit/pops/loaders/loaders/single_module/modules/modulea/lib/puppet/functions/rb_func_a.rb +0 -5
- data/spec/fixtures/unit/pops/loaders/loaders/single_module/modules/modulea/manifests/init.pp +0 -3
- data/spec/fixtures/unit/pops/loaders/loaders/single_module/modules/modulea/metadata.json +0 -10
- data/spec/fixtures/unit/pops/loaders/loaders/wo_metadata_module/modules/moduleb/lib/puppet/functions/moduleb/rb_func_b.rb +0 -6
- data/spec/fixtures/unit/pops/loaders/loaders/wo_metadata_module/modules/moduleb/manifests/init.pp +0 -3
- data/spec/fixtures/unit/pops/parser/lexer/aliastest.pp +0 -16
- data/spec/fixtures/unit/pops/parser/lexer/append.pp +0 -11
- data/spec/fixtures/unit/pops/parser/lexer/argumentdefaults.pp +0 -14
- data/spec/fixtures/unit/pops/parser/lexer/arithmetic_expression.pp +0 -8
- data/spec/fixtures/unit/pops/parser/lexer/arraytrailingcomma.pp +0 -3
- data/spec/fixtures/unit/pops/parser/lexer/casestatement.pp +0 -65
- data/spec/fixtures/unit/pops/parser/lexer/classheirarchy.pp +0 -15
- data/spec/fixtures/unit/pops/parser/lexer/classincludes.pp +0 -17
- data/spec/fixtures/unit/pops/parser/lexer/classpathtest.pp +0 -11
- data/spec/fixtures/unit/pops/parser/lexer/collection.pp +0 -10
- data/spec/fixtures/unit/pops/parser/lexer/collection_override.pp +0 -8
- data/spec/fixtures/unit/pops/parser/lexer/collection_within_virtual_definitions.pp +0 -20
- data/spec/fixtures/unit/pops/parser/lexer/componentmetaparams.pp +0 -11
- data/spec/fixtures/unit/pops/parser/lexer/componentrequire.pp +0 -8
- data/spec/fixtures/unit/pops/parser/lexer/deepclassheirarchy.pp +0 -23
- data/spec/fixtures/unit/pops/parser/lexer/defineoverrides.pp +0 -17
- data/spec/fixtures/unit/pops/parser/lexer/emptyclass.pp +0 -9
- data/spec/fixtures/unit/pops/parser/lexer/emptyexec.pp +0 -3
- data/spec/fixtures/unit/pops/parser/lexer/emptyifelse.pp +0 -9
- data/spec/fixtures/unit/pops/parser/lexer/falsevalues.pp +0 -3
- data/spec/fixtures/unit/pops/parser/lexer/filecreate.pp +0 -11
- data/spec/fixtures/unit/pops/parser/lexer/fqdefinition.pp +0 -5
- data/spec/fixtures/unit/pops/parser/lexer/fqparents.pp +0 -11
- data/spec/fixtures/unit/pops/parser/lexer/funccomma.pp +0 -5
- data/spec/fixtures/unit/pops/parser/lexer/hash.pp +0 -33
- data/spec/fixtures/unit/pops/parser/lexer/ifexpression.pp +0 -12
- data/spec/fixtures/unit/pops/parser/lexer/implicititeration.pp +0 -15
- data/spec/fixtures/unit/pops/parser/lexer/multilinecomments.pp +0 -10
- data/spec/fixtures/unit/pops/parser/lexer/multipleclass.pp +0 -9
- data/spec/fixtures/unit/pops/parser/lexer/multipleinstances.pp +0 -7
- data/spec/fixtures/unit/pops/parser/lexer/multisubs.pp +0 -13
- data/spec/fixtures/unit/pops/parser/lexer/namevartest.pp +0 -9
- data/spec/fixtures/unit/pops/parser/lexer/scopetest.pp +0 -13
- data/spec/fixtures/unit/pops/parser/lexer/selectorvalues.pp +0 -49
- data/spec/fixtures/unit/pops/parser/lexer/simpledefaults.pp +0 -5
- data/spec/fixtures/unit/pops/parser/lexer/simpleselector.pp +0 -38
- data/spec/fixtures/unit/pops/parser/lexer/singleary.pp +0 -19
- data/spec/fixtures/unit/pops/parser/lexer/singlequote.pp +0 -11
- data/spec/fixtures/unit/pops/parser/lexer/singleselector.pp +0 -22
- data/spec/fixtures/unit/pops/parser/lexer/subclass_name_duplication.pp +0 -11
- data/spec/fixtures/unit/pops/parser/lexer/tag.pp +0 -9
- data/spec/fixtures/unit/pops/parser/lexer/tagged.pp +0 -35
- data/spec/fixtures/unit/pops/parser/lexer/virtualresources.pp +0 -14
- data/spec/fixtures/unit/provider/aix_object/aix_colon_list_real_world_input.out +0 -1
- data/spec/fixtures/unit/provider/aix_object/aix_colon_list_real_world_output.out +0 -1
- data/spec/fixtures/unit/provider/cron/crontab/single_line.yaml +0 -272
- data/spec/fixtures/unit/provider/cron/crontab/vixie_header.txt +0 -3
- data/spec/fixtures/unit/provider/cron/parsed/managed +0 -6
- data/spec/fixtures/unit/provider/cron/parsed/simple +0 -9
- data/spec/fixtures/unit/provider/package/gem/gem-list-single-package +0 -4
- data/spec/fixtures/unit/provider/package/gem/line-with-1.8.5-warning +0 -14
- data/spec/fixtures/unit/provider/package/openbsd/pkginfo.detail +0 -19
- data/spec/fixtures/unit/provider/package/openbsd/pkginfo.list +0 -10
- data/spec/fixtures/unit/provider/package/openbsd/pkginfo.query +0 -1
- data/spec/fixtures/unit/provider/package/openbsd/pkginfo_flavors.list +0 -2
- data/spec/fixtures/unit/provider/package/pkg/dummy_implicit_version +0 -3
- data/spec/fixtures/unit/provider/package/pkg/dummy_solaris10 +0 -1
- data/spec/fixtures/unit/provider/package/pkg/dummy_solaris11.certificate_warning +0 -2
- data/spec/fixtures/unit/provider/package/pkg/dummy_solaris11.ifo.installed +0 -1
- data/spec/fixtures/unit/provider/package/pkg/dummy_solaris11.ifo.known +0 -1
- data/spec/fixtures/unit/provider/package/pkg/dummy_solaris11.installed +0 -1
- data/spec/fixtures/unit/provider/package/pkg/dummy_solaris11.known +0 -1
- data/spec/fixtures/unit/provider/package/pkg/incomplete +0 -1
- data/spec/fixtures/unit/provider/package/pkg/solaris11 +0 -2
- data/spec/fixtures/unit/provider/package/pkg/unknown_status +0 -12
- data/spec/fixtures/unit/provider/package/pkgng/pkg.info +0 -7
- data/spec/fixtures/unit/provider/package/pkgng/pkg.query +0 -1
- data/spec/fixtures/unit/provider/package/pkgng/pkg.query_absent +0 -1
- data/spec/fixtures/unit/provider/package/pkgng/pkg.version +0 -3
- data/spec/fixtures/unit/provider/package/sun/dummy.server +0 -12
- data/spec/fixtures/unit/provider/package/sun/simple +0 -24
- data/spec/fixtures/unit/provider/package/yum/yum-check-update-broken-notices.txt +0 -187
- data/spec/fixtures/unit/provider/package/yum/yum-check-update-multiline.txt +0 -201
- data/spec/fixtures/unit/provider/package/yum/yum-check-update-obsoletes.txt +0 -195
- data/spec/fixtures/unit/provider/package/yum/yum-check-update-plugin-output.txt +0 -36
- data/spec/fixtures/unit/provider/package/yum/yum-check-update-security.txt +0 -184
- data/spec/fixtures/unit/provider/package/yum/yum-check-update-simple.txt +0 -13
- data/spec/fixtures/unit/provider/package/zypper/zypper-list-updates-SLES11sp1.out +0 -369
- data/spec/fixtures/unit/provider/package/zypper/zypper-list-updates-empty.out +0 -3
- data/spec/fixtures/unit/provider/parsedfile/simple.txt +0 -7
- data/spec/fixtures/unit/provider/service/base/ps_ef.mixed_encoding +0 -3
- data/spec/fixtures/unit/provider/service/gentoo/rc_update_show +0 -30
- data/spec/fixtures/unit/provider/service/openbsd/rcctl_getall +0 -6
- data/spec/fixtures/unit/provider/service/openrc/rcservice_list +0 -8
- data/spec/fixtures/unit/provider/service/openrc/rcstatus +0 -43
- data/spec/fixtures/unit/provider/service/smf/svcs.out +0 -4
- data/spec/fixtures/unit/provider/service/smf/svcs_fmri.out +0 -6
- data/spec/fixtures/unit/provider/service/smf/svcs_multiple_fmris.out +0 -13
- data/spec/fixtures/unit/provider/service/systemd/list_unit_files_services +0 -7
- data/spec/fixtures/unit/provider/user/aix/aix_passwd_file.out +0 -32
- data/spec/fixtures/unit/reports/tagmail/tagmail_email.conf +0 -2
- data/spec/fixtures/unit/reports/tagmail/tagmail_failers.conf +0 -3
- data/spec/fixtures/unit/reports/tagmail/tagmail_passers.conf +0 -30
- data/spec/fixtures/unit/ssl/certificate/old-style-cert-exts.pem +0 -33
- data/spec/fixtures/unit/ssl/certificate_request/old-style-cert-request.pem +0 -28
- data/spec/fixtures/unit/type/user/authorized_keys +0 -6
- data/spec/fixtures/unit/util/filetype/aixtab_output +0 -44
- data/spec/fixtures/unit/util/filetype/suntab_output +0 -9
- data/spec/fixtures/unit/util/monkey_patches/x509.pem +0 -32
- data/spec/fixtures/unit/util/rdoc/basic.pp +0 -16
- 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/fixtures/vcr/cassettes/Puppet_Type_File/when_sourcing/from_http/using_md5/should_fetch_if_not_on_the_local_disk.yml +0 -205
- 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 +0 -213
- data/spec/fixtures/vcr/cassettes/Puppet_Type_File/when_sourcing/from_http/using_md5/should_update_if_content_differs_on_disk.yml +0 -213
- data/spec/fixtures/vcr/cassettes/Puppet_Type_File/when_sourcing/from_http/using_mtime/should_fetch_if_mtime_is_older_on_disk.yml +0 -205
- data/spec/fixtures/vcr/cassettes/Puppet_Type_File/when_sourcing/from_http/using_mtime/should_fetch_if_no_header_specified.yml +0 -197
- data/spec/fixtures/vcr/cassettes/Puppet_Type_File/when_sourcing/from_http/using_mtime/should_fetch_if_not_on_the_local_disk.yml +0 -205
- data/spec/fixtures/vcr/cassettes/Puppet_Type_File/when_sourcing/from_http/using_mtime/should_not_update_if_mtime_is_newer_on_disk.yml +0 -205
- data/spec/fixtures/yaml/report2.6.x.yaml +0 -190
- data/spec/fixtures/yaml/test.local.yaml +0 -16
- data/spec/integration/agent/logging_spec.rb +0 -181
- data/spec/integration/application/apply_spec.rb +0 -535
- data/spec/integration/application/doc_spec.rb +0 -15
- data/spec/integration/application/lookup_spec.rb +0 -176
- data/spec/integration/configurer_spec.rb +0 -64
- data/spec/integration/data_binding_spec.rb +0 -196
- data/spec/integration/defaults_spec.rb +0 -254
- data/spec/integration/directory_environments_spec.rb +0 -67
- data/spec/integration/environments/default_manifest_spec.rb +0 -215
- data/spec/integration/environments/setting_hooks_spec.rb +0 -27
- data/spec/integration/environments/settings_interpolation_spec.rb +0 -110
- data/spec/integration/environments/settings_spec.rb +0 -128
- data/spec/integration/faces/config_spec.rb +0 -92
- data/spec/integration/faces/documentation_spec.rb +0 -58
- data/spec/integration/faces/plugin_spec.rb +0 -61
- data/spec/integration/file_bucket/file_spec.rb +0 -52
- 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 -26
- data/spec/integration/indirector/catalog/compiler_spec.rb +0 -76
- data/spec/integration/indirector/direct_file_server_spec.rb +0 -92
- data/spec/integration/indirector/facts/facter_spec.rb +0 -109
- data/spec/integration/indirector/file_content/file_server_spec.rb +0 -109
- data/spec/integration/indirector/file_metadata/file_server_spec.rb +0 -78
- data/spec/integration/module_tool/tar/mini_spec.rb +0 -28
- data/spec/integration/network/authconfig_spec.rb +0 -257
- data/spec/integration/network/formats_spec.rb +0 -91
- data/spec/integration/network/http/api/indirected_routes_spec.rb +0 -60
- data/spec/integration/node/environment_spec.rb +0 -156
- data/spec/integration/node/facts_spec.rb +0 -41
- data/spec/integration/node_spec.rb +0 -78
- data/spec/integration/parser/catalog_spec.rb +0 -110
- data/spec/integration/parser/class_spec.rb +0 -33
- data/spec/integration/parser/collection_spec.rb +0 -353
- data/spec/integration/parser/compiler_spec.rb +0 -1199
- data/spec/integration/parser/conditionals_spec.rb +0 -92
- data/spec/integration/parser/dynamic_scoping_spec.rb +0 -66
- data/spec/integration/parser/environment_spec.rb +0 -47
- data/spec/integration/parser/node_spec.rb +0 -172
- data/spec/integration/parser/parameter_defaults_spec.rb +0 -358
- data/spec/integration/parser/pcore_resource_spec.rb +0 -260
- data/spec/integration/parser/resource_expressions_spec.rb +0 -222
- data/spec/integration/parser/scope_spec.rb +0 -728
- data/spec/integration/parser/script_compiler_spec.rb +0 -113
- data/spec/integration/parser/undef_param_spec.rb +0 -95
- data/spec/integration/provider/service/init_spec.rb +0 -48
- data/spec/integration/provider/service/systemd_spec.rb +0 -24
- data/spec/integration/provider/service/windows_spec.rb +0 -51
- data/spec/integration/reference/providers_spec.rb +0 -22
- data/spec/integration/reports_spec.rb +0 -14
- data/spec/integration/resource/catalog_spec.rb +0 -50
- data/spec/integration/resource/type_collection_spec.rb +0 -93
- data/spec/integration/ssl/certificate_request_spec.rb +0 -45
- data/spec/integration/ssl/host_spec.rb +0 -73
- data/spec/integration/ssl/key_spec.rb +0 -100
- data/spec/integration/test/test_helper_spec.rb +0 -32
- data/spec/integration/transaction/report_spec.rb +0 -711
- data/spec/integration/transaction_spec.rb +0 -559
- data/spec/integration/type/exec_spec.rb +0 -77
- data/spec/integration/type/file_spec.rb +0 -1965
- data/spec/integration/type/package_spec.rb +0 -204
- data/spec/integration/type/tidy_spec.rb +0 -46
- data/spec/integration/type_spec.rb +0 -31
- data/spec/integration/util/autoload_spec.rb +0 -105
- data/spec/integration/util/execution_spec.rb +0 -55
- data/spec/integration/util/rdoc/parser_spec.rb +0 -172
- data/spec/integration/util/settings_spec.rb +0 -116
- data/spec/integration/util/windows/adsi_spec.rb +0 -184
- data/spec/integration/util/windows/principal_spec.rb +0 -259
- data/spec/integration/util/windows/process_spec.rb +0 -112
- data/spec/integration/util/windows/registry_spec.rb +0 -296
- data/spec/integration/util/windows/security_spec.rb +0 -1012
- data/spec/integration/util/windows/user_spec.rb +0 -167
- data/spec/integration/util_spec.rb +0 -133
- data/spec/lib/matchers/containment_matchers.rb +0 -52
- data/spec/lib/matchers/include.rb +0 -27
- data/spec/lib/matchers/include_in_order.rb +0 -20
- data/spec/lib/matchers/include_in_order_spec.rb +0 -30
- data/spec/lib/matchers/include_spec.rb +0 -32
- data/spec/lib/matchers/json.rb +0 -132
- data/spec/lib/matchers/match_tokens2.rb +0 -74
- data/spec/lib/matchers/relationship_graph_matchers.rb +0 -48
- data/spec/lib/matchers/resource.rb +0 -74
- data/spec/lib/puppet/certificate_factory.rb +0 -218
- data/spec/lib/puppet/face/1.0.0/huzzah.rb +0 -8
- data/spec/lib/puppet/face/basetest.rb +0 -51
- data/spec/lib/puppet/face/huzzah/obsolete.rb +0 -6
- data/spec/lib/puppet/face/huzzah.rb +0 -8
- data/spec/lib/puppet/face/version_matching.rb +0 -12
- data/spec/lib/puppet/indirector/indirector_testing/json.rb +0 -6
- data/spec/lib/puppet/indirector/indirector_testing/memory.rb +0 -7
- data/spec/lib/puppet/indirector/indirector_testing/msgpack.rb +0 -6
- data/spec/lib/puppet/indirector_proxy.rb +0 -34
- data/spec/lib/puppet/indirector_testing.rb +0 -31
- data/spec/lib/puppet/test_ca.rb +0 -109
- data/spec/lib/puppet_spec/character_encoding.rb +0 -12
- data/spec/lib/puppet_spec/compiler.rb +0 -112
- data/spec/lib/puppet_spec/files.rb +0 -108
- data/spec/lib/puppet_spec/fixtures.rb +0 -28
- data/spec/lib/puppet_spec/handler.rb +0 -53
- data/spec/lib/puppet_spec/language.rb +0 -75
- data/spec/lib/puppet_spec/matchers.rb +0 -161
- data/spec/lib/puppet_spec/module_tool/shared_functions.rb +0 -56
- data/spec/lib/puppet_spec/module_tool/stub_source.rb +0 -136
- data/spec/lib/puppet_spec/modules.rb +0 -57
- data/spec/lib/puppet_spec/network.rb +0 -109
- data/spec/lib/puppet_spec/pops.rb +0 -29
- data/spec/lib/puppet_spec/scope.rb +0 -14
- data/spec/lib/puppet_spec/settings.rb +0 -32
- data/spec/lib/puppet_spec/ssl.rb +0 -265
- data/spec/lib/puppet_spec/unindent.rb +0 -5
- data/spec/lib/puppet_spec/validators.rb +0 -37
- data/spec/lib/puppet_spec/verbose.rb +0 -9
- data/spec/shared_behaviours/all_parsedfile_providers.rb +0 -21
- data/spec/shared_behaviours/an_indirector_face.rb +0 -6
- data/spec/shared_behaviours/documentation_on_faces.rb +0 -263
- data/spec/shared_behaviours/file_server_terminus.rb +0 -39
- data/spec/shared_behaviours/file_serving.rb +0 -75
- data/spec/shared_behaviours/file_serving_model.rb +0 -53
- data/spec/shared_behaviours/hiera_indirections.rb +0 -99
- data/spec/shared_behaviours/iterative_functions.rb +0 -69
- data/spec/shared_behaviours/memory_terminus.rb +0 -28
- data/spec/shared_behaviours/path_parameters.rb +0 -160
- data/spec/shared_behaviours/store_configs_terminus.rb +0 -21
- data/spec/shared_behaviours/things_that_declare_options.rb +0 -262
- data/spec/shared_contexts/checksum.rb +0 -65
- data/spec/shared_contexts/digests.rb +0 -100
- data/spec/shared_contexts/types_setup.rb +0 -202
- data/spec/shared_examples/rhel_package_provider.rb +0 -356
- data/spec/spec_helper.rb +0 -205
- data/spec/unit/agent/disabler_spec.rb +0 -64
- data/spec/unit/agent/locker_spec.rb +0 -100
- data/spec/unit/agent_spec.rb +0 -348
- data/spec/unit/application/agent_spec.rb +0 -596
- data/spec/unit/application/apply_spec.rb +0 -550
- data/spec/unit/application/config_spec.rb +0 -13
- data/spec/unit/application/describe_spec.rb +0 -98
- data/spec/unit/application/device_spec.rb +0 -626
- data/spec/unit/application/doc_spec.rb +0 -335
- data/spec/unit/application/face_base_spec.rb +0 -453
- data/spec/unit/application/facts_spec.rb +0 -23
- data/spec/unit/application/filebucket_spec.rb +0 -307
- data/spec/unit/application/indirection_base_spec.rb +0 -48
- data/spec/unit/application/lookup_spec.rb +0 -570
- data/spec/unit/application/resource_spec.rb +0 -195
- data/spec/unit/application/ssl_spec.rb +0 -391
- data/spec/unit/application_spec.rb +0 -695
- data/spec/unit/capability_spec.rb +0 -414
- data/spec/unit/certificate_factory_spec.rb +0 -172
- data/spec/unit/configurer/downloader_spec.rb +0 -233
- data/spec/unit/configurer/fact_handler_spec.rb +0 -152
- data/spec/unit/configurer/plugin_handler_spec.rb +0 -64
- data/spec/unit/configurer_spec.rb +0 -1062
- data/spec/unit/confine/exists_spec.rb +0 -80
- data/spec/unit/confine/false_spec.rb +0 -52
- data/spec/unit/confine/feature_spec.rb +0 -57
- data/spec/unit/confine/true_spec.rb +0 -52
- data/spec/unit/confine/variable_spec.rb +0 -106
- data/spec/unit/confine_collection_spec.rb +0 -133
- data/spec/unit/confine_spec.rb +0 -93
- data/spec/unit/confiner_spec.rb +0 -62
- data/spec/unit/context/trusted_information_spec.rb +0 -155
- data/spec/unit/context_spec.rb +0 -136
- data/spec/unit/daemon_spec.rb +0 -262
- data/spec/unit/data_binding_spec.rb +0 -11
- data/spec/unit/data_providers/function_data_provider_spec.rb +0 -123
- data/spec/unit/data_providers/hiera_data_provider_spec.rb +0 -361
- data/spec/unit/datatypes_spec.rb +0 -353
- data/spec/unit/defaults_spec.rb +0 -193
- data/spec/unit/environments_spec.rb +0 -739
- data/spec/unit/etc_spec.rb +0 -467
- data/spec/unit/external/pson_spec.rb +0 -61
- data/spec/unit/face/catalog_spec.rb +0 -7
- data/spec/unit/face/config_spec.rb +0 -353
- data/spec/unit/face/epp_face_spec.rb +0 -386
- data/spec/unit/face/facts_spec.rb +0 -62
- data/spec/unit/face/generate_spec.rb +0 -230
- data/spec/unit/face/help_spec.rb +0 -209
- data/spec/unit/face/key_spec.rb +0 -10
- data/spec/unit/face/man_spec.rb +0 -26
- data/spec/unit/face/module/install_spec.rb +0 -42
- data/spec/unit/face/module/list_spec.rb +0 -240
- data/spec/unit/face/module/search_spec.rb +0 -212
- data/spec/unit/face/module/uninstall_spec.rb +0 -49
- data/spec/unit/face/module/upgrade_spec.rb +0 -26
- data/spec/unit/face/module_spec.rb +0 -3
- data/spec/unit/face/node_spec.rb +0 -129
- data/spec/unit/face/parser_spec.rb +0 -236
- data/spec/unit/face/plugin_spec.rb +0 -81
- data/spec/unit/face/status_spec.rb +0 -10
- data/spec/unit/face_spec.rb +0 -1
- data/spec/unit/file_bucket/dipper_spec.rb +0 -401
- data/spec/unit/file_bucket/file_spec.rb +0 -60
- data/spec/unit/file_serving/base_spec.rb +0 -165
- data/spec/unit/file_serving/configuration/parser_spec.rb +0 -181
- data/spec/unit/file_serving/configuration_spec.rb +0 -241
- data/spec/unit/file_serving/content_spec.rb +0 -99
- data/spec/unit/file_serving/fileset_spec.rb +0 -352
- data/spec/unit/file_serving/http_metadata_spec.rb +0 -85
- data/spec/unit/file_serving/metadata_spec.rb +0 -551
- data/spec/unit/file_serving/mount/file_spec.rb +0 -189
- data/spec/unit/file_serving/mount/locales_spec.rb +0 -73
- data/spec/unit/file_serving/mount/modules_spec.rb +0 -70
- data/spec/unit/file_serving/mount/pluginfacts_spec.rb +0 -73
- data/spec/unit/file_serving/mount/plugins_spec.rb +0 -73
- data/spec/unit/file_serving/mount/tasks_spec.rb +0 -72
- data/spec/unit/file_serving/mount_spec.rb +0 -31
- data/spec/unit/file_serving/terminus_helper_spec.rb +0 -112
- data/spec/unit/file_serving/terminus_selector_spec.rb +0 -66
- data/spec/unit/file_system/path_pattern_spec.rb +0 -138
- data/spec/unit/file_system/uniquefile_spec.rb +0 -204
- data/spec/unit/file_system_spec.rb +0 -878
- data/spec/unit/forge/errors_spec.rb +0 -80
- data/spec/unit/forge/forge_spec.rb +0 -114
- data/spec/unit/forge/module_release_spec.rb +0 -288
- data/spec/unit/forge/repository_spec.rb +0 -251
- data/spec/unit/forge_spec.rb +0 -276
- data/spec/unit/functions/abs_spec.rb +0 -70
- data/spec/unit/functions/all_spec.rb +0 -97
- data/spec/unit/functions/annotate_spec.rb +0 -175
- data/spec/unit/functions/any_spec.rb +0 -109
- data/spec/unit/functions/assert_type_spec.rb +0 -97
- data/spec/unit/functions/binary_file_spec.rb +0 -46
- data/spec/unit/functions/break_spec.rb +0 -207
- data/spec/unit/functions/call_spec.rb +0 -131
- data/spec/unit/functions/camelcase_spec.rb +0 -34
- data/spec/unit/functions/capitalize_spec.rb +0 -34
- data/spec/unit/functions/ceiling_spec.rb +0 -65
- data/spec/unit/functions/chomp_spec.rb +0 -46
- data/spec/unit/functions/chop_spec.rb +0 -38
- data/spec/unit/functions/compare_spec.rb +0 -147
- data/spec/unit/functions/contain_spec.rb +0 -299
- data/spec/unit/functions/convert_to_spec.rb +0 -25
- data/spec/unit/functions/defined_spec.rb +0 -289
- data/spec/unit/functions/dig_spec.rb +0 -58
- data/spec/unit/functions/downcase_spec.rb +0 -34
- data/spec/unit/functions/each_spec.rb +0 -107
- data/spec/unit/functions/empty_spec.rb +0 -77
- data/spec/unit/functions/epp_spec.rb +0 -172
- data/spec/unit/functions/filter_spec.rb +0 -145
- data/spec/unit/functions/find_file_spec.rb +0 -69
- data/spec/unit/functions/flatten_spec.rb +0 -31
- data/spec/unit/functions/floor_spec.rb +0 -65
- data/spec/unit/functions/get_spec.rb +0 -135
- data/spec/unit/functions/getvar_spec.rb +0 -121
- data/spec/unit/functions/hiera_spec.rb +0 -495
- data/spec/unit/functions/include_spec.rb +0 -190
- data/spec/unit/functions/inline_epp_spec.rb +0 -89
- data/spec/unit/functions/join_spec.rb +0 -33
- data/spec/unit/functions/keys_spec.rb +0 -31
- data/spec/unit/functions/length_spec.rb +0 -50
- data/spec/unit/functions/lest_spec.rb +0 -34
- data/spec/unit/functions/logging_spec.rb +0 -61
- data/spec/unit/functions/lookup_fixture_spec.rb +0 -688
- data/spec/unit/functions/lookup_spec.rb +0 -3326
- data/spec/unit/functions/lstrip_spec.rb +0 -30
- data/spec/unit/functions/map_spec.rb +0 -163
- data/spec/unit/functions/match_spec.rb +0 -74
- data/spec/unit/functions/max_spec.rb +0 -129
- data/spec/unit/functions/min_spec.rb +0 -129
- data/spec/unit/functions/module_directory_spec.rb +0 -43
- data/spec/unit/functions/new_spec.rb +0 -761
- data/spec/unit/functions/next_spec.rb +0 -93
- data/spec/unit/functions/reduce_spec.rb +0 -85
- data/spec/unit/functions/regsubst_spec.rb +0 -114
- data/spec/unit/functions/require_spec.rb +0 -85
- data/spec/unit/functions/return_spec.rb +0 -105
- data/spec/unit/functions/reverse_each_spec.rb +0 -108
- data/spec/unit/functions/round_spec.rb +0 -41
- data/spec/unit/functions/rstrip_spec.rb +0 -30
- data/spec/unit/functions/scanf_spec.rb +0 -32
- data/spec/unit/functions/shared.rb +0 -97
- data/spec/unit/functions/size_spec.rb +0 -50
- data/spec/unit/functions/slice_spec.rb +0 -136
- data/spec/unit/functions/sort_spec.rb +0 -79
- data/spec/unit/functions/split_spec.rb +0 -53
- data/spec/unit/functions/step_spec.rb +0 -113
- data/spec/unit/functions/strftime_spec.rb +0 -152
- data/spec/unit/functions/strip_spec.rb +0 -30
- data/spec/unit/functions/then_spec.rb +0 -40
- data/spec/unit/functions/tree_each_spec.rb +0 -493
- data/spec/unit/functions/type_spec.rb +0 -35
- data/spec/unit/functions/unique_spec.rb +0 -111
- data/spec/unit/functions/unwrap_spec.rb +0 -29
- data/spec/unit/functions/upcase_spec.rb +0 -34
- data/spec/unit/functions/values_spec.rb +0 -30
- data/spec/unit/functions/versioncmp_spec.rb +0 -35
- data/spec/unit/functions/with_spec.rb +0 -31
- data/spec/unit/functions4_spec.rb +0 -1038
- data/spec/unit/gettext/config_spec.rb +0 -144
- data/spec/unit/gettext/module_loading_spec.rb +0 -53
- data/spec/unit/graph/key_spec.rb +0 -41
- data/spec/unit/graph/rb_tree_map_spec.rb +0 -572
- data/spec/unit/graph/relationship_graph_spec.rb +0 -402
- data/spec/unit/graph/sequential_prioritizer_spec.rb +0 -32
- data/spec/unit/graph/simple_graph_spec.rb +0 -760
- data/spec/unit/hiera/scope_spec.rb +0 -93
- data/spec/unit/hiera_puppet_spec.rb +0 -159
- data/spec/unit/indirector/catalog/compiler_spec.rb +0 -1056
- data/spec/unit/indirector/catalog/json_spec.rb +0 -67
- data/spec/unit/indirector/catalog/msgpack_spec.rb +0 -12
- data/spec/unit/indirector/catalog/rest_spec.rb +0 -10
- data/spec/unit/indirector/catalog/store_configs_spec.rb +0 -17
- data/spec/unit/indirector/catalog/yaml_spec.rb +0 -24
- data/spec/unit/indirector/certificate/file_spec.rb +0 -15
- data/spec/unit/indirector/certificate/rest_spec.rb +0 -63
- data/spec/unit/indirector/certificate_request/file_spec.rb +0 -15
- data/spec/unit/indirector/certificate_request/rest_spec.rb +0 -26
- data/spec/unit/indirector/data_binding/hiera_spec.rb +0 -19
- data/spec/unit/indirector/data_binding/none_spec.rb +0 -28
- data/spec/unit/indirector/direct_file_server_spec.rb +0 -88
- data/spec/unit/indirector/envelope_spec.rb +0 -33
- data/spec/unit/indirector/exec_spec.rb +0 -64
- data/spec/unit/indirector/face_spec.rb +0 -83
- data/spec/unit/indirector/facts/facter_spec.rb +0 -159
- data/spec/unit/indirector/facts/network_device_spec.rb +0 -78
- data/spec/unit/indirector/facts/rest_spec.rb +0 -45
- data/spec/unit/indirector/facts/store_configs_spec.rb +0 -17
- data/spec/unit/indirector/facts/yaml_spec.rb +0 -256
- data/spec/unit/indirector/file_bucket_file/file_spec.rb +0 -425
- data/spec/unit/indirector/file_bucket_file/rest_spec.rb +0 -10
- data/spec/unit/indirector/file_bucket_file/selector_spec.rb +0 -29
- data/spec/unit/indirector/file_content/file_server_spec.rb +0 -14
- data/spec/unit/indirector/file_content/file_spec.rb +0 -14
- data/spec/unit/indirector/file_content/rest_spec.rb +0 -14
- data/spec/unit/indirector/file_content/selector_spec.rb +0 -10
- data/spec/unit/indirector/file_metadata/file_server_spec.rb +0 -14
- data/spec/unit/indirector/file_metadata/file_spec.rb +0 -58
- data/spec/unit/indirector/file_metadata/rest_spec.rb +0 -13
- data/spec/unit/indirector/file_metadata/selector_spec.rb +0 -11
- data/spec/unit/indirector/file_server_spec.rb +0 -302
- data/spec/unit/indirector/hiera_spec.rb +0 -17
- data/spec/unit/indirector/indirection_spec.rb +0 -866
- data/spec/unit/indirector/json_spec.rb +0 -202
- data/spec/unit/indirector/key/file_spec.rb +0 -80
- data/spec/unit/indirector/memory_spec.rb +0 -27
- data/spec/unit/indirector/msgpack_spec.rb +0 -201
- data/spec/unit/indirector/node/exec_spec.rb +0 -108
- data/spec/unit/indirector/node/memory_spec.rb +0 -18
- data/spec/unit/indirector/node/msgpack_spec.rb +0 -24
- data/spec/unit/indirector/node/plain_spec.rb +0 -36
- data/spec/unit/indirector/node/rest_spec.rb +0 -12
- data/spec/unit/indirector/node/store_configs_spec.rb +0 -17
- data/spec/unit/indirector/node/yaml_spec.rb +0 -24
- data/spec/unit/indirector/none_spec.rb +0 -33
- data/spec/unit/indirector/plain_spec.rb +0 -27
- data/spec/unit/indirector/report/msgpack_spec.rb +0 -28
- data/spec/unit/indirector/report/processor_spec.rb +0 -100
- data/spec/unit/indirector/report/rest_spec.rb +0 -93
- data/spec/unit/indirector/report/yaml_spec.rb +0 -28
- data/spec/unit/indirector/request_spec.rb +0 -561
- data/spec/unit/indirector/resource/ral_spec.rb +0 -132
- data/spec/unit/indirector/resource/store_configs_spec.rb +0 -21
- data/spec/unit/indirector/rest_spec.rb +0 -787
- data/spec/unit/indirector/ssl_file_spec.rb +0 -306
- data/spec/unit/indirector/status/local_spec.rb +0 -11
- data/spec/unit/indirector/status/rest_spec.rb +0 -10
- data/spec/unit/indirector/store_configs_spec.rb +0 -8
- data/spec/unit/indirector/terminus_spec.rb +0 -264
- data/spec/unit/indirector/yaml_spec.rb +0 -189
- data/spec/unit/indirector_spec.rb +0 -149
- data/spec/unit/info_service_spec.rb +0 -498
- data/spec/unit/interface/action_builder_spec.rb +0 -217
- data/spec/unit/interface/action_manager_spec.rb +0 -255
- data/spec/unit/interface/action_spec.rb +0 -680
- data/spec/unit/interface/documentation_spec.rb +0 -33
- data/spec/unit/interface/face_collection_spec.rb +0 -212
- data/spec/unit/interface/option_builder_spec.rb +0 -86
- data/spec/unit/interface/option_spec.rb +0 -156
- data/spec/unit/interface_spec.rb +0 -305
- data/spec/unit/man_spec.rb +0 -32
- data/spec/unit/module_spec.rb +0 -907
- data/spec/unit/module_tool/application_spec.rb +0 -25
- data/spec/unit/module_tool/applications/checksummer_spec.rb +0 -115
- data/spec/unit/module_tool/applications/installer_spec.rb +0 -379
- data/spec/unit/module_tool/applications/searcher_spec.rb +0 -38
- data/spec/unit/module_tool/applications/uninstaller_spec.rb +0 -173
- data/spec/unit/module_tool/applications/unpacker_spec.rb +0 -75
- data/spec/unit/module_tool/applications/upgrader_spec.rb +0 -337
- data/spec/unit/module_tool/install_directory_spec.rb +0 -70
- data/spec/unit/module_tool/installed_modules_spec.rb +0 -49
- data/spec/unit/module_tool/metadata_spec.rb +0 -330
- data/spec/unit/module_tool/tar/gnu_spec.rb +0 -23
- data/spec/unit/module_tool/tar/mini_spec.rb +0 -89
- data/spec/unit/module_tool/tar_spec.rb +0 -37
- data/spec/unit/module_tool_spec.rb +0 -309
- data/spec/unit/network/auth_config_parser_spec.rb +0 -117
- data/spec/unit/network/authconfig_spec.rb +0 -139
- data/spec/unit/network/authorization_spec.rb +0 -62
- data/spec/unit/network/authstore_spec.rb +0 -423
- data/spec/unit/network/format_handler_spec.rb +0 -94
- data/spec/unit/network/format_spec.rb +0 -206
- data/spec/unit/network/format_support_spec.rb +0 -199
- data/spec/unit/network/formats_spec.rb +0 -538
- data/spec/unit/network/http/api/indirected_routes_spec.rb +0 -486
- data/spec/unit/network/http/api/master/v3/authorization_spec.rb +0 -57
- data/spec/unit/network/http/api/master/v3/environment_spec.rb +0 -185
- data/spec/unit/network/http/api/master/v3/environments_spec.rb +0 -63
- data/spec/unit/network/http/api/master/v3_spec.rb +0 -57
- data/spec/unit/network/http/api_spec.rb +0 -101
- data/spec/unit/network/http/compression_spec.rb +0 -241
- data/spec/unit/network/http/connection_spec.rb +0 -361
- data/spec/unit/network/http/error_spec.rb +0 -30
- data/spec/unit/network/http/factory_spec.rb +0 -119
- data/spec/unit/network/http/handler_spec.rb +0 -179
- data/spec/unit/network/http/nocache_pool_spec.rb +0 -43
- data/spec/unit/network/http/pool_spec.rb +0 -299
- data/spec/unit/network/http/request_spec.rb +0 -110
- data/spec/unit/network/http/response_spec.rb +0 -108
- data/spec/unit/network/http/route_spec.rb +0 -91
- data/spec/unit/network/http/session_spec.rb +0 -43
- data/spec/unit/network/http/site_spec.rb +0 -90
- data/spec/unit/network/http_pool_spec.rb +0 -98
- data/spec/unit/network/http_spec.rb +0 -10
- data/spec/unit/network/resolver_spec.rb +0 -282
- data/spec/unit/network/rights_spec.rb +0 -440
- data/spec/unit/node/environment_spec.rb +0 -527
- data/spec/unit/node/facts_spec.rb +0 -226
- data/spec/unit/node_spec.rb +0 -483
- data/spec/unit/other/selinux_spec.rb +0 -28
- data/spec/unit/parameter/boolean_spec.rb +0 -36
- data/spec/unit/parameter/package_options_spec.rb +0 -44
- data/spec/unit/parameter/path_spec.rb +0 -24
- data/spec/unit/parameter/value_collection_spec.rb +0 -161
- data/spec/unit/parameter/value_spec.rb +0 -83
- data/spec/unit/parameter_spec.rb +0 -272
- data/spec/unit/parser/ast/block_expression_spec.rb +0 -68
- data/spec/unit/parser/ast/leaf_spec.rb +0 -137
- data/spec/unit/parser/compiler_spec.rb +0 -1019
- data/spec/unit/parser/environment_compiler_spec.rb +0 -724
- data/spec/unit/parser/files_spec.rb +0 -102
- data/spec/unit/parser/functions/create_resources_spec.rb +0 -344
- data/spec/unit/parser/functions/digest_spec.rb +0 -27
- data/spec/unit/parser/functions/fail_spec.rb +0 -24
- data/spec/unit/parser/functions/file_spec.rb +0 -100
- data/spec/unit/parser/functions/fqdn_rand_spec.rb +0 -74
- data/spec/unit/parser/functions/generate_spec.rb +0 -125
- data/spec/unit/parser/functions/hiera_array_spec.rb +0 -12
- data/spec/unit/parser/functions/hiera_hash_spec.rb +0 -12
- data/spec/unit/parser/functions/hiera_include_spec.rb +0 -12
- data/spec/unit/parser/functions/hiera_spec.rb +0 -12
- data/spec/unit/parser/functions/inline_template_spec.rb +0 -37
- data/spec/unit/parser/functions/lookup_spec.rb +0 -14
- data/spec/unit/parser/functions/realize_spec.rb +0 -70
- data/spec/unit/parser/functions/regsubst_spec.rb +0 -20
- data/spec/unit/parser/functions/scanf_spec.rb +0 -26
- data/spec/unit/parser/functions/shellquote_spec.rb +0 -67
- data/spec/unit/parser/functions/split_spec.rb +0 -14
- data/spec/unit/parser/functions/sprintf_spec.rb +0 -69
- data/spec/unit/parser/functions/tag_spec.rb +0 -31
- data/spec/unit/parser/functions/tagged_spec.rb +0 -37
- data/spec/unit/parser/functions/template_spec.rb +0 -93
- data/spec/unit/parser/functions/versioncmp_spec.rb +0 -29
- data/spec/unit/parser/functions_spec.rb +0 -157
- data/spec/unit/parser/relationship_spec.rb +0 -75
- data/spec/unit/parser/resource/param_spec.rb +0 -32
- data/spec/unit/parser/resource_spec.rb +0 -642
- data/spec/unit/parser/scope_spec.rb +0 -680
- data/spec/unit/parser/templatewrapper_spec.rb +0 -101
- data/spec/unit/parser/type_loader_spec.rb +0 -204
- data/spec/unit/pops/adaptable_spec.rb +0 -140
- data/spec/unit/pops/benchmark_spec.rb +0 -124
- data/spec/unit/pops/containment_spec.rb +0 -0
- data/spec/unit/pops/evaluator/access_ops_spec.rb +0 -561
- data/spec/unit/pops/evaluator/arithmetic_ops_spec.rb +0 -310
- data/spec/unit/pops/evaluator/basic_expressions_spec.rb +0 -102
- data/spec/unit/pops/evaluator/collections_ops_spec.rb +0 -109
- data/spec/unit/pops/evaluator/comparison_ops_spec.rb +0 -268
- data/spec/unit/pops/evaluator/conditionals_spec.rb +0 -190
- data/spec/unit/pops/evaluator/evaluating_parser_spec.rb +0 -1583
- data/spec/unit/pops/evaluator/evaluator_rspec_helper.rb +0 -75
- data/spec/unit/pops/evaluator/json_strict_literal_evaluator_spec.rb +0 -63
- data/spec/unit/pops/evaluator/literal_evaluator_spec.rb +0 -43
- data/spec/unit/pops/evaluator/logical_ops_spec.rb +0 -90
- data/spec/unit/pops/evaluator/runtime3_converter_spec.rb +0 -182
- data/spec/unit/pops/evaluator/string_interpolation_spec.rb +0 -44
- data/spec/unit/pops/evaluator/variables_spec.rb +0 -89
- data/spec/unit/pops/factory_rspec_helper.rb +0 -65
- data/spec/unit/pops/factory_spec.rb +0 -310
- data/spec/unit/pops/issues_spec.rb +0 -211
- data/spec/unit/pops/label_provider_spec.rb +0 -46
- data/spec/unit/pops/loaders/dependency_loader_spec.rb +0 -131
- data/spec/unit/pops/loaders/environment_loader_spec.rb +0 -172
- data/spec/unit/pops/loaders/loader_paths_spec.rb +0 -43
- data/spec/unit/pops/loaders/loader_spec.rb +0 -487
- data/spec/unit/pops/loaders/loaders_spec.rb +0 -723
- data/spec/unit/pops/loaders/module_loaders_spec.rb +0 -231
- data/spec/unit/pops/loaders/static_loader_spec.rb +0 -85
- data/spec/unit/pops/lookup/context_spec.rb +0 -334
- data/spec/unit/pops/lookup/interpolation_spec.rb +0 -378
- data/spec/unit/pops/lookup/lookup_spec.rb +0 -350
- data/spec/unit/pops/merge_strategy_spec.rb +0 -18
- data/spec/unit/pops/migration_spec.rb +0 -53
- data/spec/unit/pops/model/model_spec.rb +0 -42
- data/spec/unit/pops/model/pn_transformer_spec.rb +0 -57
- data/spec/unit/pops/parser/epp_parser_spec.rb +0 -115
- data/spec/unit/pops/parser/evaluating_parser_spec.rb +0 -89
- data/spec/unit/pops/parser/lexer2_spec.rb +0 -950
- data/spec/unit/pops/parser/locator_spec.rb +0 -44
- data/spec/unit/pops/parser/parse_application_spec.rb +0 -32
- data/spec/unit/pops/parser/parse_basic_expressions_spec.rb +0 -382
- data/spec/unit/pops/parser/parse_calls_spec.rb +0 -172
- data/spec/unit/pops/parser/parse_capabilities_spec.rb +0 -37
- data/spec/unit/pops/parser/parse_conditionals_spec.rb +0 -185
- data/spec/unit/pops/parser/parse_containers_spec.rb +0 -259
- data/spec/unit/pops/parser/parse_functions_spec.rb +0 -19
- data/spec/unit/pops/parser/parse_heredoc_spec.rb +0 -180
- data/spec/unit/pops/parser/parse_lambda_spec.rb +0 -19
- data/spec/unit/pops/parser/parse_plan_spec.rb +0 -48
- data/spec/unit/pops/parser/parse_resource_spec.rb +0 -329
- data/spec/unit/pops/parser/parse_site_spec.rb +0 -48
- data/spec/unit/pops/parser/parser_rspec_helper.rb +0 -17
- data/spec/unit/pops/parser/parser_spec.rb +0 -211
- data/spec/unit/pops/parser/parsing_typed_parameters_spec.rb +0 -65
- data/spec/unit/pops/parser/pn_parser_spec.rb +0 -101
- data/spec/unit/pops/pn_spec.rb +0 -148
- data/spec/unit/pops/puppet_stack_spec.rb +0 -108
- data/spec/unit/pops/resource/resource_type_impl_spec.rb +0 -109
- data/spec/unit/pops/serialization/packer_spec.rb +0 -162
- data/spec/unit/pops/serialization/serialization_spec.rb +0 -458
- data/spec/unit/pops/serialization/to_from_hr_spec.rb +0 -632
- data/spec/unit/pops/serialization/to_stringified_spec.rb +0 -157
- data/spec/unit/pops/time/timespan_spec.rb +0 -121
- data/spec/unit/pops/time/timestamp_spec.rb +0 -13
- data/spec/unit/pops/types/class_loader_spec.rb +0 -10
- data/spec/unit/pops/types/deferred_spec.rb +0 -87
- data/spec/unit/pops/types/enumeration_spec.rb +0 -51
- data/spec/unit/pops/types/error_spec.rb +0 -207
- data/spec/unit/pops/types/iterable_spec.rb +0 -262
- data/spec/unit/pops/types/p_binary_type_spec.rb +0 -243
- data/spec/unit/pops/types/p_init_type_spec.rb +0 -383
- data/spec/unit/pops/types/p_object_type_spec.rb +0 -1730
- data/spec/unit/pops/types/p_sem_ver_type_spec.rb +0 -322
- data/spec/unit/pops/types/p_sensitive_type_spec.rb +0 -173
- data/spec/unit/pops/types/p_timespan_type_spec.rb +0 -323
- data/spec/unit/pops/types/p_timestamp_type_spec.rb +0 -391
- data/spec/unit/pops/types/p_type_set_type_spec.rb +0 -549
- data/spec/unit/pops/types/p_uri_type_spec.rb +0 -191
- data/spec/unit/pops/types/recursion_guard_spec.rb +0 -93
- data/spec/unit/pops/types/ruby_generator_spec.rb +0 -874
- data/spec/unit/pops/types/string_converter_spec.rb +0 -1198
- data/spec/unit/pops/types/task_spec.rb +0 -411
- data/spec/unit/pops/types/type_acceptor_spec.rb +0 -106
- data/spec/unit/pops/types/type_asserter_spec.rb +0 -43
- data/spec/unit/pops/types/type_calculator_spec.rb +0 -2508
- data/spec/unit/pops/types/type_factory_spec.rb +0 -322
- data/spec/unit/pops/types/type_formatter_spec.rb +0 -427
- data/spec/unit/pops/types/type_mismatch_describer_spec.rb +0 -249
- data/spec/unit/pops/types/type_parser_spec.rb +0 -444
- data/spec/unit/pops/types/types_spec.rb +0 -728
- data/spec/unit/pops/utils_spec.rb +0 -70
- data/spec/unit/pops/validation_spec.rb +0 -66
- data/spec/unit/pops/validator/validator_spec.rb +0 -1022
- data/spec/unit/pops/visitor_spec.rb +0 -94
- data/spec/unit/property/boolean_spec.rb +0 -24
- data/spec/unit/property/ensure_spec.rb +0 -12
- data/spec/unit/property/keyvalue_spec.rb +0 -261
- data/spec/unit/property/list_spec.rb +0 -173
- data/spec/unit/property/ordered_list_spec.rb +0 -63
- data/spec/unit/property_spec.rb +0 -563
- data/spec/unit/provider/README.markdown +0 -4
- data/spec/unit/provider/aix_object_spec.rb +0 -805
- data/spec/unit/provider/command_spec.rb +0 -62
- data/spec/unit/provider/exec/posix_spec.rb +0 -209
- data/spec/unit/provider/exec/shell_spec.rb +0 -54
- data/spec/unit/provider/exec/windows_spec.rb +0 -107
- data/spec/unit/provider/exec_spec.rb +0 -35
- data/spec/unit/provider/file/posix_spec.rb +0 -232
- data/spec/unit/provider/file/windows_spec.rb +0 -154
- data/spec/unit/provider/group/aix_spec.rb +0 -90
- data/spec/unit/provider/group/directoryservice_spec.rb +0 -33
- data/spec/unit/provider/group/groupadd_spec.rb +0 -152
- data/spec/unit/provider/group/ldap_spec.rb +0 -98
- data/spec/unit/provider/group/pw_spec.rb +0 -78
- data/spec/unit/provider/group/windows_adsi_spec.rb +0 -359
- data/spec/unit/provider/ldap_spec.rb +0 -243
- data/spec/unit/provider/nameservice/directoryservice_spec.rb +0 -158
- data/spec/unit/provider/nameservice_spec.rb +0 -456
- data/spec/unit/provider/package/aix_spec.rb +0 -129
- data/spec/unit/provider/package/appdmg_spec.rb +0 -42
- data/spec/unit/provider/package/apt_spec.rb +0 -162
- data/spec/unit/provider/package/aptitude_spec.rb +0 -45
- data/spec/unit/provider/package/aptrpm_spec.rb +0 -47
- data/spec/unit/provider/package/base_spec.rb +0 -18
- data/spec/unit/provider/package/dnf_spec.rb +0 -50
- data/spec/unit/provider/package/dpkg_spec.rb +0 -278
- data/spec/unit/provider/package/freebsd_spec.rb +0 -51
- data/spec/unit/provider/package/gem_spec.rb +0 -336
- data/spec/unit/provider/package/hpux_spec.rb +0 -48
- data/spec/unit/provider/package/macports_spec.rb +0 -138
- data/spec/unit/provider/package/nim_spec.rb +0 -234
- data/spec/unit/provider/package/openbsd_spec.rb +0 -401
- data/spec/unit/provider/package/opkg_spec.rb +0 -183
- data/spec/unit/provider/package/pacman_spec.rb +0 -468
- data/spec/unit/provider/package/pip3_spec.rb +0 -19
- data/spec/unit/provider/package/pip_spec.rb +0 -379
- data/spec/unit/provider/package/pkg_spec.rb +0 -413
- data/spec/unit/provider/package/pkgdmg_spec.rb +0 -168
- data/spec/unit/provider/package/pkgin_spec.rb +0 -183
- data/spec/unit/provider/package/pkgng_spec.rb +0 -183
- data/spec/unit/provider/package/pkgutil_spec.rb +0 -235
- data/spec/unit/provider/package/portage_spec.rb +0 -211
- data/spec/unit/provider/package/puppet_gem_spec.rb +0 -64
- data/spec/unit/provider/package/rpm_spec.rb +0 -674
- data/spec/unit/provider/package/sun_spec.rb +0 -114
- data/spec/unit/provider/package/tdnf_spec.rb +0 -15
- data/spec/unit/provider/package/up2date_spec.rb +0 -24
- data/spec/unit/provider/package/urpmi_spec.rb +0 -86
- data/spec/unit/provider/package/windows/exe_package_spec.rb +0 -100
- data/spec/unit/provider/package/windows/msi_package_spec.rb +0 -114
- data/spec/unit/provider/package/windows/package_spec.rb +0 -185
- data/spec/unit/provider/package/windows_spec.rb +0 -257
- data/spec/unit/provider/package/yum_spec.rb +0 -148
- data/spec/unit/provider/package/zypper_spec.rb +0 -229
- data/spec/unit/provider/parsedfile_spec.rb +0 -228
- data/spec/unit/provider/service/base_spec.rb +0 -112
- data/spec/unit/provider/service/bsd_spec.rb +0 -129
- data/spec/unit/provider/service/daemontools_spec.rb +0 -166
- data/spec/unit/provider/service/debian_spec.rb +0 -162
- data/spec/unit/provider/service/freebsd_spec.rb +0 -92
- data/spec/unit/provider/service/gentoo_spec.rb +0 -250
- data/spec/unit/provider/service/init_spec.rb +0 -259
- data/spec/unit/provider/service/launchd_spec.rb +0 -367
- data/spec/unit/provider/service/openbsd_spec.rb +0 -201
- data/spec/unit/provider/service/openrc_spec.rb +0 -233
- data/spec/unit/provider/service/openwrt_spec.rb +0 -111
- data/spec/unit/provider/service/rcng_spec.rb +0 -40
- data/spec/unit/provider/service/redhat_spec.rb +0 -177
- data/spec/unit/provider/service/runit_spec.rb +0 -137
- data/spec/unit/provider/service/smf_spec.rb +0 -281
- data/spec/unit/provider/service/src_spec.rb +0 -194
- data/spec/unit/provider/service/systemd_spec.rb +0 -421
- data/spec/unit/provider/service/upstart_spec.rb +0 -693
- data/spec/unit/provider/service/windows_spec.rb +0 -226
- data/spec/unit/provider/user/aix_spec.rb +0 -215
- data/spec/unit/provider/user/directoryservice_spec.rb +0 -1151
- data/spec/unit/provider/user/hpux_spec.rb +0 -72
- data/spec/unit/provider/user/ldap_spec.rb +0 -286
- data/spec/unit/provider/user/openbsd_spec.rb +0 -77
- data/spec/unit/provider/user/pw_spec.rb +0 -211
- data/spec/unit/provider/user/user_role_add_spec.rb +0 -374
- data/spec/unit/provider/user/useradd_spec.rb +0 -632
- data/spec/unit/provider/user/windows_adsi_spec.rb +0 -326
- data/spec/unit/provider_spec.rb +0 -918
- data/spec/unit/puppet_pal_2pec.rb +0 -1020
- data/spec/unit/puppet_pal_catalog_spec.rb +0 -859
- data/spec/unit/puppet_pal_spec.rb +0 -4
- data/spec/unit/puppet_spec.rb +0 -73
- data/spec/unit/relationship_spec.rb +0 -203
- data/spec/unit/reports/http_spec.rb +0 -103
- data/spec/unit/reports/store_spec.rb +0 -60
- data/spec/unit/reports_spec.rb +0 -70
- data/spec/unit/resource/capability_finder_spec.rb +0 -145
- data/spec/unit/resource/catalog_spec.rb +0 -1134
- data/spec/unit/resource/status_spec.rb +0 -218
- data/spec/unit/resource/type_collection_spec.rb +0 -337
- data/spec/unit/resource/type_spec.rb +0 -877
- data/spec/unit/resource_spec.rb +0 -1128
- data/spec/unit/rest/client_spec.rb +0 -135
- data/spec/unit/rest/route_spec.rb +0 -132
- data/spec/unit/scheduler/job_spec.rb +0 -79
- data/spec/unit/scheduler/scheduler_spec.rb +0 -116
- data/spec/unit/scheduler/splay_job_spec.rb +0 -35
- data/spec/unit/settings/array_setting_spec.rb +0 -39
- data/spec/unit/settings/autosign_setting_spec.rb +0 -104
- data/spec/unit/settings/certificate_revocation_setting_spec.rb +0 -37
- data/spec/unit/settings/config_file_spec.rb +0 -158
- data/spec/unit/settings/directory_setting_spec.rb +0 -32
- data/spec/unit/settings/duration_setting_spec.rb +0 -49
- data/spec/unit/settings/enum_setting_spec.rb +0 -27
- data/spec/unit/settings/environment_conf_spec.rb +0 -135
- data/spec/unit/settings/file_setting_spec.rb +0 -343
- data/spec/unit/settings/ini_file_spec.rb +0 -550
- data/spec/unit/settings/path_setting_spec.rb +0 -30
- data/spec/unit/settings/priority_setting_spec.rb +0 -66
- data/spec/unit/settings/string_setting_spec.rb +0 -75
- data/spec/unit/settings/terminus_setting_spec.rb +0 -28
- data/spec/unit/settings/value_translator_spec.rb +0 -77
- data/spec/unit/settings_spec.rb +0 -1919
- data/spec/unit/ssl/base_spec.rb +0 -94
- data/spec/unit/ssl/certificate_request_attributes_spec.rb +0 -80
- data/spec/unit/ssl/certificate_request_spec.rb +0 -401
- data/spec/unit/ssl/certificate_spec.rb +0 -187
- data/spec/unit/ssl/digest_spec.rb +0 -35
- data/spec/unit/ssl/host_spec.rb +0 -630
- data/spec/unit/ssl/key_spec.rb +0 -174
- data/spec/unit/ssl/oids_spec.rb +0 -72
- data/spec/unit/ssl/validator_spec.rb +0 -287
- data/spec/unit/status_spec.rb +0 -45
- data/spec/unit/task_spec.rb +0 -292
- data/spec/unit/transaction/additional_resource_generator_spec.rb +0 -542
- data/spec/unit/transaction/event_manager_spec.rb +0 -363
- data/spec/unit/transaction/event_spec.rb +0 -197
- data/spec/unit/transaction/persistence_spec.rb +0 -220
- data/spec/unit/transaction/report_spec.rb +0 -700
- data/spec/unit/transaction/resource_harness_spec.rb +0 -604
- data/spec/unit/transaction_spec.rb +0 -974
- data/spec/unit/type/README.markdown +0 -4
- data/spec/unit/type/component_spec.rb +0 -53
- data/spec/unit/type/exec_spec.rb +0 -815
- data/spec/unit/type/file/checksum_spec.rb +0 -105
- data/spec/unit/type/file/checksum_value_spec.rb +0 -286
- data/spec/unit/type/file/content_spec.rb +0 -438
- data/spec/unit/type/file/ctime_spec.rb +0 -34
- data/spec/unit/type/file/ensure_spec.rb +0 -123
- data/spec/unit/type/file/group_spec.rb +0 -60
- data/spec/unit/type/file/mode_spec.rb +0 -222
- data/spec/unit/type/file/mtime_spec.rb +0 -34
- data/spec/unit/type/file/owner_spec.rb +0 -58
- data/spec/unit/type/file/selinux_spec.rb +0 -90
- data/spec/unit/type/file/source_spec.rb +0 -677
- data/spec/unit/type/file/type_spec.rb +0 -19
- data/spec/unit/type/file_spec.rb +0 -1696
- data/spec/unit/type/filebucket_spec.rb +0 -103
- data/spec/unit/type/group_spec.rb +0 -100
- data/spec/unit/type/noop_metaparam_spec.rb +0 -38
- data/spec/unit/type/package/package_settings_spec.rb +0 -135
- data/spec/unit/type/package_spec.rb +0 -384
- data/spec/unit/type/resources_spec.rb +0 -350
- data/spec/unit/type/schedule_spec.rb +0 -621
- data/spec/unit/type/service_spec.rb +0 -308
- data/spec/unit/type/stage_spec.rb +0 -8
- data/spec/unit/type/tidy_spec.rb +0 -468
- data/spec/unit/type/user_spec.rb +0 -459
- data/spec/unit/type/whit_spec.rb +0 -10
- data/spec/unit/type_spec.rb +0 -1384
- data/spec/unit/util/at_fork_spec.rb +0 -150
- data/spec/unit/util/autoload_spec.rb +0 -309
- data/spec/unit/util/backups_spec.rb +0 -134
- data/spec/unit/util/character_encoding_spec.rb +0 -186
- data/spec/unit/util/checksums_spec.rb +0 -208
- data/spec/unit/util/colors_spec.rb +0 -45
- data/spec/unit/util/command_line_spec.rb +0 -175
- data/spec/unit/util/command_line_utils/puppet_option_parser_spec.rb +0 -129
- data/spec/unit/util/constant_inflector_spec.rb +0 -56
- data/spec/unit/util/diff_spec.rb +0 -47
- data/spec/unit/util/docs_spec.rb +0 -100
- data/spec/unit/util/errors_spec.rb +0 -37
- data/spec/unit/util/execution_spec.rb +0 -927
- data/spec/unit/util/execution_stub_spec.rb +0 -39
- data/spec/unit/util/feature_spec.rb +0 -120
- data/spec/unit/util/filetype_spec.rb +0 -223
- data/spec/unit/util/http_proxy_spec.rb +0 -273
- data/spec/unit/util/inifile_spec.rb +0 -523
- data/spec/unit/util/json_lockfile_spec.rb +0 -50
- data/spec/unit/util/ldap/connection_spec.rb +0 -161
- data/spec/unit/util/ldap/generator_spec.rb +0 -50
- data/spec/unit/util/ldap/manager_spec.rb +0 -626
- data/spec/unit/util/lockfile_spec.rb +0 -118
- data/spec/unit/util/log/destinations_spec.rb +0 -267
- data/spec/unit/util/log_spec.rb +0 -576
- data/spec/unit/util/logging_spec.rb +0 -430
- data/spec/unit/util/metric_spec.rb +0 -90
- data/spec/unit/util/monkey_patches_spec.rb +0 -145
- data/spec/unit/util/multi_match_spec.rb +0 -39
- data/spec/unit/util/network_device/config_spec.rb +0 -92
- data/spec/unit/util/network_device/transport/base_spec.rb +0 -41
- data/spec/unit/util/network_device_spec.rb +0 -50
- data/spec/unit/util/package_spec.rb +0 -20
- data/spec/unit/util/pidlock_spec.rb +0 -218
- data/spec/unit/util/plist_spec.rb +0 -141
- data/spec/unit/util/posix_spec.rb +0 -279
- data/spec/unit/util/profiler/aggregate_spec.rb +0 -55
- data/spec/unit/util/profiler/around_profiler_spec.rb +0 -61
- data/spec/unit/util/profiler/logging_spec.rb +0 -70
- data/spec/unit/util/profiler/object_counts_spec.rb +0 -13
- data/spec/unit/util/profiler/wall_clock_spec.rb +0 -13
- data/spec/unit/util/profiler_spec.rb +0 -47
- data/spec/unit/util/rdoc_spec.rb +0 -56
- data/spec/unit/util/reference_spec.rb +0 -39
- data/spec/unit/util/resource_template_spec.rb +0 -57
- data/spec/unit/util/retry_action_spec.rb +0 -85
- data/spec/unit/util/rubygems_spec.rb +0 -48
- data/spec/unit/util/run_mode_spec.rb +0 -318
- data/spec/unit/util/selinux_spec.rb +0 -315
- data/spec/unit/util/splayer_spec.rb +0 -45
- data/spec/unit/util/ssl_spec.rb +0 -92
- data/spec/unit/util/storage_spec.rb +0 -336
- data/spec/unit/util/suidmanager_spec.rb +0 -284
- data/spec/unit/util/symbolic_file_mode_spec.rb +0 -181
- data/spec/unit/util/tag_set_spec.rb +0 -53
- data/spec/unit/util/tagging_spec.rb +0 -247
- data/spec/unit/util/terminal_spec.rb +0 -42
- data/spec/unit/util/user_attr_spec.rb +0 -46
- data/spec/unit/util/warnings_spec.rb +0 -46
- data/spec/unit/util/watched_file_spec.rb +0 -52
- data/spec/unit/util/watcher/periodic_watcher_spec.rb +0 -52
- data/spec/unit/util/watcher_spec.rb +0 -56
- data/spec/unit/util/windows/access_control_entry_spec.rb +0 -67
- data/spec/unit/util/windows/access_control_list_spec.rb +0 -133
- data/spec/unit/util/windows/adsi_spec.rb +0 -630
- data/spec/unit/util/windows/api_types_spec.rb +0 -121
- data/spec/unit/util/windows/eventlog_spec.rb +0 -123
- data/spec/unit/util/windows/file_spec.rb +0 -89
- data/spec/unit/util/windows/root_certs_spec.rb +0 -17
- data/spec/unit/util/windows/security_descriptor_spec.rb +0 -117
- data/spec/unit/util/windows/service_spec.rb +0 -669
- data/spec/unit/util/windows/sid_spec.rb +0 -299
- data/spec/unit/util/windows/string_spec.rb +0 -58
- data/spec/unit/util/yaml_spec.rb +0 -201
- data/spec/unit/util_spec.rb +0 -949
- data/spec/unit/version_spec.rb +0 -61
- data/spec/watchr.rb +0 -137
- data/tasks/benchmark.rake +0 -180
- data/tasks/cfpropertylist.rake +0 -15
- data/tasks/ci.rake +0 -24
- data/tasks/generate_ast_model.rake +0 -90
- data/tasks/manpages.rake +0 -91
- data/tasks/memwalk.rake +0 -195
- data/tasks/parallel.rake +0 -410
- data/tasks/parser.rake +0 -22
- data/tasks/yard.rake +0 -59
- /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/lib/puppet/defaults.rb
CHANGED
@@ -1,61 +1,61 @@
|
|
1
|
-
|
1
|
+
# frozen_string_literal: true
|
2
2
|
|
3
|
-
|
3
|
+
require_relative '../puppet/util/platform'
|
4
4
|
|
5
|
+
module Puppet
|
5
6
|
def self.default_diffargs
|
6
|
-
|
7
|
-
""
|
8
|
-
else
|
9
|
-
"-u"
|
10
|
-
end
|
7
|
+
'-u'
|
11
8
|
end
|
12
9
|
|
13
10
|
def self.default_digest_algorithm
|
14
|
-
|
11
|
+
'sha256'
|
15
12
|
end
|
16
13
|
|
17
14
|
def self.valid_digest_algorithms
|
18
15
|
Puppet::Util::Platform.fips_enabled? ?
|
19
16
|
%w[sha256 sha384 sha512 sha224] :
|
20
|
-
%w[
|
17
|
+
%w[sha256 sha384 sha512 sha224 md5]
|
21
18
|
end
|
22
19
|
|
23
20
|
def self.default_file_checksum_types
|
24
21
|
Puppet::Util::Platform.fips_enabled? ?
|
25
22
|
%w[sha256 sha384 sha512 sha224] :
|
26
|
-
%w[
|
23
|
+
%w[sha256 sha384 sha512 sha224 md5]
|
27
24
|
end
|
28
25
|
|
29
26
|
def self.valid_file_checksum_types
|
30
27
|
Puppet::Util::Platform.fips_enabled? ?
|
31
28
|
%w[sha256 sha256lite sha384 sha512 sha224 sha1 sha1lite mtime ctime] :
|
32
|
-
%w[
|
29
|
+
%w[sha256 sha256lite sha384 sha512 sha224 sha1 sha1lite md5 md5lite mtime ctime]
|
33
30
|
end
|
34
31
|
|
35
|
-
def self.
|
36
|
-
if Puppet::Util::Platform.windows?
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
32
|
+
def self.default_cadir
|
33
|
+
return "" if Puppet::Util::Platform.windows?
|
34
|
+
|
35
|
+
old_ca_dir = "#{Puppet[:ssldir]}/ca"
|
36
|
+
new_ca_dir = "/etc/puppetlabs/puppetserver/ca"
|
37
|
+
|
38
|
+
if File.exist?(old_ca_dir)
|
39
|
+
if File.symlink?(old_ca_dir)
|
40
|
+
File.readlink(old_ca_dir)
|
41
|
+
else
|
42
|
+
old_ca_dir
|
41
43
|
end
|
42
|
-
path.join(File::PATH_SEPARATOR)
|
43
44
|
else
|
44
|
-
|
45
|
+
new_ca_dir
|
45
46
|
end
|
46
47
|
end
|
47
48
|
|
48
|
-
def self.
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
"#{installdir}\\puppet\\vendor_modules"
|
53
|
-
else
|
54
|
-
nil
|
55
|
-
end
|
56
|
-
else
|
57
|
-
'/opt/puppetlabs/puppet/vendor_modules'
|
49
|
+
def self.default_basemodulepath
|
50
|
+
path = ['$codedir/modules']
|
51
|
+
if (run_mode_dir = Puppet.run_mode.common_module_dir)
|
52
|
+
path << run_mode_dir
|
58
53
|
end
|
54
|
+
path.join(File::PATH_SEPARATOR)
|
55
|
+
end
|
56
|
+
|
57
|
+
def self.default_vendormoduledir
|
58
|
+
Puppet.run_mode.vendor_module_dir
|
59
59
|
end
|
60
60
|
|
61
61
|
############################################################################################
|
@@ -63,9 +63,13 @@ module Puppet
|
|
63
63
|
# see the docs for Settings.define_settings
|
64
64
|
############################################################################################
|
65
65
|
|
66
|
-
AS_DURATION =
|
66
|
+
AS_DURATION = 'This setting can be a time interval in seconds (30 or 30s), minutes (30m), hours (6h), days (2d), or years (5y).'
|
67
67
|
|
68
|
-
|
68
|
+
# @api public
|
69
|
+
# @param args [Puppet::Settings] the settings object to define default settings for
|
70
|
+
# @return void
|
71
|
+
def self.initialize_default_settings!(settings)
|
72
|
+
settings.define_settings(:main,
|
69
73
|
:confdir => {
|
70
74
|
:default => nil,
|
71
75
|
:type => :directory,
|
@@ -100,9 +104,9 @@ module Puppet
|
|
100
104
|
:desc => "The name of the application, if we are running as one. The
|
101
105
|
default is essentially $0 without the path or `.rb`.",
|
102
106
|
}
|
103
|
-
|
107
|
+
)
|
104
108
|
|
105
|
-
define_settings(:main,
|
109
|
+
settings.define_settings(:main,
|
106
110
|
:logdir => {
|
107
111
|
:default => nil,
|
108
112
|
:type => :directory,
|
@@ -114,7 +118,7 @@ module Puppet
|
|
114
118
|
:log_level => {
|
115
119
|
:default => 'notice',
|
116
120
|
:type => :enum,
|
117
|
-
:values => [
|
121
|
+
:values => %w[debug info notice warning err alert emerg crit],
|
118
122
|
:desc => "Default logging level for messages from Puppet. Allowed values are:
|
119
123
|
|
120
124
|
* debug
|
@@ -148,25 +152,44 @@ module Puppet
|
|
148
152
|
values = munge(value)
|
149
153
|
valid = %w[deprecations undefined_variables undefined_resources]
|
150
154
|
invalid = values - (values & valid)
|
151
|
-
|
152
|
-
raise ArgumentError, _("Cannot disable unrecognized warning types %{invalid}.") % { invalid: invalid.
|
153
|
-
' ' + _("Valid values are %{values}.") % { values: valid.
|
155
|
+
unless invalid.empty?
|
156
|
+
raise ArgumentError, _("Cannot disable unrecognized warning types '%{invalid}'.") % { invalid: invalid.join(',') } +
|
157
|
+
' ' + _("Valid values are '%{values}'.") % { values: valid.join(', ') }
|
154
158
|
end
|
155
159
|
end
|
156
160
|
},
|
161
|
+
:skip_logging_catalog_request_destination => {
|
162
|
+
:default => false,
|
163
|
+
:type => :boolean,
|
164
|
+
:desc => "If you wish to suppress the notice of which compiler supplied the
|
165
|
+
catalog",
|
166
|
+
},
|
167
|
+
:merge_dependency_warnings => {
|
168
|
+
:default => false,
|
169
|
+
:type => :boolean,
|
170
|
+
:desc => "Whether to merge class-level dependency failure warnings.
|
171
|
+
|
172
|
+
When a class has a failed dependency, every resource in the class
|
173
|
+
generates a notice level message about the dependency failure,
|
174
|
+
and a warning level message about skipping the resource.
|
175
|
+
|
176
|
+
If true, all messages caused by a class dependency failure are merged
|
177
|
+
into one message associated with the class.
|
178
|
+
",
|
179
|
+
},
|
157
180
|
:strict => {
|
158
|
-
:default => :
|
181
|
+
:default => :error,
|
159
182
|
:type => :symbolic_enum,
|
160
183
|
:values => [:off, :warning, :error],
|
161
184
|
:desc => "The strictness level of puppet. Allowed values are:
|
162
185
|
|
163
186
|
* off - do not perform extra validation, do not report
|
164
|
-
* warning - perform extra validation, report as warning
|
165
|
-
* error - perform extra validation, fail with error
|
187
|
+
* warning - perform extra validation, report as warning
|
188
|
+
* error - perform extra validation, fail with error (default)
|
166
189
|
|
167
190
|
The strictness level is for both language semantics and runtime
|
168
191
|
evaluation validation. In addition to controlling the behavior with
|
169
|
-
this
|
192
|
+
this primary server switch some individual warnings may also be controlled
|
170
193
|
by the disable_warnings setting.
|
171
194
|
|
172
195
|
No new validations will be added to a micro (x.y.z) release,
|
@@ -179,21 +202,21 @@ module Puppet
|
|
179
202
|
end
|
180
203
|
},
|
181
204
|
:disable_i18n => {
|
182
|
-
:default =>
|
205
|
+
:default => true,
|
183
206
|
:type => :boolean,
|
184
207
|
:desc => "If true, turns off all translations of Puppet and module
|
185
208
|
log messages, which affects error, warning, and info log messages,
|
186
209
|
as well as any translations in the report and CLI.",
|
187
210
|
:hook => proc do |value|
|
188
211
|
if value
|
189
|
-
|
212
|
+
require_relative '../puppet/gettext/stubs'
|
190
213
|
Puppet::GettextConfig.disable_gettext
|
191
214
|
end
|
192
215
|
end
|
193
216
|
}
|
194
217
|
)
|
195
218
|
|
196
|
-
define_settings(:main,
|
219
|
+
settings.define_settings(:main,
|
197
220
|
:priority => {
|
198
221
|
:default => nil,
|
199
222
|
:type => :priority,
|
@@ -206,31 +229,43 @@ module Puppet
|
|
206
229
|
:trace => {
|
207
230
|
:default => false,
|
208
231
|
:type => :boolean,
|
209
|
-
:desc => "Whether to print stack traces on some errors
|
232
|
+
:desc => "Whether to print stack traces on some errors. Will print
|
233
|
+
internal Ruby stack trace interleaved with Puppet function frames.",
|
210
234
|
:hook => proc do |value|
|
211
235
|
# Enable or disable Facter's trace option too
|
212
|
-
|
236
|
+
Puppet.runtime[:facter].trace(value)
|
213
237
|
end
|
214
238
|
},
|
239
|
+
:puppet_trace => {
|
240
|
+
:default => false,
|
241
|
+
:type => :boolean,
|
242
|
+
:desc => "Whether to print the Puppet stack trace on some errors.
|
243
|
+
This is a noop if `trace` is also set.",
|
244
|
+
},
|
215
245
|
:profile => {
|
216
246
|
:default => false,
|
217
247
|
:type => :boolean,
|
218
248
|
:desc => "Whether to enable experimental performance profiling",
|
219
249
|
},
|
220
|
-
:
|
250
|
+
:versioned_environment_dirs => {
|
221
251
|
:default => false,
|
222
252
|
:type => :boolean,
|
223
|
-
:desc => "Whether or not to
|
224
|
-
|
225
|
-
|
253
|
+
:desc => "Whether or not to look for versioned environment directories,
|
254
|
+
symlinked from `$environmentpath/<environment>`. This is an experimental
|
255
|
+
feature and should be used with caution."
|
226
256
|
},
|
227
257
|
:static_catalogs => {
|
228
258
|
:default => true,
|
229
259
|
:type => :boolean,
|
230
260
|
:desc => "Whether to compile a [static catalog](https://puppet.com/docs/puppet/latest/static_catalogs.html#enabling-or-disabling-static-catalogs),
|
231
|
-
which occurs only on
|
261
|
+
which occurs only on Puppet Server when the `code-id-command` and
|
232
262
|
`code-content-command` settings are configured in its `puppetserver.conf` file.",
|
233
263
|
},
|
264
|
+
:settings_catalog => {
|
265
|
+
:default => true,
|
266
|
+
:type => :boolean,
|
267
|
+
:desc => "Whether to compile and apply the settings catalog",
|
268
|
+
},
|
234
269
|
:strict_environment_mode => {
|
235
270
|
:default => false,
|
236
271
|
:type => :boolean,
|
@@ -294,8 +329,7 @@ module Puppet
|
|
294
329
|
:default => "ansi",
|
295
330
|
:type => :string,
|
296
331
|
:desc => "Whether to use colors when logging to the console. Valid values are
|
297
|
-
`ansi` (equivalent to `true`), `html`, and `false`, which produces no color.
|
298
|
-
Defaults to false on Windows, as its console does not support ansi colors.",
|
332
|
+
`ansi` (equivalent to `true`), `html`, and `false`, which produces no color."
|
299
333
|
},
|
300
334
|
:mkusers => {
|
301
335
|
:default => false,
|
@@ -305,7 +339,8 @@ module Puppet
|
|
305
339
|
:manage_internal_file_permissions => {
|
306
340
|
:default => ! Puppet::Util::Platform.windows?,
|
307
341
|
:type => :boolean,
|
308
|
-
:desc => "Whether Puppet should manage the owner, group, and mode of files it uses internally
|
342
|
+
:desc => "Whether Puppet should manage the owner, group, and mode of files it uses internally.
|
343
|
+
**Note**: For Windows agents, the default is `false` for versions 4.10.13 and greater, versions 5.5.6 and greater, and versions 6.0 and greater.",
|
309
344
|
},
|
310
345
|
:onetime => {
|
311
346
|
:default => false,
|
@@ -321,14 +356,16 @@ module Puppet
|
|
321
356
|
from the parent process.
|
322
357
|
|
323
358
|
This setting can only be set in the `[main]` section of puppet.conf; it cannot
|
324
|
-
be set in `[
|
359
|
+
be set in `[server]`, `[agent]`, or an environment config section.",
|
325
360
|
:call_hook => :on_define_and_write,
|
326
361
|
:hook => proc do |value|
|
327
|
-
|
328
|
-
|
329
|
-
paths =
|
362
|
+
ENV['PATH'] = '' if ENV['PATH'].nil?
|
363
|
+
ENV['PATH'] = value unless value == 'none'
|
364
|
+
paths = ENV['PATH'].split(File::PATH_SEPARATOR)
|
330
365
|
Puppet::Util::Platform.default_paths.each do |path|
|
331
|
-
|
366
|
+
next if paths.include?(path)
|
367
|
+
|
368
|
+
ENV['PATH'] = ENV.fetch('PATH', nil) + File::PATH_SEPARATOR + path
|
332
369
|
end
|
333
370
|
value
|
334
371
|
end
|
@@ -346,13 +383,13 @@ module Puppet
|
|
346
383
|
:default => "production",
|
347
384
|
:desc => "The environment in which Puppet is running. For clients,
|
348
385
|
such as `puppet agent`, this determines the environment itself, which
|
349
|
-
Puppet uses to find modules and much more. For servers, such as `puppet
|
386
|
+
Puppet uses to find modules and much more. For servers, such as `puppet server`,
|
350
387
|
this provides the default environment for nodes that Puppet knows nothing about.
|
351
388
|
|
352
389
|
When defining an environment in the `[agent]` section, this refers to the
|
353
|
-
environment that the agent requests from the
|
390
|
+
environment that the agent requests from the primary server. The environment doesn't
|
354
391
|
have to exist on the local filesystem because the agent fetches it from the
|
355
|
-
|
392
|
+
primary server. This definition is used when running `puppet agent`.
|
356
393
|
|
357
394
|
When defined in the `[user]` section, the environment refers to the path that
|
358
395
|
Puppet uses to search for code and modules related to its execution. This
|
@@ -376,6 +413,30 @@ module Puppet
|
|
376
413
|
<https://puppet.com/docs/puppet/latest/environments_about.html>",
|
377
414
|
:type => :path,
|
378
415
|
},
|
416
|
+
:report_configured_environmentpath => {
|
417
|
+
:type => :boolean,
|
418
|
+
:default => true,
|
419
|
+
:desc => <<-'EOT'
|
420
|
+
When versioned_environment_dirs is `true` Puppet will readlink the environmentpath
|
421
|
+
when constructing the environment's modulepath. The full readlinked path is referred
|
422
|
+
to as the "resolved path" and the configured path potentially containing symlinks is
|
423
|
+
the "configured path". When reporting where resources come from users may choose
|
424
|
+
between the configured or resolved path.
|
425
|
+
|
426
|
+
When set to false, the resolved paths are reported instead of the configured paths.
|
427
|
+
EOT
|
428
|
+
},
|
429
|
+
:use_last_environment => {
|
430
|
+
:type => :boolean,
|
431
|
+
:default => true,
|
432
|
+
:desc => <<-'EOT'
|
433
|
+
Puppet saves both the initial and converged environment in the last_run_summary file.
|
434
|
+
If they differ, and this setting is set to true, we will use the last converged
|
435
|
+
environment and skip the node request.
|
436
|
+
|
437
|
+
When set to false, we will do the node request and ignore the environment data from the last_run_summary file.
|
438
|
+
EOT
|
439
|
+
},
|
379
440
|
:always_retry_plugins => {
|
380
441
|
:type => :boolean,
|
381
442
|
:default => true,
|
@@ -395,10 +456,10 @@ module Puppet
|
|
395
456
|
feature. This behavior is almost always appropriate for the server,
|
396
457
|
and can result in a significant performance improvement for types and
|
397
458
|
features that are checked frequently.
|
398
|
-
|
459
|
+
EOT
|
399
460
|
},
|
400
461
|
:diff_args => {
|
401
|
-
:default =>
|
462
|
+
:default => -> { default_diffargs },
|
402
463
|
:desc => "Which arguments to pass to the diff command when printing differences between
|
403
464
|
files. The command to use can be chosen with the `diff` setting.",
|
404
465
|
},
|
@@ -420,19 +481,20 @@ module Puppet
|
|
420
481
|
},
|
421
482
|
:daemonize => {
|
422
483
|
:type => :boolean,
|
423
|
-
:default =>
|
484
|
+
:default => !Puppet::Util::Platform.windows?,
|
424
485
|
:desc => "Whether to send the process into the background. This defaults
|
425
486
|
to true on POSIX systems, and to false on Windows (where Puppet
|
426
487
|
currently cannot daemonize).",
|
427
488
|
:short => "D",
|
428
489
|
:hook => proc do |value|
|
429
|
-
|
430
|
-
|
431
|
-
|
432
|
-
|
490
|
+
if value and Puppet::Util::Platform.windows?
|
491
|
+
raise "Cannot daemonize on Windows"
|
492
|
+
end
|
493
|
+
end
|
433
494
|
},
|
434
495
|
:maximum_uid => {
|
435
|
-
:default =>
|
496
|
+
:default => 4_294_967_290,
|
497
|
+
:type => :integer,
|
436
498
|
:desc => "The maximum allowed UID. Some platforms use negative UIDs
|
437
499
|
but then ship with tools that do not know how to handle signed ints,
|
438
500
|
so the UIDs show up as huge numbers that can then not be fed back into
|
@@ -501,15 +563,15 @@ module Puppet
|
|
501
563
|
:hiera_config => {
|
502
564
|
:default => lambda do
|
503
565
|
config = nil
|
504
|
-
codedir =
|
566
|
+
codedir = settings[:codedir]
|
505
567
|
if codedir.is_a?(String)
|
506
568
|
config = File.expand_path(File.join(codedir, 'hiera.yaml'))
|
507
569
|
config = nil unless Puppet::FileSystem.exist?(config)
|
508
570
|
end
|
509
|
-
config = File.expand_path(File.join(
|
571
|
+
config = File.expand_path(File.join(settings[:confdir], 'hiera.yaml')) if config.nil?
|
510
572
|
config
|
511
573
|
end,
|
512
|
-
:desc => "The hiera configuration file. Puppet only reads this file on startup, so you must restart the puppet
|
574
|
+
:desc => "The hiera configuration file. Puppet only reads this file on startup, so you must restart the puppet server every time you edit it.",
|
513
575
|
:type => :file,
|
514
576
|
},
|
515
577
|
:binder_config => {
|
@@ -534,6 +596,25 @@ module Puppet
|
|
534
596
|
:default => 'facter',
|
535
597
|
:desc => "The node facts terminus.",
|
536
598
|
},
|
599
|
+
:trusted_external_command => {
|
600
|
+
:default => nil,
|
601
|
+
:type => :file_or_directory,
|
602
|
+
:desc => "The external trusted facts script or directory to use.
|
603
|
+
This setting's value can be set to the path to an executable command that
|
604
|
+
can produce external trusted facts or to a directory containing those
|
605
|
+
executable commands. The command(s) must:
|
606
|
+
|
607
|
+
* Take the name of a node as a command-line argument.
|
608
|
+
* Return a JSON hash with the external trusted facts for this node.
|
609
|
+
* For unknown or invalid nodes, exit with a non-zero exit code.
|
610
|
+
|
611
|
+
If the setting points to an executable command, then the external trusted
|
612
|
+
facts will be stored in the 'external' key of the trusted facts hash. Otherwise
|
613
|
+
for each executable file in the directory, the external trusted facts will be
|
614
|
+
stored in the `<basename>` key of the `trusted['external']` hash. For example,
|
615
|
+
if the files foo.rb and bar.sh are in the directory, then `trusted['external']`
|
616
|
+
will be the hash `{ 'foo' => <foo.rb output>, 'bar' => <bar.sh output> }`.",
|
617
|
+
},
|
537
618
|
:default_file_terminus => {
|
538
619
|
:type => :terminus,
|
539
620
|
:default => "rest",
|
@@ -544,12 +625,14 @@ module Puppet
|
|
544
625
|
},
|
545
626
|
:http_proxy_host => {
|
546
627
|
:default => "none",
|
547
|
-
:desc => "The HTTP proxy host to use for outgoing connections.
|
628
|
+
:desc => "The HTTP proxy host to use for outgoing connections. The proxy will be bypassed if
|
629
|
+
the server's hostname matches the NO_PROXY environment variable or `no_proxy` setting. Note: You
|
548
630
|
may need to use a FQDN for the server hostname when using a proxy. Environment variable
|
549
|
-
http_proxy or HTTP_PROXY will override this value",
|
631
|
+
http_proxy or HTTP_PROXY will override this value. ",
|
550
632
|
},
|
551
633
|
:http_proxy_port => {
|
552
634
|
:default => 3128,
|
635
|
+
:type => :port,
|
553
636
|
:desc => "The HTTP proxy port to use for outgoing connections",
|
554
637
|
},
|
555
638
|
:http_proxy_user => {
|
@@ -559,7 +642,7 @@ module Puppet
|
|
559
642
|
:http_proxy_password =>{
|
560
643
|
:default => "none",
|
561
644
|
:hook => proc do |value|
|
562
|
-
if
|
645
|
+
if value =~ %r{[@!# /]}
|
563
646
|
raise "Passwords set in the http_proxy_password setting must be valid as part of a URL, and any reserved characters must be URL-encoded. We received: #{value}"
|
564
647
|
end
|
565
648
|
end,
|
@@ -570,6 +653,10 @@ module Puppet
|
|
570
653
|
contains any characters with special meanings in URLs (as specified by RFC 3986
|
571
654
|
section 2.2), they must be URL-encoded. (For example, `#` would become `%23`.)",
|
572
655
|
},
|
656
|
+
:no_proxy => {
|
657
|
+
:default => "localhost, 127.0.0.1",
|
658
|
+
:desc => "List of host or domain names that should not go through `http_proxy_host`. Environment variable no_proxy or NO_PROXY will override this value. Names can be specified as an FQDN `host.example.com`, wildcard `*.example.com`, dotted domain `.example.com`, or suffix `example.com`.",
|
659
|
+
},
|
573
660
|
:http_keepalive_timeout => {
|
574
661
|
:default => "4s",
|
575
662
|
:type => :duration,
|
@@ -604,38 +691,52 @@ module Puppet
|
|
604
691
|
:type => :duration,
|
605
692
|
:desc => "The minimum time to wait between checking for updates in
|
606
693
|
configuration files. This timeout determines how quickly Puppet checks whether
|
607
|
-
a file (such as manifests or
|
694
|
+
a file (such as manifests or puppet.conf) has changed on disk. The default will
|
695
|
+
change in a future release to be 'unlimited', requiring a reload of the Puppet
|
696
|
+
service to pick up changes to its internal configuration. Currently we do not
|
697
|
+
accept a value of 'unlimited'. To reparse files within an environment in
|
698
|
+
Puppet Server please use the environment_cache endpoint",
|
699
|
+
:hook => proc do |val|
|
700
|
+
unless [0, 15, '15s'].include?(val)
|
701
|
+
Puppet.deprecation_warning(<<-WARNING)
|
702
|
+
Fine grained control of filetimeouts is deprecated. In future
|
703
|
+
releases this value will only determine if file content is cached.
|
704
|
+
|
705
|
+
Valid values are 0 (never cache) and 15 (15 second minimum wait time).
|
706
|
+
WARNING
|
707
|
+
end
|
708
|
+
end
|
608
709
|
},
|
609
710
|
:environment_timeout => {
|
610
711
|
:default => "0",
|
611
712
|
:type => :ttl,
|
612
|
-
:desc => "How long the Puppet
|
713
|
+
:desc => "How long the Puppet server should cache data it loads from an
|
613
714
|
environment.
|
614
|
-
|
715
|
+
|
615
716
|
A value of `0` will disable caching. This setting can also be set to
|
616
|
-
`unlimited`, which will cache environments until the
|
617
|
-
or told to refresh the cache.
|
717
|
+
`unlimited`, which will cache environments until the server is restarted
|
718
|
+
or told to refresh the cache. All other values will result in Puppet
|
719
|
+
server evicting environments that haven't been used within the last
|
720
|
+
`environment_timeout` seconds.
|
618
721
|
|
619
722
|
You should change this setting once your Puppet deployment is doing
|
620
723
|
non-trivial work. We chose the default value of `0` because it lets new
|
621
724
|
users update their code without any extra steps, but it lowers the
|
622
|
-
performance of your Puppet
|
725
|
+
performance of your Puppet server. We recommend either:
|
623
726
|
|
624
|
-
|
625
|
-
|
727
|
+
* Setting this to `unlimited` and explicitly refreshing your Puppet server
|
728
|
+
as part of your code deployment process.
|
626
729
|
|
627
|
-
*
|
628
|
-
|
629
|
-
|
630
|
-
|
631
|
-
application server. Passenger lets you touch a `restart.txt` file to
|
632
|
-
refresh an application without restarting Apache; see the Passenger docs
|
633
|
-
for details.
|
730
|
+
* Setting this to a number that will keep your most actively used
|
731
|
+
environments cached, but allow testing environments to fall out of the
|
732
|
+
cache and reduce memory usage. A value of 3 minutes (3m) is a reasonable
|
733
|
+
value.
|
634
734
|
|
635
|
-
|
636
|
-
|
637
|
-
|
638
|
-
|
735
|
+
Once you set `environment_timeout` to a non-zero value, you need to tell
|
736
|
+
Puppet server to read new code from disk using the `environment-cache` API
|
737
|
+
endpoint after you deploy new code. See the docs for the Puppet Server
|
738
|
+
[administrative API](https://puppet.com/docs/puppetserver/latest/admin-api/v1/environment-cache.html).
|
739
|
+
"
|
639
740
|
},
|
640
741
|
:environment_data_provider => {
|
641
742
|
:desc => "The name of a registered environment data provider used when obtaining environment
|
@@ -676,10 +777,16 @@ module Puppet
|
|
676
777
|
:owner => "service",
|
677
778
|
:group => "service",
|
678
779
|
:desc => "The directory where catalog previews per node are generated."
|
780
|
+
},
|
781
|
+
:location_trusted => {
|
782
|
+
:default => false,
|
783
|
+
:type => :boolean,
|
784
|
+
:desc => "This will allow sending the name + password and the cookie header to all hosts that puppet may redirect to.
|
785
|
+
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."
|
679
786
|
}
|
680
787
|
)
|
681
788
|
|
682
|
-
|
789
|
+
settings.define_settings(:module_tool,
|
683
790
|
:module_repository => {
|
684
791
|
:default => 'https://forgeapi.puppet.com',
|
685
792
|
:desc => "The module repository",
|
@@ -698,19 +805,18 @@ module Puppet
|
|
698
805
|
}
|
699
806
|
)
|
700
807
|
|
701
|
-
|
808
|
+
settings.define_settings(
|
702
809
|
:main,
|
703
|
-
|
704
810
|
# We have to downcase the fqdn, because the current ssl stuff (as opposed to in master) doesn't have good facilities for
|
705
811
|
# manipulating naming.
|
706
812
|
:certname => {
|
707
|
-
:default =>
|
813
|
+
:default => -> { Puppet::Settings.default_certname.downcase },
|
708
814
|
:desc => "The name to use when handling certificates. When a node
|
709
|
-
requests a certificate from the CA
|
815
|
+
requests a certificate from the CA Puppet Server, it uses the value of the
|
710
816
|
`certname` setting as its requested Subject CN.
|
711
817
|
|
712
818
|
This is the name used when managing a node's permissions in
|
713
|
-
[auth.conf](https://puppet.com/docs/
|
819
|
+
Puppet Server's [auth.conf](https://puppet.com/docs/puppetserver/latest/config_file_auth.html).
|
714
820
|
In most cases, it is also used as the node's name when matching
|
715
821
|
[node definitions](https://puppet.com/docs/puppet/latest/lang_node_definitions.html)
|
716
822
|
and requesting data from an ENC. (This can be changed with the `node_name_value`
|
@@ -727,8 +833,13 @@ module Puppet
|
|
727
833
|
* The special value `ca` is reserved, and can't be used as the certname
|
728
834
|
for a normal node.
|
729
835
|
|
836
|
+
**Note:** You must set the certname in the main section of the puppet.conf file. Setting it in a different section causes errors.
|
837
|
+
|
730
838
|
Defaults to the node's fully qualified domain name.",
|
731
|
-
:
|
839
|
+
:call_hook => :on_initialize_and_write,
|
840
|
+
:hook => proc { |value|
|
841
|
+
raise(ArgumentError, _("Certificate names must be lower case")) unless value == value.downcase
|
842
|
+
}},
|
732
843
|
:dns_alt_names => {
|
733
844
|
:default => '',
|
734
845
|
:desc => <<EOT,
|
@@ -749,8 +860,8 @@ names.
|
|
749
860
|
**Note:** The list of alternate names is locked in when the server's
|
750
861
|
certificate is signed. If you need to change the list later, you can't just
|
751
862
|
change this setting; you also need to regenerate the certificate. For more
|
752
|
-
information on that process, see the
|
753
|
-
(https://puppet.com/docs/puppet/latest/ssl_regenerate_certificates.html).
|
863
|
+
information on that process, see the
|
864
|
+
[cert regen docs](https://puppet.com/docs/puppet/latest/ssl_regenerate_certificates.html).
|
754
865
|
|
755
866
|
To see all the alternate names your servers are using, log into your CA server
|
756
867
|
and run `puppetserver ca list --all`, then check the output for `(alt names: ...)`.
|
@@ -764,7 +875,7 @@ EOT
|
|
764
875
|
:desc => <<EOT
|
765
876
|
An optional file containing custom attributes to add to certificate signing
|
766
877
|
requests (CSRs). You should ensure that this file does not exist on your CA
|
767
|
-
|
878
|
+
Puppet Server; if it does, unwanted certificate extensions may leak into
|
768
879
|
certificates created with the `puppetserver ca generate` command.
|
769
880
|
|
770
881
|
If present, this file must be a YAML hash containing a `custom_attributes` key
|
@@ -779,13 +890,17 @@ This is useful for embedding a pre-shared key for autosigning policy executables
|
|
779
890
|
("challenge password") OID.
|
780
891
|
|
781
892
|
Extension requests will be permanently embedded in the final certificate.
|
782
|
-
Extension OIDs must be in the "ppRegCertExt" (`1.3.6.1.4.1.34380.1.1`)
|
783
|
-
"ppPrivCertExt" (`1.3.6.1.4.1.34380.1.2`)
|
893
|
+
Extension OIDs must be in the "ppRegCertExt" (`1.3.6.1.4.1.34380.1.1`),
|
894
|
+
"ppPrivCertExt" (`1.3.6.1.4.1.34380.1.2`), or
|
895
|
+
"ppAuthCertExt" (`1.3.6.1.4.1.34380.1.3`) OID arcs. The ppRegCertExt arc is
|
784
896
|
reserved for four of the most common pieces of data to embed: `pp_uuid` (`.1`),
|
785
897
|
`pp_instance_id` (`.2`), `pp_image_name` (`.3`), and `pp_preshared_key` (`.4`)
|
786
898
|
--- in the YAML file, these can be referred to by their short descriptive names
|
787
899
|
instead of their full OID. The ppPrivCertExt arc is unregulated, and can be used
|
788
|
-
for site-specific extensions.
|
900
|
+
for site-specific extensions. The ppAuthCert arc is reserved for two pieces of
|
901
|
+
data to embed: `pp_authorization` (`.1`) and `pp_auth_role` (`.13`). As with
|
902
|
+
ppRegCertExt, in the YAML file, these can be referred to by their short
|
903
|
+
descriptive name instead of their full OID.
|
789
904
|
EOT
|
790
905
|
},
|
791
906
|
:certdir => {
|
@@ -804,6 +919,11 @@ EOT
|
|
804
919
|
:group => "service",
|
805
920
|
:desc => "Where SSL certificates are kept."
|
806
921
|
},
|
922
|
+
:ssl_lockfile => {
|
923
|
+
:default => "$ssldir/ssl.lock",
|
924
|
+
:type => :string,
|
925
|
+
:desc => "A lock file to indicate that the ssl bootstrap process is currently in progress.",
|
926
|
+
},
|
807
927
|
:publickeydir => {
|
808
928
|
:default => "$ssldir/public_keys",
|
809
929
|
:type => :directory,
|
@@ -846,13 +966,13 @@ EOT
|
|
846
966
|
Generally unused."
|
847
967
|
},
|
848
968
|
:hostcsr => {
|
849
|
-
:default => "$
|
969
|
+
:default => "$requestdir/$certname.pem",
|
850
970
|
:type => :file,
|
851
971
|
:mode => "0644",
|
852
972
|
:owner => "service",
|
853
973
|
:group => "service",
|
854
|
-
:
|
855
|
-
|
974
|
+
:desc => "Where individual hosts store their certificate request (CSR)
|
975
|
+
while waiting for the CA to issue their certificate."
|
856
976
|
},
|
857
977
|
:hostcert => {
|
858
978
|
:default => "$certdir/$certname.pem",
|
@@ -886,25 +1006,22 @@ EOT
|
|
886
1006
|
:group => "service",
|
887
1007
|
:desc => "Where each client stores the CA certificate."
|
888
1008
|
},
|
889
|
-
:
|
890
|
-
:
|
891
|
-
:
|
892
|
-
:
|
893
|
-
|
894
|
-
|
895
|
-
|
896
|
-
|
897
|
-
|
898
|
-
|
899
|
-
|
900
|
-
:
|
901
|
-
|
902
|
-
|
903
|
-
|
904
|
-
|
905
|
-
considered authentic unless they possess a certificate issued by an authority
|
906
|
-
listed in this file. If this setting has no value then the Puppet master's CA
|
907
|
-
certificate (localcacert) will be used."
|
1009
|
+
:ca_fingerprint => {
|
1010
|
+
:default => nil,
|
1011
|
+
:type => :string,
|
1012
|
+
:desc => "The expected fingerprint of the CA certificate. If specified, the agent
|
1013
|
+
will compare the CA certificate fingerprint that it downloads against this value
|
1014
|
+
and reject the CA certificate if the values do not match. This only applies
|
1015
|
+
during the first download of the CA certificate."
|
1016
|
+
},
|
1017
|
+
:ssl_trust_store => {
|
1018
|
+
:default => nil,
|
1019
|
+
:type => :file,
|
1020
|
+
:desc => "A file containing CA certificates in PEM format that puppet should trust
|
1021
|
+
when making HTTPS requests. This **only** applies to https requests to non-puppet
|
1022
|
+
infrastructure, such as retrieving file metadata and content from https file sources,
|
1023
|
+
puppet module tool and the 'http' report processor. This setting is ignored when
|
1024
|
+
making requests to puppet:// URLs such as catalog and report requests.",
|
908
1025
|
},
|
909
1026
|
:hostcrl => {
|
910
1027
|
:default => "$ssldir/crl.pem",
|
@@ -922,25 +1039,46 @@ EOT
|
|
922
1039
|
Whether certificate revocation checking should be enabled, and what level of
|
923
1040
|
checking should be performed.
|
924
1041
|
|
925
|
-
When certificate revocation is enabled Puppet expects the contents of its CRL
|
926
|
-
to be one or more PEM
|
927
|
-
bundle CRLs for all CAs in the chain of trust must be included in the crl file
|
928
|
-
|
929
|
-
the leaf CA.
|
1042
|
+
When certificate revocation is enabled, Puppet expects the contents of its CRL
|
1043
|
+
to be one or more PEM-encoded CRLs concatenated together. When using a cert
|
1044
|
+
bundle, CRLs for all CAs in the chain of trust must be included in the crl file.
|
1045
|
+
The chain should be ordered from least to most authoritative, with the first CRL
|
1046
|
+
listed being for the root of the chain and the last being for the leaf CA.
|
930
1047
|
|
931
|
-
When certificate_revocation is set to 'true' or 'chain', Puppet
|
1048
|
+
When certificate_revocation is set to 'true' or 'chain', Puppet ensures
|
932
1049
|
that each CA in the chain of trust has not been revoked by its issuing CA.
|
933
1050
|
|
934
|
-
When certificate_revocation is set to 'leaf', Puppet
|
935
|
-
the issuing CA's revocation list but not verify the revocation status
|
936
|
-
issuing CA or any CA above it within the chain of trust.
|
1051
|
+
When certificate_revocation is set to 'leaf', Puppet verifies certs against
|
1052
|
+
the issuing CA's revocation list, but it does not verify the revocation status
|
1053
|
+
of the issuing CA or any CA above it within the chain of trust.
|
937
1054
|
|
938
|
-
When certificate_revocation is set to 'false', Puppet
|
939
|
-
certificate revocation checking and
|
1055
|
+
When certificate_revocation is set to 'false', Puppet disables all
|
1056
|
+
certificate revocation checking and does not attempt to download the CRL.
|
940
1057
|
EOT
|
941
1058
|
},
|
1059
|
+
:ciphers => {
|
1060
|
+
:default => 'ECDHE-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',
|
1061
|
+
:type => :string,
|
1062
|
+
:desc => "The list of ciphersuites for TLS connections initiated by puppet. The
|
1063
|
+
default value is chosen to support TLS 1.0 and up, but can be made
|
1064
|
+
more restrictive if needed. The ciphersuites must be specified in OpenSSL
|
1065
|
+
format, not IANA."
|
1066
|
+
},
|
1067
|
+
:key_type => {
|
1068
|
+
:default => 'rsa',
|
1069
|
+
:type => :enum,
|
1070
|
+
:values => %w[rsa ec],
|
1071
|
+
:desc => "The type of private key. Valid values are `rsa` and `ec`. Default is `rsa`."
|
1072
|
+
},
|
1073
|
+
:named_curve => {
|
1074
|
+
:default => 'prime256v1',
|
1075
|
+
:type => :string,
|
1076
|
+
:desc => "The short name for the EC curve used to generate the EC private key. Valid
|
1077
|
+
values must be one of the curves in `OpenSSL::PKey::EC.builtin_curves`.
|
1078
|
+
Default is `prime256v1`."
|
1079
|
+
},
|
942
1080
|
:digest_algorithm => {
|
943
|
-
:default =>
|
1081
|
+
:default => -> { default_digest_algorithm },
|
944
1082
|
:type => :enum,
|
945
1083
|
:values => valid_digest_algorithms,
|
946
1084
|
:desc => "Which digest algorithm to use for file resources and the filebucket.
|
@@ -948,7 +1086,7 @@ EOT
|
|
948
1086
|
#{default_digest_algorithm}.",
|
949
1087
|
},
|
950
1088
|
:supported_checksum_types => {
|
951
|
-
:default =>
|
1089
|
+
:default => -> { default_file_checksum_types },
|
952
1090
|
:type => :array,
|
953
1091
|
:desc => "Checksum types supported by this agent for use in file resources of a
|
954
1092
|
static catalog. Values must be comma-separated. Valid types are
|
@@ -958,7 +1096,7 @@ EOT
|
|
958
1096
|
values = munge(value)
|
959
1097
|
|
960
1098
|
invalid = values - Puppet.valid_file_checksum_types
|
961
|
-
|
1099
|
+
unless invalid.empty?
|
962
1100
|
raise ArgumentError, _("Invalid value '%{value}' for parameter %{name}. Allowed values are '%{allowed_values}'") % {
|
963
1101
|
value: invalid.first, name: @name, allowed_values: Puppet.valid_file_checksum_types.join("', '")
|
964
1102
|
}
|
@@ -969,21 +1107,21 @@ EOT
|
|
969
1107
|
:type => :string,
|
970
1108
|
:desc => "Where to send log messages. Choose between 'syslog' (the POSIX syslog
|
971
1109
|
service), 'eventlog' (the Windows Event Log), 'console', or the path to a log
|
972
|
-
file."
|
1110
|
+
file. Multiple destinations can be set using a comma separated list (eg: `/path/file1,console,/path/file2`)"
|
973
1111
|
# Sure would be nice to set the Puppet::Util::Log destination here in an :on_initialize_and_write hook,
|
974
1112
|
# unfortunately we have a large number of tests that rely on the logging not resetting itself when the
|
975
1113
|
# settings are initialized as they test what gets logged during settings initialization.
|
976
1114
|
}
|
977
1115
|
)
|
978
1116
|
|
979
|
-
define_settings(
|
1117
|
+
settings.define_settings(
|
980
1118
|
:ca,
|
981
1119
|
:ca_name => {
|
982
1120
|
:default => "Puppet CA: $certname",
|
983
1121
|
:desc => "The name to use the Certificate Authority certificate.",
|
984
1122
|
},
|
985
1123
|
:cadir => {
|
986
|
-
:default =>
|
1124
|
+
:default => -> { default_cadir },
|
987
1125
|
:type => :directory,
|
988
1126
|
:desc => "The root directory for the certificate authority.",
|
989
1127
|
},
|
@@ -1026,7 +1164,7 @@ EOT
|
|
1026
1164
|
:default => "$confdir/autosign.conf",
|
1027
1165
|
:type => :autosign,
|
1028
1166
|
:desc => "Whether (and how) to autosign certificate requests. This setting
|
1029
|
-
is only relevant on a
|
1167
|
+
is only relevant on a Puppet Server acting as a certificate authority (CA).
|
1030
1168
|
|
1031
1169
|
Valid values are true (autosigns all certificate requests; not recommended),
|
1032
1170
|
false (disables autosigning certificates), or the absolute path to a file.
|
@@ -1037,7 +1175,7 @@ EOT
|
|
1037
1175
|
file, it will be treated as a policy executable; otherwise, it will be
|
1038
1176
|
treated as a config file.
|
1039
1177
|
|
1040
|
-
If a custom policy executable is configured, the CA
|
1178
|
+
If a custom policy executable is configured, the CA Puppet Server will run it
|
1041
1179
|
every time it receives a CSR. The executable will be passed the subject CN of the
|
1042
1180
|
request _as a command line argument,_ and the contents of the CSR in PEM format
|
1043
1181
|
_on stdin._ It should exit with a status of 0 if the cert should be autosigned
|
@@ -1048,12 +1186,14 @@ EOT
|
|
1048
1186
|
the request.
|
1049
1187
|
|
1050
1188
|
For info on autosign configuration files, see
|
1051
|
-
[the guide to Puppet's config files](https://puppet.com/docs/puppet/latest/
|
1189
|
+
[the guide to Puppet's config files](https://puppet.com/docs/puppet/latest/config_file_autosign.html).",
|
1052
1190
|
},
|
1053
1191
|
:allow_duplicate_certs => {
|
1054
1192
|
:default => false,
|
1055
1193
|
:type => :boolean,
|
1056
|
-
:desc => "Whether to allow a new certificate request to overwrite an existing
|
1194
|
+
:desc => "Whether to allow a new certificate request to overwrite an existing
|
1195
|
+
certificate request. If true, then the old certificate must be cleaned using
|
1196
|
+
`puppetserver ca clean`, and the new request signed using `puppetserver ca sign`."
|
1057
1197
|
},
|
1058
1198
|
:ca_ttl => {
|
1059
1199
|
:default => "5y",
|
@@ -1061,8 +1201,61 @@ EOT
|
|
1061
1201
|
:desc => "The default TTL for new certificates.
|
1062
1202
|
#{AS_DURATION}",
|
1063
1203
|
},
|
1204
|
+
:ca_refresh_interval => {
|
1205
|
+
:default => "1d",
|
1206
|
+
:type => :duration,
|
1207
|
+
:desc => "How often the Puppet agent refreshes its local CA certs. By
|
1208
|
+
default the CA certs are refreshed once every 24 hours. If a different
|
1209
|
+
duration is specified, then the agent will refresh its CA certs whenever
|
1210
|
+
it next runs and the elapsed time since the certs were last refreshed
|
1211
|
+
exceeds the duration.
|
1212
|
+
|
1213
|
+
In general, the duration should be greater than the `runinterval`.
|
1214
|
+
Setting it to 0 or an equal or lesser value than `runinterval`,
|
1215
|
+
will cause the CA certs to be refreshed on every run.
|
1216
|
+
|
1217
|
+
If the agent downloads new CA certs, the agent will use it for subsequent
|
1218
|
+
network requests. If the refresh request fails or if the CA certs are
|
1219
|
+
unchanged on the server, then the agent run will continue using the
|
1220
|
+
local CA certs it already has. #{AS_DURATION}",
|
1221
|
+
},
|
1222
|
+
:crl_refresh_interval => {
|
1223
|
+
:default => "1d",
|
1224
|
+
:type => :duration,
|
1225
|
+
:desc => "How often the Puppet agent refreshes its local CRL. By
|
1226
|
+
default the CRL is refreshed once every 24 hours. If a different
|
1227
|
+
duration is specified, then the agent will refresh its CRL whenever
|
1228
|
+
it next runs and the elapsed time since the CRL was last refreshed
|
1229
|
+
exceeds the duration.
|
1230
|
+
|
1231
|
+
In general, the duration should be greater than the `runinterval`.
|
1232
|
+
Setting it to 0 or an equal or lesser value than `runinterval`,
|
1233
|
+
will cause the CRL to be refreshed on every run.
|
1234
|
+
|
1235
|
+
If the agent downloads a new CRL, the agent will use it for subsequent
|
1236
|
+
network requests. If the refresh request fails or if the CRL is
|
1237
|
+
unchanged on the server, then the agent run will continue using the
|
1238
|
+
local CRL it already has.#{AS_DURATION}",
|
1239
|
+
},
|
1240
|
+
:hostcert_renewal_interval => {
|
1241
|
+
:default => "30d",
|
1242
|
+
:type => :duration,
|
1243
|
+
:desc => "When the Puppet agent refreshes its client certificate.
|
1244
|
+
By default the client certificate will refresh 30 days before the certificate
|
1245
|
+
expires. If a different duration is specified, then the agent will refresh its
|
1246
|
+
client certificate whenever it next runs and if the client certificate expires
|
1247
|
+
within the duration specified.
|
1248
|
+
|
1249
|
+
In general, the duration should be greater than the `runinterval`.
|
1250
|
+
Setting it to 0 will disable automatic renewal.
|
1251
|
+
|
1252
|
+
If the agent downloads a new certificate, the agent will use it for subsequent
|
1253
|
+
network requests. If the refresh request fails, then the agent run will continue using the
|
1254
|
+
certificate it already has. #{AS_DURATION}",
|
1255
|
+
},
|
1064
1256
|
:keylength => {
|
1065
1257
|
:default => 4096,
|
1258
|
+
:type => :integer,
|
1066
1259
|
:desc => "The bit length of keys.",
|
1067
1260
|
},
|
1068
1261
|
:cert_inventory => {
|
@@ -1073,9 +1266,9 @@ EOT
|
|
1073
1266
|
}
|
1074
1267
|
)
|
1075
1268
|
|
1076
|
-
|
1269
|
+
# Define the config default.
|
1077
1270
|
|
1078
|
-
define_settings(:application,
|
1271
|
+
settings.define_settings(:application,
|
1079
1272
|
:config_file_name => {
|
1080
1273
|
:type => :string,
|
1081
1274
|
:default => Puppet::Settings.default_config_file_name,
|
@@ -1097,14 +1290,14 @@ EOT
|
|
1097
1290
|
:sourceaddress => {
|
1098
1291
|
:default => nil,
|
1099
1292
|
:desc => "The address the agent should use to initiate requests.",
|
1100
|
-
}
|
1101
|
-
|
1293
|
+
}
|
1294
|
+
)
|
1102
1295
|
|
1103
|
-
define_settings(:environment,
|
1296
|
+
settings.define_settings(:environment,
|
1104
1297
|
:manifest => {
|
1105
1298
|
:default => nil,
|
1106
1299
|
:type => :file_or_directory,
|
1107
|
-
:desc => "The entry-point manifest for
|
1300
|
+
:desc => "The entry-point manifest for the primary server. This can be one file
|
1108
1301
|
or a directory of manifests to be evaluated in alphabetical order. Puppet manages
|
1109
1302
|
this path as a directory if one exists or if the path ends with a / or \\.
|
1110
1303
|
|
@@ -1143,7 +1336,7 @@ EOT
|
|
1143
1336
|
}
|
1144
1337
|
)
|
1145
1338
|
|
1146
|
-
define_settings(:
|
1339
|
+
settings.define_settings(:server,
|
1147
1340
|
:user => {
|
1148
1341
|
:default => "puppet",
|
1149
1342
|
:desc => "The user Puppet Server will run as. Used to ensure
|
@@ -1195,18 +1388,14 @@ EOT
|
|
1195
1388
|
},
|
1196
1389
|
:masterport => {
|
1197
1390
|
:default => 8140,
|
1391
|
+
:type => :port,
|
1198
1392
|
:desc => "The default port puppet subcommands use to communicate
|
1199
1393
|
with Puppet Server. (eg `puppet facts upload`, `puppet agent`). May be
|
1200
1394
|
overridden by more specific settings (see `ca_port`, `report_port`).",
|
1201
1395
|
},
|
1202
|
-
:
|
1203
|
-
:
|
1204
|
-
:
|
1205
|
-
and sets the 'hostname', 'fqdn' and 'domain' facts for use in the manifest,
|
1206
|
-
in particular for determining which 'node' statement applies to the client.
|
1207
|
-
Possible values are 'cert' (use the subject's CN in the client's
|
1208
|
-
certificate) and 'facter' (use the hostname that the client
|
1209
|
-
reported in its facts)",
|
1396
|
+
:serverport => {
|
1397
|
+
:type => :alias,
|
1398
|
+
:alias_for => :masterport
|
1210
1399
|
},
|
1211
1400
|
:bucketdir => {
|
1212
1401
|
:default => "$vardir/bucket",
|
@@ -1216,22 +1405,13 @@ EOT
|
|
1216
1405
|
:group => "service",
|
1217
1406
|
:desc => "Where FileBucket files are stored."
|
1218
1407
|
},
|
1219
|
-
:rest_authconfig => {
|
1220
|
-
:default => "$confdir/auth.conf",
|
1221
|
-
:type => :file,
|
1222
|
-
:deprecated => :completely,
|
1223
|
-
:desc => "The configuration file that defines the rights to the different
|
1224
|
-
rest indirections. This can be used as a fine-grained authorization system for
|
1225
|
-
`puppet master`. The `puppet master` command is deprecated and Puppet Server
|
1226
|
-
uses its own auth.conf that must be placed within its configuration directory.",
|
1227
|
-
},
|
1228
1408
|
:trusted_oid_mapping_file => {
|
1229
1409
|
:default => "$confdir/custom_trusted_oid_mapping.yaml",
|
1230
1410
|
:type => :file,
|
1231
1411
|
:desc => "File that provides mapping between custom SSL oids and user-friendly names"
|
1232
1412
|
},
|
1233
1413
|
:basemodulepath => {
|
1234
|
-
:default =>
|
1414
|
+
:default => -> { default_basemodulepath },
|
1235
1415
|
:type => :path,
|
1236
1416
|
:desc => "The search path for **global** modules. Should be specified as a
|
1237
1417
|
list of directories separated by the system path separator character. (The
|
@@ -1243,7 +1423,7 @@ EOT
|
|
1243
1423
|
<https://puppet.com/docs/puppet/latest/environments_about.html>",
|
1244
1424
|
},
|
1245
1425
|
:vendormoduledir => {
|
1246
|
-
:default =>
|
1426
|
+
:default => -> { default_vendormoduledir },
|
1247
1427
|
:type => :string,
|
1248
1428
|
:desc => "The directory containing **vendored** modules. These modules will
|
1249
1429
|
be used by _all_ environments like those in the `basemodulepath`. The only
|
@@ -1297,15 +1477,23 @@ EOT
|
|
1297
1477
|
their names should be comma-separated, with whitespace allowed. (For example,
|
1298
1478
|
`reports = http, store`.)
|
1299
1479
|
|
1300
|
-
This setting is relevant to puppet
|
1301
|
-
|
1480
|
+
This setting is relevant to puppet server and puppet apply. The primary Puppet
|
1481
|
+
server will call these report handlers with the reports it receives from
|
1302
1482
|
agent nodes, and puppet apply will call them with its own report. (In
|
1303
1483
|
all cases, the node applying the catalog must have `report = true`.)
|
1304
1484
|
|
1305
1485
|
See the report reference for information on the built-in report
|
1306
1486
|
handlers; custom report handlers can also be loaded from modules.
|
1307
1487
|
(Report handlers are loaded from the lib directory, at
|
1308
|
-
`puppet/reports/NAME.rb`.)
|
1488
|
+
`puppet/reports/NAME.rb`.)
|
1489
|
+
|
1490
|
+
To turn off reports entirely, set this to `none`",
|
1491
|
+
},
|
1492
|
+
:exclude_unchanged_resources => {
|
1493
|
+
:default => true,
|
1494
|
+
:type => :boolean,
|
1495
|
+
:desc => 'When set to true, resources that have had no changes after catalog application
|
1496
|
+
will not have corresponding unchanged resource status updates listed in the report.'
|
1309
1497
|
},
|
1310
1498
|
:reportdir => {
|
1311
1499
|
:default => "$vardir/reports",
|
@@ -1327,16 +1515,9 @@ EOT
|
|
1327
1515
|
:default => "$confdir/fileserver.conf",
|
1328
1516
|
:type => :file,
|
1329
1517
|
:desc => "Where the fileserver configuration is stored.",
|
1330
|
-
}
|
1331
|
-
:strict_hostname_checking => {
|
1332
|
-
:default => false,
|
1333
|
-
:desc => "Whether to only search for the complete
|
1334
|
-
hostname as it is in the certificate when searching for node information
|
1335
|
-
in the catalogs.",
|
1336
|
-
}
|
1337
|
-
)
|
1518
|
+
})
|
1338
1519
|
|
1339
|
-
define_settings(:device,
|
1520
|
+
settings.define_settings(:device,
|
1340
1521
|
:devicedir => {
|
1341
1522
|
:default => "$vardir/devices",
|
1342
1523
|
:type => :directory,
|
@@ -1351,22 +1532,20 @@ EOT
|
|
1351
1532
|
}
|
1352
1533
|
)
|
1353
1534
|
|
1354
|
-
define_settings(:agent,
|
1535
|
+
settings.define_settings(:agent,
|
1355
1536
|
:node_name_value => {
|
1356
1537
|
:default => "$certname",
|
1357
1538
|
:desc => "The explicit value used for the node name for all requests the agent
|
1358
|
-
makes to the
|
1359
|
-
node_name_fact. Changing this setting also requires changes to
|
1360
|
-
|
1361
|
-
http://links.puppet.com/node_name_value for more information."
|
1539
|
+
makes to the primary server. WARNING: This setting is mutually exclusive with
|
1540
|
+
node_name_fact. Changing this setting also requires changes to
|
1541
|
+
Puppet Server's default [auth.conf](https://puppet.com/docs/puppetserver/latest/config_file_auth.html)."
|
1362
1542
|
},
|
1363
1543
|
:node_name_fact => {
|
1364
1544
|
:default => "",
|
1365
1545
|
:desc => "The fact name used to determine the node name used for all requests the agent
|
1366
|
-
makes to the
|
1367
|
-
node_name_value. Changing this setting also requires changes to
|
1368
|
-
|
1369
|
-
http://links.puppet.com/node_name_fact for more information.",
|
1546
|
+
makes to the primary server. WARNING: This setting is mutually exclusive with
|
1547
|
+
node_name_value. Changing this setting also requires changes to
|
1548
|
+
Puppet Server's default [auth.conf](https://puppet.com/docs/puppetserver/latest/config_file_auth.html).",
|
1370
1549
|
:hook => proc do |value|
|
1371
1550
|
if !value.empty? and Puppet[:node_name_value] != Puppet[:certname]
|
1372
1551
|
raise "Cannot specify both the node_name_value and node_name_fact settings"
|
@@ -1376,9 +1555,9 @@ EOT
|
|
1376
1555
|
:statefile => {
|
1377
1556
|
:default => "$statedir/state.yaml",
|
1378
1557
|
:type => :file,
|
1379
|
-
:mode => "
|
1380
|
-
:desc => "Where
|
1381
|
-
with the running configuration. In the case of
|
1558
|
+
:mode => "0640",
|
1559
|
+
:desc => "Where Puppet agent and Puppet Server store state associated
|
1560
|
+
with the running configuration. In the case of Puppet Server,
|
1382
1561
|
this file reflects the state discovered through interacting
|
1383
1562
|
with clients."
|
1384
1563
|
},
|
@@ -1398,9 +1577,9 @@ EOT
|
|
1398
1577
|
:transactionstorefile => {
|
1399
1578
|
:default => "$statedir/transactionstore.yaml",
|
1400
1579
|
:type => :file,
|
1401
|
-
:mode => "
|
1580
|
+
:mode => "0640",
|
1402
1581
|
:desc => "Transactional storage file for persisting data between
|
1403
|
-
transactions for the purposes of
|
1582
|
+
transactions for the purposes of inferring information (such as
|
1404
1583
|
corrective_change) on new data received."
|
1405
1584
|
},
|
1406
1585
|
:clientyamldir => {
|
@@ -1415,6 +1594,12 @@ EOT
|
|
1415
1594
|
:mode => "0750",
|
1416
1595
|
:desc => "The directory in which serialized data is stored on the client."
|
1417
1596
|
},
|
1597
|
+
:write_catalog_summary => {
|
1598
|
+
:default => true,
|
1599
|
+
:type => :boolean,
|
1600
|
+
:desc => "Whether to write the `classfile` and `resourcefile` after applying
|
1601
|
+
the catalog. It is enabled by default, except when running `puppet apply`.",
|
1602
|
+
},
|
1418
1603
|
:classfile => {
|
1419
1604
|
:default => "$statedir/classes.txt",
|
1420
1605
|
:type => :file,
|
@@ -1430,7 +1615,7 @@ EOT
|
|
1430
1615
|
:owner => "root",
|
1431
1616
|
:mode => "0640",
|
1432
1617
|
:desc => "The file in which puppet agent stores a list of the resources
|
1433
|
-
associated with the retrieved configuration."
|
1618
|
+
associated with the retrieved configuration." },
|
1434
1619
|
:puppetdlog => {
|
1435
1620
|
:default => "$logdir/puppetd.log",
|
1436
1621
|
:type => :file,
|
@@ -1441,41 +1626,31 @@ EOT
|
|
1441
1626
|
the POSIX syslog service and the Windows Event Log are unavailable. (Currently,
|
1442
1627
|
no supported operating systems match that description.)
|
1443
1628
|
|
1444
|
-
Despite the name, both puppet agent and puppet
|
1629
|
+
Despite the name, both puppet agent and puppet server will use this file
|
1445
1630
|
as the fallback logging destination.
|
1446
1631
|
|
1447
1632
|
For control over logging destinations, see the `--logdest` command line
|
1448
|
-
option in the manual pages for puppet
|
1633
|
+
option in the manual pages for puppet server, puppet agent, and puppet
|
1449
1634
|
apply. You can see man pages by running `puppet <SUBCOMMAND> --help`,
|
1450
1635
|
or read them online at https://puppet.com/docs/puppet/latest/man/."
|
1451
1636
|
},
|
1637
|
+
:deviceconfdir => {
|
1638
|
+
:default => "$confdir/devices",
|
1639
|
+
:type => :directory,
|
1640
|
+
:mode => "0750",
|
1641
|
+
:owner => "service",
|
1642
|
+
:group => "service",
|
1643
|
+
:desc => "The root directory of devices' $confdir.",
|
1644
|
+
},
|
1452
1645
|
:server => {
|
1453
1646
|
:default => "puppet",
|
1454
|
-
:desc => "The
|
1455
|
-
:call_hook => :on_initialize_and_write,
|
1456
|
-
:hook => proc { |value|
|
1457
|
-
if Puppet.settings.set_by_config?(:server) && Puppet.settings.set_by_config?(:server_list)
|
1458
|
-
#TRANSLATOR 'server' and 'server_list' are setting names and should not be translated
|
1459
|
-
message = _('Attempted to set both server and server_list.')
|
1460
|
-
message += ' ' + _('Server setting will not be used.')
|
1461
|
-
Puppet.deprecation_warning(message, :SERVER_DUPLICATION)
|
1462
|
-
end
|
1463
|
-
}
|
1647
|
+
:desc => "The primary Puppet server to which the Puppet agent should connect.",
|
1464
1648
|
},
|
1465
1649
|
:server_list => {
|
1466
1650
|
:default => [],
|
1467
1651
|
:type => :server_list,
|
1468
|
-
:desc => "The list of
|
1469
|
-
in the order that they will be tried.",
|
1470
|
-
:call_hook => :on_initialize_and_write,
|
1471
|
-
:hook => proc { |value|
|
1472
|
-
if Puppet.settings.set_by_config?(:server) && Puppet.settings.set_by_config?(:server_list)
|
1473
|
-
#TRANSLATOR 'server' and 'server_list' are setting names and should not be translated
|
1474
|
-
message = _('Attempted to set both server and server_list.')
|
1475
|
-
message += ' ' + _('Server setting will not be used.')
|
1476
|
-
Puppet.deprecation_warning(message, :SERVER_DUPLICATION)
|
1477
|
-
end
|
1478
|
-
}
|
1652
|
+
:desc => "The list of primary Puppet servers to which the Puppet agent should connect,
|
1653
|
+
in the order that they will be tried. Each value should be a fully qualified domain name, followed by an optional ':' and port number. If a port is omitted, Puppet uses masterport for that host.",
|
1479
1654
|
},
|
1480
1655
|
:use_srv_records => {
|
1481
1656
|
:default => false,
|
@@ -1483,9 +1658,15 @@ EOT
|
|
1483
1658
|
:desc => "Whether the server will search for SRV records in DNS for the current domain.",
|
1484
1659
|
},
|
1485
1660
|
:srv_domain => {
|
1486
|
-
:default =>
|
1661
|
+
:default => -> { Puppet::Settings.domain_fact },
|
1487
1662
|
:desc => "The domain which will be queried to find the SRV records of servers to use.",
|
1488
1663
|
},
|
1664
|
+
:http_extra_headers => {
|
1665
|
+
:default => [],
|
1666
|
+
:type => :http_extra_headers,
|
1667
|
+
:desc => "The list of extra headers that will be sent with http requests to the primary server.
|
1668
|
+
The header definition consists of a name and a value separated by a colon."
|
1669
|
+
},
|
1489
1670
|
:ignoreschedules => {
|
1490
1671
|
:default => false,
|
1491
1672
|
:type => :boolean,
|
@@ -1509,7 +1690,7 @@ EOT
|
|
1509
1690
|
like it does when running normally. However, if a resource attribute is not in
|
1510
1691
|
the desired state (as declared in the catalog), Puppet will take no
|
1511
1692
|
action, and will instead report the changes it _would_ have made. These
|
1512
|
-
simulated changes will appear in the report sent to the
|
1693
|
+
simulated changes will appear in the report sent to the primary Puppet server, or
|
1513
1694
|
be shown on the console if running puppet agent or puppet apply in the
|
1514
1695
|
foreground. The simulated changes will not send refresh events to any
|
1515
1696
|
subscribing or notified resources, although Puppet will log that a refresh
|
@@ -1528,8 +1709,7 @@ EOT
|
|
1528
1709
|
:type => :duration,
|
1529
1710
|
:desc => "How often puppet agent applies the catalog.
|
1530
1711
|
Note that a runinterval of 0 means \"run continuously\" rather than
|
1531
|
-
\"never run.\"
|
1532
|
-
it with the `--no-client` option. #{AS_DURATION}",
|
1712
|
+
\"never run.\" #{AS_DURATION}",
|
1533
1713
|
},
|
1534
1714
|
:runtimeout => {
|
1535
1715
|
:default => "1h",
|
@@ -1545,7 +1725,8 @@ EOT
|
|
1545
1725
|
and does not need to horizontally scale.",
|
1546
1726
|
},
|
1547
1727
|
:ca_port => {
|
1548
|
-
:default => "$
|
1728
|
+
:default => "$serverport",
|
1729
|
+
:type => :port,
|
1549
1730
|
:desc => "The port to use for the certificate authority.",
|
1550
1731
|
},
|
1551
1732
|
:preferred_serialization_format => {
|
@@ -1555,6 +1736,20 @@ EOT
|
|
1555
1736
|
instances will be serialized using this method, since not all classes
|
1556
1737
|
can be guaranteed to support this format, but it will be used for all
|
1557
1738
|
classes that support it.",
|
1739
|
+
:hook => proc { |value|
|
1740
|
+
if value == "pson" && !Puppet.features.pson?
|
1741
|
+
raise(Puppet::Settings::ValidationError, "The 'puppet-pson' gem must be installed to use the PSON serialization format.")
|
1742
|
+
end
|
1743
|
+
}
|
1744
|
+
},
|
1745
|
+
:allow_pson_serialization => {
|
1746
|
+
:default => false,
|
1747
|
+
:type => :boolean,
|
1748
|
+
:desc => "Whether when unable to serialize to JSON or other formats,
|
1749
|
+
Puppet falls back to PSON. This option affects both puppetserver's
|
1750
|
+
configuration management service responses and when the agent saves its
|
1751
|
+
cached catalog. This option is useful in preventing the loss of data because
|
1752
|
+
rich data cannot be serialized via PSON.",
|
1558
1753
|
},
|
1559
1754
|
:agent_catalog_run_lockfile => {
|
1560
1755
|
:default => "$statedir/agent_catalog_run.lock",
|
@@ -1564,7 +1759,7 @@ EOT
|
|
1564
1759
|
},
|
1565
1760
|
:agent_disabled_lockfile => {
|
1566
1761
|
:default => "$statedir/agent_disabled.lock",
|
1567
|
-
:type => :
|
1762
|
+
:type => :string,
|
1568
1763
|
:desc => "A lock file to indicate that puppet agent runs have been administratively
|
1569
1764
|
disabled. File contains a JSON object with state information.",
|
1570
1765
|
},
|
@@ -1576,13 +1771,46 @@ EOT
|
|
1576
1771
|
new configurations, where you want to fix the broken configuration
|
1577
1772
|
rather than reverting to a known-good one.",
|
1578
1773
|
},
|
1774
|
+
:include_legacy_facts => {
|
1775
|
+
:type => :boolean,
|
1776
|
+
:default => false,
|
1777
|
+
:desc => "Whether to include legacy facts when requesting a catalog. This
|
1778
|
+
option can be set to false provided all puppet manifests, hiera.yaml and hiera
|
1779
|
+
configuration layers no longer access legacy facts, such as `$osfamily`, and
|
1780
|
+
instead access structured facts, such as `$facts['os']['family']`."
|
1781
|
+
},
|
1782
|
+
:fact_name_length_soft_limit => {
|
1783
|
+
:default => 2560,
|
1784
|
+
:type => :integer,
|
1785
|
+
:desc => "The soft limit for the length of a fact name.",
|
1786
|
+
},
|
1787
|
+
:fact_value_length_soft_limit => {
|
1788
|
+
:default => 4096,
|
1789
|
+
:type => :integer,
|
1790
|
+
:desc => "The soft limit for the length of a fact value.",
|
1791
|
+
},
|
1792
|
+
:top_level_facts_soft_limit => {
|
1793
|
+
:default => 512,
|
1794
|
+
:type => :integer,
|
1795
|
+
:desc => "The soft limit for the number of top level facts.",
|
1796
|
+
},
|
1797
|
+
:number_of_facts_soft_limit => {
|
1798
|
+
:default => 2048,
|
1799
|
+
:type => :integer,
|
1800
|
+
:desc => "The soft limit for the total number of facts.",
|
1801
|
+
},
|
1802
|
+
:payload_soft_limit => {
|
1803
|
+
:default => 16 * 1024 * 1024,
|
1804
|
+
:type => :integer,
|
1805
|
+
:desc => "The soft limit for the size of the payload.",
|
1806
|
+
},
|
1579
1807
|
:use_cached_catalog => {
|
1580
1808
|
:default => false,
|
1581
1809
|
:type => :boolean,
|
1582
1810
|
:desc => "Whether to only use the cached catalog rather than compiling a new catalog
|
1583
1811
|
on every run. Puppet can be run with this enabled by default and then selectively
|
1584
1812
|
disabled when a recompile is desired. Because a Puppet agent using cached catalogs
|
1585
|
-
does not contact the
|
1813
|
+
does not contact the primary server for a new catalog, it also does not upload facts at
|
1586
1814
|
the beginning of the Puppet run.",
|
1587
1815
|
},
|
1588
1816
|
:ignoremissingtypes => {
|
@@ -1590,7 +1818,7 @@ EOT
|
|
1590
1818
|
:type => :boolean,
|
1591
1819
|
:desc => "Skip searching for classes and definitions that were missing during a
|
1592
1820
|
prior compilation. The list of missing objects is maintained per-environment and
|
1593
|
-
persists until the environment is cleared or the
|
1821
|
+
persists until the environment is cleared or the primary server is restarted.",
|
1594
1822
|
},
|
1595
1823
|
:splaylimit => {
|
1596
1824
|
:default => "$runinterval",
|
@@ -1620,7 +1848,7 @@ EOT
|
|
1620
1848
|
If you restart an agent's puppet service with `splay` enabled, it
|
1621
1849
|
recalculates its splay period and delays its first agent run after
|
1622
1850
|
restarting for this new period. If you simultaneously restart a group of
|
1623
|
-
puppet agents with `splay` enabled, their checkins to your
|
1851
|
+
puppet agents with `splay` enabled, their checkins to your primary servers
|
1624
1852
|
can be distributed more evenly.",
|
1625
1853
|
},
|
1626
1854
|
:clientbucketdir => {
|
@@ -1634,7 +1862,8 @@ EOT
|
|
1634
1862
|
:desc => "The server to send transaction reports to.",
|
1635
1863
|
},
|
1636
1864
|
:report_port => {
|
1637
|
-
:default => "$
|
1865
|
+
:default => "$serverport",
|
1866
|
+
:type => :port,
|
1638
1867
|
:desc => "The port to communicate with the report_server.",
|
1639
1868
|
},
|
1640
1869
|
:report => {
|
@@ -1642,17 +1871,49 @@ EOT
|
|
1642
1871
|
:type => :boolean,
|
1643
1872
|
:desc => "Whether to send reports after every transaction.",
|
1644
1873
|
},
|
1874
|
+
:report_include_system_store => {
|
1875
|
+
:default => false,
|
1876
|
+
:type => :boolean,
|
1877
|
+
:desc => "Whether the 'http' report processor should include the system
|
1878
|
+
certificate store when submitting reports to HTTPS URLs. If false, then
|
1879
|
+
the 'http' processor will only trust HTTPS report servers whose certificates
|
1880
|
+
are issued by the puppet CA or one of its intermediate CAs. If true, the
|
1881
|
+
processor will additionally trust CA certificates in the system's
|
1882
|
+
certificate store."
|
1883
|
+
},
|
1884
|
+
:resubmit_facts => {
|
1885
|
+
:default => false,
|
1886
|
+
:type => :boolean,
|
1887
|
+
:desc => "Whether to send updated facts after every transaction. By default
|
1888
|
+
puppet only submits facts at the beginning of the transaction before applying a
|
1889
|
+
catalog. Since puppet can modify the state of the system, the value of the facts
|
1890
|
+
may change after puppet finishes. Therefore, any facts stored in puppetdb may not
|
1891
|
+
be consistent until the agent next runs, typically in 30 minutes. If this feature
|
1892
|
+
is enabled, puppet will resubmit facts after applying its catalog, ensuring facts
|
1893
|
+
for the node stored in puppetdb are current. However, this will double the fact
|
1894
|
+
submission load on puppetdb, so it is disabled by default.",
|
1895
|
+
},
|
1896
|
+
:publicdir => {
|
1897
|
+
:default => nil,
|
1898
|
+
:type => :directory,
|
1899
|
+
:mode => "0755",
|
1900
|
+
:desc => "Where Puppet stores public files."
|
1901
|
+
},
|
1645
1902
|
:lastrunfile => {
|
1646
|
-
:default => "$
|
1903
|
+
:default => "$publicdir/last_run_summary.yaml",
|
1647
1904
|
:type => :file,
|
1648
|
-
:mode => "
|
1905
|
+
:mode => "0640",
|
1649
1906
|
:desc => "Where puppet agent stores the last run report summary in yaml format."
|
1650
1907
|
},
|
1651
1908
|
:lastrunreport => {
|
1652
1909
|
:default => "$statedir/last_run_report.yaml",
|
1653
1910
|
:type => :file,
|
1654
1911
|
:mode => "0640",
|
1655
|
-
:desc => "Where
|
1912
|
+
:desc => "Where Puppet Agent stores the last run report, by default, in yaml format.
|
1913
|
+
The format of the report can be changed by setting the `cache` key of the `report` terminus
|
1914
|
+
in the [routes.yaml](https://puppet.com/docs/puppet/latest/config_file_routes.html) file.
|
1915
|
+
To avoid mismatches between content and file extension, this setting needs to be
|
1916
|
+
manually updated to reflect the terminus changes."
|
1656
1917
|
},
|
1657
1918
|
:graph => {
|
1658
1919
|
:default => false,
|
@@ -1686,21 +1947,49 @@ EOT
|
|
1686
1947
|
|
1687
1948
|
When starting for the first time, puppet agent will submit a certificate
|
1688
1949
|
signing request (CSR) to the server named in the `ca_server` setting
|
1689
|
-
(usually the
|
1950
|
+
(usually the primary Puppet server); this may be autosigned, or may need to be
|
1690
1951
|
approved by a human, depending on the CA server's configuration.
|
1691
1952
|
|
1692
1953
|
Puppet agent cannot apply configurations until its approved certificate is
|
1693
1954
|
available. Since the certificate may or may not be available immediately,
|
1694
1955
|
puppet agent will repeatedly try to fetch it at this interval. You can
|
1695
|
-
turn off waiting for certificates by specifying a time of 0,
|
1956
|
+
turn off waiting for certificates by specifying a time of 0, or a maximum
|
1957
|
+
amount of time to wait in the `maxwaitforcert` setting, in which case
|
1696
1958
|
puppet agent will exit if it cannot get a cert.
|
1697
1959
|
#{AS_DURATION}",
|
1960
|
+
},
|
1961
|
+
:maxwaitforcert => {
|
1962
|
+
:default => "unlimited",
|
1963
|
+
:type => :ttl,
|
1964
|
+
:desc => "The maximum amount of time the Puppet agent should wait for its
|
1965
|
+
certificate request to be signed. A value of `unlimited` will cause puppet agent
|
1966
|
+
to ask for a signed certificate indefinitely.
|
1967
|
+
#{AS_DURATION}",
|
1968
|
+
},
|
1969
|
+
:waitforlock => {
|
1970
|
+
:default => "0",
|
1971
|
+
:type => :duration,
|
1972
|
+
:desc => "How frequently puppet agent should try running when there is an
|
1973
|
+
already ongoing puppet agent instance.
|
1974
|
+
|
1975
|
+
This argument is by default disabled (value set to 0). In this case puppet agent will
|
1976
|
+
immediately exit if it cannot run at that moment. When a value other than 0 is set, this
|
1977
|
+
can also be used in combination with the `maxwaitforlock` argument.
|
1978
|
+
#{AS_DURATION}",
|
1979
|
+
},
|
1980
|
+
:maxwaitforlock => {
|
1981
|
+
:default => "1m",
|
1982
|
+
:type => :ttl,
|
1983
|
+
:desc => "The maximum amount of time the puppet agent should wait for an
|
1984
|
+
already running puppet agent to finish before starting a new one. This is set by default to 1 minute.
|
1985
|
+
A value of `unlimited` will cause puppet agent to wait indefinitely.
|
1986
|
+
#{AS_DURATION}",
|
1698
1987
|
}
|
1699
1988
|
)
|
1700
1989
|
|
1701
1990
|
# Plugin information.
|
1702
1991
|
|
1703
|
-
define_settings(
|
1992
|
+
settings.define_settings(
|
1704
1993
|
:main,
|
1705
1994
|
:plugindest => {
|
1706
1995
|
:type => :directory,
|
@@ -1735,15 +2024,32 @@ EOT
|
|
1735
2024
|
is used for retrieval, so anything that is a valid file source can
|
1736
2025
|
be used here.",
|
1737
2026
|
},
|
2027
|
+
:pluginsync => {
|
2028
|
+
:default => true,
|
2029
|
+
:type => :boolean,
|
2030
|
+
:desc => "Whether plugins should be synced with the central server. This setting is
|
2031
|
+
deprecated.",
|
2032
|
+
:hook => proc { |_value|
|
2033
|
+
#TRANSLATORS 'pluginsync' is a setting and should not be translated
|
2034
|
+
Puppet.deprecation_warning(_("Setting 'pluginsync' is deprecated."))
|
2035
|
+
}
|
2036
|
+
},
|
1738
2037
|
:pluginsignore => {
|
1739
2038
|
:default => ".svn CVS .git .hg",
|
1740
2039
|
:desc => "What files to ignore when pulling down plugins.",
|
2040
|
+
},
|
2041
|
+
:ignore_plugin_errors => {
|
2042
|
+
:default => false,
|
2043
|
+
:type => :boolean,
|
2044
|
+
:desc => "Whether the puppet run should ignore errors during pluginsync. If the setting
|
2045
|
+
is false and there are errors during pluginsync, then the agent will abort the run and
|
2046
|
+
submit a report containing information about the failed run."
|
1741
2047
|
}
|
1742
2048
|
)
|
1743
2049
|
|
1744
|
-
|
2050
|
+
# Central fact information.
|
1745
2051
|
|
1746
|
-
define_settings(
|
2052
|
+
settings.define_settings(
|
1747
2053
|
:main,
|
1748
2054
|
:factpath => {
|
1749
2055
|
:type => :path,
|
@@ -1755,12 +2061,13 @@ EOT
|
|
1755
2061
|
:call_hook => :on_initialize_and_write, # Call our hook with the default value, so we always get the value added to facter.
|
1756
2062
|
:hook => proc do |value|
|
1757
2063
|
paths = value.split(File::PATH_SEPARATOR)
|
1758
|
-
|
2064
|
+
facter = Puppet.runtime[:facter]
|
2065
|
+
facter.search(*paths)
|
1759
2066
|
end
|
1760
2067
|
}
|
1761
2068
|
)
|
1762
2069
|
|
1763
|
-
define_settings(
|
2070
|
+
settings.define_settings(
|
1764
2071
|
:transaction,
|
1765
2072
|
:tags => {
|
1766
2073
|
:default => "",
|
@@ -1781,6 +2088,16 @@ EOT
|
|
1781
2088
|
being evaluated. This allows you to interactively see exactly
|
1782
2089
|
what is being done.",
|
1783
2090
|
},
|
2091
|
+
:preprocess_deferred => {
|
2092
|
+
:default => false,
|
2093
|
+
:type => :boolean,
|
2094
|
+
:desc => "Whether puppet should call deferred functions before applying
|
2095
|
+
the catalog. If set to `true`, then all prerequisites needed for the
|
2096
|
+
deferred function must be satisfied prior to puppet running. If set to
|
2097
|
+
`false`, then deferred functions will follow puppet relationships and
|
2098
|
+
ordering. This allows puppet to install prerequisites needed for a
|
2099
|
+
deferred function and call the deferred function in the same run."
|
2100
|
+
},
|
1784
2101
|
:summarize => {
|
1785
2102
|
:default => false,
|
1786
2103
|
:type => :boolean,
|
@@ -1788,7 +2105,7 @@ EOT
|
|
1788
2105
|
}
|
1789
2106
|
)
|
1790
2107
|
|
1791
|
-
define_settings(
|
2108
|
+
settings.define_settings(
|
1792
2109
|
:main,
|
1793
2110
|
:external_nodes => {
|
1794
2111
|
:default => "none",
|
@@ -1811,9 +2128,9 @@ EOT
|
|
1811
2128
|
|
1812
2129
|
For more info, see [the ENC documentation](https://puppet.com/docs/puppet/latest/nodes_external.html).",
|
1813
2130
|
}
|
1814
|
-
|
2131
|
+
)
|
1815
2132
|
|
1816
|
-
define_settings(
|
2133
|
+
settings.define_settings(
|
1817
2134
|
:ldap,
|
1818
2135
|
:ldapssl => {
|
1819
2136
|
:default => false,
|
@@ -1835,6 +2152,7 @@ EOT
|
|
1835
2152
|
},
|
1836
2153
|
:ldapport => {
|
1837
2154
|
:default => 389,
|
2155
|
+
:type => :port,
|
1838
2156
|
:desc => "The LDAP port.",
|
1839
2157
|
},
|
1840
2158
|
|
@@ -1880,9 +2198,9 @@ EOT
|
|
1880
2198
|
have one already set. Generally, it should be the 'ou=Hosts'
|
1881
2199
|
branch under your main directory.",
|
1882
2200
|
}
|
1883
|
-
|
2201
|
+
)
|
1884
2202
|
|
1885
|
-
define_settings(:
|
2203
|
+
settings.define_settings(:server,
|
1886
2204
|
:storeconfigs => {
|
1887
2205
|
:default => false,
|
1888
2206
|
:type => :boolean,
|
@@ -1896,13 +2214,13 @@ EOT
|
|
1896
2214
|
# Call our hook with the default value, so we always get the libdir set.
|
1897
2215
|
:call_hook => :on_initialize_and_write,
|
1898
2216
|
:hook => proc do |value|
|
1899
|
-
|
1900
|
-
|
2217
|
+
require_relative '../puppet/node'
|
2218
|
+
require_relative '../puppet/node/facts'
|
1901
2219
|
if value
|
1902
|
-
Puppet::Resource::Catalog.indirection.cache_class
|
1903
|
-
|
1904
|
-
Puppet::Node::Facts.indirection.cache_class
|
1905
|
-
Puppet::Resource.indirection.terminus_class
|
2220
|
+
Puppet::Resource::Catalog.indirection.set_global_setting(:cache_class, :store_configs)
|
2221
|
+
settings.override_default(:catalog_cache_terminus, :store_configs)
|
2222
|
+
Puppet::Node::Facts.indirection.set_global_setting(:cache_class, :store_configs)
|
2223
|
+
Puppet::Resource.indirection.set_global_setting(:terminus_class, :store_configs)
|
1906
2224
|
end
|
1907
2225
|
end
|
1908
2226
|
},
|
@@ -1915,9 +2233,10 @@ EOT
|
|
1915
2233
|
}
|
1916
2234
|
)
|
1917
2235
|
|
1918
|
-
define_settings(:parser,
|
2236
|
+
settings.define_settings(:parser,
|
1919
2237
|
:max_errors => {
|
1920
2238
|
:default => 10,
|
2239
|
+
:type => :integer,
|
1921
2240
|
:desc => <<-'EOT'
|
1922
2241
|
Sets the max number of logged/displayed parser validation errors in case
|
1923
2242
|
multiple errors have been detected. A value of 0 is the same as a value of 1; a
|
@@ -1926,6 +2245,7 @@ EOT
|
|
1926
2245
|
},
|
1927
2246
|
:max_warnings => {
|
1928
2247
|
:default => 10,
|
2248
|
+
:type => :integer,
|
1929
2249
|
:desc => <<-'EOT'
|
1930
2250
|
Sets the max number of logged/displayed parser validation warnings in
|
1931
2251
|
case multiple warnings have been detected. A value of 0 blocks logging of
|
@@ -1934,6 +2254,7 @@ EOT
|
|
1934
2254
|
},
|
1935
2255
|
:max_deprecations => {
|
1936
2256
|
:default => 10,
|
2257
|
+
:type => :integer,
|
1937
2258
|
:desc => <<-'EOT'
|
1938
2259
|
Sets the max number of logged/displayed parser validation deprecation
|
1939
2260
|
warnings in case multiple deprecation warnings have been detected. A value of 0
|
@@ -1941,7 +2262,7 @@ EOT
|
|
1941
2262
|
EOT
|
1942
2263
|
},
|
1943
2264
|
:strict_variables => {
|
1944
|
-
:default =>
|
2265
|
+
:default => true,
|
1945
2266
|
:type => :boolean,
|
1946
2267
|
:desc => <<-'EOT'
|
1947
2268
|
Causes an evaluation error when referencing unknown variables. (This does not affect
|
@@ -1957,7 +2278,7 @@ EOT
|
|
1957
2278
|
EOT
|
1958
2279
|
}
|
1959
2280
|
)
|
1960
|
-
define_settings(:puppetdoc,
|
2281
|
+
settings.define_settings(:puppetdoc,
|
1961
2282
|
:document_all => {
|
1962
2283
|
:default => false,
|
1963
2284
|
:type => :boolean,
|
@@ -1966,15 +2287,11 @@ EOT
|
|
1966
2287
|
}
|
1967
2288
|
)
|
1968
2289
|
|
1969
|
-
define_settings(
|
2290
|
+
settings.define_settings(
|
1970
2291
|
:main,
|
1971
2292
|
:rich_data => {
|
1972
2293
|
:default => true,
|
1973
2294
|
:type => :boolean,
|
1974
|
-
:hook => proc do |value|
|
1975
|
-
envs = Puppet.lookup(:environments) { nil }
|
1976
|
-
envs.clear_all unless envs.nil?
|
1977
|
-
end,
|
1978
2295
|
:desc => <<-'EOT'
|
1979
2296
|
Enables having extended data in the catalog by storing them as a hash with the special key
|
1980
2297
|
`__ptype`. When enabled, resource containing values of the data types `Binary`, `Regexp`,
|
@@ -1983,5 +2300,5 @@ EOT
|
|
1983
2300
|
EOT
|
1984
2301
|
}
|
1985
2302
|
)
|
1986
|
-
|
2303
|
+
end
|
1987
2304
|
end
|