puppet 5.3.7 → 5.4.0
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of puppet might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/CONTRIBUTING.md +42 -29
- data/README.md +8 -6
- data/ext/cert_inspector +2 -2
- data/ext/envpuppet +1 -1
- data/ext/gentoo/init.d/puppetmaster +4 -4
- data/ext/ips/puppet-agent +11 -11
- data/ext/ips/puppet-master +11 -11
- data/ext/puppet-test +1 -2
- data/ext/redhat/client.init +2 -2
- data/ext/redhat/logrotate +1 -1
- data/ext/solaris/smf/puppet +11 -11
- data/ext/solaris/smf/svc-puppetd +5 -5
- data/ext/solaris/smf/svc-puppetmasterd +5 -5
- data/ext/windows/service/daemon.rb +1 -1
- data/install.rb +2 -3
- data/lib/puppet/agent.rb +1 -1
- data/lib/puppet/application/cert.rb +1 -3
- data/lib/puppet/application/describe.rb +0 -1
- data/lib/puppet/application/device.rb +12 -99
- data/lib/puppet/application/filebucket.rb +32 -11
- data/lib/puppet/application/lookup.rb +1 -11
- data/lib/puppet/application/script.rb +261 -0
- data/lib/puppet/configurer.rb +3 -4
- data/lib/puppet/configurer/plugin_handler.rb +26 -9
- data/lib/puppet/context.rb +1 -1
- data/lib/puppet/datatypes.rb +213 -0
- data/lib/puppet/datatypes/error.rb +21 -0
- data/lib/puppet/datatypes/impl/error.rb +40 -0
- data/lib/puppet/defaults.rb +51 -20
- data/lib/puppet/environments.rb +17 -0
- data/lib/puppet/error.rb +17 -0
- data/lib/puppet/etc.rb +2 -2
- data/lib/puppet/external/pson/pure/generator.rb +1 -1
- data/lib/puppet/external/pson/pure/parser.rb +1 -1
- data/lib/puppet/face/config.rb +45 -0
- data/lib/puppet/face/epp.rb +3 -3
- data/lib/puppet/face/help/action.erb +3 -0
- data/lib/puppet/face/module/build.rb +1 -0
- data/lib/puppet/face/module/generate.rb +5 -0
- data/lib/puppet/face/module/install.rb +1 -0
- data/lib/puppet/face/module/search.rb +6 -2
- data/lib/puppet/face/module/uninstall.rb +1 -0
- data/lib/puppet/face/module/upgrade.rb +1 -0
- data/lib/puppet/face/parser.rb +0 -1
- data/lib/puppet/face/plugin.rb +1 -3
- data/lib/puppet/feature/base.rb +1 -1
- data/lib/puppet/feature/bolt.rb +3 -0
- data/lib/puppet/file_bucket/dipper.rb +1 -2
- data/lib/puppet/file_serving/http_metadata.rb +1 -1
- data/lib/puppet/file_system/uniquefile.rb +2 -2
- data/lib/puppet/forge.rb +6 -0
- data/lib/puppet/functions.rb +70 -88
- data/lib/puppet/functions/all.rb +6 -2
- data/lib/puppet/functions/annotate.rb +1 -1
- data/lib/puppet/functions/any.rb +7 -3
- data/lib/puppet/functions/contain.rb +6 -0
- data/lib/puppet/functions/convert_to.rb +32 -0
- data/lib/puppet/functions/defined.rb +0 -3
- data/lib/puppet/functions/each.rb +10 -6
- data/lib/puppet/functions/filter.rb +16 -10
- data/lib/puppet/functions/find_file.rb +0 -1
- data/lib/puppet/functions/include.rb +6 -0
- data/lib/puppet/functions/map.rb +12 -9
- data/lib/puppet/functions/module_directory.rb +41 -0
- data/lib/puppet/functions/new.rb +1 -4
- data/lib/puppet/functions/regsubst.rb +1 -1
- data/lib/puppet/functions/require.rb +6 -0
- data/lib/puppet/generate/type.rb +1 -1
- data/lib/puppet/gettext/config.rb +2 -2
- data/lib/puppet/gettext/stubs.rb +1 -1
- data/lib/puppet/indirector/catalog/compiler.rb +0 -1
- data/lib/puppet/indirector/file_bucket_file/file.rb +6 -2
- data/lib/puppet/indirector/file_server.rb +1 -1
- data/lib/puppet/indirector/node/ldap.rb +19 -3
- data/lib/puppet/indirector/request.rb +10 -6
- data/lib/puppet/indirector/rest.rb +11 -12
- data/lib/puppet/info_service/class_information_service.rb +1 -1
- data/lib/puppet/interface/action.rb +11 -0
- data/lib/puppet/interface/action_builder.rb +8 -0
- data/lib/puppet/interface/option_manager.rb +1 -1
- data/lib/puppet/loaders.rb +2 -0
- data/lib/puppet/module.rb +6 -2
- data/lib/puppet/module_tool/applications/builder.rb +4 -0
- data/lib/puppet/module_tool/applications/installer.rb +3 -0
- data/lib/puppet/module_tool/applications/uninstaller.rb +3 -0
- data/lib/puppet/module_tool/applications/unpacker.rb +1 -1
- data/lib/puppet/module_tool/applications/upgrader.rb +3 -0
- data/lib/puppet/module_tool/installed_modules.rb +1 -1
- data/lib/puppet/module_tool/metadata.rb +0 -1
- data/lib/puppet/network/authstore.rb +1 -1
- data/lib/puppet/network/http/api/indirected_routes.rb +1 -1
- data/lib/puppet/network/http/connection.rb +1 -9
- data/lib/puppet/network/http/factory.rb +0 -3
- data/lib/puppet/network/http/webrick.rb +1 -0
- data/lib/puppet/network/rights.rb +1 -1
- data/lib/puppet/node.rb +53 -0
- data/lib/puppet/node/environment.rb +1 -1
- data/lib/puppet/parameter/boolean.rb +1 -1
- data/lib/puppet/parser.rb +1 -0
- data/lib/puppet/parser/abstract_compiler.rb +36 -0
- data/lib/puppet/parser/ast/branch.rb +1 -1
- data/lib/puppet/parser/ast/pops_bridge.rb +8 -52
- data/lib/puppet/parser/compiler.rb +4 -54
- data/lib/puppet/parser/functions.rb +0 -1
- data/lib/puppet/parser/functions/create_resources.rb +6 -0
- data/lib/puppet/parser/functions/fqdn_rand.rb +6 -2
- data/lib/puppet/parser/functions/inline_template.rb +6 -0
- data/lib/puppet/parser/functions/new.rb +47 -32
- data/lib/puppet/parser/functions/realize.rb +6 -0
- data/lib/puppet/parser/functions/return.rb +1 -22
- data/lib/puppet/parser/functions/reverse_each.rb +1 -1
- data/lib/puppet/parser/functions/scanf.rb +1 -1
- data/lib/puppet/parser/functions/sha256.rb +5 -0
- data/lib/puppet/parser/functions/tag.rb +6 -0
- data/lib/puppet/parser/functions/tagged.rb +6 -0
- data/lib/puppet/parser/functions/template.rb +5 -0
- data/lib/puppet/parser/scope.rb +28 -4
- data/lib/puppet/parser/script_compiler.rb +118 -0
- data/lib/puppet/parser/type_loader.rb +1 -1
- data/lib/puppet/pops.rb +1 -1
- data/lib/puppet/pops/evaluator/access_operator.rb +38 -4
- data/lib/puppet/pops/evaluator/closure.rb +12 -4
- data/lib/puppet/pops/evaluator/compare_operator.rb +4 -4
- data/lib/puppet/pops/evaluator/epp_evaluator.rb +13 -0
- data/lib/puppet/pops/evaluator/evaluator_impl.rb +38 -10
- data/lib/puppet/pops/evaluator/literal_evaluator.rb +1 -1
- data/lib/puppet/pops/evaluator/runtime3_converter.rb +1 -1
- data/lib/puppet/pops/evaluator/runtime3_support.rb +2 -3
- data/lib/puppet/pops/functions/dispatch.rb +6 -5
- data/lib/puppet/pops/functions/function.rb +2 -2
- data/lib/puppet/pops/issues.rb +34 -2
- data/lib/puppet/pops/loader/base_loader.rb +10 -0
- data/lib/puppet/pops/loader/dependency_loader.rb +7 -0
- data/lib/puppet/pops/loader/loader.rb +21 -2
- data/lib/puppet/pops/loader/loader_paths.rb +180 -30
- data/lib/puppet/pops/loader/module_loaders.rb +202 -33
- data/lib/puppet/pops/loader/puppet_plan_instantiator.rb +84 -0
- data/lib/puppet/pops/loader/puppet_resource_type_impl_instantiator.rb +9 -9
- data/lib/puppet/pops/loader/ruby_data_type_instantiator.rb +40 -0
- data/lib/puppet/pops/loader/runtime3_type_loader.rb +6 -1
- data/lib/puppet/pops/loader/static_loader.rb +23 -8
- data/lib/puppet/pops/loader/task_instantiator.rb +69 -0
- data/lib/puppet/pops/loader/type_definition_instantiator.rb +4 -0
- data/lib/puppet/pops/loaders.rb +122 -11
- data/lib/puppet/pops/lookup/data_dig_function_provider.rb +1 -1
- data/lib/puppet/pops/lookup/interpolation.rb +1 -1
- data/lib/puppet/pops/lookup/lookup_adapter.rb +0 -1
- data/lib/puppet/pops/model/ast.pp +3 -0
- data/lib/puppet/pops/model/ast.rb +34 -1
- data/lib/puppet/pops/model/factory.rb +30 -3
- data/lib/puppet/pops/model/model_label_provider.rb +1 -0
- data/lib/puppet/pops/model/model_tree_dumper.rb +12 -1
- data/lib/puppet/pops/model/tree_dumper.rb +1 -1
- data/lib/puppet/pops/parser/code_merger.rb +2 -2
- data/lib/puppet/pops/parser/egrammar.ra +44 -15
- data/lib/puppet/pops/parser/eparser.rb +1687 -1571
- data/lib/puppet/pops/parser/epp_support.rb +1 -3
- data/lib/puppet/pops/parser/evaluating_parser.rb +1 -1
- data/lib/puppet/pops/parser/interpolation_support.rb +2 -2
- data/lib/puppet/pops/parser/lexer2.rb +4 -4
- data/lib/puppet/pops/parser/lexer_support.rb +2 -2
- data/lib/puppet/pops/parser/locatable.rb +1 -1
- data/lib/puppet/pops/parser/locator.rb +7 -13
- data/lib/puppet/pops/parser/parser_support.rb +3 -3
- data/lib/puppet/pops/parser/slurp_support.rb +0 -3
- data/lib/puppet/pops/pcore.rb +45 -0
- data/lib/puppet/pops/resource/param.rb +1 -1
- data/lib/puppet/pops/resource/resource_type_impl.rb +1 -1
- data/lib/puppet/pops/serialization/abstract_reader.rb +4 -0
- data/lib/puppet/pops/serialization/abstract_writer.rb +6 -0
- data/lib/puppet/pops/serialization/extension.rb +1 -0
- data/lib/puppet/pops/serialization/from_data_converter.rb +64 -10
- data/lib/puppet/pops/serialization/json_path.rb +2 -1
- data/lib/puppet/pops/serialization/object.rb +3 -4
- data/lib/puppet/pops/serialization/serializer.rb +2 -1
- data/lib/puppet/pops/serialization/to_data_converter.rb +7 -3
- data/lib/puppet/pops/time/timespan.rb +1 -1
- data/lib/puppet/pops/types/iterable.rb +38 -9
- data/lib/puppet/pops/types/p_init_type.rb +1 -1
- data/lib/puppet/pops/types/p_meta_type.rb +4 -0
- data/lib/puppet/pops/types/p_object_type.rb +146 -14
- data/lib/puppet/pops/types/p_object_type_extension.rb +218 -0
- data/lib/puppet/pops/types/p_sem_ver_range_type.rb +0 -1
- data/lib/puppet/pops/types/p_sem_ver_type.rb +10 -2
- data/lib/puppet/pops/types/p_type_set_type.rb +0 -1
- data/lib/puppet/pops/types/p_uri_type.rb +190 -0
- data/lib/puppet/pops/types/puppet_object.rb +15 -1
- data/lib/puppet/pops/types/ruby_generator.rb +46 -54
- data/lib/puppet/pops/types/string_converter.rb +22 -1
- data/lib/puppet/pops/types/type_acceptor.rb +1 -1
- data/lib/puppet/pops/types/type_calculator.rb +13 -4
- data/lib/puppet/pops/types/type_factory.rb +29 -5
- data/lib/puppet/pops/types/type_formatter.rb +67 -4
- data/lib/puppet/pops/types/type_parser.rb +92 -4
- data/lib/puppet/pops/types/type_with_members.rb +43 -0
- data/lib/puppet/pops/types/types.rb +212 -80
- data/lib/puppet/pops/validation/checker4_0.rb +10 -6
- data/lib/puppet/pops/validation/tasks_checker.rb +60 -0
- data/lib/puppet/pops/validation/validator_factory_4_0.rb +6 -1
- data/lib/puppet/property.rb +1 -1
- data/lib/puppet/provider.rb +18 -8
- data/lib/puppet/provider/augeas/augeas.rb +3 -4
- data/lib/puppet/provider/exec.rb +0 -2
- data/lib/puppet/provider/group/groupadd.rb +25 -1
- data/lib/puppet/provider/group/windows_adsi.rb +7 -4
- data/lib/puppet/provider/mount.rb +25 -8
- data/lib/puppet/provider/nameservice.rb +9 -4
- data/lib/puppet/provider/nameservice/directoryservice.rb +3 -3
- data/lib/puppet/provider/nameservice/objectadd.rb +13 -24
- data/lib/puppet/provider/nameservice/pw.rb +14 -14
- data/lib/puppet/provider/package/appdmg.rb +0 -1
- data/lib/puppet/provider/package/apple.rb +0 -1
- data/lib/puppet/provider/package/gem.rb +2 -2
- data/lib/puppet/provider/package/macports.rb +2 -2
- data/lib/puppet/provider/package/pkg.rb +3 -0
- data/lib/puppet/provider/package/pkgdmg.rb +0 -1
- data/lib/puppet/provider/package/portage.rb +0 -1
- data/lib/puppet/provider/package/yum.rb +23 -8
- data/lib/puppet/provider/package/zypper.rb +2 -2
- data/lib/puppet/provider/scheduled_task/win32_taskscheduler.rb +2 -2
- data/lib/puppet/provider/service/init.rb +1 -0
- data/lib/puppet/provider/service/launchd.rb +6 -7
- data/lib/puppet/provider/service/redhat.rb +3 -2
- data/lib/puppet/provider/service/systemd.rb +2 -2
- data/lib/puppet/provider/ssh_authorized_key/parsed.rb +1 -1
- data/lib/puppet/provider/user/aix.rb +3 -2
- data/lib/puppet/provider/user/openbsd.rb +1 -1
- data/lib/puppet/provider/user/pw.rb +1 -1
- data/lib/puppet/provider/user/user_role_add.rb +7 -1
- data/lib/puppet/provider/user/useradd.rb +36 -6
- data/lib/puppet/provider/user/windows_adsi.rb +1 -1
- data/lib/puppet/provider/yumrepo/inifile.rb +2 -4
- data/lib/puppet/provider/zfs/zfs.rb +23 -3
- data/lib/puppet/provider/zpool/zpool.rb +1 -1
- data/lib/puppet/reference/configuration.rb +0 -2
- data/lib/puppet/reference/type.rb +0 -1
- data/lib/puppet/resource.rb +1 -2
- data/lib/puppet/resource/catalog.rb +1 -1
- data/lib/puppet/resource/status.rb +0 -1
- data/lib/puppet/resource/type.rb +4 -4
- data/lib/puppet/resource/type_collection.rb +1 -1
- data/lib/puppet/settings/base_setting.rb +1 -1
- data/lib/puppet/settings/environment_conf.rb +0 -1
- data/lib/puppet/settings/ini_file.rb +66 -12
- data/lib/puppet/ssl/certificate_authority.rb +1 -1
- data/lib/puppet/ssl/certificate_request.rb +2 -2
- data/lib/puppet/ssl/certificate_revocation_list.rb +2 -1
- data/lib/puppet/ssl/certificate_signer.rb +11 -0
- data/lib/puppet/ssl/host.rb +2 -2
- data/lib/puppet/syntax_checkers/base64.rb +1 -1
- data/lib/puppet/transaction.rb +37 -14
- data/lib/puppet/transaction/report.rb +3 -1
- data/lib/puppet/type.rb +17 -4
- data/lib/puppet/type/cron.rb +1 -1
- data/lib/puppet/type/exec.rb +5 -4
- data/lib/puppet/type/file.rb +3 -3
- data/lib/puppet/type/file/checksum.rb +7 -1
- data/lib/puppet/type/file/checksum_value.rb +4 -3
- data/lib/puppet/type/group.rb +3 -0
- data/lib/puppet/type/k5login.rb +101 -0
- data/lib/puppet/type/macauthorization.rb +1 -1
- data/lib/puppet/type/mount.rb +6 -2
- data/lib/puppet/type/tidy.rb +6 -4
- data/lib/puppet/type/user.rb +26 -39
- data/lib/puppet/type/yumrepo.rb +9 -0
- data/lib/puppet/type/zfs.rb +4 -0
- data/lib/puppet/util.rb +8 -15
- data/lib/puppet/util/character_encoding.rb +2 -2
- data/lib/puppet/util/checksums.rb +82 -1
- data/lib/puppet/util/errors.rb +0 -2
- data/lib/puppet/util/filetype.rb +2 -2
- data/lib/puppet/util/json_lockfile.rb +1 -1
- data/lib/puppet/util/log.rb +1 -1
- data/lib/puppet/util/log/destinations.rb +10 -1
- data/lib/puppet/util/monkey_patches.rb +1 -1
- data/lib/puppet/util/network_device/cisco/device.rb +5 -5
- data/lib/puppet/util/network_device/config.rb +2 -3
- data/lib/puppet/util/platform.rb +13 -0
- data/lib/puppet/util/plist.rb +4 -4
- data/lib/puppet/util/rdoc/generators/puppet_generator.rb +2 -2
- data/lib/puppet/util/rdoc/parser/puppet_parser_rdoc2.rb +1 -1
- data/lib/puppet/util/reference.rb +8 -1
- data/lib/puppet/util/windows/adsi.rb +18 -15
- data/lib/puppet/util/windows/principal.rb +6 -7
- data/lib/puppet/util/windows/process.rb +1 -1
- data/lib/puppet/util/windows/registry.rb +2 -2
- data/lib/puppet/util/windows/sid.rb +7 -62
- data/lib/puppet/vendor/deep_merge/README.md +2 -2
- data/lib/puppet/vendor/pathspec/lib/pathspec/gitignorespec.rb +18 -18
- data/lib/puppet/vendor/semantic_puppet/lib/semantic_puppet/version.rb +2 -2
- data/lib/puppet/vendor/semantic_puppet/lib/semantic_puppet/version_range.rb +5 -5
- data/lib/puppet/vendor/semantic_puppet/locales/config.yaml +1 -1
- data/lib/puppet/version.rb +1 -1
- data/lib/puppet_pal.rb +874 -0
- data/locales/ja/puppet.po +140 -163
- data/locales/puppet.pot +940 -597
- data/man/man5/puppet.conf.5 +16 -91
- data/man/man8/puppet-agent.8 +2 -6
- data/man/man8/puppet-apply.8 +2 -2
- data/man/man8/puppet-ca.8 +1 -1
- data/man/man8/puppet-catalog.8 +1 -1
- data/man/man8/puppet-cert.8 +1 -1
- data/man/man8/puppet-certificate.8 +1 -1
- data/man/man8/puppet-certificate_request.8 +1 -1
- data/man/man8/puppet-certificate_revocation_list.8 +1 -1
- data/man/man8/puppet-config.8 +1 -1
- data/man/man8/puppet-describe.8 +1 -1
- data/man/man8/puppet-device.8 +11 -33
- data/man/man8/puppet-doc.8 +1 -1
- data/man/man8/puppet-epp.8 +1 -1
- data/man/man8/puppet-facts.8 +1 -1
- data/man/man8/puppet-filebucket.8 +4 -22
- data/man/man8/puppet-generate.8 +1 -1
- data/man/man8/puppet-help.8 +1 -1
- data/man/man8/puppet-key.8 +1 -1
- data/man/man8/puppet-lookup.8 +1 -1
- data/man/man8/puppet-man.8 +1 -1
- data/man/man8/puppet-master.8 +1 -1
- data/man/man8/puppet-module.8 +2 -11
- data/man/man8/puppet-node.8 +1 -1
- data/man/man8/puppet-parser.8 +1 -1
- data/man/man8/puppet-plugin.8 +1 -1
- data/man/man8/puppet-report.8 +1 -1
- data/man/man8/puppet-resource.8 +1 -1
- data/man/man8/puppet-status.8 +1 -1
- data/man/man8/puppet.8 +2 -2
- data/spec/integration/application/lookup_spec.rb +0 -21
- data/spec/integration/parser/compiler_spec.rb +18 -0
- data/spec/integration/parser/script_compiler_spec.rb +113 -0
- data/spec/integration/provider/mount_spec.rb +2 -0
- data/spec/integration/type/file_spec.rb +11 -3
- data/spec/integration/util/windows/adsi_spec.rb +1 -86
- data/spec/integration/util/windows/principal_spec.rb +1 -10
- data/spec/shared_contexts/checksum.rb +4 -1
- data/spec/shared_contexts/digests.rb +46 -1
- data/spec/shared_contexts/types_setup.rb +8 -3
- data/spec/unit/agent_spec.rb +2 -2
- data/spec/unit/application/cert_spec.rb +5 -17
- data/spec/unit/application/device_spec.rb +2 -96
- data/spec/unit/application/filebucket_spec.rb +18 -4
- data/spec/unit/configurer/plugin_handler_spec.rb +5 -32
- data/spec/unit/configurer_spec.rb +3 -3
- data/spec/unit/datatypes_spec.rb +304 -0
- data/spec/unit/defaults_spec.rb +41 -20
- data/spec/unit/face/config_spec.rb +46 -1
- data/spec/unit/face/epp_face_spec.rb +7 -3
- data/spec/unit/face/module/search_spec.rb +11 -0
- data/spec/unit/face/parser_spec.rb +2 -2
- data/spec/unit/file_bucket/dipper_spec.rb +12 -1
- data/spec/unit/forge/module_release_spec.rb +70 -0
- data/spec/unit/functions/break_spec.rb +34 -2
- data/spec/unit/functions/contain_spec.rb +1 -0
- data/spec/unit/functions/convert_to_spec.rb +22 -0
- data/spec/unit/functions/epp_spec.rb +5 -0
- data/spec/unit/functions/include_spec.rb +15 -0
- data/spec/unit/functions/module_directory_spec.rb +43 -0
- data/spec/unit/functions/new_spec.rb +14 -14
- data/spec/unit/functions/require_spec.rb +2 -0
- data/spec/unit/functions/shared.rb +12 -0
- data/spec/unit/functions/step_spec.rb +1 -1
- data/spec/unit/functions4_spec.rb +49 -4
- data/spec/unit/indirector/catalog/compiler_spec.rb +3 -3
- data/spec/unit/indirector/file_bucket_file/file_spec.rb +148 -94
- data/spec/unit/indirector/node/ldap_spec.rb +15 -12
- data/spec/unit/indirector/rest_spec.rb +0 -43
- data/spec/unit/interface/action_spec.rb +33 -0
- data/spec/unit/module_tool/applications/builder_spec.rb +7 -0
- data/spec/unit/module_tool/applications/installer_spec.rb +8 -0
- data/spec/unit/module_tool/applications/uninstaller_spec.rb +8 -0
- data/spec/unit/module_tool/applications/upgrader_spec.rb +6 -0
- data/spec/unit/network/http/connection_spec.rb +1 -1
- data/spec/unit/network/http/factory_spec.rb +28 -35
- data/spec/unit/parser/compiler_spec.rb +0 -8
- data/spec/unit/parser/environment_compiler_spec.rb +36 -0
- data/spec/unit/parser/functions/create_resources_spec.rb +9 -0
- data/spec/unit/parser/functions/inline_template_spec.rb +7 -0
- data/spec/unit/parser/functions/realize_spec.rb +9 -0
- data/spec/unit/parser/functions/tag_spec.rb +7 -0
- data/spec/unit/parser/functions/tagged_spec.rb +25 -0
- data/spec/unit/parser/functions/template_spec.rb +8 -0
- data/spec/unit/parser/scope_spec.rb +19 -0
- data/spec/unit/pops/evaluator/conditionals_spec.rb +1 -1
- data/spec/unit/pops/loaders/loader_spec.rb +516 -0
- data/spec/unit/pops/loaders/loaders_spec.rb +11 -0
- data/spec/unit/pops/loaders/module_loaders_spec.rb +43 -0
- data/spec/unit/pops/loaders/static_loader_spec.rb +15 -7
- data/spec/unit/pops/model/model_spec.rb +5 -0
- data/spec/unit/pops/parser/lexer2_spec.rb +15 -0
- data/spec/unit/pops/parser/locator_spec.rb +20 -0
- data/spec/unit/pops/parser/parse_basic_expressions_spec.rb +33 -0
- data/spec/unit/pops/parser/parse_calls_spec.rb +28 -0
- data/spec/unit/pops/parser/parse_conditionals_spec.rb +12 -0
- data/spec/unit/pops/parser/parse_plan_spec.rb +48 -0
- data/spec/unit/pops/serialization/packer_spec.rb +8 -0
- data/spec/unit/pops/serialization/serialization_spec.rb +30 -0
- data/spec/unit/pops/serialization/to_from_hr_spec.rb +31 -0
- data/spec/unit/pops/types/error_spec.rb +207 -0
- data/spec/unit/pops/types/p_init_type_spec.rb +98 -0
- data/spec/unit/pops/types/p_object_type_spec.rb +275 -10
- data/spec/unit/pops/types/p_uri_type_spec.rb +191 -0
- data/spec/unit/pops/types/ruby_generator_spec.rb +82 -44
- data/spec/unit/pops/types/task_spec.rb +353 -0
- data/spec/unit/pops/types/type_calculator_spec.rb +76 -5
- data/spec/unit/pops/types/type_formatter_spec.rb +31 -13
- data/spec/unit/pops/types/type_parser_spec.rb +13 -1
- data/spec/unit/pops/types/types_spec.rb +60 -0
- data/spec/unit/pops/validator/validator_spec.rb +76 -0
- data/spec/unit/provider/group/groupadd_spec.rb +77 -1
- data/spec/unit/provider/group/pw_spec.rb +4 -4
- data/spec/unit/provider/group/windows_adsi_spec.rb +22 -79
- data/spec/unit/provider/mount_spec.rb +18 -5
- data/spec/unit/provider/nameservice_spec.rb +5 -5
- data/spec/unit/provider/package/dnf_spec.rb +2 -2
- data/spec/unit/provider/package/gem_spec.rb +1 -1
- data/spec/unit/provider/package/pkg_spec.rb +3 -0
- data/spec/unit/provider/package/yum_spec.rb +40 -0
- data/spec/unit/provider/service/launchd_spec.rb +2 -1
- data/spec/unit/provider/service/redhat_spec.rb +5 -0
- data/spec/unit/provider/service/systemd_spec.rb +1 -1
- data/spec/unit/provider/user/hpux_spec.rb +2 -2
- data/spec/unit/provider/user/openbsd_spec.rb +2 -2
- data/spec/unit/provider/user/pw_spec.rb +14 -14
- data/spec/unit/provider/user/user_role_add_spec.rb +19 -2
- data/spec/unit/provider/user/useradd_spec.rb +188 -22
- data/spec/unit/provider/user/windows_adsi_spec.rb +4 -4
- data/spec/unit/provider/zfs/zfs_spec.rb +55 -1
- data/spec/unit/provider_spec.rb +48 -0
- data/spec/unit/puppet_pal_2pec.rb +1005 -0
- data/spec/unit/puppet_pal_spec.rb +11 -0
- data/spec/unit/settings/ini_file_spec.rb +313 -2
- data/spec/unit/ssl/certificate_request_spec.rb +42 -1
- data/spec/unit/ssl/certificate_revocation_list_spec.rb +2 -1
- data/spec/unit/transaction/report_spec.rb +1 -0
- data/spec/unit/transaction_spec.rb +112 -21
- data/spec/unit/type/file/checksum_spec.rb +20 -0
- data/spec/unit/type/file_spec.rb +8 -0
- data/spec/unit/type/group_spec.rb +8 -0
- data/spec/unit/type/k5login_spec.rb +22 -1
- data/spec/unit/type/scheduled_task_spec.rb +15 -0
- data/spec/unit/type/user_spec.rb +11 -1
- data/spec/unit/type/yumrepo_spec.rb +5 -0
- data/spec/unit/util/checksums_spec.rb +3 -3
- data/spec/unit/util/log/destinations_spec.rb +14 -0
- data/spec/unit/util/network_device/cisco/device_spec.rb +1 -1
- data/spec/unit/util/plist_spec.rb +3 -3
- data/spec/unit/util/windows/adsi_spec.rb +27 -31
- data/spec/unit/util/windows/sid_spec.rb +15 -86
- data/spec/unit/util_spec.rb +17 -3
- data/tasks/manpages.rake +1 -1
- metadata +216 -178
- data/lib/puppet/bindings.rb +0 -148
- data/lib/puppet/configurer/downloader_factory.rb +0 -44
- data/spec/unit/configurer/downloader_factory_spec.rb +0 -129
data/spec/unit/util_spec.rb
CHANGED
@@ -871,13 +871,13 @@ describe Puppet::Util do
|
|
871
871
|
end
|
872
872
|
end
|
873
873
|
|
874
|
-
it "should copy the permissions of the source file
|
874
|
+
it "should copy the permissions of the source file after yielding on Unix", :if => !Puppet.features.microsoft_windows? do
|
875
875
|
set_mode(0555, target.path)
|
876
876
|
inode = Puppet::FileSystem.stat(target.path).ino
|
877
877
|
|
878
878
|
yielded = false
|
879
|
-
subject.replace_file(target.path,
|
880
|
-
expect(get_mode(fh.path)).to eq(
|
879
|
+
subject.replace_file(target.path, 0660) do |fh|
|
880
|
+
expect(get_mode(fh.path)).to eq(0600)
|
881
881
|
yielded = true
|
882
882
|
end
|
883
883
|
expect(yielded).to be_truthy
|
@@ -886,6 +886,20 @@ describe Puppet::Util do
|
|
886
886
|
expect(get_mode(target.path)).to eq(0555)
|
887
887
|
end
|
888
888
|
|
889
|
+
it "should be able to create a new file with read-only permissions when it doesn't already exist" do
|
890
|
+
temp_file = Tempfile.new('puppet-util-replace-file')
|
891
|
+
temp_path = temp_file.path
|
892
|
+
temp_file.close
|
893
|
+
temp_file.unlink
|
894
|
+
|
895
|
+
subject.replace_file(temp_path, 0440) do |fh|
|
896
|
+
fh.puts('some text in there')
|
897
|
+
end
|
898
|
+
|
899
|
+
expect(File.read(temp_path)).to eq("some text in there\n")
|
900
|
+
expect(get_mode(temp_path)).to eq(0440)
|
901
|
+
end
|
902
|
+
|
889
903
|
it "should use the default permissions if the source file doesn't exist" do
|
890
904
|
new_target = target.path + '.foo'
|
891
905
|
expect(Puppet::FileSystem.exist?(new_target)).to be_falsey
|
data/tasks/manpages.rake
CHANGED
@@ -21,7 +21,7 @@ task :gen_manpages do
|
|
21
21
|
faces = Puppet::Face.faces.map(&:to_s)
|
22
22
|
apps = non_face_applications + faces
|
23
23
|
|
24
|
-
ronn_args = '--manual="Puppet manual" --organization="Puppet,
|
24
|
+
ronn_args = '--manual="Puppet manual" --organization="Puppet Labs, LLC" -r'
|
25
25
|
|
26
26
|
# Locate ronn
|
27
27
|
ronn = %x{which ronn}.chomp
|
metadata
CHANGED
@@ -1,81 +1,81 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: puppet
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 5.
|
4
|
+
version: 5.4.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Puppet Labs
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2018-
|
11
|
+
date: 2018-02-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: facter
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- -
|
17
|
+
- - '>'
|
18
18
|
- !ruby/object:Gem::Version
|
19
19
|
version: 2.0.1
|
20
|
-
- -
|
20
|
+
- - <
|
21
21
|
- !ruby/object:Gem::Version
|
22
22
|
version: '4'
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
26
26
|
requirements:
|
27
|
-
- -
|
27
|
+
- - '>'
|
28
28
|
- !ruby/object:Gem::Version
|
29
29
|
version: 2.0.1
|
30
|
-
- -
|
30
|
+
- - <
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: '4'
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: hiera
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
36
36
|
requirements:
|
37
|
-
- -
|
37
|
+
- - '>='
|
38
38
|
- !ruby/object:Gem::Version
|
39
39
|
version: 3.2.1
|
40
|
-
- -
|
40
|
+
- - <
|
41
41
|
- !ruby/object:Gem::Version
|
42
42
|
version: '4'
|
43
43
|
type: :runtime
|
44
44
|
prerelease: false
|
45
45
|
version_requirements: !ruby/object:Gem::Requirement
|
46
46
|
requirements:
|
47
|
-
- -
|
47
|
+
- - '>='
|
48
48
|
- !ruby/object:Gem::Version
|
49
49
|
version: 3.2.1
|
50
|
-
- -
|
50
|
+
- - <
|
51
51
|
- !ruby/object:Gem::Version
|
52
52
|
version: '4'
|
53
53
|
- !ruby/object:Gem::Dependency
|
54
54
|
name: fast_gettext
|
55
55
|
requirement: !ruby/object:Gem::Requirement
|
56
56
|
requirements:
|
57
|
-
- -
|
57
|
+
- - ~>
|
58
58
|
- !ruby/object:Gem::Version
|
59
59
|
version: 1.1.2
|
60
60
|
type: :runtime
|
61
61
|
prerelease: false
|
62
62
|
version_requirements: !ruby/object:Gem::Requirement
|
63
63
|
requirements:
|
64
|
-
- -
|
64
|
+
- - ~>
|
65
65
|
- !ruby/object:Gem::Version
|
66
66
|
version: 1.1.2
|
67
67
|
- !ruby/object:Gem::Dependency
|
68
68
|
name: locale
|
69
69
|
requirement: !ruby/object:Gem::Requirement
|
70
70
|
requirements:
|
71
|
-
- -
|
71
|
+
- - ~>
|
72
72
|
- !ruby/object:Gem::Version
|
73
73
|
version: '2.1'
|
74
74
|
type: :runtime
|
75
75
|
prerelease: false
|
76
76
|
version_requirements: !ruby/object:Gem::Requirement
|
77
77
|
requirements:
|
78
|
-
- -
|
78
|
+
- - ~>
|
79
79
|
- !ruby/object:Gem::Version
|
80
80
|
version: '2.1'
|
81
81
|
description: Puppet, an automated configuration management tool
|
@@ -92,148 +92,8 @@ files:
|
|
92
92
|
- MAINTAINERS
|
93
93
|
- README.md
|
94
94
|
- Rakefile
|
95
|
-
- bin/puppet
|
96
|
-
- conf/auth.conf
|
97
|
-
- conf/environment.conf
|
98
|
-
- conf/fileserver.conf
|
99
|
-
- conf/hiera.yaml
|
100
|
-
- conf/puppet.conf
|
101
|
-
- examples/hiera/README.md
|
102
|
-
- examples/hiera/etc/hiera.yaml
|
103
|
-
- examples/hiera/etc/hieradb/common.yaml
|
104
|
-
- examples/hiera/etc/hieradb/dc1.yaml
|
105
|
-
- examples/hiera/etc/hieradb/development.yaml
|
106
|
-
- examples/hiera/etc/puppet.conf
|
107
|
-
- examples/hiera/modules/data/manifests/common.pp
|
108
|
-
- examples/hiera/modules/ntp/manifests/config.pp
|
109
|
-
- examples/hiera/modules/ntp/manifests/data.pp
|
110
|
-
- examples/hiera/modules/ntp/templates/ntp.conf.erb
|
111
|
-
- examples/hiera/modules/users/manifests/common.pp
|
112
|
-
- examples/hiera/modules/users/manifests/dc1.pp
|
113
|
-
- examples/hiera/modules/users/manifests/development.pp
|
114
|
-
- examples/hiera/site.pp
|
115
|
-
- ext/README.environment
|
116
|
-
- ext/autotest/Rakefile
|
117
|
-
- ext/autotest/config
|
118
|
-
- ext/autotest/readme.rst
|
119
|
-
- ext/build_defaults.yaml
|
120
|
-
- ext/cert_inspector
|
121
|
-
- ext/dbfix.sql
|
122
|
-
- ext/debian/README.Debian
|
123
|
-
- ext/debian/README.source
|
124
|
-
- ext/debian/TODO.Debian
|
125
|
-
- ext/debian/changelog.erb
|
126
|
-
- ext/debian/compat
|
127
|
-
- ext/debian/control
|
128
|
-
- ext/debian/copyright
|
129
|
-
- ext/debian/docs
|
130
|
-
- ext/debian/fileserver.conf
|
131
|
-
- ext/debian/puppet-common.dirs
|
132
|
-
- ext/debian/puppet-common.install
|
133
|
-
- ext/debian/puppet-common.lintian-overrides
|
134
|
-
- ext/debian/puppet-common.manpages
|
135
|
-
- ext/debian/puppet-common.postinst
|
136
|
-
- ext/debian/puppet-common.postrm
|
137
|
-
- ext/debian/puppet-el.dirs
|
138
|
-
- ext/debian/puppet-el.emacsen-install
|
139
|
-
- ext/debian/puppet-el.emacsen-remove
|
140
|
-
- ext/debian/puppet-el.emacsen-startup
|
141
|
-
- ext/debian/puppet-el.install
|
142
|
-
- ext/debian/puppet-testsuite.install
|
143
|
-
- ext/debian/puppet-testsuite.lintian-overrides
|
144
|
-
- ext/debian/puppet.default
|
145
|
-
- ext/debian/puppet.init
|
146
|
-
- ext/debian/puppet.lintian-overrides
|
147
|
-
- ext/debian/puppet.logrotate
|
148
|
-
- ext/debian/puppet.postinst
|
149
|
-
- ext/debian/puppet.postrm
|
150
|
-
- ext/debian/puppet.preinst
|
151
|
-
- ext/debian/puppetmaster-common.install
|
152
|
-
- ext/debian/puppetmaster-common.manpages
|
153
|
-
- ext/debian/puppetmaster-common.postinst
|
154
|
-
- ext/debian/puppetmaster-passenger.dirs
|
155
|
-
- ext/debian/puppetmaster-passenger.postinst
|
156
|
-
- ext/debian/puppetmaster-passenger.postrm
|
157
|
-
- ext/debian/puppetmaster.README.debian
|
158
|
-
- ext/debian/puppetmaster.default
|
159
|
-
- ext/debian/puppetmaster.init
|
160
|
-
- ext/debian/puppetmaster.lintian-overrides
|
161
|
-
- ext/debian/puppetmaster.postinst
|
162
|
-
- ext/debian/puppetmaster.postrm
|
163
|
-
- ext/debian/puppetmaster.preinst
|
164
|
-
- ext/debian/rules
|
165
|
-
- ext/debian/source/format
|
166
|
-
- ext/debian/source/options
|
167
|
-
- ext/debian/vim-puppet.README.Debian
|
168
|
-
- ext/debian/vim-puppet.dirs
|
169
|
-
- ext/debian/vim-puppet.yaml
|
170
|
-
- ext/debian/watch
|
171
|
-
- ext/envpuppet
|
172
|
-
- ext/envpuppet.bat
|
173
|
-
- ext/freebsd/puppetd
|
174
|
-
- ext/freebsd/puppetmasterd
|
175
|
-
- ext/gentoo/conf.d/puppet
|
176
|
-
- ext/gentoo/conf.d/puppetmaster
|
177
|
-
- ext/gentoo/init.d/puppet
|
178
|
-
- ext/gentoo/init.d/puppetmaster
|
179
|
-
- ext/gentoo/puppet/fileserver.conf
|
180
|
-
- ext/hiera/hiera.yaml
|
181
|
-
- ext/ips/puppet-agent
|
182
|
-
- ext/ips/puppet-master
|
183
|
-
- ext/ips/puppet.p5m.erb
|
184
|
-
- ext/ips/puppetagent.xml
|
185
|
-
- ext/ips/puppetmaster.xml
|
186
|
-
- ext/ips/rules
|
187
|
-
- ext/ips/transforms
|
188
|
-
- ext/ldap/puppet.schema
|
189
|
-
- ext/logcheck/puppet
|
190
|
-
- ext/nagios/check_puppet.rb
|
191
|
-
- ext/osx/file_mapping.yaml
|
192
|
-
- ext/osx/postflight.erb
|
193
|
-
- ext/osx/preflight.erb
|
194
|
-
- ext/osx/prototype.plist.erb
|
195
|
-
- ext/osx/puppet.plist
|
196
|
-
- ext/project_data.yaml
|
197
|
-
- ext/puppet-test
|
198
|
-
- ext/pure_ruby_dsl/dsl_test.rb
|
199
|
-
- ext/rack/config.ru
|
200
|
-
- ext/rack/example-passenger-vhost.conf
|
201
|
-
- ext/redhat/client.init
|
202
|
-
- ext/redhat/client.sysconfig
|
203
|
-
- ext/redhat/fileserver.conf
|
204
|
-
- ext/redhat/logrotate
|
205
|
-
- ext/redhat/puppet.spec.erb
|
206
|
-
- ext/redhat/server.init
|
207
|
-
- ext/redhat/server.sysconfig
|
208
|
-
- ext/regexp_nodes/classes/databases
|
209
|
-
- ext/regexp_nodes/classes/webservers
|
210
|
-
- ext/regexp_nodes/environment/development
|
211
|
-
- ext/regexp_nodes/parameters/service/prod
|
212
|
-
- ext/regexp_nodes/parameters/service/qa
|
213
|
-
- ext/regexp_nodes/parameters/service/sandbox
|
214
|
-
- ext/regexp_nodes/regexp_nodes.rb
|
215
|
-
- ext/solaris/pkginfo
|
216
|
-
- ext/solaris/smf/puppet
|
217
|
-
- ext/solaris/smf/puppet.xml
|
218
|
-
- ext/solaris/smf/puppetd.xml
|
219
|
-
- ext/solaris/smf/puppetmasterd.xml
|
220
|
-
- ext/solaris/smf/svc-puppetd
|
221
|
-
- ext/solaris/smf/svc-puppetmasterd
|
222
|
-
- ext/suse/client.init
|
223
|
-
- ext/suse/puppet.spec
|
224
|
-
- ext/suse/server.init
|
225
|
-
- ext/systemd/puppet.service
|
226
|
-
- ext/upload_facts.rb
|
227
|
-
- ext/windows/eventlog/Rakefile
|
228
|
-
- ext/windows/eventlog/puppetres.dll
|
229
|
-
- ext/windows/eventlog/puppetres.mc
|
230
|
-
- ext/windows/puppet_interactive.bat
|
231
|
-
- ext/windows/puppet_shell.bat
|
232
|
-
- ext/windows/run_puppet_interactive.bat
|
233
|
-
- ext/windows/service/daemon.bat
|
234
|
-
- ext/windows/service/daemon.rb
|
235
|
-
- ext/yaml_nodes.rb
|
236
95
|
- install.rb
|
96
|
+
- bin/puppet
|
237
97
|
- lib/hiera/puppet_function.rb
|
238
98
|
- lib/hiera/scope.rb
|
239
99
|
- lib/hiera_puppet.rb
|
@@ -271,14 +131,13 @@ files:
|
|
271
131
|
- lib/puppet/application/plugin.rb
|
272
132
|
- lib/puppet/application/report.rb
|
273
133
|
- lib/puppet/application/resource.rb
|
134
|
+
- lib/puppet/application/script.rb
|
274
135
|
- lib/puppet/application/status.rb
|
275
136
|
- lib/puppet/application_support.rb
|
276
|
-
- lib/puppet/bindings.rb
|
277
137
|
- lib/puppet/coercion.rb
|
278
138
|
- lib/puppet/compilable_resource_type.rb
|
279
139
|
- lib/puppet/configurer.rb
|
280
140
|
- lib/puppet/configurer/downloader.rb
|
281
|
-
- lib/puppet/configurer/downloader_factory.rb
|
282
141
|
- lib/puppet/configurer/fact_handler.rb
|
283
142
|
- lib/puppet/configurer/plugin_handler.rb
|
284
143
|
- lib/puppet/confine.rb
|
@@ -294,6 +153,9 @@ files:
|
|
294
153
|
- lib/puppet/context/trusted_information.rb
|
295
154
|
- lib/puppet/daemon.rb
|
296
155
|
- lib/puppet/data_binding.rb
|
156
|
+
- lib/puppet/datatypes.rb
|
157
|
+
- lib/puppet/datatypes/error.rb
|
158
|
+
- lib/puppet/datatypes/impl/error.rb
|
297
159
|
- lib/puppet/defaults.rb
|
298
160
|
- lib/puppet/environments.rb
|
299
161
|
- lib/puppet/error.rb
|
@@ -344,6 +206,7 @@ files:
|
|
344
206
|
- lib/puppet/face/resource.rb
|
345
207
|
- lib/puppet/face/status.rb
|
346
208
|
- lib/puppet/feature/base.rb
|
209
|
+
- lib/puppet/feature/bolt.rb
|
347
210
|
- lib/puppet/feature/cfpropertylist.rb
|
348
211
|
- lib/puppet/feature/eventlog.rb
|
349
212
|
- lib/puppet/feature/hiera_eyaml.rb
|
@@ -398,6 +261,7 @@ files:
|
|
398
261
|
- lib/puppet/functions/break.rb
|
399
262
|
- lib/puppet/functions/call.rb
|
400
263
|
- lib/puppet/functions/contain.rb
|
264
|
+
- lib/puppet/functions/convert_to.rb
|
401
265
|
- lib/puppet/functions/crit.rb
|
402
266
|
- lib/puppet/functions/debug.rb
|
403
267
|
- lib/puppet/functions/defined.rb
|
@@ -423,6 +287,7 @@ files:
|
|
423
287
|
- lib/puppet/functions/lookup.rb
|
424
288
|
- lib/puppet/functions/map.rb
|
425
289
|
- lib/puppet/functions/match.rb
|
290
|
+
- lib/puppet/functions/module_directory.rb
|
426
291
|
- lib/puppet/functions/new.rb
|
427
292
|
- lib/puppet/functions/next.rb
|
428
293
|
- lib/puppet/functions/notice.rb
|
@@ -656,6 +521,7 @@ files:
|
|
656
521
|
- lib/puppet/parameter/value.rb
|
657
522
|
- lib/puppet/parameter/value_collection.rb
|
658
523
|
- lib/puppet/parser.rb
|
524
|
+
- lib/puppet/parser/abstract_compiler.rb
|
659
525
|
- lib/puppet/parser/ast.rb
|
660
526
|
- lib/puppet/parser/ast/block_expression.rb
|
661
527
|
- lib/puppet/parser/ast/branch.rb
|
@@ -714,6 +580,7 @@ files:
|
|
714
580
|
- lib/puppet/parser/functions/reverse_each.rb
|
715
581
|
- lib/puppet/parser/functions/scanf.rb
|
716
582
|
- lib/puppet/parser/functions/sha1.rb
|
583
|
+
- lib/puppet/parser/functions/sha256.rb
|
717
584
|
- lib/puppet/parser/functions/shellquote.rb
|
718
585
|
- lib/puppet/parser/functions/slice.rb
|
719
586
|
- lib/puppet/parser/functions/split.rb
|
@@ -732,6 +599,7 @@ files:
|
|
732
599
|
- lib/puppet/parser/resource.rb
|
733
600
|
- lib/puppet/parser/resource/param.rb
|
734
601
|
- lib/puppet/parser/scope.rb
|
602
|
+
- lib/puppet/parser/script_compiler.rb
|
735
603
|
- lib/puppet/parser/templatewrapper.rb
|
736
604
|
- lib/puppet/parser/type_loader.rb
|
737
605
|
- lib/puppet/plugins.rb
|
@@ -774,11 +642,14 @@ files:
|
|
774
642
|
- lib/puppet/pops/loader/null_loader.rb
|
775
643
|
- lib/puppet/pops/loader/predefined_loader.rb
|
776
644
|
- lib/puppet/pops/loader/puppet_function_instantiator.rb
|
645
|
+
- lib/puppet/pops/loader/puppet_plan_instantiator.rb
|
777
646
|
- lib/puppet/pops/loader/puppet_resource_type_impl_instantiator.rb
|
647
|
+
- lib/puppet/pops/loader/ruby_data_type_instantiator.rb
|
778
648
|
- lib/puppet/pops/loader/ruby_function_instantiator.rb
|
779
649
|
- lib/puppet/pops/loader/runtime3_type_loader.rb
|
780
650
|
- lib/puppet/pops/loader/simple_environment_loader.rb
|
781
651
|
- lib/puppet/pops/loader/static_loader.rb
|
652
|
+
- lib/puppet/pops/loader/task_instantiator.rb
|
782
653
|
- lib/puppet/pops/loader/type_definition_instantiator.rb
|
783
654
|
- lib/puppet/pops/loader/typed_name.rb
|
784
655
|
- lib/puppet/pops/loader/uri_helper.rb
|
@@ -859,6 +730,7 @@ files:
|
|
859
730
|
- lib/puppet/pops/types/p_init_type.rb
|
860
731
|
- lib/puppet/pops/types/p_meta_type.rb
|
861
732
|
- lib/puppet/pops/types/p_object_type.rb
|
733
|
+
- lib/puppet/pops/types/p_object_type_extension.rb
|
862
734
|
- lib/puppet/pops/types/p_runtime_type.rb
|
863
735
|
- lib/puppet/pops/types/p_sem_ver_range_type.rb
|
864
736
|
- lib/puppet/pops/types/p_sem_ver_type.rb
|
@@ -866,6 +738,7 @@ files:
|
|
866
738
|
- lib/puppet/pops/types/p_timespan_type.rb
|
867
739
|
- lib/puppet/pops/types/p_timestamp_type.rb
|
868
740
|
- lib/puppet/pops/types/p_type_set_type.rb
|
741
|
+
- lib/puppet/pops/types/p_uri_type.rb
|
869
742
|
- lib/puppet/pops/types/puppet_object.rb
|
870
743
|
- lib/puppet/pops/types/recursion_guard.rb
|
871
744
|
- lib/puppet/pops/types/ruby_generator.rb
|
@@ -882,10 +755,12 @@ files:
|
|
882
755
|
- lib/puppet/pops/types/type_mismatch_describer.rb
|
883
756
|
- lib/puppet/pops/types/type_parser.rb
|
884
757
|
- lib/puppet/pops/types/type_set_reference.rb
|
758
|
+
- lib/puppet/pops/types/type_with_members.rb
|
885
759
|
- lib/puppet/pops/types/types.rb
|
886
760
|
- lib/puppet/pops/utils.rb
|
887
761
|
- lib/puppet/pops/validation.rb
|
888
762
|
- lib/puppet/pops/validation/checker4_0.rb
|
763
|
+
- lib/puppet/pops/validation/tasks_checker.rb
|
889
764
|
- lib/puppet/pops/validation/validator_factory_4_0.rb
|
890
765
|
- lib/puppet/pops/visitable.rb
|
891
766
|
- lib/puppet/pops/visitor.rb
|
@@ -1314,11 +1189,13 @@ files:
|
|
1314
1189
|
- lib/puppet/vendor/semantic_puppet/lib/semantic_puppet/version_range.rb
|
1315
1190
|
- lib/puppet/vendor/semantic_puppet/locales/config.yaml
|
1316
1191
|
- lib/puppet/version.rb
|
1192
|
+
- lib/puppet_pal.rb
|
1317
1193
|
- lib/puppet_x.rb
|
1318
|
-
-
|
1319
|
-
-
|
1320
|
-
-
|
1321
|
-
-
|
1194
|
+
- conf/auth.conf
|
1195
|
+
- conf/environment.conf
|
1196
|
+
- conf/fileserver.conf
|
1197
|
+
- conf/hiera.yaml
|
1198
|
+
- conf/puppet.conf
|
1322
1199
|
- man/man5/puppet.conf.5
|
1323
1200
|
- man/man8/puppet-agent.8
|
1324
1201
|
- man/man8/puppet-apply.8
|
@@ -1349,6 +1226,150 @@ files:
|
|
1349
1226
|
- man/man8/puppet-resource.8
|
1350
1227
|
- man/man8/puppet-status.8
|
1351
1228
|
- man/man8/puppet.8
|
1229
|
+
- examples/hiera/README.md
|
1230
|
+
- examples/hiera/etc/hiera.yaml
|
1231
|
+
- examples/hiera/etc/hieradb/common.yaml
|
1232
|
+
- examples/hiera/etc/hieradb/dc1.yaml
|
1233
|
+
- examples/hiera/etc/hieradb/development.yaml
|
1234
|
+
- examples/hiera/etc/puppet.conf
|
1235
|
+
- examples/hiera/modules/data/manifests/common.pp
|
1236
|
+
- examples/hiera/modules/ntp/manifests/config.pp
|
1237
|
+
- examples/hiera/modules/ntp/manifests/data.pp
|
1238
|
+
- examples/hiera/modules/ntp/templates/ntp.conf.erb
|
1239
|
+
- examples/hiera/modules/users/manifests/common.pp
|
1240
|
+
- examples/hiera/modules/users/manifests/dc1.pp
|
1241
|
+
- examples/hiera/modules/users/manifests/development.pp
|
1242
|
+
- examples/hiera/site.pp
|
1243
|
+
- ext/README.environment
|
1244
|
+
- ext/autotest/Rakefile
|
1245
|
+
- ext/autotest/config
|
1246
|
+
- ext/autotest/readme.rst
|
1247
|
+
- ext/build_defaults.yaml
|
1248
|
+
- ext/cert_inspector
|
1249
|
+
- ext/dbfix.sql
|
1250
|
+
- ext/debian/README.Debian
|
1251
|
+
- ext/debian/README.source
|
1252
|
+
- ext/debian/TODO.Debian
|
1253
|
+
- ext/debian/changelog.erb
|
1254
|
+
- ext/debian/compat
|
1255
|
+
- ext/debian/control
|
1256
|
+
- ext/debian/copyright
|
1257
|
+
- ext/debian/docs
|
1258
|
+
- ext/debian/fileserver.conf
|
1259
|
+
- ext/debian/puppet-common.dirs
|
1260
|
+
- ext/debian/puppet-common.install
|
1261
|
+
- ext/debian/puppet-common.lintian-overrides
|
1262
|
+
- ext/debian/puppet-common.manpages
|
1263
|
+
- ext/debian/puppet-common.postinst
|
1264
|
+
- ext/debian/puppet-common.postrm
|
1265
|
+
- ext/debian/puppet-el.dirs
|
1266
|
+
- ext/debian/puppet-el.emacsen-install
|
1267
|
+
- ext/debian/puppet-el.emacsen-remove
|
1268
|
+
- ext/debian/puppet-el.emacsen-startup
|
1269
|
+
- ext/debian/puppet-el.install
|
1270
|
+
- ext/debian/puppet-testsuite.install
|
1271
|
+
- ext/debian/puppet-testsuite.lintian-overrides
|
1272
|
+
- ext/debian/puppet.default
|
1273
|
+
- ext/debian/puppet.init
|
1274
|
+
- ext/debian/puppet.lintian-overrides
|
1275
|
+
- ext/debian/puppet.logrotate
|
1276
|
+
- ext/debian/puppet.postinst
|
1277
|
+
- ext/debian/puppet.postrm
|
1278
|
+
- ext/debian/puppet.preinst
|
1279
|
+
- ext/debian/puppetmaster-common.install
|
1280
|
+
- ext/debian/puppetmaster-common.manpages
|
1281
|
+
- ext/debian/puppetmaster-common.postinst
|
1282
|
+
- ext/debian/puppetmaster-passenger.dirs
|
1283
|
+
- ext/debian/puppetmaster-passenger.postinst
|
1284
|
+
- ext/debian/puppetmaster-passenger.postrm
|
1285
|
+
- ext/debian/puppetmaster.README.debian
|
1286
|
+
- ext/debian/puppetmaster.default
|
1287
|
+
- ext/debian/puppetmaster.init
|
1288
|
+
- ext/debian/puppetmaster.lintian-overrides
|
1289
|
+
- ext/debian/puppetmaster.postinst
|
1290
|
+
- ext/debian/puppetmaster.postrm
|
1291
|
+
- ext/debian/puppetmaster.preinst
|
1292
|
+
- ext/debian/rules
|
1293
|
+
- ext/debian/source/format
|
1294
|
+
- ext/debian/source/options
|
1295
|
+
- ext/debian/vim-puppet.README.Debian
|
1296
|
+
- ext/debian/vim-puppet.dirs
|
1297
|
+
- ext/debian/vim-puppet.yaml
|
1298
|
+
- ext/debian/watch
|
1299
|
+
- ext/envpuppet
|
1300
|
+
- ext/envpuppet.bat
|
1301
|
+
- ext/freebsd/puppetd
|
1302
|
+
- ext/freebsd/puppetmasterd
|
1303
|
+
- ext/gentoo/conf.d/puppet
|
1304
|
+
- ext/gentoo/conf.d/puppetmaster
|
1305
|
+
- ext/gentoo/init.d/puppet
|
1306
|
+
- ext/gentoo/init.d/puppetmaster
|
1307
|
+
- ext/gentoo/puppet/fileserver.conf
|
1308
|
+
- ext/hiera/hiera.yaml
|
1309
|
+
- ext/ips/puppet-agent
|
1310
|
+
- ext/ips/puppet-master
|
1311
|
+
- ext/ips/puppet.p5m.erb
|
1312
|
+
- ext/ips/puppetagent.xml
|
1313
|
+
- ext/ips/puppetmaster.xml
|
1314
|
+
- ext/ips/rules
|
1315
|
+
- ext/ips/transforms
|
1316
|
+
- ext/ldap/puppet.schema
|
1317
|
+
- ext/logcheck/puppet
|
1318
|
+
- ext/nagios/check_puppet.rb
|
1319
|
+
- ext/osx/file_mapping.yaml
|
1320
|
+
- ext/osx/postflight.erb
|
1321
|
+
- ext/osx/preflight.erb
|
1322
|
+
- ext/osx/prototype.plist.erb
|
1323
|
+
- ext/osx/puppet.plist
|
1324
|
+
- ext/project_data.yaml
|
1325
|
+
- ext/puppet-test
|
1326
|
+
- ext/pure_ruby_dsl/dsl_test.rb
|
1327
|
+
- ext/rack/config.ru
|
1328
|
+
- ext/rack/example-passenger-vhost.conf
|
1329
|
+
- ext/redhat/client.init
|
1330
|
+
- ext/redhat/client.sysconfig
|
1331
|
+
- ext/redhat/fileserver.conf
|
1332
|
+
- ext/redhat/logrotate
|
1333
|
+
- ext/redhat/puppet.spec.erb
|
1334
|
+
- ext/redhat/server.init
|
1335
|
+
- ext/redhat/server.sysconfig
|
1336
|
+
- ext/regexp_nodes/classes/databases
|
1337
|
+
- ext/regexp_nodes/classes/webservers
|
1338
|
+
- ext/regexp_nodes/environment/development
|
1339
|
+
- ext/regexp_nodes/parameters/service/prod
|
1340
|
+
- ext/regexp_nodes/parameters/service/qa
|
1341
|
+
- ext/regexp_nodes/parameters/service/sandbox
|
1342
|
+
- ext/regexp_nodes/regexp_nodes.rb
|
1343
|
+
- ext/solaris/pkginfo
|
1344
|
+
- ext/solaris/smf/puppet
|
1345
|
+
- ext/solaris/smf/puppet.xml
|
1346
|
+
- ext/solaris/smf/puppetd.xml
|
1347
|
+
- ext/solaris/smf/puppetmasterd.xml
|
1348
|
+
- ext/solaris/smf/svc-puppetd
|
1349
|
+
- ext/solaris/smf/svc-puppetmasterd
|
1350
|
+
- ext/suse/client.init
|
1351
|
+
- ext/suse/puppet.spec
|
1352
|
+
- ext/suse/server.init
|
1353
|
+
- ext/systemd/puppet.service
|
1354
|
+
- ext/upload_facts.rb
|
1355
|
+
- ext/windows/eventlog/Rakefile
|
1356
|
+
- ext/windows/eventlog/puppetres.dll
|
1357
|
+
- ext/windows/eventlog/puppetres.mc
|
1358
|
+
- ext/windows/puppet_interactive.bat
|
1359
|
+
- ext/windows/puppet_shell.bat
|
1360
|
+
- ext/windows/run_puppet_interactive.bat
|
1361
|
+
- ext/windows/service/daemon.bat
|
1362
|
+
- ext/windows/service/daemon.rb
|
1363
|
+
- ext/yaml_nodes.rb
|
1364
|
+
- tasks/benchmark.rake
|
1365
|
+
- tasks/cfpropertylist.rake
|
1366
|
+
- tasks/ci.rake
|
1367
|
+
- tasks/generate_ast_model.rake
|
1368
|
+
- tasks/manpages.rake
|
1369
|
+
- tasks/memwalk.rake
|
1370
|
+
- tasks/parallel.rake
|
1371
|
+
- tasks/parser.rake
|
1372
|
+
- tasks/yard.rake
|
1352
1373
|
- spec/fixtures/faulty_face/puppet/face/syntax.rb
|
1353
1374
|
- spec/fixtures/hiera.yaml
|
1354
1375
|
- spec/fixtures/integration/node/environment/sitedir/00_a.pp
|
@@ -1786,6 +1807,7 @@ files:
|
|
1786
1807
|
- spec/integration/parser/pcore_resource_spec.rb
|
1787
1808
|
- spec/integration/parser/resource_expressions_spec.rb
|
1788
1809
|
- spec/integration/parser/scope_spec.rb
|
1810
|
+
- spec/integration/parser/script_compiler_spec.rb
|
1789
1811
|
- spec/integration/parser/undef_param_spec.rb
|
1790
1812
|
- spec/integration/provider/cron/crontab_spec.rb
|
1791
1813
|
- spec/integration/provider/mailalias/aliases_spec.rb
|
@@ -1899,7 +1921,6 @@ files:
|
|
1899
1921
|
- spec/unit/application/resource_spec.rb
|
1900
1922
|
- spec/unit/application_spec.rb
|
1901
1923
|
- spec/unit/capability_spec.rb
|
1902
|
-
- spec/unit/configurer/downloader_factory_spec.rb
|
1903
1924
|
- spec/unit/configurer/downloader_spec.rb
|
1904
1925
|
- spec/unit/configurer/fact_handler_spec.rb
|
1905
1926
|
- spec/unit/configurer/plugin_handler_spec.rb
|
@@ -1918,6 +1939,7 @@ files:
|
|
1918
1939
|
- spec/unit/data_binding_spec.rb
|
1919
1940
|
- spec/unit/data_providers/function_data_provider_spec.rb
|
1920
1941
|
- spec/unit/data_providers/hiera_data_provider_spec.rb
|
1942
|
+
- spec/unit/datatypes_spec.rb
|
1921
1943
|
- spec/unit/defaults_spec.rb
|
1922
1944
|
- spec/unit/environments_spec.rb
|
1923
1945
|
- spec/unit/etc_spec.rb
|
@@ -1979,6 +2001,7 @@ files:
|
|
1979
2001
|
- spec/unit/functions/break_spec.rb
|
1980
2002
|
- spec/unit/functions/call_spec.rb
|
1981
2003
|
- spec/unit/functions/contain_spec.rb
|
2004
|
+
- spec/unit/functions/convert_to_spec.rb
|
1982
2005
|
- spec/unit/functions/defined_spec.rb
|
1983
2006
|
- spec/unit/functions/dig_spec.rb
|
1984
2007
|
- spec/unit/functions/each_spec.rb
|
@@ -1994,6 +2017,7 @@ files:
|
|
1994
2017
|
- spec/unit/functions/lookup_spec.rb
|
1995
2018
|
- spec/unit/functions/map_spec.rb
|
1996
2019
|
- spec/unit/functions/match_spec.rb
|
2020
|
+
- spec/unit/functions/module_directory_spec.rb
|
1997
2021
|
- spec/unit/functions/new_spec.rb
|
1998
2022
|
- spec/unit/functions/next_spec.rb
|
1999
2023
|
- spec/unit/functions/reduce_spec.rb
|
@@ -2199,6 +2223,7 @@ files:
|
|
2199
2223
|
- spec/unit/parser/functions/split_spec.rb
|
2200
2224
|
- spec/unit/parser/functions/sprintf_spec.rb
|
2201
2225
|
- spec/unit/parser/functions/tag_spec.rb
|
2226
|
+
- spec/unit/parser/functions/tagged_spec.rb
|
2202
2227
|
- spec/unit/parser/functions/template_spec.rb
|
2203
2228
|
- spec/unit/parser/functions/versioncmp_spec.rb
|
2204
2229
|
- spec/unit/parser/functions_spec.rb
|
@@ -2232,6 +2257,7 @@ files:
|
|
2232
2257
|
- spec/unit/pops/loaders/dependency_loader_spec.rb
|
2233
2258
|
- spec/unit/pops/loaders/environment_loader_spec.rb
|
2234
2259
|
- spec/unit/pops/loaders/loader_paths_spec.rb
|
2260
|
+
- spec/unit/pops/loaders/loader_spec.rb
|
2235
2261
|
- spec/unit/pops/loaders/loaders_spec.rb
|
2236
2262
|
- spec/unit/pops/loaders/module_loaders_spec.rb
|
2237
2263
|
- spec/unit/pops/loaders/static_loader_spec.rb
|
@@ -2254,6 +2280,7 @@ files:
|
|
2254
2280
|
- spec/unit/pops/parser/parse_functions_spec.rb
|
2255
2281
|
- spec/unit/pops/parser/parse_heredoc_spec.rb
|
2256
2282
|
- spec/unit/pops/parser/parse_lambda_spec.rb
|
2283
|
+
- spec/unit/pops/parser/parse_plan_spec.rb
|
2257
2284
|
- spec/unit/pops/parser/parse_resource_spec.rb
|
2258
2285
|
- spec/unit/pops/parser/parse_site_spec.rb
|
2259
2286
|
- spec/unit/pops/parser/parser_rspec_helper.rb
|
@@ -2268,6 +2295,7 @@ files:
|
|
2268
2295
|
- spec/unit/pops/time/timestamp_spec.rb
|
2269
2296
|
- spec/unit/pops/types/class_loader_spec.rb
|
2270
2297
|
- spec/unit/pops/types/enumeration_spec.rb
|
2298
|
+
- spec/unit/pops/types/error_spec.rb
|
2271
2299
|
- spec/unit/pops/types/iterable_spec.rb
|
2272
2300
|
- spec/unit/pops/types/p_binary_type_spec.rb
|
2273
2301
|
- spec/unit/pops/types/p_init_type_spec.rb
|
@@ -2277,9 +2305,11 @@ files:
|
|
2277
2305
|
- spec/unit/pops/types/p_timespan_type_spec.rb
|
2278
2306
|
- spec/unit/pops/types/p_timestamp_type_spec.rb
|
2279
2307
|
- spec/unit/pops/types/p_type_set_type_spec.rb
|
2308
|
+
- spec/unit/pops/types/p_uri_type_spec.rb
|
2280
2309
|
- spec/unit/pops/types/recursion_guard_spec.rb
|
2281
2310
|
- spec/unit/pops/types/ruby_generator_spec.rb
|
2282
2311
|
- spec/unit/pops/types/string_converter_spec.rb
|
2312
|
+
- spec/unit/pops/types/task_spec.rb
|
2283
2313
|
- spec/unit/pops/types/type_acceptor_spec.rb
|
2284
2314
|
- spec/unit/pops/types/type_asserter_spec.rb
|
2285
2315
|
- spec/unit/pops/types/type_calculator_spec.rb
|
@@ -2404,6 +2434,8 @@ files:
|
|
2404
2434
|
- spec/unit/provider/zone/solaris_spec.rb
|
2405
2435
|
- spec/unit/provider/zpool/zpool_spec.rb
|
2406
2436
|
- spec/unit/provider_spec.rb
|
2437
|
+
- spec/unit/puppet_pal_2pec.rb
|
2438
|
+
- spec/unit/puppet_pal_spec.rb
|
2407
2439
|
- spec/unit/puppet_spec.rb
|
2408
2440
|
- spec/unit/relationship_spec.rb
|
2409
2441
|
- spec/unit/reports/http_spec.rb
|
@@ -2593,40 +2625,35 @@ files:
|
|
2593
2625
|
- spec/unit/util_spec.rb
|
2594
2626
|
- spec/unit/version_spec.rb
|
2595
2627
|
- spec/watchr.rb
|
2596
|
-
-
|
2597
|
-
-
|
2598
|
-
-
|
2599
|
-
-
|
2600
|
-
- tasks/manpages.rake
|
2601
|
-
- tasks/memwalk.rake
|
2602
|
-
- tasks/parallel.rake
|
2603
|
-
- tasks/parser.rake
|
2604
|
-
- tasks/yard.rake
|
2628
|
+
- locales/config.yaml
|
2629
|
+
- locales/en/puppet.po
|
2630
|
+
- locales/ja/puppet.po
|
2631
|
+
- locales/puppet.pot
|
2605
2632
|
homepage: https://github.com/puppetlabs/puppet
|
2606
2633
|
licenses: []
|
2607
2634
|
metadata: {}
|
2608
2635
|
post_install_message:
|
2609
2636
|
rdoc_options:
|
2610
|
-
-
|
2637
|
+
- --title
|
2611
2638
|
- Puppet - Configuration Management
|
2612
|
-
-
|
2639
|
+
- --main
|
2613
2640
|
- README.md
|
2614
|
-
-
|
2641
|
+
- --line-numbers
|
2615
2642
|
require_paths:
|
2616
2643
|
- lib
|
2617
2644
|
required_ruby_version: !ruby/object:Gem::Requirement
|
2618
2645
|
requirements:
|
2619
|
-
- -
|
2646
|
+
- - '>='
|
2620
2647
|
- !ruby/object:Gem::Version
|
2621
2648
|
version: 1.9.3
|
2622
2649
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
2623
2650
|
requirements:
|
2624
|
-
- -
|
2651
|
+
- - '>'
|
2625
2652
|
- !ruby/object:Gem::Version
|
2626
2653
|
version: 1.3.1
|
2627
2654
|
requirements: []
|
2628
2655
|
rubyforge_project: puppet
|
2629
|
-
rubygems_version: 2.
|
2656
|
+
rubygems_version: 2.0.14
|
2630
2657
|
signing_key:
|
2631
2658
|
specification_version: 4
|
2632
2659
|
summary: Puppet, an automated configuration management tool
|
@@ -3068,6 +3095,7 @@ test_files:
|
|
3068
3095
|
- spec/integration/parser/pcore_resource_spec.rb
|
3069
3096
|
- spec/integration/parser/resource_expressions_spec.rb
|
3070
3097
|
- spec/integration/parser/scope_spec.rb
|
3098
|
+
- spec/integration/parser/script_compiler_spec.rb
|
3071
3099
|
- spec/integration/parser/undef_param_spec.rb
|
3072
3100
|
- spec/integration/provider/cron/crontab_spec.rb
|
3073
3101
|
- spec/integration/provider/mailalias/aliases_spec.rb
|
@@ -3181,7 +3209,6 @@ test_files:
|
|
3181
3209
|
- spec/unit/application/resource_spec.rb
|
3182
3210
|
- spec/unit/application_spec.rb
|
3183
3211
|
- spec/unit/capability_spec.rb
|
3184
|
-
- spec/unit/configurer/downloader_factory_spec.rb
|
3185
3212
|
- spec/unit/configurer/downloader_spec.rb
|
3186
3213
|
- spec/unit/configurer/fact_handler_spec.rb
|
3187
3214
|
- spec/unit/configurer/plugin_handler_spec.rb
|
@@ -3200,6 +3227,7 @@ test_files:
|
|
3200
3227
|
- spec/unit/data_binding_spec.rb
|
3201
3228
|
- spec/unit/data_providers/function_data_provider_spec.rb
|
3202
3229
|
- spec/unit/data_providers/hiera_data_provider_spec.rb
|
3230
|
+
- spec/unit/datatypes_spec.rb
|
3203
3231
|
- spec/unit/defaults_spec.rb
|
3204
3232
|
- spec/unit/environments_spec.rb
|
3205
3233
|
- spec/unit/etc_spec.rb
|
@@ -3261,6 +3289,7 @@ test_files:
|
|
3261
3289
|
- spec/unit/functions/break_spec.rb
|
3262
3290
|
- spec/unit/functions/call_spec.rb
|
3263
3291
|
- spec/unit/functions/contain_spec.rb
|
3292
|
+
- spec/unit/functions/convert_to_spec.rb
|
3264
3293
|
- spec/unit/functions/defined_spec.rb
|
3265
3294
|
- spec/unit/functions/dig_spec.rb
|
3266
3295
|
- spec/unit/functions/each_spec.rb
|
@@ -3276,6 +3305,7 @@ test_files:
|
|
3276
3305
|
- spec/unit/functions/lookup_spec.rb
|
3277
3306
|
- spec/unit/functions/map_spec.rb
|
3278
3307
|
- spec/unit/functions/match_spec.rb
|
3308
|
+
- spec/unit/functions/module_directory_spec.rb
|
3279
3309
|
- spec/unit/functions/new_spec.rb
|
3280
3310
|
- spec/unit/functions/next_spec.rb
|
3281
3311
|
- spec/unit/functions/reduce_spec.rb
|
@@ -3481,6 +3511,7 @@ test_files:
|
|
3481
3511
|
- spec/unit/parser/functions/split_spec.rb
|
3482
3512
|
- spec/unit/parser/functions/sprintf_spec.rb
|
3483
3513
|
- spec/unit/parser/functions/tag_spec.rb
|
3514
|
+
- spec/unit/parser/functions/tagged_spec.rb
|
3484
3515
|
- spec/unit/parser/functions/template_spec.rb
|
3485
3516
|
- spec/unit/parser/functions/versioncmp_spec.rb
|
3486
3517
|
- spec/unit/parser/functions_spec.rb
|
@@ -3514,6 +3545,7 @@ test_files:
|
|
3514
3545
|
- spec/unit/pops/loaders/dependency_loader_spec.rb
|
3515
3546
|
- spec/unit/pops/loaders/environment_loader_spec.rb
|
3516
3547
|
- spec/unit/pops/loaders/loader_paths_spec.rb
|
3548
|
+
- spec/unit/pops/loaders/loader_spec.rb
|
3517
3549
|
- spec/unit/pops/loaders/loaders_spec.rb
|
3518
3550
|
- spec/unit/pops/loaders/module_loaders_spec.rb
|
3519
3551
|
- spec/unit/pops/loaders/static_loader_spec.rb
|
@@ -3536,6 +3568,7 @@ test_files:
|
|
3536
3568
|
- spec/unit/pops/parser/parse_functions_spec.rb
|
3537
3569
|
- spec/unit/pops/parser/parse_heredoc_spec.rb
|
3538
3570
|
- spec/unit/pops/parser/parse_lambda_spec.rb
|
3571
|
+
- spec/unit/pops/parser/parse_plan_spec.rb
|
3539
3572
|
- spec/unit/pops/parser/parse_resource_spec.rb
|
3540
3573
|
- spec/unit/pops/parser/parse_site_spec.rb
|
3541
3574
|
- spec/unit/pops/parser/parser_rspec_helper.rb
|
@@ -3550,6 +3583,7 @@ test_files:
|
|
3550
3583
|
- spec/unit/pops/time/timestamp_spec.rb
|
3551
3584
|
- spec/unit/pops/types/class_loader_spec.rb
|
3552
3585
|
- spec/unit/pops/types/enumeration_spec.rb
|
3586
|
+
- spec/unit/pops/types/error_spec.rb
|
3553
3587
|
- spec/unit/pops/types/iterable_spec.rb
|
3554
3588
|
- spec/unit/pops/types/p_binary_type_spec.rb
|
3555
3589
|
- spec/unit/pops/types/p_init_type_spec.rb
|
@@ -3559,9 +3593,11 @@ test_files:
|
|
3559
3593
|
- spec/unit/pops/types/p_timespan_type_spec.rb
|
3560
3594
|
- spec/unit/pops/types/p_timestamp_type_spec.rb
|
3561
3595
|
- spec/unit/pops/types/p_type_set_type_spec.rb
|
3596
|
+
- spec/unit/pops/types/p_uri_type_spec.rb
|
3562
3597
|
- spec/unit/pops/types/recursion_guard_spec.rb
|
3563
3598
|
- spec/unit/pops/types/ruby_generator_spec.rb
|
3564
3599
|
- spec/unit/pops/types/string_converter_spec.rb
|
3600
|
+
- spec/unit/pops/types/task_spec.rb
|
3565
3601
|
- spec/unit/pops/types/type_acceptor_spec.rb
|
3566
3602
|
- spec/unit/pops/types/type_asserter_spec.rb
|
3567
3603
|
- spec/unit/pops/types/type_calculator_spec.rb
|
@@ -3686,6 +3722,8 @@ test_files:
|
|
3686
3722
|
- spec/unit/provider/zone/solaris_spec.rb
|
3687
3723
|
- spec/unit/provider/zpool/zpool_spec.rb
|
3688
3724
|
- spec/unit/provider_spec.rb
|
3725
|
+
- spec/unit/puppet_pal_2pec.rb
|
3726
|
+
- spec/unit/puppet_pal_spec.rb
|
3689
3727
|
- spec/unit/puppet_spec.rb
|
3690
3728
|
- spec/unit/relationship_spec.rb
|
3691
3729
|
- spec/unit/reports/http_spec.rb
|