puppet 5.4.0-universal-darwin → 5.5.0-universal-darwin
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/Gemfile +3 -3
- data/MAINTAINERS +0 -19
- data/README.md +5 -5
- data/Rakefile +26 -0
- data/conf/auth.conf +5 -0
- data/ext/project_data.yaml +1 -0
- data/ext/regexp_nodes/regexp_nodes.rb +3 -4
- data/lib/puppet/application/apply.rb +1 -1
- data/lib/puppet/application/cert.rb +3 -1
- data/lib/puppet/application/device.rb +100 -13
- data/lib/puppet/application/facts.rb +5 -0
- data/lib/puppet/application/lookup.rb +12 -2
- data/lib/puppet/configurer.rb +37 -17
- data/lib/puppet/confine.rb +4 -1
- data/lib/puppet/datatypes.rb +1 -1
- data/lib/puppet/environments.rb +1 -1
- data/lib/puppet/error.rb +6 -3
- data/lib/puppet/external/dot.rb +0 -7
- data/lib/puppet/external/nagios/parser.rb +1 -1
- data/lib/puppet/face/config.rb +92 -10
- data/lib/puppet/face/epp.rb +31 -6
- data/lib/puppet/face/facts.rb +49 -0
- data/lib/puppet/face/help.rb +33 -35
- data/lib/puppet/face/help/action.erb +1 -1
- data/lib/puppet/face/help/face.erb +1 -1
- data/lib/puppet/face/man.rb +55 -12
- data/lib/puppet/face/parser.rb +30 -3
- data/lib/puppet/file_bucket/file.rb +0 -2
- data/lib/puppet/file_serving/base.rb +10 -10
- data/lib/puppet/forge.rb +3 -3
- data/lib/puppet/forge/errors.rb +3 -3
- data/lib/puppet/functions.rb +1 -3
- data/lib/puppet/functions/alert.rb +1 -1
- data/lib/puppet/functions/all.rb +6 -6
- data/lib/puppet/functions/annotate.rb +10 -10
- data/lib/puppet/functions/any.rb +6 -6
- data/lib/puppet/functions/assert_type.rb +4 -4
- data/lib/puppet/functions/binary_file.rb +14 -2
- data/lib/puppet/functions/break.rb +31 -2
- data/lib/puppet/functions/call.rb +4 -4
- data/lib/puppet/functions/contain.rb +19 -3
- data/lib/puppet/functions/convert_to.rb +6 -5
- data/lib/puppet/functions/crit.rb +1 -1
- data/lib/puppet/functions/debug.rb +1 -1
- data/lib/puppet/functions/defined.rb +11 -9
- data/lib/puppet/functions/dig.rb +26 -2
- data/lib/puppet/functions/each.rb +8 -8
- data/lib/puppet/functions/emerg.rb +1 -1
- data/lib/puppet/functions/empty.rb +79 -0
- data/lib/puppet/functions/err.rb +1 -1
- data/lib/puppet/functions/eyaml_lookup_key.rb +3 -1
- data/lib/puppet/functions/filter.rb +7 -7
- data/lib/puppet/functions/find_file.rb +15 -1
- data/lib/puppet/functions/flatten.rb +64 -0
- data/lib/puppet/functions/hiera.rb +6 -6
- data/lib/puppet/functions/hiera_array.rb +6 -6
- data/lib/puppet/functions/hiera_hash.rb +6 -6
- data/lib/puppet/functions/hiera_include.rb +8 -8
- data/lib/puppet/functions/include.rb +28 -2
- data/lib/puppet/functions/info.rb +1 -1
- data/lib/puppet/functions/inline_epp.rb +2 -2
- data/lib/puppet/functions/join.rb +56 -0
- data/lib/puppet/functions/json_data.rb +2 -2
- data/lib/puppet/functions/keys.rb +25 -0
- data/lib/puppet/functions/length.rb +44 -0
- data/lib/puppet/functions/lest.rb +39 -1
- data/lib/puppet/functions/lookup.rb +2 -1
- data/lib/puppet/functions/map.rb +10 -9
- data/lib/puppet/functions/match.rb +6 -6
- data/lib/puppet/functions/new.rb +995 -2
- data/lib/puppet/functions/next.rb +1 -1
- data/lib/puppet/functions/notice.rb +1 -1
- data/lib/puppet/functions/reduce.rb +6 -6
- data/lib/puppet/functions/regsubst.rb +9 -3
- data/lib/puppet/functions/require.rb +36 -2
- data/lib/puppet/functions/return.rb +1 -1
- data/lib/puppet/functions/reverse_each.rb +71 -2
- data/lib/puppet/functions/slice.rb +23 -9
- data/lib/puppet/functions/split.rb +12 -10
- data/lib/puppet/functions/step.rb +73 -1
- data/lib/puppet/functions/strftime.rb +176 -2
- data/lib/puppet/functions/then.rb +65 -2
- data/lib/puppet/functions/tree_each.rb +19 -19
- data/lib/puppet/functions/type.rb +42 -1
- data/lib/puppet/functions/unique.rb +13 -13
- data/lib/puppet/functions/unwrap.rb +8 -4
- data/lib/puppet/functions/values.rb +25 -0
- data/lib/puppet/functions/versioncmp.rb +1 -1
- data/lib/puppet/functions/warning.rb +1 -1
- data/lib/puppet/functions/with.rb +6 -4
- data/lib/puppet/functions/yaml_data.rb +3 -1
- data/lib/puppet/indirector/certificate_status/file.rb +1 -1
- data/lib/puppet/indirector/facts/facter.rb +1 -3
- data/lib/puppet/indirector/facts/rest.rb +21 -0
- data/lib/puppet/indirector/facts/yaml.rb +0 -4
- data/lib/puppet/indirector/rest.rb +2 -2
- data/lib/puppet/module.rb +3 -3
- data/lib/puppet/module/task.rb +2 -3
- data/lib/puppet/module_tool/applications/application.rb +4 -4
- data/lib/puppet/module_tool/applications/builder.rb +2 -2
- data/lib/puppet/module_tool/applications/checksummer.rb +3 -3
- data/lib/puppet/module_tool/applications/unpacker.rb +2 -2
- data/lib/puppet/module_tool/metadata.rb +3 -3
- data/lib/puppet/network/authconfig.rb +1 -1
- data/lib/puppet/network/format_support.rb +1 -1
- data/lib/puppet/network/formats.rb +5 -7
- data/lib/puppet/network/http/api/indirected_routes.rb +1 -0
- data/lib/puppet/network/http/api/master/v3/environment.rb +2 -2
- data/lib/puppet/network/http/api/master/v3/environments.rb +2 -2
- data/lib/puppet/network/http/error.rb +3 -3
- data/lib/puppet/network/resolver.rb +1 -2
- data/lib/puppet/parser/compiler.rb +12 -5
- data/lib/puppet/parser/compiler/catalog_validator/env_relationship_validator.rb +1 -1
- data/lib/puppet/parser/functions/fqdn_rand.rb +15 -4
- data/lib/puppet/parser/functions/new.rb +31 -46
- data/lib/puppet/parser/parser_factory.rb +1 -1
- data/lib/puppet/parser/resource.rb +1 -1
- data/lib/puppet/parser/type_loader.rb +11 -11
- data/lib/puppet/pops/evaluator/closure.rb +1 -1
- data/lib/puppet/pops/evaluator/collector_transformer.rb +1 -1
- data/lib/puppet/pops/evaluator/epp_evaluator.rb +2 -2
- data/lib/puppet/pops/evaluator/runtime3_resource_support.rb +2 -2
- data/lib/puppet/pops/evaluator/runtime3_support.rb +5 -2
- data/lib/puppet/pops/functions/dispatch.rb +1 -1
- data/lib/puppet/pops/issue_reporter.rb +18 -1
- data/lib/puppet/pops/issues.rb +6 -3
- data/lib/puppet/pops/loader/ruby_data_type_instantiator.rb +1 -2
- data/lib/puppet/pops/loader/ruby_function_instantiator.rb +1 -2
- data/lib/puppet/pops/loader/task_instantiator.rb +5 -5
- data/lib/puppet/pops/loader/type_definition_instantiator.rb +4 -1
- data/lib/puppet/pops/loaders.rb +18 -7
- data/lib/puppet/pops/lookup/global_data_provider.rb +1 -1
- data/lib/puppet/pops/lookup/lookup_adapter.rb +55 -6
- data/lib/puppet/pops/model/factory.rb +6 -3
- data/lib/puppet/pops/model/model_tree_dumper.rb +4 -0
- data/lib/puppet/pops/model/pn_transformer.rb +400 -0
- data/lib/puppet/pops/parser/egrammar.ra +1 -1
- data/lib/puppet/pops/parser/eparser.rb +1 -1
- data/lib/puppet/pops/parser/heredoc_support.rb +1 -1
- data/lib/puppet/pops/parser/lexer_support.rb +3 -2
- data/lib/puppet/pops/parser/locator.rb +0 -2
- data/lib/puppet/pops/parser/pn_parser.rb +316 -0
- data/lib/puppet/pops/pcore.rb +17 -17
- data/lib/puppet/pops/pn.rb +236 -0
- data/lib/puppet/pops/serialization/json.rb +7 -7
- data/lib/puppet/pops/types/class_loader.rb +6 -3
- data/lib/puppet/pops/types/implementation_registry.rb +28 -35
- data/lib/puppet/pops/types/p_object_type.rb +3 -3
- data/lib/puppet/pops/types/p_timespan_type.rb +2 -2
- data/lib/puppet/pops/types/p_type_set_type.rb +24 -1
- data/lib/puppet/pops/types/ruby_generator.rb +3 -4
- data/lib/puppet/pops/types/type_calculator.rb +1 -1
- data/lib/puppet/pops/types/type_factory.rb +0 -4
- data/lib/puppet/pops/types/type_mismatch_describer.rb +1 -1
- data/lib/puppet/pops/types/type_parser.rb +14 -7
- data/lib/puppet/pops/types/types.rb +1 -1
- data/lib/puppet/pops/utils.rb +2 -2
- data/lib/puppet/pops/validation/checker4_0.rb +6 -2
- data/lib/puppet/provider/group/groupadd.rb +3 -1
- data/lib/puppet/provider/group/windows_adsi.rb +4 -7
- data/lib/puppet/provider/nameservice.rb +3 -3
- data/lib/puppet/provider/package/pacman.rb +4 -4
- data/lib/puppet/provider/package/pip.rb +3 -3
- data/lib/puppet/provider/package/pkgdmg.rb +3 -3
- data/lib/puppet/provider/package/pkgutil.rb +2 -2
- data/lib/puppet/provider/package/portage.rb +9 -9
- data/lib/puppet/provider/package/zypper.rb +2 -2
- data/lib/puppet/provider/service/base.rb +1 -1
- data/lib/puppet/provider/service/smf.rb +3 -2
- data/lib/puppet/provider/service/systemd.rb +1 -1
- data/lib/puppet/provider/user/useradd.rb +6 -2
- data/lib/puppet/provider/user/windows_adsi.rb +1 -1
- data/lib/puppet/provider/yumrepo/inifile.rb +20 -9
- data/lib/puppet/provider/zfs/zfs.rb +1 -1
- data/lib/puppet/reference/configuration.rb +2 -0
- data/lib/puppet/reference/type.rb +11 -11
- data/lib/puppet/resource.rb +1 -1
- data/lib/puppet/resource/capability_finder.rb +5 -5
- data/lib/puppet/resource/catalog.rb +6 -3
- data/lib/puppet/resource/status.rb +9 -2
- data/lib/puppet/resource/type.rb +1 -1
- data/lib/puppet/settings.rb +31 -19
- data/lib/puppet/settings/base_setting.rb +5 -0
- data/lib/puppet/settings/config_file.rb +1 -1
- data/lib/puppet/settings/ttl_setting.rb +5 -0
- data/lib/puppet/ssl/certificate_factory.rb +2 -2
- data/lib/puppet/ssl/certificate_request.rb +0 -2
- data/lib/puppet/syntax_checkers/json.rb +1 -1
- data/lib/puppet/transaction/additional_resource_generator.rb +2 -2
- data/lib/puppet/transaction/event.rb +1 -1
- data/lib/puppet/transaction/report.rb +18 -12
- data/lib/puppet/type.rb +9 -13
- data/lib/puppet/type/augeas.rb +2 -2
- data/lib/puppet/type/cron.rb +11 -6
- data/lib/puppet/type/exec.rb +1 -1
- data/lib/puppet/type/file.rb +4 -5
- data/lib/puppet/type/host.rb +1 -1
- data/lib/puppet/type/k5login.rb +30 -54
- data/lib/puppet/type/package.rb +3 -3
- data/lib/puppet/type/schedule.rb +12 -12
- data/lib/puppet/type/scheduled_task.rb +2 -2
- data/lib/puppet/type/ssh_authorized_key.rb +5 -5
- data/lib/puppet/type/sshkey.rb +2 -2
- data/lib/puppet/type/tidy.rb +1 -1
- data/lib/puppet/type/user.rb +1 -1
- data/lib/puppet/type/yumrepo.rb +26 -5
- data/lib/puppet/util.rb +0 -4
- data/lib/puppet/util/backups.rb +1 -1
- data/lib/puppet/util/inifile.rb +3 -4
- data/lib/puppet/util/json.rb +68 -0
- data/lib/puppet/util/json_lockfile.rb +3 -3
- data/lib/puppet/util/log.rb +2 -5
- data/lib/puppet/util/log/destinations.rb +2 -2
- data/lib/puppet/util/network_device/cisco/facts.rb +1 -1
- data/lib/puppet/util/plist.rb +1 -1
- data/lib/puppet/util/reference.rb +1 -8
- data/lib/puppet/util/tagging.rb +1 -1
- data/lib/puppet/util/warnings.rb +0 -2
- data/lib/puppet/util/windows/adsi.rb +15 -18
- data/lib/puppet/util/windows/com.rb +2 -1
- data/lib/puppet/util/windows/file.rb +2 -2
- data/lib/puppet/util/windows/principal.rb +7 -6
- data/lib/puppet/util/windows/sid.rb +60 -7
- data/lib/puppet/util/windows/taskscheduler.rb +0 -9
- data/lib/puppet/version.rb +1 -1
- data/lib/puppet_pal.rb +53 -48
- data/locales/ja/puppet.po +1357 -912
- data/locales/puppet.pot +549 -466
- data/man/man5/puppet.conf.5 +103 -20
- data/man/man8/puppet-agent.8 +6 -2
- 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 +35 -1
- data/man/man8/puppet-describe.8 +1 -1
- data/man/man8/puppet-device.8 +33 -11
- data/man/man8/puppet-doc.8 +1 -1
- data/man/man8/puppet-epp.8 +34 -12
- data/man/man8/puppet-facts.8 +50 -1
- data/man/man8/puppet-filebucket.8 +38 -11
- 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 +10 -4
- data/man/man8/puppet-master.8 +1 -1
- data/man/man8/puppet-module.8 +15 -6
- data/man/man8/puppet-node.8 +1 -1
- data/man/man8/puppet-parser.8 +31 -8
- 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-script.8 +67 -0
- data/man/man8/puppet-status.8 +1 -1
- data/man/man8/puppet.8 +3 -3
- data/spec/fixtures/unit/pops/binder/bindings_composer/ok/modules/awesome2/lib/puppet_x/awesome2/echo_scheme_handler.rb +1 -1
- data/spec/integration/application/apply_spec.rb +15 -15
- data/spec/integration/application/lookup_spec.rb +21 -0
- data/spec/integration/faces/config_spec.rb +16 -4
- data/spec/integration/network/http/api/indirected_routes_spec.rb +5 -5
- data/spec/integration/parser/catalog_spec.rb +1 -1
- data/spec/integration/parser/collection_spec.rb +2 -2
- data/spec/integration/parser/compiler_spec.rb +17 -18
- data/spec/integration/parser/pcore_resource_spec.rb +2 -2
- data/spec/integration/parser/scope_spec.rb +2 -2
- data/spec/integration/ssl/certificate_authority_spec.rb +7 -7
- data/spec/integration/ssl/certificate_revocation_list_spec.rb +1 -1
- data/spec/integration/ssl/key_spec.rb +1 -1
- data/spec/integration/transaction/report_spec.rb +3 -3
- data/spec/integration/transaction_spec.rb +0 -1
- data/spec/integration/type/file_spec.rb +10 -11
- data/spec/integration/type_spec.rb +1 -2
- data/spec/integration/util/windows/adsi_spec.rb +86 -1
- data/spec/integration/util/windows/principal_spec.rb +11 -2
- data/spec/integration/util/windows/security_spec.rb +2 -2
- data/spec/lib/matchers/json.rb +4 -4
- data/spec/lib/puppet_spec/language.rb +34 -35
- data/spec/lib/puppet_spec/module_tool/shared_functions.rb +2 -2
- data/spec/shared_behaviours/file_server_terminus.rb +0 -2
- data/spec/shared_behaviours/things_that_declare_options.rb +2 -2
- data/spec/spec_helper.rb +1 -1
- data/spec/unit/application/cert_spec.rb +21 -9
- data/spec/unit/application/device_spec.rb +96 -2
- data/spec/unit/application/face_base_spec.rb +2 -2
- data/spec/unit/application/lookup_spec.rb +0 -1
- data/spec/unit/configurer_spec.rb +14 -0
- data/spec/unit/confine_spec.rb +16 -0
- data/spec/unit/data_providers/hiera_data_provider_spec.rb +4 -4
- data/spec/unit/datatypes_spec.rb +49 -0
- data/spec/unit/environments_spec.rb +7 -0
- data/spec/unit/face/config_spec.rb +116 -12
- data/spec/unit/face/epp_face_spec.rb +53 -2
- data/spec/unit/face/facts_spec.rb +53 -0
- data/spec/unit/face/help_spec.rb +62 -69
- data/spec/unit/face/man_spec.rb +26 -0
- data/spec/unit/face/module/list_spec.rb +0 -1
- data/spec/unit/face/parser_spec.rb +78 -0
- data/spec/unit/file_bucket/dipper_spec.rb +0 -4
- data/spec/unit/file_serving/content_spec.rb +0 -1
- data/spec/unit/file_serving/fileset_spec.rb +0 -1
- data/spec/unit/file_serving/metadata_spec.rb +0 -1
- data/spec/unit/file_serving/terminus_selector_spec.rb +0 -2
- data/spec/unit/forge_spec.rb +1 -2
- data/spec/unit/functions/assert_type_spec.rb +1 -1
- data/spec/unit/functions/empty_spec.rb +77 -0
- data/spec/unit/functions/epp_spec.rb +1 -1
- data/spec/unit/functions/flatten_spec.rb +31 -0
- data/spec/unit/functions/include_spec.rb +2 -2
- data/spec/unit/functions/inline_epp_spec.rb +1 -1
- data/spec/unit/functions/join_spec.rb +33 -0
- data/spec/unit/functions/keys_spec.rb +31 -0
- data/spec/unit/functions/length_spec.rb +50 -0
- data/spec/unit/functions/lookup_fixture_spec.rb +1 -1
- data/spec/unit/functions/lookup_spec.rb +52 -0
- data/spec/unit/functions/shared.rb +1 -1
- data/spec/unit/functions/values_spec.rb +30 -0
- data/spec/unit/functions/versioncmp_spec.rb +1 -1
- data/spec/unit/functions4_spec.rb +30 -32
- data/spec/unit/graph/title_hash_prioritizer_spec.rb +2 -1
- data/spec/unit/indirector/catalog/compiler_spec.rb +0 -15
- data/spec/unit/indirector/facts/rest_spec.rb +45 -0
- data/spec/unit/indirector/facts/yaml_spec.rb +6 -0
- data/spec/unit/indirector/file_bucket_file/file_spec.rb +2 -2
- data/spec/unit/indirector/indirection_spec.rb +1 -1
- data/spec/unit/indirector/node/ldap_spec.rb +2 -2
- data/spec/unit/indirector/request_spec.rb +0 -2
- data/spec/unit/indirector/rest_spec.rb +2 -2
- data/spec/unit/indirector_spec.rb +0 -1
- data/spec/unit/info_service_spec.rb +1 -1
- data/spec/unit/interface/action_manager_spec.rb +1 -1
- data/spec/unit/interface/action_spec.rb +1 -1
- data/spec/unit/module_spec.rb +0 -5
- data/spec/unit/module_tool/applications/builder_spec.rb +1 -1
- data/spec/unit/module_tool/applications/unpacker_spec.rb +4 -4
- data/spec/unit/network/formats_spec.rb +5 -13
- data/spec/unit/network/http/api/indirected_routes_spec.rb +6 -2
- data/spec/unit/network/http/connection_spec.rb +1 -1
- data/spec/unit/network/http/handler_spec.rb +3 -2
- data/spec/unit/node/environment_spec.rb +1 -1
- data/spec/unit/node_spec.rb +3 -3
- data/spec/unit/parser/compiler_spec.rb +9 -2
- data/spec/unit/parser/environment_compiler_spec.rb +8 -8
- data/spec/unit/parser/functions/create_resources_spec.rb +1 -1
- data/spec/unit/parser/functions/fail_spec.rb +1 -1
- data/spec/unit/parser/functions/fqdn_rand_spec.rb +24 -0
- data/spec/unit/parser/functions/realize_spec.rb +1 -1
- data/spec/unit/parser/resource_spec.rb +0 -1
- data/spec/unit/parser/scope_spec.rb +3 -3
- data/spec/unit/parser/type_loader_spec.rb +1 -1
- data/spec/unit/pops/adaptable_spec.rb +0 -1
- data/spec/unit/pops/evaluator/evaluating_parser_spec.rb +0 -3
- data/spec/unit/pops/evaluator/runtime3_converter_spec.rb +0 -4
- data/spec/unit/pops/factory_rspec_helper.rb +1 -1
- data/spec/unit/pops/factory_spec.rb +5 -5
- data/spec/unit/pops/issues_spec.rb +23 -8
- data/spec/unit/pops/loaders/loaders_spec.rb +24 -2
- data/spec/unit/pops/loaders/static_loader_spec.rb +1 -1
- data/spec/unit/pops/lookup/interpolation_spec.rb +5 -0
- data/spec/unit/pops/lookup/lookup_spec.rb +56 -0
- data/spec/unit/pops/model/pn_transformer_spec.rb +53 -0
- data/spec/unit/pops/parser/lexer2_spec.rb +14 -5
- data/spec/unit/pops/parser/parse_basic_expressions_spec.rb +9 -9
- data/spec/unit/pops/parser/parse_calls_spec.rb +1 -1
- data/spec/unit/pops/parser/parse_functions_spec.rb +1 -1
- data/spec/unit/pops/parser/parse_heredoc_spec.rb +3 -3
- data/spec/unit/pops/parser/parse_lambda_spec.rb +1 -1
- data/spec/unit/pops/parser/parse_resource_spec.rb +35 -35
- data/spec/unit/pops/parser/pn_parser_spec.rb +101 -0
- data/spec/unit/pops/pn_spec.rb +148 -0
- data/spec/unit/pops/types/iterable_spec.rb +1 -1
- data/spec/unit/pops/types/p_object_type_spec.rb +5 -5
- data/spec/unit/pops/types/p_timespan_type_spec.rb +11 -4
- data/spec/unit/pops/types/p_timestamp_type_spec.rb +9 -2
- data/spec/unit/pops/types/p_type_set_type_spec.rb +106 -2
- data/spec/unit/pops/types/ruby_generator_spec.rb +3 -8
- data/spec/unit/pops/types/string_converter_spec.rb +3 -3
- data/spec/unit/pops/types/type_calculator_spec.rb +1 -1
- data/spec/unit/pops/validator/validator_spec.rb +3 -1
- data/spec/unit/property_spec.rb +2 -2
- data/spec/unit/provider/aixobject_spec.rb +1 -1
- data/spec/unit/provider/cron/crontab_spec.rb +3 -3
- data/spec/unit/provider/exec/posix_spec.rb +6 -6
- data/spec/unit/provider/group/groupadd_spec.rb +4 -4
- data/spec/unit/provider/group/windows_adsi_spec.rb +79 -22
- data/spec/unit/provider/ldap_spec.rb +0 -1
- data/spec/unit/provider/nameservice_spec.rb +5 -5
- data/spec/unit/provider/package/rpm_spec.rb +3 -4
- data/spec/unit/provider/package/yum_spec.rb +6 -2
- data/spec/unit/provider/parsedfile_spec.rb +1 -1
- data/spec/unit/provider/service/base_spec.rb +2 -4
- data/spec/unit/provider/service/init_spec.rb +2 -2
- data/spec/unit/provider/service/openrc_spec.rb +2 -2
- data/spec/unit/provider/service/redhat_spec.rb +2 -2
- data/spec/unit/provider/service/smf_spec.rb +2 -0
- data/spec/unit/provider/service/systemd_spec.rb +3 -3
- data/spec/unit/provider/service/upstart_spec.rb +7 -7
- data/spec/unit/provider/ssh_authorized_key/parsed_spec.rb +0 -4
- data/spec/unit/provider/sshkey/parsed_spec.rb +0 -2
- data/spec/unit/provider/user/useradd_spec.rb +15 -9
- data/spec/unit/provider/user/windows_adsi_spec.rb +4 -4
- data/spec/unit/provider/yumrepo/inifile_spec.rb +76 -0
- data/spec/unit/puppet_pal_2pec.rb +4 -5
- data/spec/unit/resource/catalog_spec.rb +8 -3
- data/spec/unit/resource/status_spec.rb +15 -4
- data/spec/unit/resource/type_spec.rb +2 -3
- data/spec/unit/settings_spec.rb +9 -4
- data/spec/unit/ssl/certificate_authority_spec.rb +1 -9
- data/spec/unit/ssl/certificate_request_spec.rb +1 -2
- data/spec/unit/transaction/report_spec.rb +41 -0
- data/spec/unit/transaction_spec.rb +1 -1
- data/spec/unit/type/exec_spec.rb +7 -9
- data/spec/unit/type/file/selinux_spec.rb +0 -1
- data/spec/unit/type/file_spec.rb +4 -3
- data/spec/unit/type/k5login_spec.rb +79 -10
- data/spec/unit/type/mount_spec.rb +1 -1
- data/spec/unit/type/nagios_spec.rb +6 -6
- data/spec/unit/type/user_spec.rb +1 -1
- data/spec/unit/type/yumrepo_spec.rb +18 -0
- data/spec/unit/type/zfs_spec.rb +1 -1
- data/spec/unit/type_spec.rb +14 -15
- data/spec/unit/util/docs_spec.rb +1 -1
- data/spec/unit/util/execution_spec.rb +0 -1
- data/spec/unit/util/inifile_spec.rb +35 -4
- data/spec/unit/util/log/destinations_spec.rb +2 -2
- data/spec/unit/util/log_spec.rb +6 -5
- data/spec/unit/util/network_device/cisco/device_spec.rb +2 -2
- data/spec/unit/util/plist_spec.rb +3 -3
- data/spec/unit/util/selinux_spec.rb +2 -2
- data/spec/unit/util/tagging_spec.rb +1 -7
- data/spec/unit/util/windows/adsi_spec.rb +31 -27
- data/spec/unit/util/windows/sid_spec.rb +86 -15
- data/spec/unit/util_spec.rb +2 -2
- data/spec/watchr.rb +0 -1
- data/tasks/benchmark.rake +37 -0
- data/tasks/manpages.rake +1 -1
- metadata +73 -11
- checksums.yaml +0 -7
data/spec/unit/util_spec.rb
CHANGED
@@ -680,7 +680,7 @@ describe Puppet::Util do
|
|
680
680
|
Kernel.expects(:fork).returns(pid).yields
|
681
681
|
|
682
682
|
Puppet::Util.safe_posix_fork do
|
683
|
-
|
683
|
+
"Fork this!"
|
684
684
|
end
|
685
685
|
end
|
686
686
|
|
@@ -837,7 +837,7 @@ describe Puppet::Util do
|
|
837
837
|
end
|
838
838
|
|
839
839
|
it "should fail if no block is given" do
|
840
|
-
expect { subject.replace_file(target.path, 0600) }.to raise_error
|
840
|
+
expect { subject.replace_file(target.path, 0600) }.to raise_error(/block/)
|
841
841
|
end
|
842
842
|
|
843
843
|
it "should replace a file when invoked" do
|
data/spec/watchr.rb
CHANGED
data/tasks/benchmark.rake
CHANGED
@@ -1,6 +1,7 @@
|
|
1
1
|
require 'benchmark'
|
2
2
|
require 'tmpdir'
|
3
3
|
require 'csv'
|
4
|
+
require 'objspace'
|
4
5
|
|
5
6
|
namespace :benchmark do
|
6
7
|
def generate_scenario_tasks(location, name)
|
@@ -99,6 +100,42 @@ namespace :benchmark do
|
|
99
100
|
puts "Generated callgrind file: #{path}"
|
100
101
|
end
|
101
102
|
|
103
|
+
desc "Print a memory profile of the #{name} scenario."
|
104
|
+
task :memory_profile, [*run_args] => :generate do |_, args|
|
105
|
+
require 'memory_profiler'
|
106
|
+
|
107
|
+
report = MemoryProfiler.report do
|
108
|
+
@benchmark.run(args)
|
109
|
+
end
|
110
|
+
|
111
|
+
path = "mem_profile_#{$PID}"
|
112
|
+
report.pretty_print(to_file: path)
|
113
|
+
|
114
|
+
puts "Generated memory profile: #{File.absolute_path(path)}"
|
115
|
+
end
|
116
|
+
|
117
|
+
desc "Generate a heap dump with object allocation tracing of the #{name} scenario."
|
118
|
+
task :heap_dump, [*run_args] => :generate do |_, args|
|
119
|
+
ObjectSpace.trace_object_allocations_start
|
120
|
+
|
121
|
+
if ENV['DISABLE_GC']
|
122
|
+
GC.disable
|
123
|
+
end
|
124
|
+
|
125
|
+
@benchmark.run(args)
|
126
|
+
|
127
|
+
unless ENV['DISABLE_GC']
|
128
|
+
GC.start
|
129
|
+
end
|
130
|
+
|
131
|
+
path = "heap_#{$PID}.json"
|
132
|
+
File.open(path, 'w') do |file|
|
133
|
+
ObjectSpace.dump_all(output: file)
|
134
|
+
end
|
135
|
+
|
136
|
+
puts "Generated heap dump: #{File.absolute_path(path)}"
|
137
|
+
end
|
138
|
+
|
102
139
|
def to_millis(seconds)
|
103
140
|
(seconds * 1000).round
|
104
141
|
end
|
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, Inc." -r'
|
25
25
|
|
26
26
|
# Locate ronn
|
27
27
|
ronn = %x{which ronn}.chomp
|
metadata
CHANGED
@@ -1,20 +1,22 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: puppet
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 5.
|
4
|
+
version: 5.5.0
|
5
|
+
prerelease:
|
5
6
|
platform: universal-darwin
|
6
7
|
authors:
|
7
8
|
- Puppet Labs
|
8
9
|
autorequire:
|
9
10
|
bindir: bin
|
10
11
|
cert_chain: []
|
11
|
-
date: 2018-
|
12
|
+
date: 2018-03-20 00:00:00.000000000 Z
|
12
13
|
dependencies:
|
13
14
|
- !ruby/object:Gem::Dependency
|
14
15
|
name: facter
|
15
16
|
requirement: !ruby/object:Gem::Requirement
|
17
|
+
none: false
|
16
18
|
requirements:
|
17
|
-
- - '>'
|
19
|
+
- - ! '>'
|
18
20
|
- !ruby/object:Gem::Version
|
19
21
|
version: 2.0.1
|
20
22
|
- - <
|
@@ -23,8 +25,9 @@ dependencies:
|
|
23
25
|
type: :runtime
|
24
26
|
prerelease: false
|
25
27
|
version_requirements: !ruby/object:Gem::Requirement
|
28
|
+
none: false
|
26
29
|
requirements:
|
27
|
-
- - '>'
|
30
|
+
- - ! '>'
|
28
31
|
- !ruby/object:Gem::Version
|
29
32
|
version: 2.0.1
|
30
33
|
- - <
|
@@ -33,8 +36,9 @@ dependencies:
|
|
33
36
|
- !ruby/object:Gem::Dependency
|
34
37
|
name: hiera
|
35
38
|
requirement: !ruby/object:Gem::Requirement
|
39
|
+
none: false
|
36
40
|
requirements:
|
37
|
-
- - '>='
|
41
|
+
- - ! '>='
|
38
42
|
- !ruby/object:Gem::Version
|
39
43
|
version: 3.2.1
|
40
44
|
- - <
|
@@ -43,8 +47,9 @@ dependencies:
|
|
43
47
|
type: :runtime
|
44
48
|
prerelease: false
|
45
49
|
version_requirements: !ruby/object:Gem::Requirement
|
50
|
+
none: false
|
46
51
|
requirements:
|
47
|
-
- - '>='
|
52
|
+
- - ! '>='
|
48
53
|
- !ruby/object:Gem::Version
|
49
54
|
version: 3.2.1
|
50
55
|
- - <
|
@@ -53,6 +58,7 @@ dependencies:
|
|
53
58
|
- !ruby/object:Gem::Dependency
|
54
59
|
name: fast_gettext
|
55
60
|
requirement: !ruby/object:Gem::Requirement
|
61
|
+
none: false
|
56
62
|
requirements:
|
57
63
|
- - ~>
|
58
64
|
- !ruby/object:Gem::Version
|
@@ -60,6 +66,7 @@ dependencies:
|
|
60
66
|
type: :runtime
|
61
67
|
prerelease: false
|
62
68
|
version_requirements: !ruby/object:Gem::Requirement
|
69
|
+
none: false
|
63
70
|
requirements:
|
64
71
|
- - ~>
|
65
72
|
- !ruby/object:Gem::Version
|
@@ -67,6 +74,7 @@ dependencies:
|
|
67
74
|
- !ruby/object:Gem::Dependency
|
68
75
|
name: locale
|
69
76
|
requirement: !ruby/object:Gem::Requirement
|
77
|
+
none: false
|
70
78
|
requirements:
|
71
79
|
- - ~>
|
72
80
|
- !ruby/object:Gem::Version
|
@@ -74,13 +82,31 @@ dependencies:
|
|
74
82
|
type: :runtime
|
75
83
|
prerelease: false
|
76
84
|
version_requirements: !ruby/object:Gem::Requirement
|
85
|
+
none: false
|
77
86
|
requirements:
|
78
87
|
- - ~>
|
79
88
|
- !ruby/object:Gem::Version
|
80
89
|
version: '2.1'
|
90
|
+
- !ruby/object:Gem::Dependency
|
91
|
+
name: multi_json
|
92
|
+
requirement: !ruby/object:Gem::Requirement
|
93
|
+
none: false
|
94
|
+
requirements:
|
95
|
+
- - ~>
|
96
|
+
- !ruby/object:Gem::Version
|
97
|
+
version: '1.10'
|
98
|
+
type: :runtime
|
99
|
+
prerelease: false
|
100
|
+
version_requirements: !ruby/object:Gem::Requirement
|
101
|
+
none: false
|
102
|
+
requirements:
|
103
|
+
- - ~>
|
104
|
+
- !ruby/object:Gem::Version
|
105
|
+
version: '1.10'
|
81
106
|
- !ruby/object:Gem::Dependency
|
82
107
|
name: CFPropertyList
|
83
108
|
requirement: !ruby/object:Gem::Requirement
|
109
|
+
none: false
|
84
110
|
requirements:
|
85
111
|
- - ~>
|
86
112
|
- !ruby/object:Gem::Version
|
@@ -88,6 +114,7 @@ dependencies:
|
|
88
114
|
type: :runtime
|
89
115
|
prerelease: false
|
90
116
|
version_requirements: !ruby/object:Gem::Requirement
|
117
|
+
none: false
|
91
118
|
requirements:
|
92
119
|
- - ~>
|
93
120
|
- !ruby/object:Gem::Version
|
@@ -282,11 +309,13 @@ files:
|
|
282
309
|
- lib/puppet/functions/dig.rb
|
283
310
|
- lib/puppet/functions/each.rb
|
284
311
|
- lib/puppet/functions/emerg.rb
|
312
|
+
- lib/puppet/functions/empty.rb
|
285
313
|
- lib/puppet/functions/epp.rb
|
286
314
|
- lib/puppet/functions/err.rb
|
287
315
|
- lib/puppet/functions/eyaml_lookup_key.rb
|
288
316
|
- lib/puppet/functions/filter.rb
|
289
317
|
- lib/puppet/functions/find_file.rb
|
318
|
+
- lib/puppet/functions/flatten.rb
|
290
319
|
- lib/puppet/functions/hiera.rb
|
291
320
|
- lib/puppet/functions/hiera_array.rb
|
292
321
|
- lib/puppet/functions/hiera_hash.rb
|
@@ -296,7 +325,10 @@ files:
|
|
296
325
|
- lib/puppet/functions/include.rb
|
297
326
|
- lib/puppet/functions/info.rb
|
298
327
|
- lib/puppet/functions/inline_epp.rb
|
328
|
+
- lib/puppet/functions/join.rb
|
299
329
|
- lib/puppet/functions/json_data.rb
|
330
|
+
- lib/puppet/functions/keys.rb
|
331
|
+
- lib/puppet/functions/length.rb
|
300
332
|
- lib/puppet/functions/lest.rb
|
301
333
|
- lib/puppet/functions/lookup.rb
|
302
334
|
- lib/puppet/functions/map.rb
|
@@ -320,6 +352,7 @@ files:
|
|
320
352
|
- lib/puppet/functions/type.rb
|
321
353
|
- lib/puppet/functions/unique.rb
|
322
354
|
- lib/puppet/functions/unwrap.rb
|
355
|
+
- lib/puppet/functions/values.rb
|
323
356
|
- lib/puppet/functions/versioncmp.rb
|
324
357
|
- lib/puppet/functions/warning.rb
|
325
358
|
- lib/puppet/functions/with.rb
|
@@ -374,6 +407,7 @@ files:
|
|
374
407
|
- lib/puppet/indirector/facts/facter.rb
|
375
408
|
- lib/puppet/indirector/facts/memory.rb
|
376
409
|
- lib/puppet/indirector/facts/network_device.rb
|
410
|
+
- lib/puppet/indirector/facts/rest.rb
|
377
411
|
- lib/puppet/indirector/facts/store_configs.rb
|
378
412
|
- lib/puppet/indirector/facts/yaml.rb
|
379
413
|
- lib/puppet/indirector/file_bucket_file/file.rb
|
@@ -696,6 +730,7 @@ files:
|
|
696
730
|
- lib/puppet/pops/model/factory.rb
|
697
731
|
- lib/puppet/pops/model/model_label_provider.rb
|
698
732
|
- lib/puppet/pops/model/model_tree_dumper.rb
|
733
|
+
- lib/puppet/pops/model/pn_transformer.rb
|
699
734
|
- lib/puppet/pops/model/tree_dumper.rb
|
700
735
|
- lib/puppet/pops/parser/code_merger.rb
|
701
736
|
- lib/puppet/pops/parser/egrammar.ra
|
@@ -710,9 +745,11 @@ files:
|
|
710
745
|
- lib/puppet/pops/parser/locatable.rb
|
711
746
|
- lib/puppet/pops/parser/locator.rb
|
712
747
|
- lib/puppet/pops/parser/parser_support.rb
|
748
|
+
- lib/puppet/pops/parser/pn_parser.rb
|
713
749
|
- lib/puppet/pops/parser/slurp_support.rb
|
714
750
|
- lib/puppet/pops/patterns.rb
|
715
751
|
- lib/puppet/pops/pcore.rb
|
752
|
+
- lib/puppet/pops/pn.rb
|
716
753
|
- lib/puppet/pops/puppet_stack.rb
|
717
754
|
- lib/puppet/pops/resource/param.rb
|
718
755
|
- lib/puppet/pops/resource/resource_type_impl.rb
|
@@ -1071,6 +1108,7 @@ files:
|
|
1071
1108
|
- lib/puppet/util/http_proxy.rb
|
1072
1109
|
- lib/puppet/util/inifile.rb
|
1073
1110
|
- lib/puppet/util/instance_loader.rb
|
1111
|
+
- lib/puppet/util/json.rb
|
1074
1112
|
- lib/puppet/util/json_lockfile.rb
|
1075
1113
|
- lib/puppet/util/ldap.rb
|
1076
1114
|
- lib/puppet/util/ldap/connection.rb
|
@@ -1238,6 +1276,7 @@ files:
|
|
1238
1276
|
- man/man8/puppet-plugin.8
|
1239
1277
|
- man/man8/puppet-report.8
|
1240
1278
|
- man/man8/puppet-resource.8
|
1279
|
+
- man/man8/puppet-script.8
|
1241
1280
|
- man/man8/puppet-status.8
|
1242
1281
|
- man/man8/puppet.8
|
1243
1282
|
- examples/hiera/README.md
|
@@ -1969,6 +2008,7 @@ files:
|
|
1969
2008
|
- spec/unit/face/generate_spec.rb
|
1970
2009
|
- spec/unit/face/help_spec.rb
|
1971
2010
|
- spec/unit/face/key_spec.rb
|
2011
|
+
- spec/unit/face/man_spec.rb
|
1972
2012
|
- spec/unit/face/module/build_spec.rb
|
1973
2013
|
- spec/unit/face/module/install_spec.rb
|
1974
2014
|
- spec/unit/face/module/list_spec.rb
|
@@ -2019,12 +2059,17 @@ files:
|
|
2019
2059
|
- spec/unit/functions/defined_spec.rb
|
2020
2060
|
- spec/unit/functions/dig_spec.rb
|
2021
2061
|
- spec/unit/functions/each_spec.rb
|
2062
|
+
- spec/unit/functions/empty_spec.rb
|
2022
2063
|
- spec/unit/functions/epp_spec.rb
|
2023
2064
|
- spec/unit/functions/filter_spec.rb
|
2024
2065
|
- spec/unit/functions/find_file_spec.rb
|
2066
|
+
- spec/unit/functions/flatten_spec.rb
|
2025
2067
|
- spec/unit/functions/hiera_spec.rb
|
2026
2068
|
- spec/unit/functions/include_spec.rb
|
2027
2069
|
- spec/unit/functions/inline_epp_spec.rb
|
2070
|
+
- spec/unit/functions/join_spec.rb
|
2071
|
+
- spec/unit/functions/keys_spec.rb
|
2072
|
+
- spec/unit/functions/length_spec.rb
|
2028
2073
|
- spec/unit/functions/lest_spec.rb
|
2029
2074
|
- spec/unit/functions/logging_spec.rb
|
2030
2075
|
- spec/unit/functions/lookup_fixture_spec.rb
|
@@ -2050,6 +2095,7 @@ files:
|
|
2050
2095
|
- spec/unit/functions/type_spec.rb
|
2051
2096
|
- spec/unit/functions/unique_spec.rb
|
2052
2097
|
- spec/unit/functions/unwrap_spec.rb
|
2098
|
+
- spec/unit/functions/values_spec.rb
|
2053
2099
|
- spec/unit/functions/versioncmp_spec.rb
|
2054
2100
|
- spec/unit/functions/with_spec.rb
|
2055
2101
|
- spec/unit/functions4_spec.rb
|
@@ -2092,6 +2138,7 @@ files:
|
|
2092
2138
|
- spec/unit/indirector/face_spec.rb
|
2093
2139
|
- spec/unit/indirector/facts/facter_spec.rb
|
2094
2140
|
- spec/unit/indirector/facts/network_device_spec.rb
|
2141
|
+
- spec/unit/indirector/facts/rest_spec.rb
|
2095
2142
|
- spec/unit/indirector/facts/store_configs_spec.rb
|
2096
2143
|
- spec/unit/indirector/facts/yaml_spec.rb
|
2097
2144
|
- spec/unit/indirector/file_bucket_file/file_spec.rb
|
@@ -2281,6 +2328,7 @@ files:
|
|
2281
2328
|
- spec/unit/pops/merge_strategy_spec.rb
|
2282
2329
|
- spec/unit/pops/migration_spec.rb
|
2283
2330
|
- spec/unit/pops/model/model_spec.rb
|
2331
|
+
- spec/unit/pops/model/pn_transformer_spec.rb
|
2284
2332
|
- spec/unit/pops/parser/epp_parser_spec.rb
|
2285
2333
|
- spec/unit/pops/parser/evaluating_parser_spec.rb
|
2286
2334
|
- spec/unit/pops/parser/lexer2_spec.rb
|
@@ -2300,6 +2348,8 @@ files:
|
|
2300
2348
|
- spec/unit/pops/parser/parser_rspec_helper.rb
|
2301
2349
|
- spec/unit/pops/parser/parser_spec.rb
|
2302
2350
|
- spec/unit/pops/parser/parsing_typed_parameters_spec.rb
|
2351
|
+
- spec/unit/pops/parser/pn_parser_spec.rb
|
2352
|
+
- spec/unit/pops/pn_spec.rb
|
2303
2353
|
- spec/unit/pops/puppet_stack_spec.rb
|
2304
2354
|
- spec/unit/pops/resource/resource_type_impl_spec.rb
|
2305
2355
|
- spec/unit/pops/serialization/packer_spec.rb
|
@@ -2645,7 +2695,6 @@ files:
|
|
2645
2695
|
- locales/puppet.pot
|
2646
2696
|
homepage: https://github.com/puppetlabs/puppet
|
2647
2697
|
licenses: []
|
2648
|
-
metadata: {}
|
2649
2698
|
post_install_message:
|
2650
2699
|
rdoc_options:
|
2651
2700
|
- --title
|
@@ -2656,20 +2705,22 @@ rdoc_options:
|
|
2656
2705
|
require_paths:
|
2657
2706
|
- lib
|
2658
2707
|
required_ruby_version: !ruby/object:Gem::Requirement
|
2708
|
+
none: false
|
2659
2709
|
requirements:
|
2660
|
-
- - '>='
|
2710
|
+
- - ! '>='
|
2661
2711
|
- !ruby/object:Gem::Version
|
2662
2712
|
version: 1.9.3
|
2663
2713
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
2714
|
+
none: false
|
2664
2715
|
requirements:
|
2665
|
-
- - '>'
|
2716
|
+
- - ! '>'
|
2666
2717
|
- !ruby/object:Gem::Version
|
2667
2718
|
version: 1.3.1
|
2668
2719
|
requirements: []
|
2669
2720
|
rubyforge_project: puppet
|
2670
|
-
rubygems_version:
|
2721
|
+
rubygems_version: 1.8.23
|
2671
2722
|
signing_key:
|
2672
|
-
specification_version:
|
2723
|
+
specification_version: 3
|
2673
2724
|
summary: Puppet, an automated configuration management tool
|
2674
2725
|
test_files:
|
2675
2726
|
- spec/fixtures/faulty_face/puppet/face/syntax.rb
|
@@ -3257,6 +3308,7 @@ test_files:
|
|
3257
3308
|
- spec/unit/face/generate_spec.rb
|
3258
3309
|
- spec/unit/face/help_spec.rb
|
3259
3310
|
- spec/unit/face/key_spec.rb
|
3311
|
+
- spec/unit/face/man_spec.rb
|
3260
3312
|
- spec/unit/face/module/build_spec.rb
|
3261
3313
|
- spec/unit/face/module/install_spec.rb
|
3262
3314
|
- spec/unit/face/module/list_spec.rb
|
@@ -3307,12 +3359,17 @@ test_files:
|
|
3307
3359
|
- spec/unit/functions/defined_spec.rb
|
3308
3360
|
- spec/unit/functions/dig_spec.rb
|
3309
3361
|
- spec/unit/functions/each_spec.rb
|
3362
|
+
- spec/unit/functions/empty_spec.rb
|
3310
3363
|
- spec/unit/functions/epp_spec.rb
|
3311
3364
|
- spec/unit/functions/filter_spec.rb
|
3312
3365
|
- spec/unit/functions/find_file_spec.rb
|
3366
|
+
- spec/unit/functions/flatten_spec.rb
|
3313
3367
|
- spec/unit/functions/hiera_spec.rb
|
3314
3368
|
- spec/unit/functions/include_spec.rb
|
3315
3369
|
- spec/unit/functions/inline_epp_spec.rb
|
3370
|
+
- spec/unit/functions/join_spec.rb
|
3371
|
+
- spec/unit/functions/keys_spec.rb
|
3372
|
+
- spec/unit/functions/length_spec.rb
|
3316
3373
|
- spec/unit/functions/lest_spec.rb
|
3317
3374
|
- spec/unit/functions/logging_spec.rb
|
3318
3375
|
- spec/unit/functions/lookup_fixture_spec.rb
|
@@ -3338,6 +3395,7 @@ test_files:
|
|
3338
3395
|
- spec/unit/functions/type_spec.rb
|
3339
3396
|
- spec/unit/functions/unique_spec.rb
|
3340
3397
|
- spec/unit/functions/unwrap_spec.rb
|
3398
|
+
- spec/unit/functions/values_spec.rb
|
3341
3399
|
- spec/unit/functions/versioncmp_spec.rb
|
3342
3400
|
- spec/unit/functions/with_spec.rb
|
3343
3401
|
- spec/unit/functions4_spec.rb
|
@@ -3380,6 +3438,7 @@ test_files:
|
|
3380
3438
|
- spec/unit/indirector/face_spec.rb
|
3381
3439
|
- spec/unit/indirector/facts/facter_spec.rb
|
3382
3440
|
- spec/unit/indirector/facts/network_device_spec.rb
|
3441
|
+
- spec/unit/indirector/facts/rest_spec.rb
|
3383
3442
|
- spec/unit/indirector/facts/store_configs_spec.rb
|
3384
3443
|
- spec/unit/indirector/facts/yaml_spec.rb
|
3385
3444
|
- spec/unit/indirector/file_bucket_file/file_spec.rb
|
@@ -3569,6 +3628,7 @@ test_files:
|
|
3569
3628
|
- spec/unit/pops/merge_strategy_spec.rb
|
3570
3629
|
- spec/unit/pops/migration_spec.rb
|
3571
3630
|
- spec/unit/pops/model/model_spec.rb
|
3631
|
+
- spec/unit/pops/model/pn_transformer_spec.rb
|
3572
3632
|
- spec/unit/pops/parser/epp_parser_spec.rb
|
3573
3633
|
- spec/unit/pops/parser/evaluating_parser_spec.rb
|
3574
3634
|
- spec/unit/pops/parser/lexer2_spec.rb
|
@@ -3588,6 +3648,8 @@ test_files:
|
|
3588
3648
|
- spec/unit/pops/parser/parser_rspec_helper.rb
|
3589
3649
|
- spec/unit/pops/parser/parser_spec.rb
|
3590
3650
|
- spec/unit/pops/parser/parsing_typed_parameters_spec.rb
|
3651
|
+
- spec/unit/pops/parser/pn_parser_spec.rb
|
3652
|
+
- spec/unit/pops/pn_spec.rb
|
3591
3653
|
- spec/unit/pops/puppet_stack_spec.rb
|
3592
3654
|
- spec/unit/pops/resource/resource_type_impl_spec.rb
|
3593
3655
|
- spec/unit/pops/serialization/packer_spec.rb
|
checksums.yaml
DELETED
@@ -1,7 +0,0 @@
|
|
1
|
-
---
|
2
|
-
SHA1:
|
3
|
-
metadata.gz: beb6ab229af84b02ffcc292244423605f44b6cfd
|
4
|
-
data.tar.gz: d022253842436b1a1f2dd3c5b483238a6d63cc7b
|
5
|
-
SHA512:
|
6
|
-
metadata.gz: 2a5ad9d9c3ef6e46635960ed487a04d49a66b31327bc2aaeffd14505a6f170ef717ca6f3b0d5a4a5599c1c65d03f1c345ecb6ce8b693d5737a6c0cb181c4fbfa
|
7
|
-
data.tar.gz: 5d305d54b4c1f5a45c9c909bae3c8c3fd421a30d096722afcb375349efcbe78e20d3017ec09ce962f665b19452066920d70bb9e54beb8c81b8cb09b351b2e4e9
|