puppet 3.8.7 → 4.0.0.rc1
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of puppet might be problematic. Click here for more details.
- data/CONTRIBUTING.md +26 -11
- data/Gemfile +13 -25
- data/LICENSE +1 -1
- data/Rakefile +9 -0
- data/bin/puppet +7 -6
- data/conf/auth.conf +30 -26
- data/conf/environment.conf +16 -0
- data/conf/fileserver.conf +2 -2
- data/conf/puppet.conf +6 -0
- data/ext/README.environment +1 -1
- data/ext/build_defaults.yaml +16 -7
- data/ext/debian/control +5 -5
- data/ext/debian/puppet-common.manpages +0 -5
- data/ext/debian/puppet-common.postinst +3 -3
- data/ext/debian/puppet.init +23 -12
- data/ext/debian/puppet.logrotate +1 -2
- data/ext/debian/puppetmaster-common.postinst +6 -0
- data/ext/debian/puppetmaster.init +5 -5
- data/ext/debian/rules +4 -1
- data/ext/debian/vim-puppet.dirs +2 -0
- data/ext/debian/vim-puppet.yaml +2 -0
- data/ext/emacs/puppet-mode.el +0 -1
- data/ext/gentoo/conf.d/puppet +1 -1
- data/ext/gentoo/conf.d/puppetmaster +1 -1
- data/ext/nagios/check_puppet.rb +1 -1
- data/ext/project_data.yaml +6 -7
- data/ext/puppet-nm-dispatcher +13 -0
- data/ext/puppet-test +0 -66
- data/ext/puppetlisten/puppetlisten.rb +7 -5
- data/ext/rack/config.ru +12 -5
- data/ext/redhat/client.init +3 -3
- data/ext/redhat/logrotate +1 -2
- data/ext/redhat/puppet.spec.erb +12 -8
- data/ext/redhat/server.init +1 -1
- data/ext/regexp_nodes/regexp_nodes.rb +1 -1
- data/ext/solaris/smf/svc-puppetd +1 -1
- data/ext/solaris/smf/svc-puppetmasterd +1 -1
- data/ext/suse/client.init +1 -1
- data/ext/suse/server.init +1 -1
- data/ext/systemd/puppet.service +1 -3
- data/ext/vim/syntax/puppet.vim +1 -1
- data/ext/windows/service/daemon.rb +19 -2
- data/install.rb +63 -7
- data/lib/hiera/puppet_function.rb +7 -18
- data/lib/hiera/scope.rb +4 -1
- data/lib/puppet.rb +19 -51
- data/lib/puppet/agent.rb +2 -6
- data/lib/puppet/application.rb +14 -65
- data/lib/puppet/application/agent.rb +7 -56
- data/lib/puppet/application/apply.rb +1 -6
- data/lib/puppet/application/ca.rb +5 -0
- data/lib/puppet/application/cert.rb +7 -3
- data/lib/puppet/application/certificate.rb +2 -0
- data/lib/puppet/application/device.rb +10 -36
- data/lib/puppet/application/doc.rb +16 -63
- data/lib/puppet/application/epp.rb +5 -0
- data/lib/puppet/application/face_base.rb +24 -5
- data/lib/puppet/application/master.rb +2 -5
- data/lib/puppet/application/resource.rb +17 -17
- data/lib/puppet/application_support.rb +57 -0
- data/lib/puppet/configurer.rb +3 -7
- data/lib/puppet/configurer/downloader.rb +1 -0
- data/lib/puppet/configurer/fact_handler.rb +1 -1
- data/lib/puppet/daemon.rb +6 -15
- data/lib/puppet/data_providers.rb +28 -0
- data/lib/puppet/data_providers/data_adapter.rb +86 -0
- data/lib/puppet/data_providers/data_function_support.rb +32 -0
- data/lib/puppet/data_providers/function_env_data_provider.rb +28 -0
- data/lib/puppet/data_providers/function_module_data_provider.rb +44 -0
- data/lib/puppet/defaults.rb +135 -530
- data/lib/puppet/environments.rb +10 -156
- data/lib/puppet/error.rb +4 -30
- data/lib/puppet/external/nagios/base.rb +2 -2
- data/lib/puppet/external/pson/common.rb +2 -17
- data/lib/puppet/external/pson/pure/generator.rb +1 -0
- data/lib/puppet/external/pson/pure/parser.rb +0 -11
- data/lib/puppet/face/catalog.rb +4 -4
- data/lib/puppet/face/certificate.rb +2 -3
- data/lib/puppet/face/certificate_request.rb +4 -3
- data/lib/puppet/face/certificate_revocation_list.rb +5 -9
- data/lib/puppet/face/config.rb +2 -2
- data/lib/puppet/face/epp.rb +479 -0
- data/lib/puppet/face/facts.rb +6 -49
- data/lib/puppet/face/file.rb +2 -2
- data/lib/puppet/face/file/download.rb +1 -2
- data/lib/puppet/face/help.rb +2 -3
- data/lib/puppet/face/module/build.rb +5 -5
- data/lib/puppet/face/module/changes.rb +1 -1
- data/lib/puppet/face/module/generate.rb +6 -6
- data/lib/puppet/face/module/install.rb +16 -16
- data/lib/puppet/face/module/list.rb +9 -9
- data/lib/puppet/face/module/uninstall.rb +5 -5
- data/lib/puppet/face/module/upgrade.rb +3 -3
- data/lib/puppet/face/node.rb +3 -4
- data/lib/puppet/face/node/clean.rb +5 -68
- data/lib/puppet/face/parser.rb +6 -8
- data/lib/puppet/face/report.rb +4 -4
- data/lib/puppet/face/resource.rb +1 -1
- data/lib/puppet/face/resource_type.rb +7 -4
- data/lib/puppet/face/status.rb +6 -12
- data/lib/puppet/feature/base.rb +0 -7
- data/lib/puppet/file_bucket/dipper.rb +1 -2
- data/lib/puppet/file_bucket/file.rb +12 -25
- data/lib/puppet/file_serving/base.rb +1 -11
- data/lib/puppet/file_serving/content.rb +5 -7
- data/lib/puppet/file_serving/metadata.rb +4 -61
- data/lib/puppet/file_serving/mount/pluginfacts.rb +1 -1
- data/lib/puppet/file_serving/mount/plugins.rb +1 -1
- data/lib/puppet/file_serving/terminus_helper.rb +16 -5
- data/lib/puppet/file_system.rb +6 -22
- data/lib/puppet/file_system/file_impl.rb +0 -4
- data/lib/puppet/file_system/memory_file.rb +0 -5
- data/lib/puppet/file_system/memory_impl.rb +0 -4
- data/lib/puppet/file_system/{file19.rb → posix.rb} +1 -1
- data/lib/puppet/file_system/{file19windows.rb → windows.rb} +2 -10
- data/lib/puppet/forge/repository.rb +12 -8
- data/lib/puppet/functions.rb +17 -51
- data/lib/puppet/functions/assert_type.rb +7 -7
- data/lib/puppet/functions/each.rb +1 -3
- data/lib/puppet/functions/epp.rb +3 -3
- data/lib/puppet/functions/filter.rb +3 -5
- data/lib/puppet/functions/hiera.rb +2 -23
- data/lib/puppet/functions/hiera_array.rb +3 -25
- data/lib/puppet/functions/hiera_hash.rb +2 -26
- data/lib/puppet/functions/hiera_include.rb +4 -37
- data/lib/puppet/functions/inline_epp.rb +1 -2
- data/lib/puppet/functions/lookup.rb +234 -0
- data/lib/puppet/functions/map.rb +1 -3
- data/lib/puppet/functions/match.rb +5 -5
- data/lib/puppet/functions/reduce.rb +1 -3
- data/lib/puppet/functions/regsubst.rb +79 -0
- data/lib/puppet/functions/scanf.rb +4 -3
- data/lib/puppet/functions/slice.rb +1 -3
- data/lib/puppet/functions/split.rb +47 -0
- data/lib/puppet/functions/with.rb +1 -1
- data/lib/puppet/graph/relationship_graph.rb +41 -13
- data/lib/puppet/graph/simple_graph.rb +6 -10
- data/lib/puppet/indirector/catalog/compiler.rb +0 -2
- data/lib/puppet/indirector/catalog/static_compiler.rb +4 -5
- data/lib/puppet/indirector/direct_file_server.rb +1 -3
- data/lib/puppet/indirector/face.rb +11 -2
- data/lib/puppet/indirector/facts/facter.rb +5 -1
- data/lib/puppet/indirector/facts/network_device.rb +5 -2
- data/lib/puppet/indirector/facts/store_configs.rb +3 -0
- data/lib/puppet/indirector/facts/yaml.rb +4 -0
- data/lib/puppet/indirector/file_metadata/file.rb +0 -15
- data/lib/puppet/indirector/file_server.rb +2 -16
- data/lib/puppet/indirector/hiera.rb +39 -1
- data/lib/puppet/indirector/indirection.rb +2 -9
- data/lib/puppet/indirector/node/ldap.rb +1 -1
- data/lib/puppet/indirector/request.rb +21 -81
- data/lib/puppet/indirector/resource/ral.rb +1 -2
- data/lib/puppet/indirector/resource/store_configs.rb +1 -2
- data/lib/puppet/indirector/resource_type/parser.rb +1 -1
- data/lib/puppet/indirector/rest.rb +21 -33
- data/lib/puppet/interface.rb +0 -7
- data/lib/puppet/interface/action_builder.rb +1 -1
- data/lib/puppet/interface/action_manager.rb +9 -13
- data/lib/puppet/interface/face_collection.rb +2 -2
- data/lib/puppet/interface/option_builder.rb +1 -3
- data/lib/puppet/metatype/manager.rb +1 -7
- data/lib/puppet/module.rb +42 -35
- data/lib/puppet/module_tool.rb +5 -7
- data/lib/puppet/module_tool/applications/application.rb +3 -10
- data/lib/puppet/module_tool/applications/installer.rb +13 -15
- data/lib/puppet/module_tool/applications/unpacker.rb +1 -1
- data/lib/puppet/module_tool/applications/upgrader.rb +9 -11
- data/lib/puppet/module_tool/contents_description.rb +17 -13
- data/lib/puppet/module_tool/installed_modules.rb +4 -6
- data/lib/puppet/module_tool/metadata.rb +3 -14
- data/lib/puppet/module_tool/skeleton/templates/generator/Gemfile +3 -3
- data/lib/puppet/module_tool/skeleton/templates/generator/Rakefile +0 -1
- data/lib/puppet/module_tool/skeleton/templates/generator/manifests/init.pp.erb +1 -1
- data/lib/puppet/module_tool/tar/gnu.rb +1 -1
- data/lib/puppet/module_tool/tar/mini.rb +2 -2
- data/lib/puppet/network/auth_config_parser.rb +2 -2
- data/lib/puppet/network/authconfig.rb +32 -16
- data/lib/puppet/network/format_handler.rb +7 -7
- data/lib/puppet/network/format_support.rb +4 -0
- data/lib/puppet/network/formats.rb +6 -62
- data/lib/puppet/network/http.rb +12 -2
- data/lib/puppet/network/http/api.rb +42 -0
- data/lib/puppet/network/http/api/ca.rb +2 -0
- data/lib/puppet/network/http/api/ca/v1.rb +11 -0
- data/lib/puppet/network/http/api/{v1.rb → indirected_routes.rb} +57 -29
- data/lib/puppet/network/http/api/indirection_type.rb +32 -0
- data/lib/puppet/network/http/api/master.rb +2 -0
- data/lib/puppet/network/http/api/master/v3.rb +22 -0
- data/lib/puppet/network/http/api/master/v3/authorization.rb +18 -0
- data/lib/puppet/network/http/api/{v2 → master/v3}/environments.rb +2 -2
- data/lib/puppet/network/http/compression.rb +3 -5
- data/lib/puppet/network/http/connection.rb +1 -8
- data/lib/puppet/network/http/factory.rb +2 -3
- data/lib/puppet/network/http/handler.rb +3 -11
- data/lib/puppet/network/http/rack/rest.rb +4 -4
- data/lib/puppet/network/http/request.rb +4 -4
- data/lib/puppet/network/http/webrick.rb +1 -6
- data/lib/puppet/network/http/webrick/rest.rb +15 -8
- data/lib/puppet/network/resolver.rb +2 -2
- data/lib/puppet/network/rights.rb +2 -2
- data/lib/puppet/node.rb +2 -29
- data/lib/puppet/node/environment.rb +92 -184
- data/lib/puppet/node/facts.rb +22 -44
- data/lib/puppet/parameter.rb +3 -16
- data/lib/puppet/parameter/value.rb +1 -3
- data/lib/puppet/parameter/value_collection.rb +12 -11
- data/lib/puppet/parser.rb +12 -2
- data/lib/puppet/parser/ast.rb +9 -78
- data/lib/puppet/parser/ast/block_expression.rb +11 -36
- data/lib/puppet/parser/ast/branch.rb +15 -18
- data/lib/puppet/parser/ast/hostclass.rb +1 -3
- data/lib/puppet/parser/ast/leaf.rb +55 -212
- data/lib/puppet/parser/ast/node.rb +3 -11
- data/lib/puppet/parser/ast/pops_bridge.rb +2 -7
- data/lib/puppet/parser/ast/resource.rb +14 -20
- data/lib/puppet/parser/ast/resource_instance.rb +4 -7
- data/lib/puppet/parser/ast/resourceparam.rb +21 -22
- data/lib/puppet/parser/compiler.rb +41 -70
- data/lib/puppet/parser/e4_parser_adapter.rb +2 -23
- data/lib/puppet/parser/files.rb +22 -67
- data/lib/puppet/parser/functions.rb +1 -3
- data/lib/puppet/parser/functions/assert_type.rb +1 -2
- data/lib/puppet/parser/functions/contain.rb +5 -3
- data/lib/puppet/parser/functions/create_resources.rb +9 -1
- data/lib/puppet/parser/functions/defined.rb +33 -61
- data/lib/puppet/parser/functions/each.rb +1 -3
- data/lib/puppet/parser/functions/epp.rb +1 -2
- data/lib/puppet/parser/functions/file.rb +1 -3
- data/lib/puppet/parser/functions/filter.rb +1 -3
- data/lib/puppet/parser/functions/hiera.rb +4 -6
- data/lib/puppet/parser/functions/hiera_array.rb +4 -6
- data/lib/puppet/parser/functions/hiera_hash.rb +6 -8
- data/lib/puppet/parser/functions/hiera_include.rb +2 -10
- data/lib/puppet/parser/functions/include.rb +4 -2
- data/lib/puppet/parser/functions/lookup.rb +115 -105
- data/lib/puppet/parser/functions/map.rb +1 -3
- data/lib/puppet/parser/functions/match.rb +1 -2
- data/lib/puppet/parser/functions/realize.rb +1 -6
- data/lib/puppet/parser/functions/reduce.rb +1 -3
- data/lib/puppet/parser/functions/regsubst.rb +1 -57
- data/lib/puppet/parser/functions/require.rb +6 -4
- data/lib/puppet/parser/functions/scanf.rb +1 -1
- data/lib/puppet/parser/functions/slice.rb +1 -3
- data/lib/puppet/parser/functions/split.rb +1 -1
- data/lib/puppet/parser/functions/with.rb +1 -2
- data/lib/puppet/parser/parser_factory.rb +5 -21
- data/lib/puppet/parser/relationship.rb +14 -37
- data/lib/puppet/parser/resource.rb +11 -22
- data/lib/puppet/parser/scope.rb +45 -135
- data/lib/puppet/parser/templatewrapper.rb +1 -29
- data/lib/puppet/parser/type_loader.rb +12 -15
- data/lib/puppet/plugins.rb +9 -0
- data/lib/{puppetx/puppet/bindings_scheme_handler.rb → puppet/plugins/binding_schemes.rb} +14 -4
- data/lib/puppet/plugins/configuration.rb +68 -0
- data/lib/puppet/plugins/data_providers.rb +90 -0
- data/lib/{puppetx/puppet/syntax_checker.rb → puppet/plugins/syntax_checkers.rb} +14 -2
- data/lib/puppet/pops.rb +6 -7
- data/lib/puppet/pops/adaptable.rb +16 -5
- data/lib/puppet/pops/binder/binder.rb +5 -4
- data/lib/puppet/pops/binder/bindings_composer.rb +6 -4
- data/lib/puppet/pops/binder/bindings_factory.rb +4 -0
- data/lib/puppet/pops/binder/bindings_label_provider.rb +1 -1
- data/lib/puppet/pops/binder/bindings_loader.rb +3 -8
- data/lib/puppet/pops/binder/bindings_model_dumper.rb +36 -8
- data/lib/puppet/pops/binder/config/binder_config.rb +2 -2
- data/lib/puppet/pops/binder/config/binder_config_checker.rb +1 -1
- data/lib/puppet/pops/binder/config/issues.rb +4 -0
- data/lib/puppet/pops/binder/injector.rb +0 -1
- data/lib/puppet/pops/binder/scheme_handler/symbolic_scheme.rb +1 -1
- data/lib/puppet/pops/evaluator/access_operator.rb +18 -50
- data/lib/puppet/pops/evaluator/callable_mismatch_describer.rb +5 -5
- data/lib/puppet/pops/evaluator/callable_signature.rb +2 -2
- data/lib/puppet/pops/evaluator/closure.rb +16 -21
- data/lib/puppet/pops/evaluator/collector_transformer.rb +11 -1
- data/lib/puppet/pops/evaluator/compare_operator.rb +0 -43
- data/lib/puppet/pops/evaluator/epp_evaluator.rb +1 -1
- data/lib/puppet/pops/evaluator/evaluator_impl.rb +36 -152
- data/lib/puppet/pops/evaluator/external_syntax_support.rb +6 -3
- data/lib/puppet/pops/evaluator/relationship_operator.rb +1 -1
- data/lib/puppet/pops/evaluator/runtime3_converter.rb +1 -1
- data/lib/puppet/pops/evaluator/runtime3_support.rb +9 -57
- data/lib/puppet/pops/functions/dispatch.rb +1 -6
- data/lib/puppet/pops/issue_reporter.rb +16 -42
- data/lib/puppet/pops/issues.rb +13 -128
- data/lib/puppet/pops/loader/dependency_loader.rb +3 -3
- data/lib/puppet/pops/loader/loader.rb +21 -20
- data/lib/puppet/pops/loaders.rb +13 -8
- data/lib/puppet/pops/lookup.rb +96 -0
- data/lib/puppet/pops/merge_strategy.rb +283 -0
- data/lib/puppet/pops/model/ast_transformer.rb +4 -522
- data/lib/puppet/pops/model/factory.rb +20 -21
- data/lib/puppet/pops/model/model.rb +1 -1
- data/lib/puppet/pops/model/model_label_provider.rb +1 -1
- data/lib/puppet/pops/model/model_meta.rb +10 -7
- data/lib/puppet/pops/model/tree_dumper.rb +1 -1
- data/lib/puppet/pops/parser/egrammar.ra +1 -13
- data/lib/puppet/pops/parser/eparser.rb +1132 -1272
- data/lib/puppet/pops/parser/epp_support.rb +11 -22
- data/lib/puppet/pops/parser/evaluating_parser.rb +11 -10
- data/lib/puppet/pops/parser/heredoc_support.rb +12 -13
- data/lib/puppet/pops/parser/interpolation_support.rb +1 -7
- data/lib/puppet/pops/parser/lexer2.rb +33 -36
- data/lib/puppet/pops/parser/lexer_support.rb +20 -46
- data/lib/puppet/pops/parser/locator.rb +6 -30
- data/lib/puppet/pops/parser/parser_support.rb +14 -11
- data/lib/puppet/pops/parser/slurp_support.rb +6 -22
- data/lib/puppet/pops/patterns.rb +0 -3
- data/lib/puppet/pops/types/class_loader.rb +8 -8
- data/lib/puppet/pops/types/enumeration.rb +1 -1
- data/lib/puppet/pops/types/type_asserter.rb +45 -0
- data/lib/puppet/pops/types/type_assertion_error.rb +26 -0
- data/lib/puppet/pops/types/type_calculator.rb +110 -212
- data/lib/puppet/pops/types/type_factory.rb +15 -74
- data/lib/puppet/pops/types/type_parser.rb +15 -24
- data/lib/puppet/pops/types/types.rb +25 -35
- data/lib/puppet/pops/types/types_meta.rb +2 -13
- data/lib/puppet/pops/utils.rb +1 -1
- data/lib/puppet/pops/validation.rb +3 -26
- data/lib/puppet/pops/validation/checker4_0.rb +6 -56
- data/lib/puppet/pops/validation/validator_factory_4_0.rb +1 -3
- data/lib/puppet/pops/visitor.rb +10 -7
- data/lib/puppet/property.rb +44 -124
- data/lib/puppet/provider.rb +0 -52
- data/lib/puppet/provider/aixobject.rb +2 -2
- data/lib/puppet/provider/augeas/augeas.rb +9 -6
- data/lib/puppet/provider/command.rb +1 -1
- data/lib/puppet/provider/cron/crontab.rb +37 -0
- data/lib/puppet/provider/exec.rb +2 -16
- data/lib/puppet/provider/file/posix.rb +1 -1
- data/lib/puppet/provider/file/windows.rb +1 -1
- data/lib/puppet/provider/group/aix.rb +1 -1
- data/lib/puppet/provider/group/pw.rb +0 -1
- data/lib/puppet/provider/group/windows_adsi.rb +4 -18
- data/lib/puppet/provider/host/parsed.rb +4 -2
- data/lib/puppet/provider/macauthorization/macauthorization.rb +0 -12
- data/lib/puppet/provider/mailalias/aliases.rb +23 -12
- data/lib/puppet/provider/mount/parsed.rb +2 -145
- data/lib/puppet/provider/nameservice/directoryservice.rb +57 -131
- data/lib/puppet/provider/network_device.rb +3 -0
- data/lib/puppet/provider/package/appdmg.rb +5 -2
- data/lib/puppet/provider/package/apt.rb +1 -1
- data/lib/puppet/provider/package/fink.rb +1 -1
- data/lib/puppet/provider/package/openbsd.rb +26 -12
- data/lib/puppet/provider/package/opkg.rb +6 -1
- data/lib/puppet/provider/package/pacman.rb +159 -127
- data/lib/puppet/provider/package/pip.rb +1 -11
- data/lib/puppet/provider/package/pkg.rb +73 -29
- data/lib/puppet/provider/package/pkgdmg.rb +2 -2
- data/lib/puppet/provider/package/pkgin.rb +1 -1
- data/lib/puppet/provider/package/portage.rb +5 -1
- data/lib/puppet/provider/package/portupgrade.rb +0 -2
- data/lib/puppet/provider/package/rpm.rb +109 -0
- data/lib/puppet/provider/package/rug.rb +0 -1
- data/lib/puppet/provider/package/windows/package.rb +1 -1
- data/lib/puppet/provider/package/yum.rb +121 -30
- data/lib/puppet/provider/package/zypper.rb +8 -17
- data/lib/puppet/provider/scheduled_task/win32_taskscheduler.rb +7 -32
- data/lib/puppet/provider/service/base.rb +17 -3
- data/lib/puppet/provider/service/bsd.rb +1 -1
- data/lib/puppet/provider/service/daemontools.rb +1 -1
- data/lib/puppet/provider/service/init.rb +0 -7
- data/lib/puppet/provider/service/launchd.rb +11 -89
- data/lib/puppet/provider/service/openbsd.rb +56 -298
- data/lib/puppet/provider/service/runit.rb +1 -1
- data/lib/puppet/provider/service/systemd.rb +1 -0
- data/lib/puppet/provider/service/upstart.rb +4 -2
- data/lib/puppet/provider/ssh_authorized_key/parsed.rb +1 -1
- data/lib/puppet/provider/user/aix.rb +1 -1
- data/lib/puppet/provider/user/directoryservice.rb +40 -70
- data/lib/puppet/provider/user/hpux.rb +31 -2
- data/lib/puppet/provider/user/openbsd.rb +74 -0
- data/lib/puppet/provider/user/pw.rb +0 -1
- data/lib/puppet/provider/user/user_role_add.rb +1 -3
- data/lib/puppet/provider/user/windows_adsi.rb +2 -9
- data/lib/puppet/provider/yumrepo/inifile.rb +1 -3
- data/lib/puppet/provider/zfs/zfs.rb +3 -2
- data/lib/puppet/provider/zone/solaris.rb +3 -3
- data/lib/puppet/reference/configuration.rb +4 -3
- data/lib/puppet/reference/metaparameter.rb +0 -9
- data/lib/puppet/reference/providers.rb +1 -1
- data/lib/puppet/reference/type.rb +8 -10
- data/lib/puppet/relationship.rb +4 -17
- data/lib/puppet/resource.rb +132 -114
- data/lib/puppet/resource/catalog.rb +23 -30
- data/lib/puppet/resource/status.rb +74 -22
- data/lib/puppet/resource/type.rb +12 -52
- data/lib/puppet/resource/type_collection.rb +26 -73
- data/lib/puppet/settings.rb +94 -153
- data/lib/puppet/settings/base_setting.rb +6 -30
- data/lib/puppet/settings/config_file.rb +14 -11
- data/lib/puppet/settings/duration_setting.rb +1 -1
- data/lib/puppet/settings/environment_conf.rb +14 -12
- data/lib/puppet/settings/file_setting.rb +9 -10
- data/lib/puppet/settings/ttl_setting.rb +1 -3
- data/lib/puppet/ssl/certificate.rb +38 -8
- data/lib/puppet/ssl/certificate_authority/interface.rb +7 -1
- data/lib/puppet/ssl/certificate_factory.rb +3 -3
- data/lib/puppet/ssl/certificate_request.rb +36 -8
- data/lib/puppet/ssl/configuration.rb +2 -8
- data/lib/puppet/ssl/host.rb +1 -8
- data/lib/puppet/ssl/inventory.rb +0 -7
- data/lib/puppet/ssl/oids.rb +72 -3
- data/lib/puppet/ssl/validator/default_validator.rb +0 -1
- data/lib/puppet/status.rb +0 -5
- data/lib/puppet/syntax_checkers.rb +3 -0
- data/lib/{puppetx/puppetlabs → puppet}/syntax_checkers/json.rb +2 -2
- data/lib/puppet/test/test_helper.rb +11 -12
- data/lib/puppet/transaction.rb +12 -9
- data/lib/puppet/transaction/event.rb +4 -5
- data/lib/puppet/transaction/event_manager.rb +50 -5
- data/lib/puppet/transaction/report.rb +5 -10
- data/lib/puppet/transaction/resource_harness.rb +7 -2
- data/lib/puppet/type.rb +113 -29
- data/lib/puppet/type/augeas.rb +1 -0
- data/lib/puppet/type/exec.rb +2 -2
- data/lib/puppet/type/file.rb +8 -9
- data/lib/puppet/type/file/content.rb +19 -15
- data/lib/puppet/type/file/mode.rb +16 -11
- data/lib/puppet/type/file/selcontext.rb +1 -1
- data/lib/puppet/type/file/source.rb +15 -15
- data/lib/puppet/type/filebucket.rb +2 -2
- data/lib/puppet/type/group.rb +5 -17
- data/lib/puppet/type/host.rb +12 -3
- data/lib/puppet/type/k5login.rb +1 -1
- data/lib/puppet/type/mailalias.rb +20 -6
- data/lib/puppet/type/maillist.rb +1 -1
- data/lib/puppet/type/mount.rb +6 -16
- data/lib/puppet/type/notify.rb +1 -1
- data/lib/puppet/type/package.rb +91 -16
- data/lib/puppet/type/resources.rb +0 -7
- data/lib/puppet/type/router.rb +1 -1
- data/lib/puppet/type/schedule.rb +1 -1
- data/lib/puppet/type/scheduled_task.rb +0 -13
- data/lib/puppet/type/selboolean.rb +2 -2
- data/lib/puppet/type/service.rb +1 -1
- data/lib/puppet/type/ssh_authorized_key.rb +1 -1
- data/lib/puppet/type/sshkey.rb +1 -1
- data/lib/puppet/type/tidy.rb +4 -1
- data/lib/puppet/type/user.rb +16 -3
- data/lib/puppet/type/yumrepo.rb +26 -0
- data/lib/puppet/type/zfs.rb +1 -1
- data/lib/puppet/type/zpool.rb +1 -1
- data/lib/puppet/util.rb +2 -85
- data/lib/puppet/util/autoload.rb +3 -13
- data/lib/puppet/util/checksums.rb +59 -22
- data/lib/puppet/util/classgen.rb +1 -9
- data/lib/puppet/util/colors.rb +0 -117
- data/lib/puppet/util/command_line.rb +1 -23
- data/lib/puppet/util/errors.rb +2 -4
- data/lib/puppet/util/execution.rb +19 -22
- data/lib/puppet/util/feature.rb +2 -4
- data/lib/puppet/util/fileparsing.rb +3 -2
- data/lib/puppet/util/log.rb +13 -56
- data/lib/puppet/util/log/destinations.rb +17 -36
- data/lib/puppet/util/logging.rb +52 -37
- data/lib/puppet/util/metric.rb +0 -149
- data/lib/puppet/util/monkey_patches.rb +1 -94
- data/lib/puppet/util/network_device/base.rb +1 -5
- data/lib/puppet/util/network_device/cisco/interface.rb +2 -2
- data/lib/puppet/util/network_device/config.rb +0 -5
- data/lib/puppet/util/network_device/transport/ssh.rb +2 -2
- data/lib/puppet/util/profiler.rb +1 -1
- data/lib/puppet/util/profiler/aggregate.rb +1 -1
- data/lib/puppet/util/profiler/around_profiler.rb +1 -1
- data/lib/puppet/util/psych_support.rb +38 -0
- data/lib/puppet/util/rdoc.rb +6 -42
- data/lib/puppet/util/rdoc/code_objects.rb +5 -45
- data/lib/puppet/util/rdoc/generators/puppet_generator.rb +1 -1
- data/lib/puppet/util/rdoc/parser.rb +5 -15
- data/lib/puppet/util/rdoc/parser/puppet_parser_core.rb +8 -227
- data/lib/puppet/util/retry_action.rb +46 -0
- data/lib/puppet/util/run_mode.rb +31 -7
- data/lib/puppet/util/selinux.rb +2 -2
- data/lib/puppet/util/ssl.rb +11 -11
- data/lib/puppet/util/suidmanager.rb +4 -31
- data/lib/puppet/util/tag_set.rb +0 -11
- data/lib/puppet/util/tagging.rb +50 -19
- data/lib/puppet/util/warnings.rb +1 -0
- data/lib/puppet/util/windows/adsi.rb +13 -60
- data/lib/puppet/util/windows/api_types.rb +16 -2
- data/lib/puppet/util/windows/file.rb +2 -8
- data/lib/puppet/util/windows/process.rb +58 -0
- data/lib/puppet/util/windows/registry.rb +319 -31
- data/lib/puppet/util/windows/security.rb +1 -68
- data/lib/puppet/util/windows/taskscheduler.rb +0 -21
- data/lib/puppet/util/windows/user.rb +2 -3
- data/lib/puppet/vendor/deep_merge/CHANGELOG +45 -0
- data/lib/puppet/vendor/deep_merge/Gemfile +3 -0
- data/lib/puppet/vendor/deep_merge/LICENSE +21 -0
- data/lib/puppet/vendor/deep_merge/README.md +113 -0
- data/lib/puppet/vendor/deep_merge/Rakefile +19 -0
- data/lib/puppet/vendor/deep_merge/deep_merge.gemspec +35 -0
- data/lib/puppet/vendor/deep_merge/lib/deep_merge.rb +2 -0
- data/lib/puppet/vendor/deep_merge/lib/deep_merge/core.rb +210 -0
- data/lib/puppet/vendor/deep_merge/lib/deep_merge/deep_merge_hash.rb +28 -0
- data/lib/puppet/vendor/deep_merge/lib/deep_merge/rails_compat.rb +27 -0
- data/lib/puppet/vendor/deep_merge/test/test_deep_merge.rb +608 -0
- data/lib/puppet/vendor/load_deep_merge.rb +1 -0
- data/lib/puppet/vendor/load_rgen.rb +1 -0
- data/lib/puppet/vendor/require_vendored.rb +1 -3
- data/lib/puppet/vendor/rgen_patch.rb +132 -0
- data/lib/puppet/version.rb +1 -1
- data/lib/puppet_x.rb +8 -0
- data/lib/semver.rb +0 -1
- data/man/man5/puppet.conf.5 +432 -287
- data/man/man8/extlookup2hiera.8 +2 -15
- data/man/man8/puppet-agent.8 +14 -14
- data/man/man8/puppet-apply.8 +29 -30
- data/man/man8/puppet-ca.8 +29 -17
- data/man/man8/puppet-catalog.8 +5 -34
- data/man/man8/puppet-cert.8 +8 -4
- data/man/man8/puppet-certificate.8 +15 -29
- data/man/man8/puppet-certificate_request.8 +9 -16
- data/man/man8/puppet-certificate_revocation_list.8 +5 -31
- data/man/man8/puppet-config.8 +52 -11
- data/man/man8/puppet-describe.8 +1 -1
- data/man/man8/puppet-device.8 +5 -16
- data/man/man8/puppet-doc.8 +7 -80
- data/man/man8/puppet-epp.8 +349 -0
- data/man/man8/puppet-facts.8 +5 -95
- data/man/man8/puppet-file.8 +2 -28
- data/man/man8/puppet-filebucket.8 +2 -2
- data/man/man8/puppet-help.8 +2 -2
- data/man/man8/puppet-inspect.8 +1 -1
- data/man/man8/puppet-key.8 +6 -3
- data/man/man8/puppet-man.8 +2 -2
- data/man/man8/puppet-master.8 +11 -7
- data/man/man8/puppet-module.8 +75 -49
- data/man/man8/puppet-node.8 +8 -56
- data/man/man8/puppet-parser.8 +38 -4
- data/man/man8/puppet-plugin.8 +2 -2
- data/man/man8/puppet-report.8 +8 -70
- data/man/man8/puppet-resource.8 +7 -3
- data/man/man8/puppet-resource_type.8 +2 -28
- data/man/man8/puppet-status.8 +5 -47
- data/man/man8/puppet.8 +2 -2
- data/spec/fixtures/integration/provider/mailalias/aliases/test1 +3 -0
- data/spec/fixtures/integration/provider/sshkey/sample +21 -0
- data/spec/fixtures/unit/data_providers/environments/production/environment.conf +2 -0
- data/spec/fixtures/unit/data_providers/environments/production/lib/puppet/functions/environment/data.rb +7 -0
- data/spec/fixtures/unit/data_providers/environments/production/modules/abc/lib/puppet/bindings/abc/default.rb +9 -0
- data/spec/fixtures/unit/data_providers/environments/production/modules/abc/lib/puppet/functions/abc/data.rb +8 -0
- data/spec/fixtures/unit/data_providers/environments/production/modules/abc/manifests/init.pp +9 -0
- data/spec/fixtures/unit/data_providers/environments/sample/environment.conf +2 -0
- data/spec/fixtures/unit/data_providers/environments/sample/manifests/site.pp +6 -0
- data/spec/fixtures/unit/data_providers/environments/sample/modules/dataprovider/lib/puppet/bindings/dataprovider/default.rb +54 -0
- data/spec/fixtures/unit/data_providers/environments/sample/modules/dataprovider/lib/puppet_x/helindbe/sample_env_data.rb +31 -0
- data/spec/fixtures/unit/data_providers/environments/sample/modules/dataprovider/lib/puppet_x/helindbe/sample_module_data.rb +32 -0
- data/spec/fixtures/unit/data_providers/environments/sample/modules/dataprovider/manifests/init.pp +5 -0
- data/spec/fixtures/unit/functions/lookup/environments/production/environment.conf +2 -0
- data/spec/fixtures/unit/functions/lookup/environments/production/lib/puppet/functions/environment/data.rb +11 -0
- data/spec/fixtures/unit/functions/lookup/environments/production/modules/abc/lib/puppet/bindings/abc/default.rb +9 -0
- data/spec/fixtures/unit/functions/lookup/environments/production/modules/abc/lib/puppet/functions/abc/data.rb +9 -0
- data/spec/fixtures/unit/functions/lookup/environments/production/modules/abc/manifests/init.pp +8 -0
- data/spec/fixtures/unit/parser/lexer/subclass_name_duplication.pp +0 -0
- data/spec/fixtures/unit/pops/binder/bindings_composer/ok/binder_config.yaml +1 -1
- data/spec/fixtures/unit/pops/binder/bindings_composer/ok/modules/awesome2/lib/{puppetx → puppet_x}/awesome2/echo_scheme_handler.rb +3 -3
- data/spec/fixtures/unit/pops/binder/config/binder_config/nolayer/binder_config.yaml +6 -0
- data/spec/fixtures/unit/pops/parser/lexer/subclass_name_duplication.pp +0 -0
- data/spec/fixtures/unit/provider/mount/parsed/aix.filesystems +85 -93
- data/spec/fixtures/unit/provider/mount/parsed/aix.mount +7 -11
- data/spec/fixtures/unit/provider/package/pkg/dummy_implicit_version +3 -0
- data/spec/fixtures/unit/provider/package/pkg/dummy_solaris10 +1 -1
- data/spec/fixtures/unit/provider/package/pkg/dummy_solaris11.certificate_warning +1 -1
- data/spec/fixtures/unit/provider/package/pkg/dummy_solaris11.ifo.installed +1 -1
- data/spec/fixtures/unit/provider/package/pkg/dummy_solaris11.ifo.known +1 -1
- data/spec/fixtures/unit/provider/package/pkg/dummy_solaris11.installed +1 -1
- data/spec/fixtures/unit/provider/package/pkg/dummy_solaris11.known +1 -1
- data/spec/fixtures/unit/provider/package/pkg/incomplete +1 -1
- data/spec/fixtures/unit/provider/package/pkg/solaris11 +2 -2
- data/spec/fixtures/unit/provider/package/pkg/unknown_status +12 -12
- data/spec/fixtures/unit/provider/package/yum/yum-check-update-multiline.txt +201 -0
- data/spec/fixtures/unit/provider/package/yum/yum-check-update-simple.txt +12 -0
- data/spec/fixtures/unit/provider/parsedfile/simple.txt +3 -0
- data/spec/fixtures/unit/provider/service/openbsd/rcctl_getall +6 -0
- data/spec/fixtures/unit/ssl/certificate/old-style-cert-exts.pem +33 -0
- data/spec/fixtures/unit/ssl/certificate_request/old-style-cert-request.pem +28 -0
- data/spec/integration/agent/logging_spec.rb +1 -5
- data/spec/integration/application/apply_spec.rb +1 -1
- data/spec/integration/application/doc_spec.rb +1 -43
- data/spec/integration/configurer_spec.rb +5 -5
- data/spec/integration/data_binding.rb +4 -0
- data/spec/integration/defaults_spec.rb +42 -143
- data/spec/integration/directory_environments_spec.rb +3 -3
- data/spec/integration/environments/default_manifest_spec.rb +3 -51
- data/spec/integration/environments/setting_hooks_spec.rb +1 -1
- data/spec/integration/environments/settings_interpolation_spec.rb +50 -105
- data/spec/integration/environments/settings_spec.rb +100 -0
- data/spec/integration/faces/ca_spec.rb +51 -51
- data/spec/integration/faces/documentation_spec.rb +6 -6
- data/spec/integration/file_bucket/file_spec.rb +5 -16
- data/spec/integration/file_serving/fileset_spec.rb +1 -1
- data/spec/integration/file_serving/terminus_helper_spec.rb +1 -1
- data/spec/integration/indirector/catalog/compiler_spec.rb +6 -6
- data/spec/integration/indirector/direct_file_server_spec.rb +40 -12
- data/spec/integration/indirector/facts/facter_spec.rb +1 -1
- data/spec/integration/indirector/file_content/file_server_spec.rb +23 -21
- data/spec/integration/indirector/file_metadata/file_server_spec.rb +53 -0
- data/spec/integration/indirector/node/ldap_spec.rb +0 -0
- data/spec/integration/network/authconfig_spec.rb +26 -26
- data/spec/integration/network/formats_spec.rb +12 -12
- data/spec/integration/network/http/api/indirected_routes_spec.rb +56 -0
- data/spec/integration/node/environment_spec.rb +12 -15
- data/spec/integration/node/facts_spec.rb +3 -3
- data/spec/integration/node_spec.rb +8 -8
- data/spec/integration/parser/catalog_spec.rb +1 -32
- data/spec/integration/parser/class_spec.rb +0 -4
- data/spec/integration/parser/{collector_spec.rb → collection_spec.rb} +3 -27
- data/spec/integration/parser/compiler_spec.rb +769 -385
- data/spec/integration/parser/conditionals_spec.rb +2 -27
- data/spec/integration/parser/functions/require_spec.rb +8 -8
- data/spec/integration/parser/node_spec.rb +29 -42
- data/spec/integration/parser/resource_expressions_spec.rb +125 -210
- data/spec/integration/parser/scope_spec.rb +168 -319
- data/spec/integration/parser/undef_param_spec.rb +5 -5
- data/spec/integration/provider/cron/crontab_spec.rb +3 -3
- data/spec/integration/provider/mailalias/aliases_spec.rb +0 -0
- data/spec/integration/provider/mount_spec.rb +33 -28
- data/spec/integration/provider/package_spec.rb +3 -14
- data/spec/integration/provider/service/init_spec.rb +4 -4
- data/spec/integration/provider/service/systemd_spec.rb +3 -3
- data/spec/integration/provider/ssh_authorized_key_spec.rb +12 -12
- data/spec/integration/provider/sshkey_spec.rb +159 -0
- data/spec/integration/reference/providers_spec.rb +1 -1
- data/spec/integration/reports_spec.rb +1 -1
- data/spec/integration/resource/catalog_spec.rb +3 -3
- data/spec/integration/resource/type_collection_spec.rb +10 -25
- data/spec/integration/ssl/autosign_spec.rb +1 -1
- data/spec/integration/ssl/certificate_authority_spec.rb +8 -8
- data/spec/integration/ssl/certificate_request_spec.rb +2 -2
- data/spec/integration/ssl/certificate_revocation_list_spec.rb +0 -0
- data/spec/integration/ssl/host_spec.rb +7 -7
- data/spec/integration/transaction/report_spec.rb +0 -0
- data/spec/integration/transaction_spec.rb +86 -50
- data/spec/integration/type/exec_spec.rb +5 -5
- data/spec/integration/type/file_spec.rb +277 -280
- data/spec/integration/type/package_spec.rb +105 -6
- data/spec/integration/type/tidy_spec.rb +1 -1
- data/spec/integration/type/user_spec.rb +4 -4
- data/spec/integration/type_spec.rb +2 -2
- data/spec/integration/util/autoload_spec.rb +7 -12
- data/spec/integration/util/rdoc/parser_spec.rb +13 -99
- data/spec/integration/util/settings_spec.rb +1 -1
- data/spec/integration/util/windows/process_spec.rb +6 -6
- data/spec/integration/util/windows/security_spec.rb +79 -105
- data/spec/integration/util/windows/user_spec.rb +12 -12
- data/spec/integration/util_spec.rb +8 -8
- data/spec/lib/matchers/containment_matchers.rb +1 -1
- data/spec/lib/matchers/include.rb +3 -3
- data/spec/lib/matchers/include_in_order.rb +2 -2
- data/spec/lib/matchers/json.rb +5 -35
- data/spec/lib/matchers/match_tokens2.rb +1 -1
- data/spec/lib/matchers/relationship_graph_matchers.rb +1 -1
- data/spec/lib/matchers/resource.rb +8 -23
- data/spec/lib/puppet/face/1.0.0/huzzah.rb +2 -2
- data/spec/lib/puppet/face/basetest.rb +0 -0
- data/spec/lib/puppet/face/huzzah.rb +2 -2
- data/spec/lib/puppet/face/version_matching.rb +1 -1
- data/spec/lib/puppet/indirector_proxy.rb +34 -0
- data/spec/lib/puppet/indirector_testing.rb +1 -11
- data/spec/lib/puppet_spec/files.rb +1 -1
- data/spec/lib/puppet_spec/fixtures.rb +0 -0
- data/spec/lib/puppet_spec/handler.rb +53 -0
- data/spec/lib/puppet_spec/matchers.rb +12 -5
- data/spec/lib/puppet_spec/module_tool/shared_functions.rb +3 -3
- data/spec/lib/puppet_spec/modules.rb +11 -0
- data/spec/lib/puppet_spec/network.rb +101 -0
- data/spec/lib/puppet_spec/pops.rb +2 -2
- data/spec/lib/puppet_spec/settings.rb +17 -0
- data/spec/lib/puppet_spec/verbose.rb +0 -0
- data/spec/shared_behaviours/all_parsedfile_providers.rb +1 -1
- data/spec/shared_behaviours/an_indirector_face.rb +2 -2
- data/spec/shared_behaviours/documentation_on_faces.rb +46 -46
- data/spec/shared_behaviours/file_server_terminus.rb +1 -1
- data/spec/shared_behaviours/file_serving.rb +0 -0
- data/spec/shared_behaviours/hiera_indirections.rb +10 -10
- data/spec/shared_behaviours/iterative_functions.rb +1 -1
- data/spec/shared_behaviours/memory_terminus.rb +5 -5
- data/spec/shared_behaviours/path_parameters.rb +8 -8
- data/spec/shared_behaviours/store_configs_terminus.rb +3 -3
- data/spec/shared_behaviours/things_that_declare_options.rb +25 -25
- data/spec/shared_contexts/checksum.rb +62 -0
- data/spec/shared_contexts/{checksums.rb → digests.rb} +2 -2
- data/spec/spec_helper.rb +14 -5
- data/spec/unit/agent/disabler_spec.rb +3 -3
- data/spec/unit/agent/locker_spec.rb +9 -9
- data/spec/unit/agent_spec.rb +18 -18
- data/spec/unit/application/agent_spec.rb +25 -92
- data/spec/unit/application/apply_spec.rb +16 -16
- data/spec/unit/application/cert_spec.rb +15 -15
- data/spec/unit/application/certificate_spec.rb +2 -2
- data/spec/unit/application/config_spec.rb +1 -1
- data/spec/unit/application/describe_spec.rb +6 -6
- data/spec/unit/application/device_spec.rb +25 -63
- data/spec/unit/application/doc_spec.rb +22 -31
- data/spec/unit/application/face_base_spec.rb +88 -59
- data/spec/unit/application/facts_spec.rb +2 -11
- data/spec/unit/application/filebucket_spec.rb +7 -7
- data/spec/unit/application/indirection_base_spec.rb +0 -4
- data/spec/unit/application/inspect_spec.rb +21 -21
- data/spec/unit/application/master_spec.rb +8 -9
- data/spec/unit/application/resource_spec.rb +27 -79
- data/spec/unit/application_spec.rb +54 -58
- data/spec/unit/configurer/downloader_factory_spec.rb +0 -0
- data/spec/unit/configurer/downloader_spec.rb +26 -20
- data/spec/unit/configurer/fact_handler_spec.rb +19 -12
- data/spec/unit/configurer/plugin_handler_spec.rb +0 -0
- data/spec/unit/configurer_spec.rb +44 -44
- data/spec/unit/confine/exists_spec.rb +10 -10
- data/spec/unit/confine/false_spec.rb +7 -7
- data/spec/unit/confine/feature_spec.rb +7 -7
- data/spec/unit/confine/true_spec.rb +7 -7
- data/spec/unit/confine/variable_spec.rb +13 -13
- data/spec/unit/confine_collection_spec.rb +12 -12
- data/spec/unit/confine_spec.rb +10 -10
- data/spec/unit/confiner_spec.rb +8 -8
- data/spec/unit/context/trusted_information_spec.rb +9 -2
- data/spec/unit/daemon_spec.rb +10 -21
- data/spec/unit/data_binding_spec.rb +1 -1
- data/spec/unit/data_providers/function_data_provider_spec.rb +96 -0
- data/spec/unit/data_providers/sample_data_provider_spec.rb +52 -0
- data/spec/unit/defaults_spec.rb +6 -6
- data/spec/unit/environments_spec.rb +4 -6
- data/spec/unit/{util → external}/pson_spec.rb +15 -25
- data/spec/unit/face/catalog_spec.rb +0 -0
- data/spec/unit/face/certificate_spec.rb +19 -19
- data/spec/unit/face/config_spec.rb +2 -7
- data/spec/unit/face/epp_face_spec.rb +303 -0
- data/spec/unit/face/facts_spec.rb +1 -15
- data/spec/unit/face/file_spec.rb +3 -5
- data/spec/unit/face/help_spec.rb +17 -16
- data/spec/unit/face/module/build_spec.rb +2 -2
- data/spec/unit/face/module/list_spec.rb +11 -11
- data/spec/unit/face/module/search_spec.rb +17 -17
- data/spec/unit/face/node_spec.rb +4 -122
- data/spec/unit/face/parser_spec.rb +1 -1
- data/spec/unit/face/plugin_spec.rb +2 -2
- data/spec/unit/face_spec.rb +0 -0
- data/spec/unit/file_bucket/dipper_spec.rb +23 -23
- data/spec/unit/file_bucket/file_spec.rb +12 -28
- data/spec/unit/file_serving/base_spec.rb +26 -26
- data/spec/unit/file_serving/configuration/parser_spec.rb +10 -10
- data/spec/unit/file_serving/configuration_spec.rb +17 -17
- data/spec/unit/file_serving/content_spec.rb +19 -31
- data/spec/unit/file_serving/fileset_spec.rb +32 -33
- data/spec/unit/file_serving/metadata_spec.rb +115 -71
- data/spec/unit/file_serving/mount/file_spec.rb +15 -15
- data/spec/unit/file_serving/mount/modules_spec.rb +2 -2
- data/spec/unit/file_serving/mount/pluginfacts_spec.rb +5 -5
- data/spec/unit/file_serving/mount/plugins_spec.rb +5 -5
- data/spec/unit/file_serving/mount_spec.rb +5 -5
- data/spec/unit/file_serving/terminus_helper_spec.rb +19 -0
- data/spec/unit/file_serving/terminus_selector_spec.rb +6 -6
- data/spec/unit/file_system/uniquefile_spec.rb +2 -2
- data/spec/unit/file_system_spec.rb +79 -117
- data/spec/unit/forge/errors_spec.rb +8 -8
- data/spec/unit/forge/module_release_spec.rb +2 -4
- data/spec/unit/forge/repository_spec.rb +38 -44
- data/spec/unit/forge_spec.rb +1 -1
- data/spec/unit/functions/assert_type_spec.rb +1 -1
- data/spec/unit/functions/each_spec.rb +19 -23
- data/spec/unit/functions/epp_spec.rb +9 -17
- data/spec/unit/functions/filter_spec.rb +0 -22
- data/spec/unit/functions/hiera_spec.rb +18 -24
- data/spec/unit/functions/inline_epp_spec.rb +8 -16
- data/spec/unit/functions/lookup_spec.rb +324 -0
- data/spec/unit/functions/map_spec.rb +1 -7
- data/spec/unit/functions/reduce_spec.rb +0 -11
- data/spec/unit/functions/regsubst_spec.rb +94 -0
- data/spec/unit/functions/scanf_spec.rb +0 -4
- data/spec/unit/functions/slice_spec.rb +0 -12
- data/spec/unit/functions/split_spec.rb +46 -0
- data/spec/unit/functions/with_spec.rb +4 -13
- data/spec/unit/functions4_spec.rb +57 -162
- data/spec/unit/graph/rb_tree_map_spec.rb +78 -78
- data/spec/unit/graph/relationship_graph_spec.rb +17 -17
- data/spec/unit/graph/{simple_graph.rb → simple_graph_spec.rb} +122 -126
- data/spec/unit/hiera/scope_spec.rb +13 -12
- data/spec/unit/hiera_puppet_spec.rb +12 -12
- data/spec/unit/indirector/catalog/compiler_spec.rb +10 -15
- data/spec/unit/indirector/catalog/json_spec.rb +2 -2
- data/spec/unit/indirector/catalog/msgpack_spec.rb +2 -2
- data/spec/unit/indirector/catalog/rest_spec.rb +1 -1
- data/spec/unit/indirector/catalog/static_compiler_spec.rb +14 -14
- data/spec/unit/indirector/catalog/store_configs_spec.rb +0 -0
- data/spec/unit/indirector/catalog/yaml_spec.rb +4 -4
- data/spec/unit/indirector/certificate/ca_spec.rb +3 -3
- data/spec/unit/indirector/certificate/disabled_ca_spec.rb +0 -0
- data/spec/unit/indirector/certificate/file_spec.rb +3 -3
- data/spec/unit/indirector/certificate/rest_spec.rb +6 -6
- data/spec/unit/indirector/certificate_request/ca_spec.rb +8 -8
- data/spec/unit/indirector/certificate_request/disabled_ca_spec.rb +0 -0
- data/spec/unit/indirector/certificate_request/file_spec.rb +2 -2
- data/spec/unit/indirector/certificate_request/rest_spec.rb +4 -4
- data/spec/unit/indirector/certificate_revocation_list/ca_spec.rb +2 -2
- data/spec/unit/indirector/certificate_revocation_list/disabled_ca_spec.rb +0 -0
- data/spec/unit/indirector/certificate_revocation_list/file_spec.rb +2 -2
- data/spec/unit/indirector/certificate_revocation_list/rest_spec.rb +4 -4
- data/spec/unit/indirector/certificate_status/file_spec.rb +18 -18
- data/spec/unit/indirector/certificate_status/rest_spec.rb +2 -2
- data/spec/unit/indirector/code_spec.rb +3 -3
- data/spec/unit/indirector/data_binding/hiera_spec.rb +3 -3
- data/spec/unit/indirector/data_binding/none_spec.rb +5 -5
- data/spec/unit/indirector/direct_file_server_spec.rb +14 -4
- data/spec/unit/indirector/envelope_spec.rb +4 -4
- data/spec/unit/indirector/exec_spec.rb +4 -4
- data/spec/unit/indirector/face_spec.rb +13 -8
- data/spec/unit/indirector/facts/facter_spec.rb +10 -20
- data/spec/unit/indirector/facts/network_device_spec.rb +10 -20
- data/spec/unit/indirector/facts/store_configs_spec.rb +0 -0
- data/spec/unit/indirector/facts/yaml_spec.rb +6 -6
- data/spec/unit/indirector/file_bucket_file/file_spec.rb +34 -34
- data/spec/unit/indirector/file_bucket_file/rest_spec.rb +1 -1
- data/spec/unit/indirector/file_content/file_server_spec.rb +2 -2
- data/spec/unit/indirector/file_content/file_spec.rb +2 -2
- data/spec/unit/indirector/file_content/rest_spec.rb +1 -1
- data/spec/unit/indirector/file_metadata/file_server_spec.rb +2 -2
- data/spec/unit/indirector/file_metadata/file_spec.rb +13 -5
- data/spec/unit/indirector/file_metadata/rest_spec.rb +1 -1
- data/spec/unit/indirector/file_server_spec.rb +35 -17
- data/spec/unit/indirector/indirection_spec.rb +56 -56
- data/spec/unit/indirector/json_spec.rb +15 -16
- data/spec/unit/indirector/key/ca_spec.rb +3 -3
- data/spec/unit/indirector/key/disabled_ca_spec.rb +0 -0
- data/spec/unit/indirector/key/file_spec.rb +5 -5
- data/spec/unit/indirector/ldap_spec.rb +13 -13
- data/spec/unit/indirector/memory_spec.rb +0 -0
- data/spec/unit/indirector/msgpack_spec.rb +15 -15
- data/spec/unit/indirector/node/exec_spec.rb +20 -9
- data/spec/unit/indirector/node/ldap_spec.rb +48 -48
- data/spec/unit/indirector/node/memory_spec.rb +0 -0
- data/spec/unit/indirector/node/msgpack_spec.rb +4 -4
- data/spec/unit/indirector/node/plain_spec.rb +2 -2
- data/spec/unit/indirector/node/rest_spec.rb +0 -0
- data/spec/unit/indirector/node/store_configs_spec.rb +0 -0
- data/spec/unit/indirector/node/yaml_spec.rb +4 -4
- data/spec/unit/indirector/none_spec.rb +2 -2
- data/spec/unit/indirector/plain_spec.rb +1 -1
- data/spec/unit/indirector/report/msgpack_spec.rb +5 -5
- data/spec/unit/indirector/report/processor_spec.rb +4 -4
- data/spec/unit/indirector/report/rest_spec.rb +8 -8
- data/spec/unit/indirector/report/yaml_spec.rb +5 -5
- data/spec/unit/indirector/request_spec.rb +103 -206
- data/spec/unit/indirector/resource/ral_spec.rb +8 -10
- data/spec/unit/indirector/resource/store_configs_spec.rb +2 -4
- data/spec/unit/indirector/resource_type/parser_spec.rb +37 -37
- data/spec/unit/indirector/resource_type/rest_spec.rb +2 -2
- data/spec/unit/indirector/rest_spec.rb +70 -55
- data/spec/unit/indirector/ssl_file_spec.rb +13 -13
- data/spec/unit/indirector/status/rest_spec.rb +1 -1
- data/spec/unit/indirector/store_configs_spec.rb +0 -0
- data/spec/unit/indirector/terminus_spec.rb +17 -17
- data/spec/unit/indirector/yaml_spec.rb +12 -12
- data/spec/unit/indirector_spec.rb +7 -7
- data/spec/unit/interface/action_builder_spec.rb +15 -15
- data/spec/unit/interface/action_manager_spec.rb +31 -56
- data/spec/unit/interface/action_spec.rb +62 -65
- data/spec/unit/interface/documentation_spec.rb +2 -2
- data/spec/unit/interface/face_collection_spec.rb +33 -33
- data/spec/unit/interface/option_builder_spec.rb +8 -8
- data/spec/unit/interface/option_spec.rb +23 -23
- data/spec/unit/interface_spec.rb +19 -24
- data/spec/unit/man_spec.rb +0 -0
- data/spec/unit/module_spec.rb +163 -115
- data/spec/unit/module_tool/applications/builder_spec.rb +0 -19
- data/spec/unit/module_tool/applications/installer_spec.rb +29 -29
- data/spec/unit/module_tool/applications/searcher_spec.rb +4 -4
- data/spec/unit/module_tool/applications/uninstaller_spec.rb +15 -15
- data/spec/unit/module_tool/applications/unpacker_spec.rb +3 -3
- data/spec/unit/module_tool/applications/upgrader_spec.rb +28 -28
- data/spec/unit/module_tool/install_directory_spec.rb +3 -3
- data/spec/unit/module_tool/metadata_spec.rb +26 -26
- data/spec/unit/module_tool/tar/gnu_spec.rb +1 -1
- data/spec/unit/module_tool/tar/mini_spec.rb +2 -2
- data/spec/unit/module_tool/tar_spec.rb +2 -2
- data/spec/unit/module_tool_spec.rb +13 -34
- data/spec/unit/network/auth_config_parser_spec.rb +7 -7
- data/spec/unit/network/authconfig_spec.rb +9 -9
- data/spec/unit/network/authstore_spec.rb +38 -39
- data/spec/unit/network/format_handler_spec.rb +14 -14
- data/spec/unit/network/format_spec.rb +34 -34
- data/spec/unit/network/format_support_spec.rb +10 -10
- data/spec/unit/network/formats_spec.rb +50 -136
- data/spec/unit/network/http/api/ca/v1_spec.rb +26 -0
- data/spec/unit/network/http/api/{v1_spec.rb → indirected_routes_spec.rb} +128 -184
- data/spec/unit/network/http/api/{v2 → master/v3}/authorization_spec.rb +23 -21
- data/spec/unit/network/http/api/{v2 → master/v3}/environments_spec.rb +5 -5
- data/spec/unit/network/http/api/master/v3_spec.rb +39 -0
- data/spec/unit/network/http/api_spec.rb +127 -0
- data/spec/unit/network/http/compression_spec.rb +20 -26
- data/spec/unit/network/http/connection_spec.rb +2 -5
- data/spec/unit/network/http/factory_spec.rb +6 -8
- data/spec/unit/network/http/handler_spec.rb +31 -84
- data/spec/unit/network/http/nocache_pool_spec.rb +0 -0
- data/spec/unit/network/http/pool_spec.rb +0 -0
- data/spec/unit/network/http/rack/rest_spec.rb +38 -39
- data/spec/unit/network/http/rack_spec.rb +1 -1
- data/spec/unit/network/http/route_spec.rb +3 -3
- data/spec/unit/network/http/session_spec.rb +4 -4
- data/spec/unit/network/http/site_spec.rb +1 -1
- data/spec/unit/network/http/webrick/rest_spec.rb +36 -55
- data/spec/unit/network/http/webrick_spec.rb +16 -27
- data/spec/unit/network/http_pool_spec.rb +11 -11
- data/spec/unit/network/http_spec.rb +0 -0
- data/spec/unit/network/resolver_spec.rb +10 -10
- data/spec/unit/network/rights_spec.rb +67 -67
- data/spec/unit/network/server_spec.rb +3 -3
- data/spec/unit/node/environment_spec.rb +177 -273
- data/spec/unit/node/facts_spec.rb +71 -33
- data/spec/unit/node_spec.rb +150 -158
- data/spec/unit/other/selinux_spec.rb +6 -6
- data/spec/unit/parameter/boolean_spec.rb +4 -3
- data/spec/unit/parameter/package_options_spec.rb +5 -5
- data/spec/unit/parameter/path_spec.rb +1 -1
- data/spec/unit/parameter/value_collection_spec.rb +23 -28
- data/spec/unit/parameter/value_spec.rb +20 -24
- data/spec/unit/parameter_spec.rb +26 -26
- data/spec/unit/parser/ast/block_expression_spec.rb +3 -2
- data/spec/unit/parser/ast/leaf_spec.rb +5 -378
- data/spec/unit/parser/compiler_spec.rb +84 -74
- data/spec/unit/parser/files_spec.rb +55 -121
- data/spec/unit/parser/functions/contain_spec.rb +8 -11
- data/spec/unit/parser/functions/create_resources_spec.rb +29 -29
- data/spec/unit/parser/functions/defined_spec.rb +52 -51
- data/spec/unit/parser/functions/digest_spec.rb +2 -2
- data/spec/unit/parser/functions/fail_spec.rb +1 -1
- data/spec/unit/parser/functions/file_spec.rb +7 -13
- data/spec/unit/parser/functions/fqdn_rand_spec.rb +5 -5
- data/spec/unit/parser/functions/generate_spec.rb +20 -20
- data/spec/unit/parser/functions/hiera_array_spec.rb +2 -16
- data/spec/unit/parser/functions/hiera_hash_spec.rb +2 -12
- data/spec/unit/parser/functions/hiera_include_spec.rb +2 -29
- data/spec/unit/parser/functions/hiera_spec.rb +2 -12
- data/spec/unit/parser/functions/include_spec.rb +9 -19
- data/spec/unit/parser/functions/inline_template_spec.rb +3 -3
- data/spec/unit/parser/functions/lookup_spec.rb +3 -140
- data/spec/unit/parser/functions/realize_spec.rb +0 -0
- data/spec/unit/parser/functions/regsubst_spec.rb +7 -179
- data/spec/unit/parser/functions/require_spec.rb +14 -21
- data/spec/unit/parser/functions/scanf_spec.rb +0 -0
- data/spec/unit/parser/functions/shellquote_spec.rb +20 -20
- data/spec/unit/parser/functions/split_spec.rb +2 -37
- data/spec/unit/parser/functions/sprintf_spec.rb +7 -11
- data/spec/unit/parser/functions/tag_spec.rb +3 -3
- data/spec/unit/parser/functions/template_spec.rb +10 -10
- data/spec/unit/parser/functions/versioncmp_spec.rb +3 -3
- data/spec/unit/parser/functions_spec.rb +8 -8
- data/spec/unit/parser/relationship_spec.rb +14 -32
- data/spec/unit/parser/resource/param_spec.rb +0 -0
- data/spec/unit/parser/resource_spec.rb +57 -57
- data/spec/unit/parser/scope_spec.rb +89 -101
- data/spec/unit/parser/templatewrapper_spec.rb +15 -32
- data/spec/unit/parser/type_loader_spec.rb +53 -73
- data/spec/unit/pops/adaptable_spec.rb +22 -22
- data/spec/unit/pops/binder/bindings_checker_spec.rb +14 -14
- data/spec/unit/pops/binder/bindings_composer_spec.rb +4 -6
- data/spec/unit/pops/binder/bindings_validator_factory_spec.rb +3 -3
- data/spec/unit/pops/binder/config/binder_config_spec.rb +8 -1
- data/spec/unit/pops/binder/injector_spec.rb +92 -92
- data/spec/unit/pops/containment_spec.rb +4 -4
- data/spec/unit/pops/evaluator/access_ops_spec.rb +5 -24
- data/spec/unit/pops/evaluator/arithmetic_ops_spec.rb +23 -23
- data/spec/unit/pops/evaluator/basic_expressions_spec.rb +22 -22
- data/spec/unit/pops/evaluator/collections_ops_spec.rb +1 -3
- data/spec/unit/pops/evaluator/comparison_ops_spec.rb +104 -107
- data/spec/unit/pops/evaluator/conditionals_spec.rb +39 -39
- data/spec/unit/pops/evaluator/evaluating_parser_spec.rb +75 -143
- data/spec/unit/pops/evaluator/evaluator_rspec_helper.rb +1 -5
- data/spec/unit/pops/evaluator/logical_ops_spec.rb +15 -15
- data/spec/unit/pops/evaluator/string_interpolation_spec.rb +5 -5
- data/spec/unit/pops/evaluator/variables_spec.rb +18 -18
- data/spec/unit/pops/factory_rspec_helper.rb +0 -8
- data/spec/unit/pops/factory_spec.rb +104 -104
- data/spec/unit/pops/issues_spec.rb +21 -21
- data/spec/unit/pops/label_provider_spec.rb +6 -6
- data/spec/unit/pops/loaders/loaders_spec.rb +3 -3
- data/spec/unit/pops/model/model_spec.rb +10 -10
- data/spec/unit/pops/parser/epp_parser_spec.rb +20 -20
- data/spec/unit/pops/parser/evaluating_parser_spec.rb +2 -2
- data/spec/unit/pops/parser/lexer2_spec.rb +65 -276
- data/spec/unit/pops/parser/parse_basic_expressions_spec.rb +91 -91
- data/spec/unit/pops/parser/parse_calls_spec.rb +19 -19
- data/spec/unit/pops/parser/parse_conditionals_spec.rb +38 -22
- data/spec/unit/pops/parser/parse_containers_spec.rb +47 -47
- data/spec/unit/pops/parser/parse_heredoc_spec.rb +15 -62
- data/spec/unit/pops/parser/parse_resource_spec.rb +75 -70
- data/spec/unit/pops/parser/parser_rspec_helper.rb +0 -5
- data/spec/unit/pops/parser/parser_spec.rb +7 -7
- data/spec/unit/pops/parser/parsing_typed_parameters_spec.rb +0 -7
- data/spec/unit/pops/parser/rgen_sanitycheck_spec.rb +2 -2
- data/spec/unit/pops/types/class_loader_spec.rb +10 -0
- data/spec/unit/pops/types/type_calculator_spec.rb +456 -651
- data/spec/unit/pops/types/type_factory_spec.rb +59 -59
- data/spec/unit/pops/types/type_parser_spec.rb +2 -10
- data/spec/unit/pops/validator/validator_spec.rb +3 -57
- data/spec/unit/pops/visitor_spec.rb +4 -4
- data/spec/unit/property/boolean_spec.rb +2 -2
- data/spec/unit/property/ensure_spec.rb +1 -1
- data/spec/unit/property/keyvalue_spec.rb +16 -16
- data/spec/unit/property/list_spec.rb +18 -18
- data/spec/unit/property/ordered_list_spec.rb +7 -7
- data/spec/unit/property_spec.rb +72 -96
- data/spec/unit/provider/aixobject_spec.rb +12 -12
- data/spec/unit/provider/augeas/augeas_spec.rb +171 -149
- data/spec/unit/provider/cisco_spec.rb +2 -2
- data/spec/unit/provider/command_spec.rb +1 -1
- data/spec/unit/provider/cron/crontab_spec.rb +9 -9
- data/spec/unit/provider/cron/parsed_spec.rb +59 -38
- data/spec/unit/provider/exec/posix_spec.rb +9 -19
- data/spec/unit/provider/exec/shell_spec.rb +13 -13
- data/spec/unit/provider/exec/windows_spec.rb +10 -10
- data/spec/unit/provider/exec_spec.rb +2 -2
- data/spec/unit/provider/file/posix_spec.rb +27 -27
- data/spec/unit/provider/file/windows_spec.rb +15 -15
- data/spec/unit/provider/group/groupadd_spec.rb +1 -1
- data/spec/unit/provider/group/ldap_spec.rb +11 -11
- data/spec/unit/provider/group/pw_spec.rb +3 -3
- data/spec/unit/provider/group/windows_adsi_spec.rb +48 -62
- data/spec/unit/provider/host/parsed_spec.rb +58 -22
- data/spec/unit/provider/interface/cisco_spec.rb +3 -3
- data/spec/unit/provider/ldap_spec.rb +23 -23
- data/spec/unit/provider/macauthorization_spec.rb +6 -6
- data/spec/unit/provider/mcx/mcxcontent_spec.rb +6 -6
- data/spec/unit/provider/mount/parsed_spec.rb +101 -119
- data/spec/unit/provider/mount_spec.rb +0 -0
- data/spec/unit/provider/naginator_spec.rb +8 -8
- data/spec/unit/provider/nameservice/directoryservice_spec.rb +5 -27
- data/spec/unit/provider/nameservice_spec.rb +26 -26
- data/spec/unit/provider/network_device_spec.rb +11 -11
- data/spec/unit/provider/package/aix_spec.rb +3 -3
- data/spec/unit/provider/package/appdmg_spec.rb +1 -1
- data/spec/unit/provider/package/apt_spec.rb +4 -4
- data/spec/unit/provider/package/aptitude_spec.rb +1 -1
- data/spec/unit/provider/package/aptrpm_spec.rb +3 -3
- data/spec/unit/provider/package/dpkg_spec.rb +0 -0
- data/spec/unit/provider/package/freebsd_spec.rb +1 -1
- data/spec/unit/provider/package/gem_spec.rb +12 -12
- data/spec/unit/provider/package/hpux_spec.rb +3 -3
- data/spec/unit/provider/package/macports_spec.rb +15 -15
- data/spec/unit/provider/package/nim_spec.rb +11 -11
- data/spec/unit/provider/package/openbsd_spec.rb +72 -37
- data/spec/unit/provider/package/opkg_spec.rb +14 -11
- data/spec/unit/provider/package/pacman_spec.rb +185 -86
- data/spec/unit/provider/package/pip_spec.rb +25 -54
- data/spec/unit/provider/package/pkg_spec.rb +145 -71
- data/spec/unit/provider/package/pkgdmg_spec.rb +9 -9
- data/spec/unit/provider/package/pkgin_spec.rb +18 -18
- data/spec/unit/provider/package/pkgutil_spec.rb +19 -19
- data/spec/unit/provider/package/portage_spec.rb +8 -4
- data/spec/unit/provider/package/rpm_spec.rb +103 -9
- data/spec/unit/provider/package/sun_spec.rb +14 -14
- data/spec/unit/provider/package/up2date_spec.rb +1 -1
- data/spec/unit/provider/package/{urpmi.rb → urpmi_spec.rb} +3 -3
- data/spec/unit/provider/package/windows/exe_package_spec.rb +15 -13
- data/spec/unit/provider/package/windows/msi_package_spec.rb +16 -16
- data/spec/unit/provider/package/windows/package_spec.rb +14 -14
- data/spec/unit/provider/package/windows_spec.rb +26 -26
- data/spec/unit/provider/package/yum_spec.rb +292 -98
- data/spec/unit/provider/package/zypper_spec.rb +20 -31
- data/spec/unit/provider/parsedfile_spec.rb +9 -9
- data/spec/unit/provider/scheduled_task/win32_taskscheduler_spec.rb +192 -434
- data/spec/unit/provider/selboolean_spec.rb +2 -2
- data/spec/unit/provider/selmodule_spec.rb +8 -8
- data/spec/unit/provider/service/base_spec.rb +27 -38
- data/spec/unit/provider/service/daemontools_spec.rb +11 -11
- data/spec/unit/provider/service/debian_spec.rb +8 -8
- data/spec/unit/provider/service/freebsd_spec.rb +7 -8
- data/spec/unit/provider/service/gentoo_spec.rb +12 -13
- data/spec/unit/provider/service/init_spec.rb +25 -38
- data/spec/unit/provider/service/launchd_spec.rb +19 -125
- data/spec/unit/provider/service/openbsd_spec.rb +90 -144
- data/spec/unit/provider/service/openrc_spec.rb +14 -14
- data/spec/unit/provider/service/openwrt_spec.rb +9 -9
- data/spec/unit/provider/service/redhat_spec.rb +14 -15
- data/spec/unit/provider/service/runit_spec.rb +11 -11
- data/spec/unit/provider/service/smf_spec.rb +19 -19
- data/spec/unit/provider/service/src_spec.rb +9 -9
- data/spec/unit/provider/service/systemd_spec.rb +33 -15
- data/spec/unit/provider/service/upstart_spec.rb +59 -59
- data/spec/unit/provider/service/windows_spec.rb +6 -6
- data/spec/unit/provider/ssh_authorized_key/parsed_spec.rb +18 -18
- data/spec/unit/provider/sshkey/parsed_spec.rb +11 -11
- data/spec/unit/provider/user/aix_spec.rb +19 -19
- data/spec/unit/provider/user/directoryservice_spec.rb +51 -95
- data/spec/unit/provider/user/hpux_spec.rb +24 -3
- data/spec/unit/provider/user/ldap_spec.rb +12 -12
- data/spec/unit/provider/user/openbsd_spec.rb +77 -0
- data/spec/unit/provider/user/pw_spec.rb +5 -5
- data/spec/unit/provider/user/user_role_add_spec.rb +20 -20
- data/spec/unit/provider/user/useradd_spec.rb +48 -32
- data/spec/unit/provider/user/windows_adsi_spec.rb +9 -31
- data/spec/unit/provider/vlan/cisco_spec.rb +3 -3
- data/spec/unit/provider/yumrepo/inifile_spec.rb +3 -3
- data/spec/unit/provider/zfs/zfs_spec.rb +11 -11
- data/spec/unit/provider/zone/solaris_spec.rb +22 -55
- data/spec/unit/provider/zpool/zpool_spec.rb +22 -22
- data/spec/unit/provider_spec.rb +110 -102
- data/spec/unit/puppet_spec.rb +15 -8
- data/spec/unit/relationship_spec.rb +37 -41
- data/spec/unit/reports/http_spec.rb +0 -0
- data/spec/unit/reports/store_spec.rb +3 -3
- data/spec/unit/reports_spec.rb +5 -5
- data/spec/unit/resource/catalog_spec.rb +93 -111
- data/spec/unit/resource/status_spec.rb +49 -75
- data/spec/unit/resource/type_collection_helper_spec.rb +1 -1
- data/spec/unit/resource/type_collection_spec.rb +59 -164
- data/spec/unit/resource/type_spec.rb +115 -120
- data/spec/unit/resource_spec.rb +176 -159
- data/spec/unit/scheduler/job_spec.rb +12 -12
- data/spec/unit/scheduler/scheduler_spec.rb +8 -8
- data/spec/unit/scheduler/splay_job_spec.rb +4 -4
- data/spec/unit/semver_spec.rb +66 -64
- data/spec/unit/settings/autosign_setting_spec.rb +1 -0
- data/spec/unit/settings/config_file_spec.rb +13 -40
- data/spec/unit/settings/directory_setting_spec.rb +1 -1
- data/spec/unit/settings/duration_setting_spec.rb +9 -5
- data/spec/unit/settings/environment_conf_spec.rb +0 -11
- data/spec/unit/settings/file_setting_spec.rb +38 -69
- data/spec/unit/settings/ini_file_spec.rb +2 -2
- data/spec/unit/settings/path_setting_spec.rb +5 -5
- data/spec/unit/settings/priority_setting_spec.rb +7 -7
- data/spec/unit/settings/string_setting_spec.rb +7 -7
- data/spec/unit/settings/terminus_setting_spec.rb +4 -4
- data/spec/unit/settings/value_translator_spec.rb +22 -22
- data/spec/unit/settings_spec.rb +189 -338
- data/spec/unit/ssl/base_spec.rb +5 -5
- data/spec/unit/ssl/certificate_authority/autosign_command_spec.rb +2 -2
- data/spec/unit/ssl/certificate_authority/interface_spec.rb +40 -13
- data/spec/unit/ssl/certificate_authority_spec.rb +23 -23
- data/spec/unit/ssl/certificate_factory_spec.rb +39 -26
- data/spec/unit/ssl/certificate_request_attributes_spec.rb +2 -2
- data/spec/unit/ssl/certificate_request_spec.rb +52 -40
- data/spec/unit/ssl/certificate_revocation_list_spec.rb +10 -10
- data/spec/unit/ssl/certificate_spec.rb +35 -38
- data/spec/unit/ssl/configuration_spec.rb +12 -14
- data/spec/unit/ssl/digest_spec.rb +5 -5
- data/spec/unit/ssl/host_spec.rb +91 -91
- data/spec/unit/ssl/inventory_spec.rb +11 -34
- data/spec/unit/ssl/key_spec.rb +23 -23
- data/spec/unit/ssl/oids_spec.rb +28 -15
- data/spec/unit/ssl/validator_spec.rb +16 -17
- data/spec/unit/status_spec.rb +6 -12
- data/spec/unit/transaction/additional_resource_generator_spec.rb +2 -2
- data/spec/unit/transaction/event_manager_spec.rb +38 -8
- data/spec/unit/transaction/event_spec.rb +29 -29
- data/spec/unit/transaction/report_spec.rb +76 -90
- data/spec/unit/transaction/resource_harness_spec.rb +42 -42
- data/spec/unit/transaction_spec.rb +66 -59
- data/spec/unit/type/augeas_spec.rb +20 -20
- data/spec/unit/type/component_spec.rb +10 -10
- data/spec/unit/type/computer_spec.rb +10 -10
- data/spec/unit/type/cron_spec.rb +21 -21
- data/spec/unit/type/exec_spec.rb +65 -73
- data/spec/unit/type/file/checksum_spec.rb +8 -8
- data/spec/unit/type/file/content_spec.rb +144 -85
- data/spec/unit/type/file/ctime_spec.rb +4 -4
- data/spec/unit/type/file/ensure_spec.rb +11 -11
- data/spec/unit/type/file/group_spec.rb +5 -5
- data/spec/unit/type/file/mode_spec.rb +30 -28
- data/spec/unit/type/file/mtime_spec.rb +4 -4
- data/spec/unit/type/file/owner_spec.rb +5 -5
- data/spec/unit/type/file/selinux_spec.rb +8 -8
- data/spec/unit/type/file/source_spec.rb +118 -135
- data/spec/unit/type/file/type_spec.rb +2 -2
- data/spec/unit/type/file_spec.rb +161 -160
- data/spec/unit/type/filebucket_spec.rb +8 -8
- data/spec/unit/type/group_spec.rb +12 -12
- data/spec/unit/type/host_spec.rb +41 -25
- data/spec/unit/type/interface_spec.rb +6 -6
- data/spec/unit/type/k5login_spec.rb +18 -18
- data/spec/unit/type/macauthorization_spec.rb +17 -17
- data/spec/unit/type/mailalias_spec.rb +34 -6
- data/spec/unit/type/maillist_spec.rb +2 -2
- data/spec/unit/type/mcx_spec.rb +13 -13
- data/spec/unit/type/mount_spec.rb +40 -40
- data/spec/unit/type/nagios_spec.rb +23 -23
- data/spec/unit/type/noop_metaparam_spec.rb +5 -5
- data/spec/unit/type/package/package_settings_spec.rb +9 -9
- data/spec/unit/type/package_spec.rb +87 -18
- data/spec/unit/type/resources_spec.rb +46 -46
- data/spec/unit/type/schedule_spec.rb +83 -83
- data/spec/unit/type/scheduled_task_spec.rb +15 -15
- data/spec/unit/type/selboolean_spec.rb +2 -2
- data/spec/unit/type/selmodule_spec.rb +2 -2
- data/spec/unit/type/service_spec.rb +24 -24
- data/spec/unit/type/ssh_authorized_key_spec.rb +2 -2
- data/spec/unit/type/sshkey_spec.rb +0 -0
- data/spec/unit/type/stage_spec.rb +1 -1
- data/spec/unit/type/tidy_spec.rb +58 -39
- data/spec/unit/type/user_spec.rb +56 -56
- data/spec/unit/type/vlan_spec.rb +6 -6
- data/spec/unit/type/whit_spec.rb +1 -1
- data/spec/unit/type/yumrepo_spec.rb +15 -0
- data/spec/unit/type/zfs_spec.rb +3 -3
- data/spec/unit/type/zone_spec.rb +19 -19
- data/spec/unit/type/zpool_spec.rb +15 -15
- data/spec/unit/type_spec.rb +236 -163
- data/spec/unit/util/autoload_spec.rb +31 -25
- data/spec/unit/util/backups_spec.rb +4 -4
- data/spec/unit/util/checksums_spec.rb +55 -27
- data/spec/unit/util/colors_spec.rb +6 -50
- data/spec/unit/util/command_line_spec.rb +13 -41
- data/spec/unit/util/command_line_utils/puppet_option_parser_spec.rb +2 -2
- data/spec/unit/util/constant_inflector_spec.rb +12 -12
- data/spec/unit/util/diff_spec.rb +4 -4
- data/spec/unit/util/errors_spec.rb +5 -5
- data/spec/unit/util/execution_spec.rb +74 -29
- data/spec/unit/util/execution_stub_spec.rb +10 -10
- data/spec/unit/util/feature_spec.rb +15 -19
- data/spec/unit/util/filetype_spec.rb +9 -9
- data/spec/unit/util/http_proxy_spec.rb +18 -18
- data/spec/unit/util/inifile_spec.rb +2 -2
- data/spec/unit/util/json_lockfile_spec.rb +1 -1
- data/spec/unit/util/ldap/connection_spec.rb +6 -6
- data/spec/unit/util/ldap/generator_spec.rb +8 -8
- data/spec/unit/util/ldap/manager_spec.rb +40 -40
- data/spec/unit/util/lockfile_spec.rb +13 -13
- data/spec/unit/util/log/destinations_spec.rb +52 -49
- data/spec/unit/util/log_spec.rb +48 -173
- data/spec/unit/util/logging_spec.rb +120 -3
- data/spec/unit/util/metric_spec.rb +18 -33
- data/spec/unit/util/monkey_patches_spec.rb +18 -139
- data/spec/unit/util/nagios_maker_spec.rb +2 -2
- data/spec/unit/util/network_device/cisco/device_spec.rb +23 -23
- data/spec/unit/util/network_device/cisco/facts_spec.rb +3 -3
- data/spec/unit/util/network_device/cisco/interface_spec.rb +0 -0
- data/spec/unit/util/network_device/config_spec.rb +10 -16
- data/spec/unit/util/network_device/ipcalc_spec.rb +10 -10
- data/spec/unit/util/network_device/transport/base_spec.rb +2 -2
- data/spec/unit/util/network_device/transport/ssh_spec.rb +10 -10
- data/spec/unit/util/network_device/transport/telnet_spec.rb +3 -3
- data/spec/unit/util/network_device_spec.rb +2 -2
- data/spec/unit/util/package_spec.rb +2 -2
- data/spec/unit/util/pidlock_spec.rb +38 -38
- data/spec/unit/util/posix_spec.rb +25 -25
- data/spec/unit/util/profiler/aggregate_spec.rb +14 -18
- data/spec/unit/util/profiler/around_profiler_spec.rb +6 -6
- data/spec/unit/util/profiler/logging_spec.rb +8 -8
- data/spec/unit/util/profiler/object_counts_spec.rb +3 -5
- data/spec/unit/util/profiler/wall_clock_spec.rb +1 -1
- data/spec/unit/util/profiler_spec.rb +6 -14
- data/spec/unit/util/rdoc_spec.rb +0 -85
- data/spec/unit/util/reference_spec.rb +1 -1
- data/spec/unit/util/resource_template_spec.rb +2 -2
- data/spec/unit/util/{retryaction_spec.rb → retry_action_spec.rb} +25 -2
- data/spec/unit/util/rubygems_spec.rb +8 -8
- data/spec/unit/util/run_mode_spec.rb +159 -17
- data/spec/unit/util/selinux_spec.rb +61 -39
- data/spec/unit/util/ssl_spec.rb +13 -13
- data/spec/unit/util/storage_spec.rb +27 -27
- data/spec/unit/util/suidmanager_spec.rb +56 -67
- data/spec/unit/util/symbolic_file_mode_spec.rb +15 -16
- data/spec/unit/util/tag_set_spec.rb +5 -5
- data/spec/unit/util/tagging_spec.rb +0 -0
- data/spec/unit/util/terminal_spec.rb +5 -5
- data/spec/unit/util/user_attr_spec.rb +6 -6
- data/spec/unit/util/warnings_spec.rb +9 -1
- data/spec/unit/util/watcher_spec.rb +1 -1
- data/spec/unit/util/windows/access_control_entry_spec.rb +9 -9
- data/spec/unit/util/windows/access_control_list_spec.rb +21 -21
- data/spec/unit/util/windows/adsi_spec.rb +71 -209
- data/spec/unit/util/windows/api_types_spec.rb +3 -3
- data/spec/unit/util/windows/registry_spec.rb +71 -46
- data/spec/unit/util/windows/root_certs_spec.rb +1 -1
- data/spec/unit/util/windows/security_descriptor_spec.rb +18 -18
- data/spec/unit/util/windows/sid_spec.rb +40 -20
- data/spec/unit/util/windows/string_spec.rb +4 -4
- data/spec/unit/util/yaml_spec.rb +1 -1
- data/spec/unit/util_spec.rb +73 -124
- data/spec/unit/version_spec.rb +4 -4
- data/spec/watchr.rb +1 -5
- data/tasks/benchmark.rake +1 -6
- data/tasks/ci.rake +1 -1
- data/tasks/manpages.rake +0 -9
- data/tasks/parallel.rake +4 -7
- data/tasks/parser.rake +0 -5
- metadata +175 -461
- data/conf/tagmail.conf +0 -16
- data/ext/debian/puppet.conf +0 -14
- data/ext/debian/puppetmaster-common.puppetqd.default +0 -27
- data/ext/debian/puppetmaster-common.puppetqd.init +0 -84
- data/ext/gentoo/puppet/puppet.conf +0 -25
- data/ext/ips/puppet.conf +0 -29
- data/ext/nagios/naggen +0 -309
- data/ext/puppet-load.rb +0 -393
- data/ext/redhat/puppet.conf +0 -25
- data/ext/redhat/queue.init +0 -105
- data/lib/hiera/backend/puppet_backend.rb +0 -103
- data/lib/puppet/application/instrumentation_data.rb +0 -7
- data/lib/puppet/application/instrumentation_listener.rb +0 -7
- data/lib/puppet/application/instrumentation_probe.rb +0 -7
- data/lib/puppet/application/kick.rb +0 -351
- data/lib/puppet/application/queue.rb +0 -161
- data/lib/puppet/application/secret_agent.rb +0 -9
- data/lib/puppet/dsl.rb +0 -7
- data/lib/puppet/dsl/resource_api.rb +0 -120
- data/lib/puppet/dsl/resource_type_api.rb +0 -34
- data/lib/puppet/face/instrumentation_data.rb +0 -30
- data/lib/puppet/face/instrumentation_listener.rb +0 -98
- data/lib/puppet/face/instrumentation_probe.rb +0 -79
- data/lib/puppet/face/secret_agent.rb +0 -54
- data/lib/puppet/feature/pson.rb +0 -4
- data/lib/puppet/feature/rails.rb +0 -47
- data/lib/puppet/feature/rdoc1.rb +0 -16
- data/lib/puppet/feature/rubygems.rb +0 -7
- data/lib/puppet/feature/stomp.rb +0 -5
- data/lib/puppet/file_collection.rb +0 -19
- data/lib/puppet/file_collection/lookup.rb +0 -10
- data/lib/puppet/file_system/file18.rb +0 -5
- data/lib/puppet/functions/defined.rb +0 -130
- data/lib/puppet/indirector/active_record.rb +0 -29
- data/lib/puppet/indirector/catalog/active_record.rb +0 -39
- data/lib/puppet/indirector/catalog/queue.rb +0 -9
- data/lib/puppet/indirector/couch.rb +0 -78
- data/lib/puppet/indirector/facts/active_record.rb +0 -44
- data/lib/puppet/indirector/facts/couch.rb +0 -36
- data/lib/puppet/indirector/facts/inventory_active_record.rb +0 -110
- data/lib/puppet/indirector/facts/inventory_service.rb +0 -20
- data/lib/puppet/indirector/facts/rest.rb +0 -8
- data/lib/puppet/indirector/instrumentation_data.rb +0 -3
- data/lib/puppet/indirector/instrumentation_data/local.rb +0 -22
- data/lib/puppet/indirector/instrumentation_data/rest.rb +0 -8
- data/lib/puppet/indirector/instrumentation_listener.rb +0 -3
- data/lib/puppet/indirector/instrumentation_listener/local.rb +0 -26
- data/lib/puppet/indirector/instrumentation_listener/rest.rb +0 -8
- data/lib/puppet/indirector/instrumentation_probe.rb +0 -3
- data/lib/puppet/indirector/instrumentation_probe/local.rb +0 -27
- data/lib/puppet/indirector/instrumentation_probe/rest.rb +0 -8
- data/lib/puppet/indirector/node/active_record.rb +0 -22
- data/lib/puppet/indirector/queue.rb +0 -80
- data/lib/puppet/indirector/resource/active_record.rb +0 -104
- data/lib/puppet/indirector/resource/rest.rb +0 -17
- data/lib/puppet/indirector/run/local.rb +0 -15
- data/lib/puppet/indirector/run/rest.rb +0 -12
- data/lib/puppet/module_tool/modulefile.rb +0 -78
- data/lib/puppet/network/authentication.rb +0 -35
- data/lib/puppet/network/http/api/v2.rb +0 -32
- data/lib/puppet/network/http/api/v2/authorization.rb +0 -15
- data/lib/puppet/parser/ast/arithmetic_operator.rb +0 -91
- data/lib/puppet/parser/ast/astarray.rb +0 -50
- data/lib/puppet/parser/ast/asthash.rb +0 -37
- data/lib/puppet/parser/ast/boolean_operator.rb +0 -46
- data/lib/puppet/parser/ast/caseopt.rb +0 -52
- data/lib/puppet/parser/ast/casestatement.rb +0 -41
- data/lib/puppet/parser/ast/collection.rb +0 -53
- data/lib/puppet/parser/ast/collexpr.rb +0 -109
- data/lib/puppet/parser/ast/comparison_operator.rb +0 -38
- data/lib/puppet/parser/ast/definition.rb +0 -17
- data/lib/puppet/parser/ast/else.rb +0 -22
- data/lib/puppet/parser/ast/function.rb +0 -59
- data/lib/puppet/parser/ast/ifstatement.rb +0 -34
- data/lib/puppet/parser/ast/in_operator.rb +0 -24
- data/lib/puppet/parser/ast/lambda.rb +0 -135
- data/lib/puppet/parser/ast/match_operator.rb +0 -28
- data/lib/puppet/parser/ast/method_call.rb +0 -77
- data/lib/puppet/parser/ast/minus.rb +0 -23
- data/lib/puppet/parser/ast/nop.rb +0 -11
- data/lib/puppet/parser/ast/not.rb +0 -19
- data/lib/puppet/parser/ast/relationship.rb +0 -47
- data/lib/puppet/parser/ast/resource_defaults.rb +0 -24
- data/lib/puppet/parser/ast/resource_override.rb +0 -62
- data/lib/puppet/parser/ast/resource_reference.rb +0 -28
- data/lib/puppet/parser/ast/selector.rb +0 -50
- data/lib/puppet/parser/ast/vardef.rb +0 -38
- data/lib/puppet/parser/code_merger.rb +0 -13
- data/lib/puppet/parser/collector.rb +0 -177
- data/lib/puppet/parser/functions/extlookup.rb +0 -153
- data/lib/puppet/parser/functions/search.rb +0 -12
- data/lib/puppet/parser/grammar.ra +0 -806
- data/lib/puppet/parser/lexer.rb +0 -608
- data/lib/puppet/parser/makefile +0 -8
- data/lib/puppet/parser/methods.rb +0 -69
- data/lib/puppet/parser/parser.rb +0 -2559
- data/lib/puppet/parser/parser_support.rb +0 -195
- data/lib/puppet/pops/binder/lookup.rb +0 -216
- data/lib/puppet/pops/migration/migration_checker.rb +0 -45
- data/lib/puppet/pops/model/ast_tree_dumper.rb +0 -386
- data/lib/puppet/provider/package/msi.rb +0 -125
- data/lib/puppet/provider/package/yumhelper.py +0 -159
- data/lib/puppet/rails.rb +0 -139
- data/lib/puppet/rails/benchmark.rb +0 -63
- data/lib/puppet/rails/database/001_add_created_at_to_all_tables.rb +0 -13
- data/lib/puppet/rails/database/002_remove_duplicated_index_on_all_tables.rb +0 -13
- data/lib/puppet/rails/database/003_add_environment_to_host.rb +0 -9
- data/lib/puppet/rails/database/004_add_inventory_service_tables.rb +0 -36
- data/lib/puppet/rails/database/schema.rb +0 -136
- data/lib/puppet/rails/fact_name.rb +0 -7
- data/lib/puppet/rails/fact_value.rb +0 -10
- data/lib/puppet/rails/host.rb +0 -258
- data/lib/puppet/rails/inventory_fact.rb +0 -5
- data/lib/puppet/rails/inventory_node.rb +0 -43
- data/lib/puppet/rails/param_name.rb +0 -25
- data/lib/puppet/rails/param_value.rb +0 -74
- data/lib/puppet/rails/puppet_tag.rb +0 -10
- data/lib/puppet/rails/resource.rb +0 -235
- data/lib/puppet/rails/resource_tag.rb +0 -26
- data/lib/puppet/rails/source_file.rb +0 -8
- data/lib/puppet/reports/rrdgraph.rb +0 -128
- data/lib/puppet/reports/tagmail.rb +0 -179
- data/lib/puppet/run.rb +0 -109
- data/lib/puppet/util/cacher.rb +0 -74
- data/lib/puppet/util/inline_docs.rb +0 -26
- data/lib/puppet/util/instrumentation.rb +0 -152
- data/lib/puppet/util/instrumentation/data.rb +0 -46
- data/lib/puppet/util/instrumentation/indirection_probe.rb +0 -41
- data/lib/puppet/util/instrumentation/instrumentable.rb +0 -136
- data/lib/puppet/util/instrumentation/listener.rb +0 -72
- data/lib/puppet/util/instrumentation/listeners/log.rb +0 -23
- data/lib/puppet/util/instrumentation/listeners/performance.rb +0 -24
- data/lib/puppet/util/log/rate_limited_logger.rb +0 -40
- data/lib/puppet/util/monkey_patches/lines.rb +0 -13
- data/lib/puppet/util/plugins.rb +0 -82
- data/lib/puppet/util/pson.rb +0 -13
- data/lib/puppet/util/queue.rb +0 -96
- data/lib/puppet/util/queue/stomp.rb +0 -60
- data/lib/puppet/util/rails/cache_accumulator.rb +0 -65
- data/lib/puppet/util/rails/collection_merger.rb +0 -17
- data/lib/puppet/util/rails/reference_serializer.rb +0 -32
- data/lib/puppet/util/rdoc/parser/puppet_parser_rdoc1.rb +0 -19
- data/lib/puppet/util/retryaction.rb +0 -47
- data/lib/puppet/util/zaml.rb +0 -419
- data/lib/puppet/vendor/load_safe_yaml.rb +0 -1
- data/lib/puppet/vendor/safe_yaml/CHANGES.md +0 -104
- data/lib/puppet/vendor/safe_yaml/Gemfile +0 -11
- data/lib/puppet/vendor/safe_yaml/LICENSE.txt +0 -22
- data/lib/puppet/vendor/safe_yaml/PUPPET_README.md +0 -6
- data/lib/puppet/vendor/safe_yaml/README.md +0 -179
- data/lib/puppet/vendor/safe_yaml/Rakefile +0 -6
- data/lib/puppet/vendor/safe_yaml/lib/safe_yaml.rb +0 -253
- data/lib/puppet/vendor/safe_yaml/lib/safe_yaml/deep.rb +0 -34
- data/lib/puppet/vendor/safe_yaml/lib/safe_yaml/parse/date.rb +0 -27
- data/lib/puppet/vendor/safe_yaml/lib/safe_yaml/parse/hexadecimal.rb +0 -12
- data/lib/puppet/vendor/safe_yaml/lib/safe_yaml/parse/sexagesimal.rb +0 -26
- data/lib/puppet/vendor/safe_yaml/lib/safe_yaml/psych_handler.rb +0 -92
- data/lib/puppet/vendor/safe_yaml/lib/safe_yaml/psych_resolver.rb +0 -52
- data/lib/puppet/vendor/safe_yaml/lib/safe_yaml/resolver.rb +0 -94
- data/lib/puppet/vendor/safe_yaml/lib/safe_yaml/safe_to_ruby_visitor.rb +0 -17
- data/lib/puppet/vendor/safe_yaml/lib/safe_yaml/syck_hack.rb +0 -36
- data/lib/puppet/vendor/safe_yaml/lib/safe_yaml/syck_node_monkeypatch.rb +0 -43
- data/lib/puppet/vendor/safe_yaml/lib/safe_yaml/syck_resolver.rb +0 -38
- data/lib/puppet/vendor/safe_yaml/lib/safe_yaml/transform.rb +0 -41
- data/lib/puppet/vendor/safe_yaml/lib/safe_yaml/transform/to_boolean.rb +0 -21
- data/lib/puppet/vendor/safe_yaml/lib/safe_yaml/transform/to_date.rb +0 -11
- data/lib/puppet/vendor/safe_yaml/lib/safe_yaml/transform/to_float.rb +0 -33
- data/lib/puppet/vendor/safe_yaml/lib/safe_yaml/transform/to_integer.rb +0 -25
- data/lib/puppet/vendor/safe_yaml/lib/safe_yaml/transform/to_nil.rb +0 -18
- data/lib/puppet/vendor/safe_yaml/lib/safe_yaml/transform/to_symbol.rb +0 -13
- data/lib/puppet/vendor/safe_yaml/lib/safe_yaml/transform/transformation_map.rb +0 -47
- data/lib/puppet/vendor/safe_yaml/lib/safe_yaml/version.rb +0 -3
- data/lib/puppet/vendor/safe_yaml/run_specs_all_ruby_versions.sh +0 -21
- data/lib/puppet/vendor/safe_yaml/safe_yaml.gemspec +0 -18
- data/lib/puppet/vendor/safe_yaml/spec/exploit.1.9.2.yaml +0 -2
- data/lib/puppet/vendor/safe_yaml/spec/exploit.1.9.3.yaml +0 -2
- data/lib/puppet/vendor/safe_yaml/spec/psych_resolver_spec.rb +0 -10
- data/lib/puppet/vendor/safe_yaml/spec/resolver_specs.rb +0 -250
- data/lib/puppet/vendor/safe_yaml/spec/safe_yaml_spec.rb +0 -702
- data/lib/puppet/vendor/safe_yaml/spec/spec_helper.rb +0 -18
- data/lib/puppet/vendor/safe_yaml/spec/support/exploitable_back_door.rb +0 -29
- data/lib/puppet/vendor/safe_yaml/spec/syck_resolver_spec.rb +0 -10
- data/lib/puppet/vendor/safe_yaml/spec/transform/base64_spec.rb +0 -11
- data/lib/puppet/vendor/safe_yaml/spec/transform/to_date_spec.rb +0 -34
- data/lib/puppet/vendor/safe_yaml/spec/transform/to_float_spec.rb +0 -42
- data/lib/puppet/vendor/safe_yaml/spec/transform/to_integer_spec.rb +0 -59
- data/lib/puppet/vendor/safe_yaml/spec/transform/to_symbol_spec.rb +0 -49
- data/lib/puppet/vendor/safe_yaml_patches.rb +0 -9
- data/lib/puppetx.rb +0 -89
- data/man/man8/puppet-instrumentation_data.8 +0 -141
- data/man/man8/puppet-instrumentation_listener.8 +0 -218
- data/man/man8/puppet-instrumentation_probe.8 +0 -203
- data/man/man8/puppet-kick.8 +0 -131
- data/man/man8/puppet-queue.8 +0 -55
- data/man/man8/puppet-secret_agent.8 +0 -70
- data/spec/fixtures/module.tar.gz +0 -0
- data/spec/fixtures/unit/provider/package/pkg/publisher +0 -2
- data/spec/fixtures/unit/provider/package/pkg/simple +0 -2
- data/spec/fixtures/yaml/report0.25.x.yaml +0 -64
- data/spec/integration/indirector/catalog/queue_spec.rb +0 -55
- data/spec/integration/module_tool/tar/mini_spec.rb +0 -28
- data/spec/integration/parser/dynamic_scoping_spec.rb +0 -131
- data/spec/integration/parser/future_compiler_spec.rb +0 -822
- data/spec/integration/parser/parser_spec.rb +0 -207
- data/spec/integration/parser/ruby_manifest_spec.rb +0 -119
- data/spec/integration/type/sshkey_spec.rb +0 -22
- data/spec/integration/util/feature_spec.rb +0 -53
- data/spec/lib/puppet_spec/database.rb +0 -29
- data/spec/monkey_patches/alias_should_to_must.rb +0 -21
- data/spec/shared_contexts/platform.rb +0 -52
- data/spec/unit/application/kick_spec.rb +0 -296
- data/spec/unit/application/queue_spec.rb +0 -168
- data/spec/unit/application/secret_agent_spec.rb +0 -34
- data/spec/unit/dsl/resource_api_spec.rb +0 -180
- data/spec/unit/dsl/resource_type_api_spec.rb +0 -53
- data/spec/unit/face/instrumentation_data_spec.rb +0 -7
- data/spec/unit/face/instrumentation_listener_spec.rb +0 -38
- data/spec/unit/face/instrumentation_probe_spec.rb +0 -21
- data/spec/unit/face/secret_agent_spec.rb +0 -27
- data/spec/unit/functions/defined_spec.rb +0 -291
- data/spec/unit/hiera/backend/puppet_backend_spec.rb +0 -148
- data/spec/unit/indirector/active_record_spec.rb +0 -75
- data/spec/unit/indirector/catalog/active_record_spec.rb +0 -107
- data/spec/unit/indirector/catalog/queue_spec.rb +0 -19
- data/spec/unit/indirector/facts/active_record_spec.rb +0 -113
- data/spec/unit/indirector/facts/couch_spec.rb +0 -102
- data/spec/unit/indirector/facts/inventory_active_record_spec.rb +0 -175
- data/spec/unit/indirector/facts/inventory_service_spec.rb +0 -21
- data/spec/unit/indirector/facts/rest_spec.rb +0 -10
- data/spec/unit/indirector/instrumentation_data/local_spec.rb +0 -52
- data/spec/unit/indirector/instrumentation_data/rest_spec.rb +0 -11
- data/spec/unit/indirector/instrumentation_listener/local_spec.rb +0 -65
- data/spec/unit/indirector/instrumentation_listener/rest_spec.rb +0 -11
- data/spec/unit/indirector/instrumentation_probe/local_spec.rb +0 -65
- data/spec/unit/indirector/instrumentation_probe/rest_spec.rb +0 -11
- data/spec/unit/indirector/node/active_record_spec.rb +0 -48
- data/spec/unit/indirector/queue_spec.rb +0 -115
- data/spec/unit/indirector/resource/active_record_spec.rb +0 -166
- data/spec/unit/indirector/resource/rest_spec.rb +0 -10
- data/spec/unit/indirector/run/local_spec.rb +0 -21
- data/spec/unit/indirector/run/rest_spec.rb +0 -10
- data/spec/unit/network/authentication_spec.rb +0 -104
- data/spec/unit/network/http/api/v2_spec.rb +0 -14
- data/spec/unit/parser/ast/arithmetic_operator_spec.rb +0 -160
- data/spec/unit/parser/ast/astarray_spec.rb +0 -56
- data/spec/unit/parser/ast/asthash_spec.rb +0 -98
- data/spec/unit/parser/ast/boolean_operator_spec.rb +0 -54
- data/spec/unit/parser/ast/casestatement_spec.rb +0 -168
- data/spec/unit/parser/ast/collection_spec.rb +0 -70
- data/spec/unit/parser/ast/collexpr_spec.rb +0 -120
- data/spec/unit/parser/ast/comparison_operator_spec.rb +0 -118
- data/spec/unit/parser/ast/definition_spec.rb +0 -21
- data/spec/unit/parser/ast/function_spec.rb +0 -92
- data/spec/unit/parser/ast/hostclass_spec.rb +0 -72
- data/spec/unit/parser/ast/ifstatement_spec.rb +0 -77
- data/spec/unit/parser/ast/in_operator_spec.rb +0 -61
- data/spec/unit/parser/ast/match_operator_spec.rb +0 -51
- data/spec/unit/parser/ast/minus_spec.rb +0 -37
- data/spec/unit/parser/ast/node_spec.rb +0 -30
- data/spec/unit/parser/ast/nop_spec.rb +0 -19
- data/spec/unit/parser/ast/not_spec.rb +0 -31
- data/spec/unit/parser/ast/relationship_spec.rb +0 -87
- data/spec/unit/parser/ast/resource_defaults_spec.rb +0 -21
- data/spec/unit/parser/ast/resource_override_spec.rb +0 -50
- data/spec/unit/parser/ast/resource_reference_spec.rb +0 -56
- data/spec/unit/parser/ast/resource_spec.rb +0 -183
- data/spec/unit/parser/ast/resourceparam_spec.rb +0 -51
- data/spec/unit/parser/ast/selector_spec.rb +0 -88
- data/spec/unit/parser/ast/vardef_spec.rb +0 -68
- data/spec/unit/parser/ast_spec.rb +0 -76
- data/spec/unit/parser/collector_spec.rb +0 -438
- data/spec/unit/parser/functions/extlookup_spec.rb +0 -102
- data/spec/unit/parser/functions/search_spec.rb +0 -28
- data/spec/unit/parser/lexer_spec.rb +0 -877
- data/spec/unit/parser/parser_spec.rb +0 -535
- data/spec/unit/pops/evaluator/runtime3_converter_spec.rb +0 -19
- data/spec/unit/pops/migration_spec.rb +0 -180
- data/spec/unit/pops/model/ast_transformer_spec.rb +0 -76
- data/spec/unit/pops/transformer/transform_basic_expressions_spec.rb +0 -243
- data/spec/unit/pops/transformer/transform_calls_spec.rb +0 -115
- data/spec/unit/pops/transformer/transform_conditionals_spec.rb +0 -123
- data/spec/unit/pops/transformer/transform_containers_spec.rb +0 -190
- data/spec/unit/pops/transformer/transformer_rspec_helper.rb +0 -27
- data/spec/unit/pops/validation_spec.rb +0 -66
- data/spec/unit/provider/package/msi_spec.rb +0 -229
- data/spec/unit/rails/host_spec.rb +0 -162
- data/spec/unit/rails/param_value_spec.rb +0 -46
- data/spec/unit/rails/resource_spec.rb +0 -115
- data/spec/unit/rails_spec.rb +0 -244
- data/spec/unit/reports/rrdgraph_spec.rb +0 -29
- data/spec/unit/reports/tagmail_spec.rb +0 -218
- data/spec/unit/run_spec.rb +0 -175
- data/spec/unit/util/cache_accumulator_spec.rb +0 -74
- data/spec/unit/util/cacher_spec.rb +0 -107
- data/spec/unit/util/inline_docs_spec.rb +0 -31
- data/spec/unit/util/instrumentation/data_spec.rb +0 -46
- data/spec/unit/util/instrumentation/indirection_probe_spec.rb +0 -21
- data/spec/unit/util/instrumentation/instrumentable_spec.rb +0 -186
- data/spec/unit/util/instrumentation/listener_spec.rb +0 -101
- data/spec/unit/util/instrumentation/listeners/log_spec.rb +0 -34
- data/spec/unit/util/instrumentation/listeners/performance_spec.rb +0 -36
- data/spec/unit/util/instrumentation_spec.rb +0 -181
- data/spec/unit/util/log/rate_limited_logger_spec.rb +0 -51
- data/spec/unit/util/monkey_patches/lines_spec.rb +0 -83
- data/spec/unit/util/queue/stomp_spec.rb +0 -137
- data/spec/unit/util/queue_spec.rb +0 -94
- data/spec/unit/util/rdoc/parser_spec.rb +0 -608
- data/spec/unit/util/reference_serializer_spec.rb +0 -51
- data/spec/unit/util/zaml_spec.rb +0 -308
@@ -0,0 +1,86 @@
|
|
1
|
+
# A DataAdapter adapts an object with a Hash of data
|
2
|
+
#
|
3
|
+
class Puppet::DataProviders::DataAdapter < Puppet::Pops::Adaptable::Adapter
|
4
|
+
attr_accessor :data
|
5
|
+
attr_accessor :env_provider
|
6
|
+
|
7
|
+
def initialize(env)
|
8
|
+
@env = env
|
9
|
+
@data = {}
|
10
|
+
end
|
11
|
+
|
12
|
+
def [](name)
|
13
|
+
@data[name]
|
14
|
+
end
|
15
|
+
|
16
|
+
def has_name?(name)
|
17
|
+
@data.has_key? name
|
18
|
+
end
|
19
|
+
|
20
|
+
def []=(name, value)
|
21
|
+
unless value.is_a?(Hash)
|
22
|
+
raise ArgumentError, "Given value must be a Hash, got: #{value.class}."
|
23
|
+
end
|
24
|
+
@data[name] = value
|
25
|
+
end
|
26
|
+
|
27
|
+
def env_provider
|
28
|
+
@env_provider ||= initialize_env_provider
|
29
|
+
end
|
30
|
+
|
31
|
+
def module_provider(module_name)
|
32
|
+
@data[module_name] ||= initialize_module_provider(module_name)
|
33
|
+
end
|
34
|
+
|
35
|
+
def self.create_adapter(environment)
|
36
|
+
new(environment)
|
37
|
+
end
|
38
|
+
|
39
|
+
def initialize_module_provider(module_name)
|
40
|
+
# Support running tests without an injector being configured == using a null implementation
|
41
|
+
unless injector = Puppet.lookup(:injector) { nil }
|
42
|
+
return Puppet::Plugins::DataProviders::ModuleDataProvider.new()
|
43
|
+
end
|
44
|
+
# Get the registry of module to provider implementation name
|
45
|
+
module_service_type = Puppet::Plugins::DataProviders.hash_of_per_module_data_provider
|
46
|
+
module_service_name = Puppet::Plugins::DataProviders::PER_MODULE_DATA_PROVIDER_KEY
|
47
|
+
module_service = Puppet.lookup(:injector).lookup(nil, module_service_type, module_service_name)
|
48
|
+
provider_name = module_service[module_name] || 'none'
|
49
|
+
|
50
|
+
service_type = Puppet::Plugins::DataProviders.hash_of_module_data_providers
|
51
|
+
service_name = Puppet::Plugins::DataProviders::MODULE_DATA_PROVIDERS_KEY
|
52
|
+
|
53
|
+
# Get the service (registry of known implementations)
|
54
|
+
service = Puppet.lookup(:injector).lookup(nil, service_type, service_name)
|
55
|
+
provider = service[provider_name]
|
56
|
+
unless provider
|
57
|
+
raise Puppet::Error.new("Environment '#{@env.name}', cannot find module_data_provider '#{provider_name}'")
|
58
|
+
end
|
59
|
+
provider
|
60
|
+
end
|
61
|
+
|
62
|
+
def initialize_env_provider
|
63
|
+
# Get the environment's configuration since we need to know which data provider
|
64
|
+
# should be used (includes 'none' which gets a null implementation).
|
65
|
+
#
|
66
|
+
env_conf = Puppet.lookup(:environments).get_conf(@env.name)
|
67
|
+
|
68
|
+
# Get the data provider and find the bound implementation
|
69
|
+
# TODO: PUP-1640, drop the nil check when legacy env support is dropped
|
70
|
+
provider_name = env_conf.nil? ? 'none' : env_conf.environment_data_provider
|
71
|
+
service_type = Puppet::Plugins::DataProviders.hash_of_environment_data_providers
|
72
|
+
service_name = Puppet::Plugins::DataProviders::ENV_DATA_PROVIDERS_KEY
|
73
|
+
|
74
|
+
# Get the service (registry of known implementations)
|
75
|
+
# Support running tests without an injector being configured == using a null implementation
|
76
|
+
unless injector = Puppet.lookup(:injector) { nil }
|
77
|
+
return Puppet::Plugins::DataProviders::EnvironmentDataProvider.new()
|
78
|
+
end
|
79
|
+
service = Puppet.lookup(:injector).lookup(nil, service_type, service_name)
|
80
|
+
provider = service[provider_name]
|
81
|
+
unless provider
|
82
|
+
raise Puppet::Error.new("Environment '#{@env.name}', cannot find environment_data_provider '#{provider_name}'")
|
83
|
+
end
|
84
|
+
provider
|
85
|
+
end
|
86
|
+
end
|
@@ -0,0 +1,32 @@
|
|
1
|
+
module Puppet::DataProviders::DataFunctionSupport
|
2
|
+
# Gets the data from the compiler, or initializes it from a function call if not present in the compiler.
|
3
|
+
# This means, that the function providing the data is called once per compilation, and the data is cached for
|
4
|
+
# as long as the compiler lives (which is for one catalog production).
|
5
|
+
# This makes it possible to return data that is tailored for the request.
|
6
|
+
# The class including this module must implement `loader(scope)` to return the apropriate loader.
|
7
|
+
#
|
8
|
+
def data(key, scope)
|
9
|
+
compiler = scope.compiler
|
10
|
+
adapter = Puppet::DataProviders::DataAdapter.get(compiler) || Puppet::DataProviders::DataAdapter.adapt(compiler)
|
11
|
+
adapter.data[key] ||= initialize_data_from_function("#{key}::data", scope)
|
12
|
+
end
|
13
|
+
|
14
|
+
def initialize_data_from_function(name, scope)
|
15
|
+
Puppet::Util::Profiler.profile("Called #{name}", [ :functions, name ]) do
|
16
|
+
loader = loader(scope)
|
17
|
+
if loader && func = loader.load(:function, name)
|
18
|
+
# function found, call without arguments, must return a Hash
|
19
|
+
# TODO: Validate the function - to ensure it does not contain unwanted side effects
|
20
|
+
# That can only be done if the function is a puppet function
|
21
|
+
#
|
22
|
+
result = func.call(scope)
|
23
|
+
unless result.is_a?(Hash)
|
24
|
+
raise Puppet::Error.new("Expected '#{name}' function to return a Hash, got #{result.class}")
|
25
|
+
end
|
26
|
+
else
|
27
|
+
raise Puppet::Error.new("Data from 'function' cannot find the required '#{name}' function")
|
28
|
+
end
|
29
|
+
result
|
30
|
+
end
|
31
|
+
end
|
32
|
+
end
|
@@ -0,0 +1,28 @@
|
|
1
|
+
# This file is loaded by the autoloader, and it does not find the data function support unless required relative
|
2
|
+
#
|
3
|
+
require_relative 'data_function_support'
|
4
|
+
module Puppet::DataProviders; end
|
5
|
+
|
6
|
+
# The FunctionEnvDataProvider provides data from a function called 'environment::data()' that resides in a
|
7
|
+
# directory environment (seen as a module with the name environment).
|
8
|
+
# The function is called on demand, and is associated with the compiler via an Adapter. This ensures that the data
|
9
|
+
# is only produced once per compilation.
|
10
|
+
#
|
11
|
+
class Puppet::DataProviders::FunctionEnvDataProvider < Puppet::Plugins::DataProviders::EnvironmentDataProvider
|
12
|
+
include Puppet::DataProviders::DataFunctionSupport
|
13
|
+
|
14
|
+
def lookup(name, scope, merge)
|
15
|
+
begin
|
16
|
+
hash = data('environment', scope)
|
17
|
+
throw :no_such_key unless hash.include?(name)
|
18
|
+
hash[name]
|
19
|
+
rescue *Puppet::Error => detail
|
20
|
+
raise Puppet::DataBinding::LookupError.new(detail.message, detail)
|
21
|
+
end
|
22
|
+
end
|
23
|
+
|
24
|
+
def loader(scope)
|
25
|
+
# This loader allows the data function to be private or public in the environment
|
26
|
+
scope.compiler.loaders.private_environment_loader
|
27
|
+
end
|
28
|
+
end
|
@@ -0,0 +1,44 @@
|
|
1
|
+
# This file is loaded by the autoloader, and it does not find the data function support unless required relative
|
2
|
+
#
|
3
|
+
require_relative 'data_function_support'
|
4
|
+
module Puppet::DataProviders; end
|
5
|
+
|
6
|
+
# The FunctionModuleDataProvider provides data from a function called 'environment::data()' that resides in a
|
7
|
+
# directory environment (seen as a module with the name environment).
|
8
|
+
# The function is called on demand, and is associated with the compiler via an Adapter. This ensures that the data
|
9
|
+
# is only produced once per compilation.
|
10
|
+
#
|
11
|
+
class Puppet::DataProviders::FunctionModuleDataProvider < Puppet::Plugins::DataProviders::ModuleDataProvider
|
12
|
+
MODULE_NAME = 'module_name'.freeze
|
13
|
+
include Puppet::DataProviders::DataFunctionSupport
|
14
|
+
|
15
|
+
def lookup(name, scope, merge)
|
16
|
+
# If the module name does not exist, this call is not from within a module, and should be ignored.
|
17
|
+
unless scope.exist?(MODULE_NAME)
|
18
|
+
return nil
|
19
|
+
end
|
20
|
+
# Get the module name. Calls to the lookup method should only be performed for modules that have opted in
|
21
|
+
# by specifying that they use the 'function' implementation as the module_data provider. Thus, this will error
|
22
|
+
# out if a module specified 'function' but did not provide a function called <module-name>::data
|
23
|
+
#
|
24
|
+
module_name = scope[MODULE_NAME]
|
25
|
+
begin
|
26
|
+
hash = data(module_name, scope)
|
27
|
+
throw :no_such_key unless hash.include?(name)
|
28
|
+
hash[name]
|
29
|
+
rescue *Puppet::Error => detail
|
30
|
+
raise Puppet::DataBinding::LookupError.new(detail.message, detail)
|
31
|
+
end
|
32
|
+
end
|
33
|
+
|
34
|
+
def loader(scope)
|
35
|
+
loaders = scope.compiler.loaders
|
36
|
+
if scope.exist?(MODULE_NAME)
|
37
|
+
loaders.private_loader_for_module(scope[MODULE_NAME])
|
38
|
+
else
|
39
|
+
# Produce the environment's loader when not in a module
|
40
|
+
# This loader allows the data function to be private or public in the environment
|
41
|
+
loaders.private_environment_loader
|
42
|
+
end
|
43
|
+
end
|
44
|
+
end
|
data/lib/puppet/defaults.rb
CHANGED
@@ -14,7 +14,6 @@ module Puppet
|
|
14
14
|
############################################################################################
|
15
15
|
|
16
16
|
AS_DURATION = %q{This setting can be a time interval in seconds (30 or 30s), minutes (30m), hours (6h), days (2d), or years (5y).}
|
17
|
-
STORECONFIGS_ONLY = %q{This setting is only used by the ActiveRecord storeconfigs and inventory backends, which are deprecated.}
|
18
17
|
|
19
18
|
# This is defined first so that the facter implementation is replaced before other setting defaults are evaluated.
|
20
19
|
define_settings(:main,
|
@@ -27,6 +26,9 @@ module Puppet
|
|
27
26
|
raise ArgumentError, 'facter has already evaluated facts.' if Facter.instance_variable_get(:@collection)
|
28
27
|
raise ArgumentError, 'cfacter version 0.2.0 or later is not installed.' unless Puppet.features.cfacter?
|
29
28
|
CFacter.initialize
|
29
|
+
|
30
|
+
# Setup Facter's logging again now that native facter is initialized
|
31
|
+
Puppet::Util::Logging.setup_facter_logging!
|
30
32
|
end
|
31
33
|
}
|
32
34
|
)
|
@@ -41,6 +43,15 @@ module Puppet
|
|
41
43
|
directory, but if it's running as any other user, it defaults to being
|
42
44
|
in the user's home directory.",
|
43
45
|
},
|
46
|
+
:codedir => {
|
47
|
+
:default => nil,
|
48
|
+
:type => :directory,
|
49
|
+
:desc => "The main Puppet code directory. The default for this setting
|
50
|
+
is calculated based on the user. If the process is running as root or
|
51
|
+
the user that Puppet is supposed to run as, it defaults to a system
|
52
|
+
directory, but if it's running as any other user, it defaults to being
|
53
|
+
in the user's home directory.",
|
54
|
+
},
|
44
55
|
:vardir => {
|
45
56
|
:default => nil,
|
46
57
|
:type => :directory,
|
@@ -83,6 +94,8 @@ module Puppet
|
|
83
94
|
* emerg
|
84
95
|
* crit
|
85
96
|
",
|
97
|
+
:hook => proc {|value| Puppet::Util::Log.level = value },
|
98
|
+
:call_hook => :on_initialize_and_write,
|
86
99
|
},
|
87
100
|
:disable_warnings => {
|
88
101
|
:default => [],
|
@@ -122,6 +135,10 @@ module Puppet
|
|
122
135
|
:default => false,
|
123
136
|
:type => :boolean,
|
124
137
|
:desc => "Whether to print stack traces on some errors",
|
138
|
+
:hook => proc do |value|
|
139
|
+
# Enable or disable Facter's trace option too
|
140
|
+
Facter.trace(value) if Facter.respond_to? :trace
|
141
|
+
end
|
125
142
|
},
|
126
143
|
:profile => {
|
127
144
|
:default => false,
|
@@ -208,7 +225,10 @@ module Puppet
|
|
208
225
|
:path => {
|
209
226
|
:default => "none",
|
210
227
|
:desc => "The shell search path. Defaults to whatever is inherited
|
211
|
-
from the parent process.
|
228
|
+
from the parent process.
|
229
|
+
|
230
|
+
This setting can only be set in the `[main]` section of puppet.conf; it cannot
|
231
|
+
be set in `[master]`, `[agent]`, or an environment config section.",
|
212
232
|
:call_hook => :on_define_and_write,
|
213
233
|
:hook => proc do |value|
|
214
234
|
ENV["PATH"] = "" if ENV["PATH"].nil?
|
@@ -230,18 +250,11 @@ module Puppet
|
|
230
250
|
is in Ruby's search path\n",
|
231
251
|
:call_hook => :on_initialize_and_write,
|
232
252
|
:hook => proc do |value|
|
233
|
-
$LOAD_PATH.delete(@oldlibdir) if defined?(@oldlibdir)
|
253
|
+
$LOAD_PATH.delete(@oldlibdir) if defined?(@oldlibdir) && $LOAD_PATH.include?(@oldlibdir)
|
234
254
|
@oldlibdir = value
|
235
255
|
$LOAD_PATH << value
|
236
256
|
end
|
237
257
|
},
|
238
|
-
:ignoreimport => {
|
239
|
-
:default => false,
|
240
|
-
:type => :boolean,
|
241
|
-
:desc => "If true, allows the parser to continue without requiring
|
242
|
-
all files referenced with `import` statements to exist. This setting was primarily
|
243
|
-
designed for use with commit hooks for parse-checking.",
|
244
|
-
},
|
245
258
|
:environment => {
|
246
259
|
:default => "production",
|
247
260
|
:desc => "The environment Puppet is running in. For clients
|
@@ -250,13 +263,13 @@ module Puppet
|
|
250
263
|
this provides the default environment for nodes we know nothing about."
|
251
264
|
},
|
252
265
|
:environmentpath => {
|
253
|
-
:default => "",
|
266
|
+
:default => "$codedir/environments",
|
254
267
|
:desc => "A search path for directory environments, as a list of directories
|
255
268
|
separated by the system path separator character. (The POSIX path separator
|
256
269
|
is ':', and the Windows path separator is ';'.)
|
257
270
|
|
258
271
|
This setting must have a value set to enable **directory environments.** The
|
259
|
-
recommended value is `$
|
272
|
+
recommended value is `$codedir/environments`. For more details, see
|
260
273
|
http://docs.puppetlabs.com/puppet/latest/reference/environments.html",
|
261
274
|
:type => :path,
|
262
275
|
},
|
@@ -343,17 +356,10 @@ module Puppet
|
|
343
356
|
:desc => "Where to retrive information about data.",
|
344
357
|
},
|
345
358
|
:hiera_config => {
|
346
|
-
:default => "$
|
359
|
+
:default => "$codedir/hiera.yaml",
|
347
360
|
:desc => "The hiera configuration file. Puppet only reads this file on startup, so you must restart the puppet master every time you edit it.",
|
348
361
|
:type => :file,
|
349
362
|
},
|
350
|
-
:binder => {
|
351
|
-
:default => false,
|
352
|
-
:desc => "Turns the binding system on or off. This includes bindings in modules.
|
353
|
-
The binding system aggregates data from modules and other locations and makes them available for lookup.
|
354
|
-
The binding system is experimental and any or all of it may change.",
|
355
|
-
:type => :boolean,
|
356
|
-
},
|
357
363
|
:binder_config => {
|
358
364
|
:default => nil,
|
359
365
|
:desc => "The binder configuration file. Puppet reads this file on each request to configure the bindings system.
|
@@ -375,20 +381,6 @@ module Puppet
|
|
375
381
|
:facts_terminus => {
|
376
382
|
:default => 'facter',
|
377
383
|
:desc => "The node facts terminus.",
|
378
|
-
:call_hook => :on_initialize_and_write,
|
379
|
-
:hook => proc do |value|
|
380
|
-
require 'puppet/node/facts'
|
381
|
-
# Cache to YAML if we're uploading facts away
|
382
|
-
if %w[rest inventory_service].include? value.to_s
|
383
|
-
Puppet.info "configuring the YAML fact cache because a remote terminus is active"
|
384
|
-
Puppet::Node::Facts.indirection.cache_class = :yaml
|
385
|
-
end
|
386
|
-
end
|
387
|
-
},
|
388
|
-
:inventory_terminus => {
|
389
|
-
:type => :terminus,
|
390
|
-
:default => "$facts_terminus",
|
391
|
-
:desc => "Should usually be the same as the facts terminus",
|
392
384
|
},
|
393
385
|
:default_file_terminus => {
|
394
386
|
:type => :terminus,
|
@@ -398,13 +390,6 @@ module Puppet
|
|
398
390
|
retrieved using the `server` setting. When running `apply` the default
|
399
391
|
is `file_server`, causing requests to be filled locally."
|
400
392
|
},
|
401
|
-
:httplog => {
|
402
|
-
:default => "$logdir/http.log",
|
403
|
-
:type => :file,
|
404
|
-
:owner => "root",
|
405
|
-
:mode => "0640",
|
406
|
-
:desc => "Where the puppet agent web server logs.",
|
407
|
-
},
|
408
393
|
:http_proxy_host => {
|
409
394
|
:default => "none",
|
410
395
|
:desc => "The HTTP proxy host to use for outgoing connections. Note: You
|
@@ -444,6 +429,19 @@ module Puppet
|
|
444
429
|
:type => :boolean,
|
445
430
|
:desc => "Whether to write HTTP request and responses to stderr. This should never be used in a production environment."
|
446
431
|
},
|
432
|
+
:http_connect_timeout => {
|
433
|
+
:default => "2m",
|
434
|
+
:type => :duration,
|
435
|
+
:desc => "The maximum amount of time to wait when establishing an HTTP connection. The default
|
436
|
+
value is 2 minutes.
|
437
|
+
#{AS_DURATION}",
|
438
|
+
},
|
439
|
+
:http_read_timeout => {
|
440
|
+
:type => :duration,
|
441
|
+
:desc => "The time to wait for one block to be read from an HTTP connection. If nothing is
|
442
|
+
read after the elapsed interval then the connection will be closed. The default value is unlimited.
|
443
|
+
#{AS_DURATION}",
|
444
|
+
},
|
447
445
|
:filetimeout => {
|
448
446
|
:default => "15s",
|
449
447
|
:type => :duration,
|
@@ -454,89 +452,18 @@ module Puppet
|
|
454
452
|
:environment_timeout => {
|
455
453
|
:default => "0",
|
456
454
|
:type => :ttl,
|
457
|
-
:desc => "
|
458
|
-
environment.
|
455
|
+
:desc => "The time to live for a cached environment.
|
459
456
|
#{AS_DURATION}
|
460
|
-
|
461
|
-
|
462
|
-
or told to refresh the cache.
|
463
|
-
|
464
|
-
You should change this setting once your Puppet deployment is doing
|
465
|
-
non-trivial work. We chose the default value of `0` because it lets new
|
466
|
-
users update their code without any extra steps, but it lowers the
|
467
|
-
performance of your Puppet master.
|
468
|
-
|
469
|
-
We recommend setting this to `unlimited` and explicitly refreshing your
|
470
|
-
Puppet master as part of your code deployment process.
|
471
|
-
|
472
|
-
* With Puppet Server, you should refresh environments by calling the
|
473
|
-
`environment-cache` API endpoint. See the docs for the Puppet Server
|
474
|
-
administrative API.
|
475
|
-
* With a Rack Puppet master, you should restart the web server or the
|
476
|
-
application server. Passenger lets you touch a `restart.txt` file to
|
477
|
-
refresh an application without restarting Apache; see the Passenger docs
|
478
|
-
for details.
|
479
|
-
|
480
|
-
We don't recommend using any value other than `0` or `unlimited`, since
|
481
|
-
most Puppet masters use a pool of Ruby interpreters which all have their
|
482
|
-
own cache timers. When these timers drift out of sync, agents can be served
|
483
|
-
inconsistent catalogs."
|
484
|
-
},
|
485
|
-
:queue_type => {
|
486
|
-
:default => "stomp",
|
487
|
-
:desc => "Which type of queue to use for asynchronous processing.",
|
488
|
-
},
|
489
|
-
:queue_source => {
|
490
|
-
:default => "stomp://localhost:61613/",
|
491
|
-
:desc => "Which type of queue to use for asynchronous processing. If your stomp server requires
|
492
|
-
authentication, you can include it in the URI as long as your stomp client library is at least 1.1.1",
|
493
|
-
},
|
494
|
-
:async_storeconfigs => {
|
495
|
-
:default => false,
|
496
|
-
:type => :boolean,
|
497
|
-
:desc => "Whether to use a queueing system to provide asynchronous database integration.
|
498
|
-
Requires that `puppet queue` be running.",
|
499
|
-
:hook => proc do |value|
|
500
|
-
if value
|
501
|
-
# This reconfigures the termini for Node, Facts, and Catalog
|
502
|
-
Puppet.settings.override_default(:storeconfigs, true)
|
503
|
-
|
504
|
-
# But then we modify the configuration
|
505
|
-
Puppet::Resource::Catalog.indirection.cache_class = :queue
|
506
|
-
Puppet.settings.override_default(:catalog_cache_terminus, :queue)
|
507
|
-
else
|
508
|
-
raise "Cannot disable asynchronous storeconfigs in a running process"
|
509
|
-
end
|
510
|
-
end
|
511
|
-
},
|
512
|
-
:thin_storeconfigs => {
|
513
|
-
:default => false,
|
514
|
-
:type => :boolean,
|
515
|
-
:desc =>
|
516
|
-
"Boolean; whether Puppet should store only facts and exported resources in the storeconfigs
|
517
|
-
database. This will improve the performance of exported resources with the older
|
518
|
-
`active_record` backend, but will disable external tools that search the storeconfigs database.
|
519
|
-
Thinning catalogs is generally unnecessary when using PuppetDB to store catalogs.",
|
520
|
-
:hook => proc do |value|
|
521
|
-
Puppet.settings.override_default(:storeconfigs, true) if value
|
522
|
-
end
|
523
|
-
},
|
524
|
-
:config_version => {
|
525
|
-
:default => "",
|
526
|
-
:desc => "How to determine the configuration version. By default, it will be the
|
527
|
-
time that the configuration is parsed, but you can provide a shell script to override how the
|
528
|
-
version is determined. The output of this script will be added to every log message in the
|
529
|
-
reports, allowing you to correlate changes on your hosts to the source version on the server.
|
530
|
-
|
531
|
-
Setting a global value for config_version in puppet.conf is deprecated. Please set a
|
532
|
-
per-environment value in environment.conf instead. For more info, see
|
533
|
-
http://docs.puppetlabs.com/puppet/latest/reference/environments.html",
|
534
|
-
:deprecated => :allowed_on_commandline,
|
457
|
+
This setting can also be set to `unlimited`, which causes the environment to
|
458
|
+
be cached until the master is restarted."
|
535
459
|
},
|
536
|
-
:
|
537
|
-
|
538
|
-
|
539
|
-
|
460
|
+
:environment_data_provider => {
|
461
|
+
:default => "none",
|
462
|
+
:desc => "The name of a registered environment data provider. The two built in
|
463
|
+
and registered providers are 'none' (no environment specific data), and 'function'
|
464
|
+
(environment specific data obtained by calling the function 'environment::data()').
|
465
|
+
Other environment data providers may be registered in modules on the module path. For such
|
466
|
+
custom data providers see the respective module documentation."
|
540
467
|
},
|
541
468
|
:prerun_command => {
|
542
469
|
:default => "",
|
@@ -555,31 +482,6 @@ module Puppet
|
|
555
482
|
:desc => "Freezes the 'main' class, disallowing any code to be added to it. This
|
556
483
|
essentially means that you can't have any code outside of a node,
|
557
484
|
class, or definition other than in the site manifest.",
|
558
|
-
},
|
559
|
-
:stringify_facts => {
|
560
|
-
:default => true,
|
561
|
-
:type => :boolean,
|
562
|
-
:desc => "Flatten fact values to strings using #to_s. Means you can't have arrays or
|
563
|
-
hashes as fact values. (DEPRECATED) This option will be removed in Puppet 4.0.",
|
564
|
-
},
|
565
|
-
:trusted_node_data => {
|
566
|
-
:default => false,
|
567
|
-
:type => :boolean,
|
568
|
-
:desc => "Stores trusted node data in a hash called $trusted.
|
569
|
-
When true also prevents $trusted from being overridden in any scope.",
|
570
|
-
},
|
571
|
-
:immutable_node_data => {
|
572
|
-
:default => '$trusted_node_data',
|
573
|
-
:type => :boolean,
|
574
|
-
:desc => "When true, also prevents $trusted and $facts from being overridden in any scope",
|
575
|
-
},
|
576
|
-
:preview_outputdir => {
|
577
|
-
:default => '$vardir/preview',
|
578
|
-
:type => :directory,
|
579
|
-
:mode => "0750",
|
580
|
-
:owner => "service",
|
581
|
-
:group => "service",
|
582
|
-
:desc => "The directory where catalog previews per node are generated."
|
583
485
|
}
|
584
486
|
)
|
585
487
|
Puppet.define_settings(:module_tool,
|
@@ -588,7 +490,7 @@ module Puppet
|
|
588
490
|
:desc => "The module repository",
|
589
491
|
},
|
590
492
|
:module_working_dir => {
|
591
|
-
:default =>
|
493
|
+
:default => '$vardir/puppet-module',
|
592
494
|
:desc => "The directory into which module tool data is stored",
|
593
495
|
},
|
594
496
|
:module_skeleton_dir => {
|
@@ -636,37 +538,6 @@ module Puppet
|
|
636
538
|
|
637
539
|
Defaults to the node's fully qualified domain name.",
|
638
540
|
:hook => proc { |value| raise(ArgumentError, "Certificate names must be lower case; see #1168") unless value == value.downcase }},
|
639
|
-
:certdnsnames => {
|
640
|
-
:default => '',
|
641
|
-
:hook => proc do |value|
|
642
|
-
unless value.nil? or value == '' then
|
643
|
-
Puppet.warning <<WARN
|
644
|
-
The `certdnsnames` setting is no longer functional,
|
645
|
-
after CVE-2011-3872. We ignore the value completely.
|
646
|
-
|
647
|
-
For your own certificate request you can set `dns_alt_names` in the
|
648
|
-
configuration and it will apply locally. There is no configuration option to
|
649
|
-
set DNS alt names, or any other `subjectAltName` value, for another nodes
|
650
|
-
certificate.
|
651
|
-
|
652
|
-
Alternately you can use the `--dns_alt_names` command line option to set the
|
653
|
-
labels added while generating your own CSR.
|
654
|
-
WARN
|
655
|
-
end
|
656
|
-
end,
|
657
|
-
:desc => <<EOT
|
658
|
-
The `certdnsnames` setting is no longer functional,
|
659
|
-
after CVE-2011-3872. We ignore the value completely.
|
660
|
-
|
661
|
-
For your own certificate request you can set `dns_alt_names` in the
|
662
|
-
configuration and it will apply locally. There is no configuration option to
|
663
|
-
set DNS alt names, or any other `subjectAltName` value, for another nodes
|
664
|
-
certificate.
|
665
|
-
|
666
|
-
Alternately you can use the `--dns_alt_names` command line option to set the
|
667
|
-
labels added while generating your own CSR.
|
668
|
-
EOT
|
669
|
-
},
|
670
541
|
:dns_alt_names => {
|
671
542
|
:default => '',
|
672
543
|
:desc => <<EOT,
|
@@ -851,12 +722,6 @@ EOT
|
|
851
722
|
Certificate Revocation List (CRL)
|
852
723
|
to all clients. If enabled, CA chaining will almost definitely not work.",
|
853
724
|
},
|
854
|
-
:certificate_expire_warning => {
|
855
|
-
:default => "60d",
|
856
|
-
:type => :duration,
|
857
|
-
:desc => "The window of time leading up to a certificate's expiration that a notification
|
858
|
-
will be logged. This applies to CA, master, and agent certificates. #{AS_DURATION}"
|
859
|
-
},
|
860
725
|
:digest_algorithm => {
|
861
726
|
:default => 'md5',
|
862
727
|
:type => :enum,
|
@@ -1038,36 +903,57 @@ EOT
|
|
1038
903
|
}
|
1039
904
|
)
|
1040
905
|
|
1041
|
-
define_settings(:
|
1042
|
-
:user => {
|
1043
|
-
:default => "puppet",
|
1044
|
-
:desc => "The user puppet master should run as.",
|
1045
|
-
},
|
1046
|
-
:group => {
|
1047
|
-
:default => "puppet",
|
1048
|
-
:desc => "The group puppet master should run as.",
|
1049
|
-
},
|
1050
|
-
:manifestdir => {
|
1051
|
-
:default => "$confdir/manifests",
|
1052
|
-
:type => :directory,
|
1053
|
-
:desc => "Used to build the default value of the `manifest` setting. Has no other purpose.
|
1054
|
-
|
1055
|
-
This setting is deprecated.",
|
1056
|
-
:deprecated => :completely,
|
1057
|
-
},
|
906
|
+
define_settings(:environment,
|
1058
907
|
:manifest => {
|
1059
|
-
:default =>
|
908
|
+
:default => nil,
|
1060
909
|
:type => :file_or_directory,
|
1061
910
|
:desc => "The entry-point manifest for puppet master. This can be one file
|
1062
911
|
or a directory of manifests to be evaluated in alphabetical order. Puppet manages
|
1063
912
|
this path as a directory if one exists or if the path ends with a / or \\.
|
1064
913
|
|
1065
|
-
Setting a global value for `manifest` in puppet.conf is
|
914
|
+
Setting a global value for `manifest` in puppet.conf is not allowed
|
915
|
+
(but it can be overridden from them commandline). Please use
|
1066
916
|
directory environments instead. If you need to use something other than the
|
1067
917
|
environment's `manifests` directory as the main manifest, you can set
|
1068
918
|
`manifest` in environment.conf. For more info, see
|
1069
919
|
http://docs.puppetlabs.com/puppet/latest/reference/environments.html",
|
1070
|
-
|
920
|
+
},
|
921
|
+
:modulepath => {
|
922
|
+
:default => "",
|
923
|
+
:type => :path,
|
924
|
+
:desc => "The search path for modules, as a list of directories separated by the system
|
925
|
+
path separator character. (The POSIX path separator is ':', and the
|
926
|
+
Windows path separator is ';'.)
|
927
|
+
|
928
|
+
Setting a global value for `modulepath` in puppet.conf is not allowed
|
929
|
+
(but it can be overridden from the commandline). Please use
|
930
|
+
directory environments instead. If you need to use something other than the
|
931
|
+
default modulepath of `<ACTIVE ENVIRONMENT'S MODULES DIR>:$basemodulepath`,
|
932
|
+
you can set `modulepath` in environment.conf. For more info, see
|
933
|
+
http://docs.puppetlabs.com/puppet/latest/reference/environments.html",
|
934
|
+
},
|
935
|
+
:config_version => {
|
936
|
+
:default => "",
|
937
|
+
:desc => "How to determine the configuration version. By default, it will be the
|
938
|
+
time that the configuration is parsed, but you can provide a shell script to override how the
|
939
|
+
version is determined. The output of this script will be added to every log message in the
|
940
|
+
reports, allowing you to correlate changes on your hosts to the source version on the server.
|
941
|
+
|
942
|
+
Setting a global value for config_version in puppet.conf is not allowed
|
943
|
+
(but it can be overridden from the commandline). Please set a
|
944
|
+
per-environment value in environment.conf instead. For more info, see
|
945
|
+
http://docs.puppetlabs.com/puppet/latest/reference/environments.html",
|
946
|
+
}
|
947
|
+
)
|
948
|
+
|
949
|
+
define_settings(:master,
|
950
|
+
:user => {
|
951
|
+
:default => "puppet",
|
952
|
+
:desc => "The user puppet master should run as.",
|
953
|
+
},
|
954
|
+
:group => {
|
955
|
+
:default => "puppet",
|
956
|
+
:desc => "The group puppet master should run as.",
|
1071
957
|
},
|
1072
958
|
:default_manifest => {
|
1073
959
|
:default => "./manifests",
|
@@ -1106,19 +992,6 @@ EOT
|
|
1106
992
|
by `puppet`, and should only be set if you're writing your own Puppet
|
1107
993
|
executable.",
|
1108
994
|
},
|
1109
|
-
:masterlog => {
|
1110
|
-
:default => "$logdir/puppetmaster.log",
|
1111
|
-
:type => :file,
|
1112
|
-
:owner => "service",
|
1113
|
-
:group => "service",
|
1114
|
-
:mode => "0660",
|
1115
|
-
:desc => "This file is literally never used, although Puppet may create it
|
1116
|
-
as an empty file. For more context, see the `puppetdlog` setting and
|
1117
|
-
puppet master's `--logdest` command line option.
|
1118
|
-
|
1119
|
-
This setting is deprecated and will be removed in a future version of Puppet.",
|
1120
|
-
:deprecated => :completely
|
1121
|
-
},
|
1122
995
|
:masterhttplog => {
|
1123
996
|
:default => "$logdir/masterhttp.log",
|
1124
997
|
:type => :file,
|
@@ -1137,6 +1010,15 @@ EOT
|
|
1137
1010
|
this is the port to listen on; for puppet agent, this is the port
|
1138
1011
|
to make requests on. Both applications use this setting to get the port.",
|
1139
1012
|
},
|
1013
|
+
:master_url_prefix => {
|
1014
|
+
:default => "/puppet",
|
1015
|
+
:desc => "The prefix at which the puppet master API is mounted.",
|
1016
|
+
:hook => proc do |value|
|
1017
|
+
if !value.start_with?("/")
|
1018
|
+
Puppet[:master_url_prefix] = "/#{value}"
|
1019
|
+
end
|
1020
|
+
end
|
1021
|
+
},
|
1140
1022
|
:node_name => {
|
1141
1023
|
:default => "cert",
|
1142
1024
|
:desc => "How the puppet master determines the client's identity
|
@@ -1166,34 +1048,22 @@ EOT
|
|
1166
1048
|
:type => :boolean,
|
1167
1049
|
:desc => "Whether the master should function as a certificate authority.",
|
1168
1050
|
},
|
1051
|
+
:trusted_oid_mapping_file => {
|
1052
|
+
:default => "$confdir/custom_trusted_oid_mapping.yaml",
|
1053
|
+
:type => :file,
|
1054
|
+
:desc => "File that provides mapping between custom SSL oids and user-friendly names"
|
1055
|
+
},
|
1169
1056
|
:basemodulepath => {
|
1170
|
-
:default => "$
|
1057
|
+
:default => "$codedir/modules#{File::PATH_SEPARATOR}/opt/puppetlabs/puppet/modules",
|
1171
1058
|
:type => :path,
|
1172
1059
|
:desc => "The search path for **global** modules. Should be specified as a
|
1173
1060
|
list of directories separated by the system path separator character. (The
|
1174
1061
|
POSIX path separator is ':', and the Windows path separator is ';'.)
|
1175
1062
|
|
1176
|
-
|
1177
|
-
|
1178
|
-
|
1179
|
-
http://docs.puppetlabs.com/puppet/latest/reference/environments.html
|
1180
|
-
|
1181
|
-
This setting also provides the default value for the deprecated `modulepath`
|
1182
|
-
setting, which is used when directory environments are disabled.",
|
1183
|
-
},
|
1184
|
-
:modulepath => {
|
1185
|
-
:default => "$basemodulepath",
|
1186
|
-
:type => :path,
|
1187
|
-
:desc => "The search path for modules, as a list of directories separated by the system
|
1188
|
-
path separator character. (The POSIX path separator is ':', and the
|
1189
|
-
Windows path separator is ';'.)
|
1190
|
-
|
1191
|
-
Setting a global value for `modulepath` in puppet.conf is deprecated. Please use
|
1192
|
-
directory environments instead. If you need to use something other than the
|
1193
|
-
default modulepath of `<ACTIVE ENVIRONMENT'S MODULES DIR>:$basemodulepath`,
|
1194
|
-
you can set `modulepath` in environment.conf. For more info, see
|
1063
|
+
These are the modules that will be used by _all_ environments. Note that
|
1064
|
+
the `modules` directory of the active environment will have priority over
|
1065
|
+
any global directories. For more info, see
|
1195
1066
|
http://docs.puppetlabs.com/puppet/latest/reference/environments.html",
|
1196
|
-
:deprecated => :allowed_on_commandline,
|
1197
1067
|
},
|
1198
1068
|
:ssl_client_header => {
|
1199
1069
|
:default => "HTTP_X_CLIENT_DN",
|
@@ -1240,7 +1110,7 @@ EOT
|
|
1240
1110
|
:default => "store",
|
1241
1111
|
:desc => "The list of report handlers to use. When using multiple report handlers,
|
1242
1112
|
their names should be comma-separated, with whitespace allowed. (For example,
|
1243
|
-
`reports = http,
|
1113
|
+
`reports = http, store`.)
|
1244
1114
|
|
1245
1115
|
This setting is relevant to puppet master and puppet apply. The puppet
|
1246
1116
|
master will call these report handlers with the reports it receives from
|
@@ -1281,25 +1151,6 @@ EOT
|
|
1281
1151
|
}
|
1282
1152
|
)
|
1283
1153
|
|
1284
|
-
define_settings(:metrics,
|
1285
|
-
:rrddir => {
|
1286
|
-
:type => :directory,
|
1287
|
-
:default => "$vardir/rrd",
|
1288
|
-
:mode => "0750",
|
1289
|
-
:owner => "service",
|
1290
|
-
:group => "service",
|
1291
|
-
:desc => "The directory where RRD database files are stored.
|
1292
|
-
Directories for each reporting host will be created under
|
1293
|
-
this directory."
|
1294
|
-
},
|
1295
|
-
:rrdinterval => {
|
1296
|
-
:default => "$runinterval",
|
1297
|
-
:type => :duration,
|
1298
|
-
:desc => "How often RRD should expect data.
|
1299
|
-
This should match how often the hosts report back to the server. #{AS_DURATION}",
|
1300
|
-
}
|
1301
|
-
)
|
1302
|
-
|
1303
1154
|
define_settings(:device,
|
1304
1155
|
:devicedir => {
|
1305
1156
|
:default => "$vardir/devices",
|
@@ -1335,13 +1186,6 @@ EOT
|
|
1335
1186
|
end
|
1336
1187
|
end
|
1337
1188
|
},
|
1338
|
-
:localconfig => {
|
1339
|
-
:default => "$statedir/localconfig",
|
1340
|
-
:type => :file,
|
1341
|
-
:owner => "root",
|
1342
|
-
:mode => "0660",
|
1343
|
-
:desc => "Where puppet agent caches the local configuration. An
|
1344
|
-
extension indicating the cache format is added automatically."},
|
1345
1189
|
:statefile => {
|
1346
1190
|
:default => "$statedir/state.yaml",
|
1347
1191
|
:type => :file,
|
@@ -1422,10 +1266,6 @@ EOT
|
|
1422
1266
|
:desc => "Boolean; whether to generate the default schedule resources. Setting this to
|
1423
1267
|
false is useful for keeping external report processors clean of skipped schedule resources.",
|
1424
1268
|
},
|
1425
|
-
:puppetport => {
|
1426
|
-
:default => 8139,
|
1427
|
-
:desc => "Which port puppet agent listens on.",
|
1428
|
-
},
|
1429
1269
|
:noop => {
|
1430
1270
|
:default => false,
|
1431
1271
|
:type => :boolean,
|
@@ -1459,15 +1299,6 @@ EOT
|
|
1459
1299
|
\"never run.\" If you want puppet agent to never run, you should start
|
1460
1300
|
it with the `--no-client` option. #{AS_DURATION}",
|
1461
1301
|
},
|
1462
|
-
:listen => {
|
1463
|
-
:default => false,
|
1464
|
-
:type => :boolean,
|
1465
|
-
:desc => "Whether puppet agent should listen for
|
1466
|
-
connections. If this is true, then puppet agent will accept incoming
|
1467
|
-
REST API requests, subject to the default ACLs and the ACLs set in
|
1468
|
-
the `rest_authconfig` file. Puppet agent can respond usefully to
|
1469
|
-
requests on the `run`, `facts`, `certificate`, and `resource` endpoints.",
|
1470
|
-
},
|
1471
1302
|
:ca_server => {
|
1472
1303
|
:default => "$server",
|
1473
1304
|
:desc => "The server to use for certificate
|
@@ -1478,18 +1309,6 @@ EOT
|
|
1478
1309
|
:default => "$masterport",
|
1479
1310
|
:desc => "The port to use for the certificate authority.",
|
1480
1311
|
},
|
1481
|
-
:catalog_format => {
|
1482
|
-
:default => "",
|
1483
|
-
:desc => "(Deprecated for 'preferred_serialization_format') What format to
|
1484
|
-
use to dump the catalog. Only supports 'marshal' and 'yaml'. Only
|
1485
|
-
matters on the client, since it asks the server for a specific format.",
|
1486
|
-
:hook => proc { |value|
|
1487
|
-
if value
|
1488
|
-
Puppet.deprecation_warning "Setting 'catalog_format' is deprecated; use 'preferred_serialization_format' instead."
|
1489
|
-
Puppet.settings.override_default(:preferred_serialization_format, value)
|
1490
|
-
end
|
1491
|
-
}
|
1492
|
-
},
|
1493
1312
|
:preferred_serialization_format => {
|
1494
1313
|
:default => "pson",
|
1495
1314
|
:desc => "The preferred means of serializing
|
@@ -1498,36 +1317,6 @@ EOT
|
|
1498
1317
|
can be guaranteed to support this format, but it will be used for all
|
1499
1318
|
classes that support it.",
|
1500
1319
|
},
|
1501
|
-
:report_serialization_format => {
|
1502
|
-
:default => "pson",
|
1503
|
-
:type => :enum,
|
1504
|
-
:values => ["pson", "yaml"],
|
1505
|
-
:desc => "The serialization format to use when sending reports to the
|
1506
|
-
`report_server`. Possible values are `pson` and `yaml`. This setting
|
1507
|
-
affects puppet agent, but not puppet apply (which processes its own
|
1508
|
-
reports).
|
1509
|
-
|
1510
|
-
This should almost always be set to `pson`. It can be temporarily set to
|
1511
|
-
`yaml` to let agents using this Puppet version connect to a puppet master
|
1512
|
-
running Puppet 3.0.0 through 3.2.x.
|
1513
|
-
|
1514
|
-
Note that this is set to 'yaml' automatically if the agent detects an
|
1515
|
-
older master, so should never need to be set explicitly."
|
1516
|
-
},
|
1517
|
-
:legacy_query_parameter_serialization => {
|
1518
|
-
:default => false,
|
1519
|
-
:type => :boolean,
|
1520
|
-
:desc => "The serialization format to use when sending file_metadata
|
1521
|
-
query parameters. Older versions of puppet master expect certain query
|
1522
|
-
parameters to be serialized as yaml, which is deprecated.
|
1523
|
-
|
1524
|
-
This should almost always be false. It can be temporarily set to true
|
1525
|
-
to let agents using this Puppet version connect to a puppet master
|
1526
|
-
running Puppet 3.0.0 through 3.2.x.
|
1527
|
-
|
1528
|
-
Note that this is set to true automatically if the agent detects an
|
1529
|
-
older master, so should never need to be set explicitly."
|
1530
|
-
},
|
1531
1320
|
:agent_catalog_run_lockfile => {
|
1532
1321
|
:default => "$statedir/agent_catalog_run.lock",
|
1533
1322
|
:type => :string, # (#2888) Ensure this file is not added to the settings catalog.
|
@@ -1570,17 +1359,6 @@ EOT
|
|
1570
1359
|
fact be stale even if the timestamps are up to date - if the facts
|
1571
1360
|
change or if the server changes.",
|
1572
1361
|
},
|
1573
|
-
:dynamicfacts => {
|
1574
|
-
:default => "memorysize,memoryfree,swapsize,swapfree",
|
1575
|
-
:desc => "(Deprecated) Facts that are dynamic; these facts will be ignored when deciding whether
|
1576
|
-
changed facts should result in a recompile. Multiple facts should be
|
1577
|
-
comma-separated.",
|
1578
|
-
:hook => proc { |value|
|
1579
|
-
if value
|
1580
|
-
Puppet.deprecation_warning "The dynamicfacts setting is deprecated and will be ignored."
|
1581
|
-
end
|
1582
|
-
}
|
1583
|
-
},
|
1584
1362
|
:splaylimit => {
|
1585
1363
|
:default => "$runinterval",
|
1586
1364
|
:type => :duration,
|
@@ -1603,8 +1381,14 @@ EOT
|
|
1603
1381
|
:default => "2m",
|
1604
1382
|
:type => :duration,
|
1605
1383
|
:desc => "How long the client should wait for the configuration to be retrieved
|
1606
|
-
before considering it a failure.
|
1607
|
-
|
1384
|
+
before considering it a failure. This setting is deprecated and has been replaced
|
1385
|
+
by http_connect_timeout and http_read_timeout.
|
1386
|
+
#{AS_DURATION}",
|
1387
|
+
:deprecated => :completely,
|
1388
|
+
:hook => proc do |value|
|
1389
|
+
Puppet[:http_connect_timeout] = value
|
1390
|
+
Puppet[:http_read_timeout] = value
|
1391
|
+
end
|
1608
1392
|
},
|
1609
1393
|
:report_server => {
|
1610
1394
|
:default => "$server",
|
@@ -1614,14 +1398,6 @@ EOT
|
|
1614
1398
|
:default => "$masterport",
|
1615
1399
|
:desc => "The port to communicate with the report_server.",
|
1616
1400
|
},
|
1617
|
-
:inventory_server => {
|
1618
|
-
:default => "$server",
|
1619
|
-
:desc => "The server to send facts to.",
|
1620
|
-
},
|
1621
|
-
:inventory_port => {
|
1622
|
-
:default => "$masterport",
|
1623
|
-
:desc => "The port to communicate with the inventory_server.",
|
1624
|
-
},
|
1625
1401
|
:report => {
|
1626
1402
|
:default => true,
|
1627
1403
|
:type => :boolean,
|
@@ -1651,17 +1427,6 @@ EOT
|
|
1651
1427
|
:type => :directory,
|
1652
1428
|
:desc => "Where to store dot-outputted graphs.",
|
1653
1429
|
},
|
1654
|
-
:http_compression => {
|
1655
|
-
:default => false,
|
1656
|
-
:type => :boolean,
|
1657
|
-
:desc => "Allow http compression in REST communication with the master.
|
1658
|
-
This setting might improve performance for agent -> master
|
1659
|
-
communications over slow WANs. Your puppet master needs to support
|
1660
|
-
compression (usually by activating some settings in a reverse-proxy in
|
1661
|
-
front of the puppet master, which rules out webrick). It is harmless to
|
1662
|
-
activate this settings if your master doesn't support compression, but
|
1663
|
-
if it supports it, this setting might reduce performance on high-speed LANs.",
|
1664
|
-
},
|
1665
1430
|
:waitforcert => {
|
1666
1431
|
:default => "2m",
|
1667
1432
|
:type => :duration,
|
@@ -1682,15 +1447,17 @@ EOT
|
|
1682
1447
|
:ordering => {
|
1683
1448
|
:type => :enum,
|
1684
1449
|
:values => ["manifest", "title-hash", "random"],
|
1685
|
-
:default => "
|
1450
|
+
:default => "manifest",
|
1686
1451
|
:desc => "How unrelated resources should be ordered when applying a catalog.
|
1687
1452
|
Allowed values are `title-hash`, `manifest`, and `random`. This
|
1688
1453
|
setting affects puppet agent and puppet apply, but not puppet master.
|
1689
1454
|
|
1690
|
-
* `
|
1691
|
-
|
1692
|
-
* `
|
1693
|
-
|
1455
|
+
* `manifest` (the default) will use the order in which the resources were
|
1456
|
+
declared in their manifest files.
|
1457
|
+
* `title-hash` (the default in 3.x) will order resources randomly, but
|
1458
|
+
will use the same order across runs and across nodes. It is only of
|
1459
|
+
value if you're migrating from 3.x and have errors running with
|
1460
|
+
`manifest`.
|
1694
1461
|
* `random` will order resources randomly and change their order with each
|
1695
1462
|
run. This can work like a fuzzer for shaking out undeclared dependencies.
|
1696
1463
|
|
@@ -1724,7 +1491,7 @@ EOT
|
|
1724
1491
|
server.",
|
1725
1492
|
},
|
1726
1493
|
:pluginsource => {
|
1727
|
-
:default => "puppet
|
1494
|
+
:default => "puppet:///plugins",
|
1728
1495
|
:desc => "From where to retrieve plugins. The standard Puppet `file` type
|
1729
1496
|
is used for retrieval, so anything that is a valid file source can
|
1730
1497
|
be used here.",
|
@@ -1735,7 +1502,7 @@ EOT
|
|
1735
1502
|
:desc => "Where Puppet should store external facts that are being handled by pluginsync",
|
1736
1503
|
},
|
1737
1504
|
:pluginfactsource => {
|
1738
|
-
:default => "puppet
|
1505
|
+
:default => "puppet:///pluginfacts",
|
1739
1506
|
:desc => "Where to retrieve external facts for pluginsync",
|
1740
1507
|
},
|
1741
1508
|
:pluginsync => {
|
@@ -1769,120 +1536,7 @@ EOT
|
|
1769
1536
|
}
|
1770
1537
|
)
|
1771
1538
|
|
1772
|
-
|
1773
|
-
define_settings(
|
1774
|
-
:tagmail,
|
1775
|
-
:tagmap => {
|
1776
|
-
:default => "$confdir/tagmail.conf",
|
1777
|
-
:desc => "The mapping between reporting tags and email addresses.",
|
1778
|
-
},
|
1779
|
-
:sendmail => {
|
1780
|
-
:default => which('sendmail') || '',
|
1781
|
-
:desc => "Where to find the sendmail binary with which to send email.",
|
1782
|
-
},
|
1783
|
-
|
1784
|
-
:reportfrom => {
|
1785
|
-
:default => lambda { "report@#{Puppet::Settings.default_certname.downcase}" },
|
1786
|
-
:desc => "The 'from' email address for the reports.",
|
1787
|
-
},
|
1788
|
-
|
1789
|
-
:smtpserver => {
|
1790
|
-
:default => "none",
|
1791
|
-
:desc => "The server through which to send email reports.",
|
1792
|
-
},
|
1793
|
-
:smtpport => {
|
1794
|
-
:default => 25,
|
1795
|
-
:desc => "The TCP port through which to send email reports.",
|
1796
|
-
},
|
1797
|
-
:smtphelo => {
|
1798
|
-
:default => lambda { Facter.value 'fqdn' },
|
1799
|
-
:desc => "The name by which we identify ourselves in SMTP HELO for reports.
|
1800
|
-
If you send to a smtpserver which does strict HELO checking (as with Postfix's
|
1801
|
-
`smtpd_helo_restrictions` access controls), you may need to ensure this resolves.",
|
1802
|
-
}
|
1803
|
-
)
|
1804
|
-
|
1805
|
-
define_settings(
|
1806
|
-
:rails,
|
1807
|
-
:dblocation => {
|
1808
|
-
:default => "$statedir/clientconfigs.sqlite3",
|
1809
|
-
:type => :file,
|
1810
|
-
:mode => "0660",
|
1811
|
-
:owner => "service",
|
1812
|
-
:group => "service",
|
1813
|
-
:desc => "The sqlite database file. #{STORECONFIGS_ONLY}"
|
1814
|
-
},
|
1815
|
-
:dbadapter => {
|
1816
|
-
:default => "sqlite3",
|
1817
|
-
:desc => "The type of database to use. #{STORECONFIGS_ONLY}",
|
1818
|
-
},
|
1819
|
-
:dbmigrate => {
|
1820
|
-
:default => false,
|
1821
|
-
:type => :boolean,
|
1822
|
-
:desc => "Whether to automatically migrate the database. #{STORECONFIGS_ONLY}",
|
1823
|
-
},
|
1824
|
-
:dbname => {
|
1825
|
-
:default => "puppet",
|
1826
|
-
:desc => "The name of the database to use. #{STORECONFIGS_ONLY}",
|
1827
|
-
},
|
1828
|
-
:dbserver => {
|
1829
|
-
:default => "localhost",
|
1830
|
-
:desc => "The database server for caching. Only
|
1831
|
-
used when networked databases are used.",
|
1832
|
-
},
|
1833
|
-
:dbport => {
|
1834
|
-
:default => "",
|
1835
|
-
:desc => "The database password for caching. Only
|
1836
|
-
used when networked databases are used. #{STORECONFIGS_ONLY}",
|
1837
|
-
},
|
1838
|
-
:dbuser => {
|
1839
|
-
:default => "puppet",
|
1840
|
-
:desc => "The database user for caching. Only
|
1841
|
-
used when networked databases are used. #{STORECONFIGS_ONLY}",
|
1842
|
-
},
|
1843
|
-
:dbpassword => {
|
1844
|
-
:default => "puppet",
|
1845
|
-
:desc => "The database password for caching. Only
|
1846
|
-
used when networked databases are used. #{STORECONFIGS_ONLY}",
|
1847
|
-
},
|
1848
|
-
:dbconnections => {
|
1849
|
-
:default => '',
|
1850
|
-
:desc => "The number of database connections for networked
|
1851
|
-
databases. Will be ignored unless the value is a positive integer. #{STORECONFIGS_ONLY}",
|
1852
|
-
},
|
1853
|
-
:dbsocket => {
|
1854
|
-
:default => "",
|
1855
|
-
:desc => "The database socket location. Only used when networked
|
1856
|
-
databases are used. Will be ignored if the value is an empty string. #{STORECONFIGS_ONLY}",
|
1857
|
-
},
|
1858
|
-
:railslog => {
|
1859
|
-
:default => "$logdir/rails.log",
|
1860
|
-
:type => :file,
|
1861
|
-
:mode => "0600",
|
1862
|
-
:owner => "service",
|
1863
|
-
:group => "service",
|
1864
|
-
:desc => "Where Rails-specific logs are sent. #{STORECONFIGS_ONLY}"
|
1865
|
-
},
|
1866
|
-
|
1867
|
-
:rails_loglevel => {
|
1868
|
-
:default => "info",
|
1869
|
-
:desc => "The log level for Rails connections. The value must be
|
1870
|
-
a valid log level within Rails. Production environments normally use `info`
|
1871
|
-
and other environments normally use `debug`. #{STORECONFIGS_ONLY}",
|
1872
|
-
}
|
1873
|
-
)
|
1874
|
-
|
1875
|
-
define_settings(
|
1876
|
-
:couchdb,
|
1877
|
-
|
1878
|
-
:couchdb_url => {
|
1879
|
-
:default => "http://127.0.0.1:5984/puppet",
|
1880
|
-
:desc => "The url where the puppet couchdb database will be created.
|
1881
|
-
Only used when `facts_terminus` is set to `couch`.",
|
1882
|
-
}
|
1883
|
-
)
|
1884
|
-
|
1885
|
-
define_settings(
|
1539
|
+
define_settings(
|
1886
1540
|
:transaction,
|
1887
1541
|
:tags => {
|
1888
1542
|
:default => "",
|
@@ -1993,11 +1647,10 @@ EOT
|
|
1993
1647
|
:default => false,
|
1994
1648
|
:type => :boolean,
|
1995
1649
|
:desc => "Whether to store each client's configuration, including catalogs, facts,
|
1996
|
-
and related data.
|
1650
|
+
and related data. This also enables the import and export of resources in
|
1997
1651
|
the Puppet language - a mechanism for exchange resources between nodes.
|
1998
1652
|
|
1999
|
-
By default this uses
|
2000
|
-
the data; this, in turn, will depend on Rails being available.
|
1653
|
+
By default this uses the 'puppetdb' backend.
|
2001
1654
|
|
2002
1655
|
You can adjust the backend using the storeconfigs_backend setting.",
|
2003
1656
|
# Call our hook with the default value, so we always get the libdir set.
|
@@ -2006,71 +1659,23 @@ EOT
|
|
2006
1659
|
require 'puppet/node'
|
2007
1660
|
require 'puppet/node/facts'
|
2008
1661
|
if value
|
2009
|
-
|
2010
|
-
|
2011
|
-
Puppet.settings.override_default(:catalog_cache_terminus, :store_configs)
|
2012
|
-
end
|
1662
|
+
Puppet::Resource::Catalog.indirection.cache_class = :store_configs
|
1663
|
+
Puppet.settings.override_default(:catalog_cache_terminus, :store_configs)
|
2013
1664
|
Puppet::Node::Facts.indirection.cache_class = :store_configs
|
2014
|
-
|
2015
1665
|
Puppet::Resource.indirection.terminus_class = :store_configs
|
2016
1666
|
end
|
2017
1667
|
end
|
2018
1668
|
},
|
2019
1669
|
:storeconfigs_backend => {
|
2020
1670
|
:type => :terminus,
|
2021
|
-
:default => "
|
1671
|
+
:default => "puppetdb",
|
2022
1672
|
:desc => "Configure the backend terminus used for StoreConfigs.
|
2023
|
-
By default, this uses the
|
2024
|
-
|
1673
|
+
By default, this uses the PuppetDB store, which must be installed
|
1674
|
+
and configured before turning on StoreConfigs."
|
2025
1675
|
}
|
2026
1676
|
)
|
2027
1677
|
|
2028
1678
|
define_settings(:parser,
|
2029
|
-
:templatedir => {
|
2030
|
-
:default => "$vardir/templates",
|
2031
|
-
:type => :directory,
|
2032
|
-
:desc => "Where Puppet looks for template files. Can be a list of colon-separated
|
2033
|
-
directories.
|
2034
|
-
|
2035
|
-
This setting is deprecated. Please put your templates in modules instead.",
|
2036
|
-
:deprecated => :completely,
|
2037
|
-
},
|
2038
|
-
|
2039
|
-
:allow_variables_with_dashes => {
|
2040
|
-
:default => false,
|
2041
|
-
:desc => <<-'EOT'
|
2042
|
-
Permit hyphens (`-`) in variable names and issue deprecation warnings about
|
2043
|
-
them. This setting **should always be `false`;** setting it to `true`
|
2044
|
-
will cause subtle and wide-ranging bugs. It will be removed in a future version.
|
2045
|
-
|
2046
|
-
Hyphenated variables caused major problems in the language, but were allowed
|
2047
|
-
between Puppet 2.7.3 and 2.7.14. If you used them during this window, we
|
2048
|
-
apologize for the inconvenience --- you can temporarily set this to `true`
|
2049
|
-
in order to upgrade, and can rename your variables at your leisure. Please
|
2050
|
-
revert it to `false` after you have renamed all affected variables.
|
2051
|
-
EOT
|
2052
|
-
},
|
2053
|
-
:parser => {
|
2054
|
-
:default => "current",
|
2055
|
-
:hook => proc do |value|
|
2056
|
-
envs = Puppet.lookup(:environments) { nil }
|
2057
|
-
envs.clear_all unless envs.nil?
|
2058
|
-
end,
|
2059
|
-
:desc => <<-'EOT'
|
2060
|
-
Selects the parser to use for parsing puppet manifests (in puppet DSL
|
2061
|
-
language/'.pp' files). Available choices are `current` (the default)
|
2062
|
-
and `future`.
|
2063
|
-
|
2064
|
-
The `current` parser means that the released version of the parser should
|
2065
|
-
be used.
|
2066
|
-
|
2067
|
-
The `future` parser is a "time travel to the future" allowing early
|
2068
|
-
exposure to new language features. What these features are will vary from
|
2069
|
-
release to release and they may be invididually configurable.
|
2070
|
-
|
2071
|
-
Available Since Puppet 3.2.
|
2072
|
-
EOT
|
2073
|
-
},
|
2074
1679
|
:max_errors => {
|
2075
1680
|
:default => 10,
|
2076
1681
|
:desc => <<-'EOT'
|