puppet 6.19.1-universal-darwin → 7.0.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.
- checksums.yaml +4 -4
- data/Gemfile +1 -1
- data/Gemfile.lock +19 -20
- data/README.md +1 -1
- data/conf/fileserver.conf +5 -10
- data/ext/build_defaults.yaml +1 -1
- data/ext/osx/file_mapping.yaml +0 -5
- data/ext/project_data.yaml +1 -14
- data/ext/redhat/puppet.spec.erb +0 -1
- data/ext/windows/service/daemon.rb +6 -5
- data/install.rb +21 -17
- data/lib/puppet.rb +11 -20
- data/lib/puppet/application.rb +172 -98
- data/lib/puppet/application/device.rb +100 -104
- data/lib/puppet/application/filebucket.rb +15 -11
- data/lib/puppet/application/ssl.rb +1 -1
- data/lib/puppet/configurer.rb +28 -33
- data/lib/puppet/configurer/plugin_handler.rb +21 -19
- data/lib/puppet/defaults.rb +95 -159
- data/lib/puppet/environments.rb +10 -25
- data/lib/puppet/face/config.rb +10 -0
- data/lib/puppet/face/epp.rb +12 -2
- data/lib/puppet/face/facts.rb +66 -6
- data/lib/puppet/face/help.rb +1 -1
- data/lib/puppet/face/plugin.rb +5 -8
- data/lib/puppet/ffi/windows.rb +12 -0
- data/lib/puppet/ffi/windows/api_types.rb +311 -0
- data/lib/puppet/ffi/windows/constants.rb +404 -0
- data/lib/puppet/ffi/windows/functions.rb +628 -0
- data/lib/puppet/ffi/windows/structs.rb +338 -0
- data/lib/puppet/file_serving/configuration.rb +0 -5
- data/lib/puppet/file_serving/configuration/parser.rb +3 -32
- data/lib/puppet/file_serving/http_metadata.rb +1 -1
- data/lib/puppet/file_serving/mount.rb +1 -2
- data/lib/puppet/forge/repository.rb +0 -1
- data/lib/puppet/functions/epp.rb +1 -0
- data/lib/puppet/functions/inline_epp.rb +1 -0
- data/lib/puppet/generate/models/type/type.rb +4 -1
- data/lib/puppet/http.rb +22 -13
- data/lib/puppet/http/client.rb +164 -114
- data/lib/puppet/{network/resolver.rb → http/dns.rb} +2 -2
- data/lib/puppet/http/errors.rb +16 -0
- data/lib/puppet/http/external_client.rb +5 -7
- data/lib/puppet/{network/http → http}/factory.rb +8 -11
- data/lib/puppet/{network/http → http}/pool.rb +61 -26
- data/lib/puppet/{network/http/session.rb → http/pool_entry.rb} +2 -3
- data/lib/puppet/http/proxy.rb +137 -0
- data/lib/puppet/http/redirector.rb +4 -12
- data/lib/puppet/http/resolver.rb +5 -15
- data/lib/puppet/http/resolver/server_list.rb +6 -10
- data/lib/puppet/http/resolver/settings.rb +4 -7
- data/lib/puppet/http/resolver/srv.rb +7 -11
- data/lib/puppet/http/response.rb +36 -54
- data/lib/puppet/http/response_converter.rb +24 -0
- data/lib/puppet/http/response_net_http.rb +42 -0
- data/lib/puppet/http/retry_after_handler.rb +4 -13
- data/lib/puppet/http/service.rb +12 -26
- data/lib/puppet/http/service/ca.rb +11 -22
- data/lib/puppet/http/service/compiler.rb +22 -69
- data/lib/puppet/http/service/file_server.rb +18 -27
- data/lib/puppet/http/service/puppetserver.rb +26 -12
- data/lib/puppet/http/service/report.rb +8 -10
- data/lib/puppet/http/session.rb +11 -20
- data/lib/puppet/{network/http → http}/site.rb +1 -2
- data/lib/puppet/indirector/catalog/rest.rb +2 -4
- data/lib/puppet/indirector/fact_search.rb +60 -0
- data/lib/puppet/indirector/facts/facter.rb +24 -3
- data/lib/puppet/indirector/facts/json.rb +27 -0
- data/lib/puppet/indirector/facts/rest.rb +3 -22
- data/lib/puppet/indirector/facts/yaml.rb +3 -58
- data/lib/puppet/indirector/file_bucket_file/rest.rb +3 -9
- data/lib/puppet/indirector/file_content/rest.rb +2 -6
- data/lib/puppet/indirector/file_metadata/rest.rb +3 -9
- data/lib/puppet/indirector/file_server.rb +1 -8
- data/lib/puppet/indirector/generic_http.rb +0 -11
- data/lib/puppet/indirector/json.rb +5 -1
- data/lib/puppet/indirector/node/json.rb +8 -0
- data/lib/puppet/indirector/node/rest.rb +2 -4
- data/lib/puppet/indirector/report/json.rb +34 -0
- data/lib/puppet/indirector/report/rest.rb +3 -8
- data/lib/puppet/indirector/request.rb +0 -101
- data/lib/puppet/indirector/rest.rb +12 -263
- data/lib/puppet/module_tool/applications.rb +0 -1
- data/lib/puppet/network/authconfig.rb +2 -96
- data/lib/puppet/network/authorization.rb +13 -35
- data/lib/puppet/network/formats.rb +2 -1
- data/lib/puppet/network/http.rb +3 -3
- data/lib/puppet/network/http/api/indirected_routes.rb +2 -20
- data/lib/puppet/network/http/api/master/v3.rb +11 -13
- data/lib/puppet/network/http/connection.rb +247 -316
- data/lib/puppet/network/http/handler.rb +0 -1
- data/lib/puppet/network/http_pool.rb +16 -34
- data/lib/puppet/node.rb +1 -30
- data/lib/puppet/pal/json_catalog_encoder.rb +4 -0
- data/lib/puppet/pal/pal_impl.rb +73 -18
- data/lib/puppet/parser/ast/pops_bridge.rb +0 -38
- data/lib/puppet/parser/compiler.rb +0 -198
- data/lib/puppet/parser/compiler/catalog_validator/relationship_validator.rb +14 -39
- data/lib/puppet/parser/resource.rb +0 -69
- data/lib/puppet/pops/evaluator/evaluator_impl.rb +22 -8
- data/lib/puppet/pops/evaluator/runtime3_resource_support.rb +3 -3
- data/lib/puppet/pops/evaluator/runtime3_support.rb +1 -1
- data/lib/puppet/pops/issues.rb +0 -5
- data/lib/puppet/pops/loader/ruby_legacy_function_instantiator.rb +6 -8
- data/lib/puppet/pops/model/ast.pp +0 -42
- data/lib/puppet/pops/model/ast.rb +0 -290
- data/lib/puppet/pops/model/factory.rb +0 -45
- data/lib/puppet/pops/model/model_label_provider.rb +0 -5
- data/lib/puppet/pops/model/model_tree_dumper.rb +0 -22
- data/lib/puppet/pops/model/pn_transformer.rb +0 -16
- data/lib/puppet/pops/parser/egrammar.ra +0 -56
- data/lib/puppet/pops/parser/eparser.rb +1520 -1712
- data/lib/puppet/pops/parser/lexer2.rb +4 -4
- data/lib/puppet/pops/parser/parser_support.rb +0 -5
- data/lib/puppet/pops/resource/resource_type_impl.rb +2 -24
- data/lib/puppet/pops/types/type_calculator.rb +0 -7
- data/lib/puppet/pops/types/type_parser.rb +0 -4
- data/lib/puppet/pops/types/types.rb +0 -1
- data/lib/puppet/pops/validation/checker4_0.rb +9 -37
- data/lib/puppet/pops/validation/tasks_checker.rb +0 -12
- data/lib/puppet/pops/validation/validator_factory_4_0.rb +1 -2
- data/lib/puppet/provider.rb +0 -13
- data/lib/puppet/provider/nameservice.rb +0 -18
- data/lib/puppet/provider/package/dpkg.rb +0 -10
- data/lib/puppet/provider/package/gem.rb +23 -3
- data/lib/puppet/provider/package/pip.rb +0 -1
- data/lib/puppet/provider/package/pkg.rb +0 -4
- data/lib/puppet/provider/package/portage.rb +1 -1
- data/lib/puppet/provider/package/puppet_gem.rb +1 -4
- data/lib/puppet/provider/service/smf.rb +191 -73
- data/lib/puppet/provider/user/directoryservice.rb +0 -10
- data/lib/puppet/reference/configuration.rb +2 -0
- data/lib/puppet/reference/indirection.rb +1 -1
- data/lib/puppet/resource.rb +1 -89
- data/lib/puppet/resource/catalog.rb +1 -14
- data/lib/puppet/resource/type.rb +3 -119
- data/lib/puppet/resource/type_collection.rb +3 -48
- data/lib/puppet/runtime.rb +1 -2
- data/lib/puppet/settings.rb +45 -33
- data/lib/puppet/settings/base_setting.rb +26 -2
- data/lib/puppet/settings/integer_setting.rb +17 -0
- data/lib/puppet/settings/port_setting.rb +15 -0
- data/lib/puppet/settings/priority_setting.rb +5 -4
- data/lib/puppet/ssl.rb +10 -6
- data/lib/puppet/ssl/base.rb +3 -5
- data/lib/puppet/ssl/certificate.rb +0 -6
- data/lib/puppet/ssl/certificate_request.rb +1 -12
- data/lib/puppet/ssl/certificate_signer.rb +6 -0
- data/lib/puppet/ssl/oids.rb +3 -1
- data/lib/puppet/ssl/ssl_provider.rb +17 -0
- data/lib/puppet/ssl/state_machine.rb +3 -1
- data/lib/puppet/ssl/verifier.rb +2 -0
- data/lib/puppet/test/test_helper.rb +1 -3
- data/lib/puppet/transaction.rb +1 -7
- data/lib/puppet/transaction/report.rb +2 -4
- data/lib/puppet/type.rb +0 -76
- data/lib/puppet/type/file.rb +5 -7
- data/lib/puppet/type/file/checksum.rb +1 -1
- data/lib/puppet/type/file/source.rb +1 -1
- data/lib/puppet/type/filebucket.rb +3 -3
- data/lib/puppet/type/package.rb +5 -13
- data/lib/puppet/util/execution.rb +0 -11
- data/lib/puppet/util/http_proxy.rb +2 -215
- data/lib/puppet/util/monkey_patches.rb +0 -46
- data/lib/puppet/util/rdoc.rb +0 -7
- data/lib/puppet/util/retry_action.rb +1 -1
- data/lib/puppet/util/rubygems.rb +5 -1
- data/lib/puppet/util/run_mode.rb +9 -1
- data/lib/puppet/util/windows.rb +3 -8
- data/lib/puppet/util/windows/daemon.rb +360 -0
- data/lib/puppet/util/windows/error.rb +1 -0
- data/lib/puppet/util/windows/eventlog.rb +4 -9
- data/lib/puppet/util/windows/file.rb +8 -242
- data/lib/puppet/util/windows/monkey_patches/process.rb +414 -0
- data/lib/puppet/util/windows/process.rb +4 -226
- data/lib/puppet/util/windows/service.rb +9 -460
- data/lib/puppet/util/windows/string.rb +12 -13
- data/lib/puppet/util/yaml.rb +0 -22
- data/lib/puppet/vendor/require_vendored.rb +0 -1
- data/lib/puppet/version.rb +1 -1
- data/lib/puppet/x509.rb +5 -1
- data/lib/puppet/x509/cert_provider.rb +29 -1
- data/locales/puppet.pot +531 -1232
- data/man/man5/puppet.conf.5 +37 -97
- data/man/man8/puppet-agent.8 +1 -1
- data/man/man8/puppet-apply.8 +1 -1
- data/man/man8/puppet-catalog.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 +1 -1
- data/man/man8/puppet-doc.8 +1 -1
- data/man/man8/puppet-epp.8 +1 -1
- data/man/man8/puppet-facts.8 +55 -9
- data/man/man8/puppet-filebucket.8 +6 -6
- data/man/man8/puppet-generate.8 +1 -1
- data/man/man8/puppet-help.8 +1 -1
- data/man/man8/puppet-lookup.8 +1 -1
- data/man/man8/puppet-module.8 +1 -58
- data/man/man8/puppet-node.8 +4 -1
- data/man/man8/puppet-parser.8 +1 -1
- data/man/man8/puppet-plugin.8 +1 -1
- data/man/man8/puppet-report.8 +4 -1
- data/man/man8/puppet-resource.8 +1 -1
- data/man/man8/puppet-script.8 +1 -1
- data/man/man8/puppet-ssl.8 +1 -1
- data/man/man8/puppet.8 +2 -2
- data/spec/fixtures/unit/provider/service/smf/{svcs.out → svcs_instances.out} +0 -0
- data/spec/integration/application/agent_spec.rb +24 -11
- data/spec/integration/application/apply_spec.rb +1 -1
- data/spec/integration/application/filebucket_spec.rb +16 -16
- data/spec/integration/application/help_spec.rb +2 -0
- data/spec/integration/application/plugin_spec.rb +23 -1
- data/spec/integration/defaults_spec.rb +7 -3
- data/spec/integration/environments/setting_hooks_spec.rb +1 -1
- data/spec/integration/network/http_pool_spec.rb +3 -21
- data/spec/integration/parser/catalog_spec.rb +0 -38
- data/spec/integration/parser/node_spec.rb +0 -9
- data/spec/integration/parser/pcore_resource_spec.rb +0 -37
- data/spec/integration/type/file_spec.rb +5 -4
- data/spec/integration/util/windows/monkey_patches/process_spec.rb +231 -0
- data/spec/integration/util/windows/security_spec.rb +1 -1
- data/spec/lib/puppet_spec/puppetserver.rb +1 -1
- data/spec/lib/puppet_spec/settings.rb +7 -1
- data/spec/spec_helper.rb +2 -0
- data/spec/unit/agent_spec.rb +0 -2
- data/spec/unit/application/config_spec.rb +224 -4
- data/spec/unit/application/facts_spec.rb +35 -0
- data/spec/unit/application/filebucket_spec.rb +41 -39
- data/spec/unit/application/ssl_spec.rb +2 -2
- data/spec/unit/certificate_factory_spec.rb +1 -1
- data/spec/unit/configurer/downloader_spec.rb +6 -2
- data/spec/unit/configurer/plugin_handler_spec.rb +56 -18
- data/spec/unit/configurer_spec.rb +12 -9
- data/spec/unit/context/trusted_information_spec.rb +2 -6
- data/spec/unit/defaults_spec.rb +77 -28
- data/spec/unit/environments_spec.rb +0 -3
- data/spec/unit/face/config_spec.rb +27 -32
- data/spec/unit/face/facts_spec.rb +4 -0
- data/spec/unit/face/plugin_spec.rb +73 -33
- data/spec/unit/file_bucket/file_spec.rb +1 -1
- data/spec/unit/file_serving/configuration/parser_spec.rb +14 -18
- data/spec/unit/file_serving/configuration_spec.rb +6 -12
- data/spec/unit/functions/camelcase_spec.rb +1 -1
- data/spec/unit/functions/capitalize_spec.rb +1 -1
- data/spec/unit/functions/downcase_spec.rb +1 -1
- data/spec/unit/functions/inline_epp_spec.rb +26 -1
- data/spec/unit/functions/upcase_spec.rb +1 -1
- data/spec/unit/http/client_spec.rb +7 -8
- data/spec/unit/{network/resolver_spec.rb → http/dns_spec.rb} +3 -3
- data/spec/unit/http/external_client_spec.rb +4 -4
- data/spec/unit/{network/http → http}/factory_spec.rb +5 -11
- data/spec/unit/{network/http/session_spec.rb → http/pool_entry_spec.rb} +3 -3
- data/spec/unit/{network/http → http}/pool_spec.rb +12 -17
- data/spec/unit/{util/http_proxy_spec.rb → http/proxy_spec.rb} +2 -69
- data/spec/unit/http/resolver_spec.rb +13 -13
- data/spec/unit/http/service/compiler_spec.rb +49 -62
- data/spec/unit/http/service/file_server_spec.rb +3 -3
- data/spec/unit/http/service/puppetserver_spec.rb +34 -4
- data/spec/unit/http/service_spec.rb +1 -2
- data/spec/unit/http/session_spec.rb +16 -14
- data/spec/unit/{network/http → http}/site_spec.rb +3 -3
- data/spec/unit/indirector/facts/facter_spec.rb +97 -0
- data/spec/unit/indirector/facts/json_spec.rb +255 -0
- data/spec/unit/indirector/file_bucket_file/file_spec.rb +5 -3
- data/spec/unit/indirector/file_content/rest_spec.rb +0 -4
- data/spec/unit/indirector/file_metadata/rest_spec.rb +0 -4
- data/spec/unit/indirector/file_server_spec.rb +1 -15
- data/spec/unit/indirector/node/json_spec.rb +33 -0
- data/spec/{integration/indirector/report/yaml.rb → unit/indirector/report/json_spec.rb} +13 -24
- data/spec/unit/indirector/report/rest_spec.rb +2 -17
- data/spec/unit/indirector/report/yaml_spec.rb +72 -8
- data/spec/unit/indirector/request_spec.rb +0 -264
- data/spec/unit/indirector/rest_spec.rb +98 -752
- data/spec/unit/network/authconfig_spec.rb +2 -132
- data/spec/unit/network/authorization_spec.rb +2 -55
- data/spec/unit/network/formats_spec.rb +4 -4
- data/spec/unit/network/http/api/indirected_routes_spec.rb +1 -97
- data/spec/unit/network/http/api/master/v3_spec.rb +28 -7
- data/spec/unit/network/http/api_spec.rb +10 -0
- data/spec/unit/network/http/connection_spec.rb +19 -41
- data/spec/unit/network/http/handler_spec.rb +0 -6
- data/spec/unit/network/http_pool_spec.rb +0 -4
- data/spec/unit/node/environment_spec.rb +33 -21
- data/spec/unit/node_spec.rb +2 -54
- data/spec/unit/parser/functions/create_resources_spec.rb +2 -20
- data/spec/unit/pops/evaluator/evaluating_parser_spec.rb +4 -7
- data/spec/unit/pops/loaders/loaders_spec.rb +6 -21
- data/spec/unit/pops/parser/parse_application_spec.rb +4 -22
- data/spec/unit/pops/parser/parse_basic_expressions_spec.rb +0 -1
- data/spec/unit/pops/parser/parse_capabilities_spec.rb +8 -21
- data/spec/unit/pops/parser/parse_site_spec.rb +20 -24
- data/spec/unit/pops/resource/resource_type_impl_spec.rb +0 -71
- data/spec/unit/pops/serialization/to_from_hr_spec.rb +1 -1
- data/spec/unit/pops/types/type_calculator_spec.rb +6 -6
- data/spec/unit/pops/types/type_factory_spec.rb +1 -1
- data/spec/unit/pops/validator/validator_spec.rb +61 -46
- data/spec/unit/pops/visitor_spec.rb +1 -1
- data/spec/unit/provider/nameservice_spec.rb +0 -57
- data/spec/unit/provider/package/dpkg_spec.rb +0 -48
- data/spec/unit/provider/package/gem_spec.rb +32 -0
- data/spec/unit/provider/package/puppet_gem_spec.rb +3 -2
- data/spec/unit/provider/service/smf_spec.rb +401 -165
- data/spec/unit/provider/service/windows_spec.rb +0 -1
- data/spec/unit/provider_spec.rb +0 -12
- data/spec/unit/puppet_pal_catalog_spec.rb +45 -0
- data/spec/unit/resource/type_collection_spec.rb +2 -22
- data/spec/unit/resource_spec.rb +0 -56
- data/spec/unit/settings/http_extra_headers_spec.rb +2 -4
- data/spec/unit/settings/integer_setting_spec.rb +42 -0
- data/spec/unit/settings/port_setting_spec.rb +31 -0
- data/spec/unit/settings/priority_setting_spec.rb +4 -4
- data/spec/unit/settings_spec.rb +423 -236
- data/spec/unit/ssl/base_spec.rb +36 -3
- data/spec/unit/ssl/certificate_request_spec.rb +15 -45
- data/spec/unit/ssl/certificate_spec.rb +2 -11
- data/spec/unit/ssl/ssl_provider_spec.rb +11 -8
- data/spec/unit/ssl/state_machine_spec.rb +0 -1
- data/spec/unit/ssl/verifier_spec.rb +0 -21
- data/spec/unit/transaction/report_spec.rb +0 -2
- data/spec/unit/transaction/resource_harness_spec.rb +2 -2
- data/spec/unit/transaction_spec.rb +45 -79
- data/spec/unit/type/file/checksum_spec.rb +6 -6
- data/spec/unit/type/file/content_spec.rb +1 -1
- data/spec/unit/type/file/ensure_spec.rb +1 -1
- data/spec/unit/type/file/mode_spec.rb +1 -1
- data/spec/unit/type/file/source_spec.rb +0 -1
- data/spec/unit/type/file_spec.rb +12 -6
- data/spec/unit/type/package_spec.rb +1 -1
- data/spec/unit/type_spec.rb +20 -0
- data/spec/unit/util/backups_spec.rb +0 -2
- data/spec/unit/util/execution_spec.rb +0 -29
- data/spec/unit/util/monkey_patches_spec.rb +0 -6
- data/spec/unit/util/rubygems_spec.rb +2 -2
- data/spec/unit/util/run_mode_spec.rb +21 -121
- data/spec/unit/util/windows/string_spec.rb +1 -3
- data/spec/unit/util/yaml_spec.rb +0 -54
- data/spec/unit/util_spec.rb +0 -18
- metadata +50 -176
- data/conf/auth.conf +0 -150
- data/lib/puppet/application/cert.rb +0 -76
- data/lib/puppet/application/key.rb +0 -4
- data/lib/puppet/application/man.rb +0 -4
- data/lib/puppet/application/status.rb +0 -4
- data/lib/puppet/face/key.rb +0 -16
- data/lib/puppet/face/man.rb +0 -145
- data/lib/puppet/face/module/build.rb +0 -14
- data/lib/puppet/face/module/generate.rb +0 -14
- data/lib/puppet/face/module/search.rb +0 -103
- data/lib/puppet/face/status.rb +0 -51
- data/lib/puppet/indirector/certificate/file.rb +0 -9
- data/lib/puppet/indirector/certificate/rest.rb +0 -18
- data/lib/puppet/indirector/certificate_request/file.rb +0 -9
- data/lib/puppet/indirector/certificate_request/memory.rb +0 -7
- data/lib/puppet/indirector/certificate_request/rest.rb +0 -11
- data/lib/puppet/indirector/file_content/http.rb +0 -22
- data/lib/puppet/indirector/key/file.rb +0 -46
- data/lib/puppet/indirector/key/memory.rb +0 -7
- data/lib/puppet/indirector/ssl_file.rb +0 -162
- data/lib/puppet/indirector/status.rb +0 -3
- data/lib/puppet/indirector/status/local.rb +0 -12
- data/lib/puppet/indirector/status/rest.rb +0 -27
- data/lib/puppet/module_tool/applications/searcher.rb +0 -29
- data/lib/puppet/network/auth_config_parser.rb +0 -90
- data/lib/puppet/network/authstore.rb +0 -283
- data/lib/puppet/network/http/api/master/v3/authorization.rb +0 -18
- data/lib/puppet/network/http/api/master/v3/environment.rb +0 -88
- data/lib/puppet/network/http/base_pool.rb +0 -36
- data/lib/puppet/network/http/compression.rb +0 -127
- data/lib/puppet/network/http/connection_adapter.rb +0 -184
- data/lib/puppet/network/http/nocache_pool.rb +0 -28
- data/lib/puppet/network/rest_controller.rb +0 -2
- data/lib/puppet/network/rights.rb +0 -210
- data/lib/puppet/parser/compiler/catalog_validator/env_relationship_validator.rb +0 -66
- data/lib/puppet/parser/compiler/catalog_validator/site_validator.rb +0 -22
- data/lib/puppet/parser/environment_compiler.rb +0 -202
- data/lib/puppet/pops/types/enumeration.rb +0 -16
- data/lib/puppet/resource/capability_finder.rb +0 -154
- data/lib/puppet/rest/errors.rb +0 -15
- data/lib/puppet/rest/response.rb +0 -35
- data/lib/puppet/rest/route.rb +0 -85
- data/lib/puppet/rest/routes.rb +0 -135
- data/lib/puppet/ssl/host.rb +0 -505
- data/lib/puppet/ssl/key.rb +0 -61
- data/lib/puppet/ssl/validator.rb +0 -61
- data/lib/puppet/ssl/validator/default_validator.rb +0 -209
- data/lib/puppet/ssl/validator/no_validator.rb +0 -22
- data/lib/puppet/ssl/verifier_adapter.rb +0 -58
- data/lib/puppet/status.rb +0 -40
- data/lib/puppet/util/connection.rb +0 -88
- data/lib/puppet/util/ssl.rb +0 -83
- data/lib/puppet/util/windows/api_types.rb +0 -309
- data/lib/puppet/util/windows/monkey_patches/dir.rb +0 -40
- data/lib/puppet/vendor/load_pathspec.rb +0 -1
- data/lib/puppet/vendor/pathspec/CHANGELOG.md +0 -2
- data/lib/puppet/vendor/pathspec/LICENSE +0 -201
- data/lib/puppet/vendor/pathspec/PUPPET_README.md +0 -6
- data/lib/puppet/vendor/pathspec/README.md +0 -53
- data/lib/puppet/vendor/pathspec/lib/pathspec.rb +0 -122
- data/lib/puppet/vendor/pathspec/lib/pathspec/gitignorespec.rb +0 -275
- data/lib/puppet/vendor/pathspec/lib/pathspec/regexspec.rb +0 -17
- data/lib/puppet/vendor/pathspec/lib/pathspec/spec.rb +0 -14
- data/man/man8/puppet-key.8 +0 -126
- data/man/man8/puppet-man.8 +0 -76
- data/man/man8/puppet-status.8 +0 -108
- data/spec/integration/application/config_spec.rb +0 -74
- data/spec/integration/network/authconfig_spec.rb +0 -256
- data/spec/integration/util/windows/monkey_patches/dir_spec.rb +0 -11
- data/spec/unit/application/man_spec.rb +0 -52
- data/spec/unit/capability_spec.rb +0 -414
- data/spec/unit/face/catalog_spec.rb +0 -6
- data/spec/unit/face/key_spec.rb +0 -9
- data/spec/unit/face/module/search_spec.rb +0 -231
- data/spec/unit/face/module_spec.rb +0 -3
- data/spec/unit/face/status_spec.rb +0 -9
- data/spec/unit/indirector/certificate/file_spec.rb +0 -14
- data/spec/unit/indirector/certificate/rest_spec.rb +0 -61
- data/spec/unit/indirector/certificate_request/file_spec.rb +0 -14
- data/spec/unit/indirector/certificate_request/rest_spec.rb +0 -25
- data/spec/unit/indirector/key/file_spec.rb +0 -79
- data/spec/unit/indirector/ssl_file_spec.rb +0 -305
- data/spec/unit/indirector/status/local_spec.rb +0 -10
- data/spec/unit/indirector/status/rest_spec.rb +0 -50
- data/spec/unit/module_tool/applications/searcher_spec.rb +0 -38
- data/spec/unit/network/auth_config_parser_spec.rb +0 -115
- data/spec/unit/network/authstore_spec.rb +0 -422
- data/spec/unit/network/http/api/master/v3/authorization_spec.rb +0 -57
- data/spec/unit/network/http/api/master/v3/environment_spec.rb +0 -185
- data/spec/unit/network/http/compression_spec.rb +0 -240
- data/spec/unit/network/http/nocache_pool_spec.rb +0 -64
- data/spec/unit/network/http_spec.rb +0 -9
- data/spec/unit/network/rights_spec.rb +0 -439
- data/spec/unit/parser/environment_compiler_spec.rb +0 -730
- data/spec/unit/pops/types/enumeration_spec.rb +0 -51
- data/spec/unit/resource/capability_finder_spec.rb +0 -143
- data/spec/unit/rest/route_spec.rb +0 -132
- data/spec/unit/ssl/host_spec.rb +0 -650
- data/spec/unit/ssl/key_spec.rb +0 -173
- data/spec/unit/ssl/validator_spec.rb +0 -278
- data/spec/unit/status_spec.rb +0 -45
- data/spec/unit/util/ssl_spec.rb +0 -91
@@ -1,16 +1,15 @@
|
|
1
|
-
|
1
|
+
module Puppet
|
2
|
+
module Util
|
3
|
+
module Windows
|
4
|
+
module String
|
5
|
+
def wide_string(str)
|
6
|
+
# if given a nil string, assume caller wants to pass a nil pointer to win32
|
7
|
+
return nil if str.nil?
|
2
8
|
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
# for a string to contain a single trailing null byte, followed by garbage
|
9
|
-
# causing buffer overruns.
|
10
|
-
#
|
11
|
-
# See http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?revision=41920&view=revision
|
12
|
-
newstr = str + "\0".encode(str.encoding)
|
13
|
-
newstr.encode!('UTF-16LE')
|
9
|
+
str.encode('UTF-16LE')
|
10
|
+
end
|
11
|
+
module_function :wide_string
|
12
|
+
end
|
13
|
+
end
|
14
14
|
end
|
15
|
-
module_function :wide_string
|
16
15
|
end
|
data/lib/puppet/util/yaml.rb
CHANGED
@@ -42,28 +42,6 @@ module Puppet::Util::Yaml
|
|
42
42
|
safe_load(yaml, allowed_classes, filename)
|
43
43
|
end
|
44
44
|
|
45
|
-
# @deprecated Use {#safe_load_file} instead.
|
46
|
-
def self.load_file(filename, default_value = false, strip_classes = false)
|
47
|
-
Puppet.deprecation_warning(_("Puppet::Util::Yaml.load_file is deprecated. Use safe_load_file instead."))
|
48
|
-
|
49
|
-
if(strip_classes) then
|
50
|
-
data = YAML::parse_file(filename)
|
51
|
-
data.root.each do |o|
|
52
|
-
if o.respond_to?(:tag=) and
|
53
|
-
o.tag != nil and
|
54
|
-
o.tag.start_with?("!ruby")
|
55
|
-
o.tag = nil
|
56
|
-
end
|
57
|
-
end
|
58
|
-
data.to_ruby || default_value
|
59
|
-
else
|
60
|
-
yaml = YAML.load_file(filename)
|
61
|
-
yaml || default_value
|
62
|
-
end
|
63
|
-
rescue *YamlLoadExceptions => detail
|
64
|
-
raise YamlLoadError.new(detail.message, detail)
|
65
|
-
end
|
66
|
-
|
67
45
|
def self.dump(structure, filename)
|
68
46
|
Puppet::FileSystem.replace_file(filename, 0660) do |fh|
|
69
47
|
YAML.dump(structure, fh)
|
data/lib/puppet/version.rb
CHANGED
data/lib/puppet/x509.rb
CHANGED
@@ -1,7 +1,11 @@
|
|
1
1
|
require 'puppet'
|
2
2
|
require 'puppet/ssl/openssl_loader'
|
3
3
|
|
4
|
-
|
4
|
+
# Responsible for loading and saving certificates and private keys.
|
5
|
+
#
|
6
|
+
# @see Puppet::X509::CertProvider
|
7
|
+
# @api private
|
8
|
+
module Puppet::X509
|
5
9
|
require 'puppet/x509/pem_store'
|
6
10
|
require 'puppet/x509/cert_provider'
|
7
11
|
end
|
@@ -1,6 +1,11 @@
|
|
1
1
|
require 'puppet/x509'
|
2
2
|
|
3
|
-
# Class for loading and saving cert related objects.
|
3
|
+
# Class for loading and saving cert related objects. By default the provider
|
4
|
+
# loads and saves based on puppet's default settings, such as `Puppet[:localcacert]`.
|
5
|
+
# The providers sets the permissions on files it saves, such as the private key.
|
6
|
+
# All of the `load_*` methods take an optional `required` parameter. If an object
|
7
|
+
# doesn't exist, then by default the provider returns `nil`. However, if the
|
8
|
+
# `required` parameter is true, then an exception will be raised instead.
|
4
9
|
#
|
5
10
|
# @api private
|
6
11
|
class Puppet::X509::CertProvider
|
@@ -32,6 +37,7 @@ class Puppet::X509::CertProvider
|
|
32
37
|
#
|
33
38
|
# @param certs [Array<OpenSSL::X509::Certificate>] Array of CA certs to save
|
34
39
|
# @raise [Puppet::Error] if the certs cannot be saved
|
40
|
+
#
|
35
41
|
# @api private
|
36
42
|
def save_cacerts(certs)
|
37
43
|
save_pem(certs.map(&:to_pem).join, @capath, **permissions_for_setting(:localcacert))
|
@@ -45,6 +51,7 @@ class Puppet::X509::CertProvider
|
|
45
51
|
# @return (see #load_cacerts_from_pem)
|
46
52
|
# @raise (see #load_cacerts_from_pem)
|
47
53
|
# @raise [Puppet::Error] if the certs cannot be loaded
|
54
|
+
#
|
48
55
|
# @api private
|
49
56
|
def load_cacerts(required: false)
|
50
57
|
pem = load_pem(@capath)
|
@@ -61,6 +68,7 @@ class Puppet::X509::CertProvider
|
|
61
68
|
# @param pem [String] PEM encoded certificate(s)
|
62
69
|
# @return [Array<OpenSSL::X509::Certificate>] Array of CA certs
|
63
70
|
# @raise [OpenSSL::X509::CertificateError] The `pem` text does not contain a valid cert
|
71
|
+
#
|
64
72
|
# @api private
|
65
73
|
def load_cacerts_from_pem(pem)
|
66
74
|
# TRANSLATORS 'PEM' is an acronym and shouldn't be translated
|
@@ -75,6 +83,7 @@ class Puppet::X509::CertProvider
|
|
75
83
|
#
|
76
84
|
# @param crls [Array<OpenSSL::X509::CRL>] Array of CRLs to save
|
77
85
|
# @raise [Puppet::Error] if the CRLs cannot be saved
|
86
|
+
#
|
78
87
|
# @api private
|
79
88
|
def save_crls(crls)
|
80
89
|
save_pem(crls.map(&:to_pem).join, @crlpath, **permissions_for_setting(:hostcrl))
|
@@ -88,6 +97,7 @@ class Puppet::X509::CertProvider
|
|
88
97
|
# @return (see #load_crls_from_pem)
|
89
98
|
# @raise (see #load_crls_from_pem)
|
90
99
|
# @raise [Puppet::Error] if the CRLs cannot be loaded
|
100
|
+
#
|
91
101
|
# @api private
|
92
102
|
def load_crls(required: false)
|
93
103
|
pem = load_pem(@crlpath)
|
@@ -104,6 +114,7 @@ class Puppet::X509::CertProvider
|
|
104
114
|
# @param pem [String] PEM encoded CRL(s)
|
105
115
|
# @return [Array<OpenSSL::X509::CRL>] Array of CRLs
|
106
116
|
# @raise [OpenSSL::X509::CRLError] The `pem` text does not contain a valid CRL
|
117
|
+
#
|
107
118
|
# @api private
|
108
119
|
def load_crls_from_pem(pem)
|
109
120
|
# TRANSLATORS 'PEM' is an acronym and shouldn't be translated
|
@@ -118,6 +129,8 @@ class Puppet::X509::CertProvider
|
|
118
129
|
#
|
119
130
|
# @return [Time, nil] Time when the CRL was last updated, or nil if we don't
|
120
131
|
# have a CRL
|
132
|
+
#
|
133
|
+
# @api private
|
121
134
|
def crl_last_update
|
122
135
|
stat = Puppet::FileSystem.stat(@crlpath)
|
123
136
|
Time.at(stat.mtime)
|
@@ -129,6 +142,7 @@ class Puppet::X509::CertProvider
|
|
129
142
|
#
|
130
143
|
# @param time [Time] The last updated time
|
131
144
|
#
|
145
|
+
# @api private
|
132
146
|
def crl_last_update=(time)
|
133
147
|
Puppet::FileSystem.touch(@crlpath, mtime: time)
|
134
148
|
end
|
@@ -142,6 +156,7 @@ class Puppet::X509::CertProvider
|
|
142
156
|
# from the password, and use that to encrypt the private key. If nil,
|
143
157
|
# save the private key unencrypted.
|
144
158
|
# @raise [Puppet::Error] if the private key cannot be saved
|
159
|
+
#
|
145
160
|
# @api private
|
146
161
|
def save_private_key(name, key, password: nil)
|
147
162
|
pem = if password
|
@@ -167,6 +182,7 @@ class Puppet::X509::CertProvider
|
|
167
182
|
# @return (see #load_private_key_from_pem)
|
168
183
|
# @raise (see #load_private_key_from_pem)
|
169
184
|
# @raise [Puppet::Error] if the private key cannot be loaded
|
185
|
+
#
|
170
186
|
# @api private
|
171
187
|
def load_private_key(name, required: false, password: nil)
|
172
188
|
path = @hostprivkey || to_path(@privatekeydir, name)
|
@@ -187,6 +203,7 @@ class Puppet::X509::CertProvider
|
|
187
203
|
# not specified, then the key cannot be loaded.
|
188
204
|
# @return [OpenSSL::PKey::RSA, OpenSSL::PKey::EC] The private key
|
189
205
|
# @raise [OpenSSL::PKey::PKeyError] The `pem` text does not contain a valid key
|
206
|
+
#
|
190
207
|
# @api private
|
191
208
|
def load_private_key_from_pem(pem, password: nil)
|
192
209
|
# set a non-nil password to ensure openssl doesn't prompt
|
@@ -216,6 +233,8 @@ class Puppet::X509::CertProvider
|
|
216
233
|
#
|
217
234
|
# @return [String, nil] The private key password as a binary string or nil
|
218
235
|
# if there is none.
|
236
|
+
#
|
237
|
+
# @api private
|
219
238
|
def load_private_key_password
|
220
239
|
Puppet::FileSystem.read(Puppet[:passfile], :encoding => Encoding::BINARY)
|
221
240
|
rescue Errno::ENOENT
|
@@ -227,6 +246,7 @@ class Puppet::X509::CertProvider
|
|
227
246
|
# @param name [String] The client cert identity
|
228
247
|
# @param cert [OpenSSL::X509::Certificate] The cert to save
|
229
248
|
# @raise [Puppet::Error] if the client cert cannot be saved
|
249
|
+
#
|
230
250
|
# @api private
|
231
251
|
def save_client_cert(name, cert)
|
232
252
|
path = @hostcert || to_path(@certdir, name)
|
@@ -242,6 +262,7 @@ class Puppet::X509::CertProvider
|
|
242
262
|
# @return (see #load_request_from_pem)
|
243
263
|
# @raise (see #load_client_cert_from_pem)
|
244
264
|
# @raise [Puppet::Error] if the client cert cannot be loaded
|
265
|
+
#
|
245
266
|
# @api private
|
246
267
|
def load_client_cert(name, required: false)
|
247
268
|
path = @hostcert || to_path(@certdir, name)
|
@@ -259,6 +280,7 @@ class Puppet::X509::CertProvider
|
|
259
280
|
# @param pem [String] PEM encoded cert
|
260
281
|
# @return [OpenSSL::X509::Certificate] the certificate
|
261
282
|
# @raise [OpenSSL::X509::CertificateError] The `pem` text does not contain a valid cert
|
283
|
+
#
|
262
284
|
# @api private
|
263
285
|
def load_client_cert_from_pem(pem)
|
264
286
|
OpenSSL::X509::Certificate.new(pem)
|
@@ -270,6 +292,7 @@ class Puppet::X509::CertProvider
|
|
270
292
|
# @param private_key [OpenSSL::PKey::RSA] private key
|
271
293
|
# @return [Puppet::X509::Request] The request
|
272
294
|
#
|
295
|
+
# @api private
|
273
296
|
def create_request(name, private_key)
|
274
297
|
options = {}
|
275
298
|
|
@@ -292,6 +315,7 @@ class Puppet::X509::CertProvider
|
|
292
315
|
# @param name [String] the request identity
|
293
316
|
# @param csr [OpenSSL::X509::Request] the request
|
294
317
|
# @raise [Puppet::Error] if the cert request cannot be saved
|
318
|
+
#
|
295
319
|
# @api private
|
296
320
|
def save_request(name, csr)
|
297
321
|
path = to_path(@requestdir, name)
|
@@ -306,6 +330,7 @@ class Puppet::X509::CertProvider
|
|
306
330
|
# @return (see #load_request_from_pem)
|
307
331
|
# @raise (see #load_request_from_pem)
|
308
332
|
# @raise [Puppet::Error] if the cert request cannot be saved
|
333
|
+
#
|
309
334
|
# @api private
|
310
335
|
def load_request(name)
|
311
336
|
path = to_path(@requestdir, name)
|
@@ -319,6 +344,8 @@ class Puppet::X509::CertProvider
|
|
319
344
|
#
|
320
345
|
# @param name [String] The request identity
|
321
346
|
# @return [Boolean] true if the CSR was deleted
|
347
|
+
#
|
348
|
+
# @api private
|
322
349
|
def delete_request(name)
|
323
350
|
path = to_path(@requestdir, name)
|
324
351
|
delete_pem(path)
|
@@ -331,6 +358,7 @@ class Puppet::X509::CertProvider
|
|
331
358
|
# @param pem [String] PEM encoded request
|
332
359
|
# @return [OpenSSL::X509::Request] the request
|
333
360
|
# @raise [OpenSSL::X509::RequestError] The `pem` text does not contain a valid request
|
361
|
+
#
|
334
362
|
# @api private
|
335
363
|
def load_request_from_pem(pem)
|
336
364
|
OpenSSL::X509::Request.new(pem)
|
data/locales/puppet.pot
CHANGED
@@ -6,11 +6,11 @@
|
|
6
6
|
#, fuzzy
|
7
7
|
msgid ""
|
8
8
|
msgstr ""
|
9
|
-
"Project-Id-Version: Puppet automation framework 6.
|
9
|
+
"Project-Id-Version: Puppet automation framework 6.19.1-404-g6fd33ed69c\n"
|
10
10
|
"\n"
|
11
11
|
"Report-Msgid-Bugs-To: https://tickets.puppetlabs.com\n"
|
12
|
-
"POT-Creation-Date: 2020-10-
|
13
|
-
"PO-Revision-Date: 2020-10-
|
12
|
+
"POT-Creation-Date: 2020-10-29 10:41+0000\n"
|
13
|
+
"PO-Revision-Date: 2020-10-29 10:41+0000\n"
|
14
14
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
15
15
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
16
16
|
"Language: \n"
|
@@ -48,21 +48,21 @@ msgstr ""
|
|
48
48
|
msgid "Config file %{hiera_config} not found, using Hiera defaults"
|
49
49
|
msgstr ""
|
50
50
|
|
51
|
-
#: ../lib/puppet.rb:
|
51
|
+
#: ../lib/puppet.rb:138
|
52
52
|
msgid "Support for ruby version %{version} is deprecated and will be removed in a future release. See https://puppet.com/docs/puppet/latest/system_requirements.html for a list of supported ruby versions."
|
53
53
|
msgstr ""
|
54
54
|
|
55
|
-
#: ../lib/puppet.rb:
|
55
|
+
#: ../lib/puppet.rb:224
|
56
56
|
msgid "The environmentpath setting cannot be empty or nil."
|
57
57
|
msgstr ""
|
58
58
|
|
59
59
|
#. TRANSLATORS: `message` is an already translated string of why SSL failed to initialize
|
60
|
-
#: ../lib/puppet.rb:
|
60
|
+
#: ../lib/puppet.rb:250
|
61
61
|
msgid "Failed to initialize SSL: %{message}"
|
62
62
|
msgstr ""
|
63
63
|
|
64
64
|
#. TRANSLATORS: `puppet agent -t` is a command and should not be translated
|
65
|
-
#: ../lib/puppet.rb:
|
65
|
+
#: ../lib/puppet.rb:252
|
66
66
|
msgid "Run `puppet agent -t`"
|
67
67
|
msgstr ""
|
68
68
|
|
@@ -120,59 +120,59 @@ msgstr ""
|
|
120
120
|
msgid "Failed to acquire lock"
|
121
121
|
msgstr ""
|
122
122
|
|
123
|
-
#: ../lib/puppet/application.rb:
|
123
|
+
#: ../lib/puppet/application.rb:231
|
124
124
|
msgid "Unable to find application '%{application_name}'. %{error}"
|
125
125
|
msgstr ""
|
126
126
|
|
127
|
-
#: ../lib/puppet/application.rb:
|
127
|
+
#: ../lib/puppet/application.rb:252
|
128
128
|
msgid "Unable to load application class '%{class_name}' from file 'puppet/application/%{application_name}.rb'"
|
129
129
|
msgstr ""
|
130
130
|
|
131
|
-
#: ../lib/puppet/application.rb:
|
131
|
+
#: ../lib/puppet/application.rb:305
|
132
132
|
msgid "Invalid environment mode '%{mode_name}'"
|
133
133
|
msgstr ""
|
134
134
|
|
135
|
-
#: ../lib/puppet/application.rb:
|
135
|
+
#: ../lib/puppet/application.rb:405
|
136
136
|
msgid "Could not get application-specific default settings"
|
137
137
|
msgstr ""
|
138
138
|
|
139
|
-
#: ../lib/puppet/application.rb:
|
139
|
+
#: ../lib/puppet/application.rb:411
|
140
140
|
msgid "Could not initialize"
|
141
141
|
msgstr ""
|
142
142
|
|
143
|
-
#: ../lib/puppet/application.rb:
|
143
|
+
#: ../lib/puppet/application.rb:412
|
144
144
|
msgid "Could not parse application options"
|
145
145
|
msgstr ""
|
146
146
|
|
147
|
-
#: ../lib/puppet/application.rb:
|
147
|
+
#: ../lib/puppet/application.rb:413
|
148
148
|
msgid "Could not prepare for execution"
|
149
149
|
msgstr ""
|
150
150
|
|
151
|
-
#: ../lib/puppet/application.rb:
|
151
|
+
#: ../lib/puppet/application.rb:416
|
152
152
|
msgid "`puppet %{name}` is deprecated and will be removed in a future release."
|
153
153
|
msgstr ""
|
154
154
|
|
155
|
-
#: ../lib/puppet/application.rb:
|
155
|
+
#: ../lib/puppet/application.rb:419
|
156
156
|
msgid "Could not configure routes from %{route_file}"
|
157
157
|
msgstr ""
|
158
158
|
|
159
|
-
#: ../lib/puppet/application.rb:
|
159
|
+
#: ../lib/puppet/application.rb:420
|
160
160
|
msgid "Could not log runtime debug info"
|
161
161
|
msgstr ""
|
162
162
|
|
163
|
-
#: ../lib/puppet/application.rb:
|
163
|
+
#: ../lib/puppet/application.rb:421
|
164
164
|
msgid "Could not run"
|
165
165
|
msgstr ""
|
166
166
|
|
167
|
-
#: ../lib/puppet/application.rb:
|
167
|
+
#: ../lib/puppet/application.rb:430
|
168
168
|
msgid "No valid command or main"
|
169
169
|
msgstr ""
|
170
170
|
|
171
|
-
#: ../lib/puppet/application.rb:
|
171
|
+
#: ../lib/puppet/application.rb:483
|
172
172
|
msgid "Could not set logdest to %{dest}."
|
173
173
|
msgstr ""
|
174
174
|
|
175
|
-
#: ../lib/puppet/application.rb:
|
175
|
+
#: ../lib/puppet/application.rb:576
|
176
176
|
msgid "No help available for puppet %{app_name}"
|
177
177
|
msgstr ""
|
178
178
|
|
@@ -238,10 +238,6 @@ msgstr ""
|
|
238
238
|
msgid "Only one file can be applied per run. Skipping %{files}"
|
239
239
|
msgstr ""
|
240
240
|
|
241
|
-
#: ../lib/puppet/application/cert.rb:6
|
242
|
-
msgid "Manage certificates and requests (Disabled)"
|
243
|
-
msgstr ""
|
244
|
-
|
245
241
|
#: ../lib/puppet/application/describe.rb:177
|
246
242
|
msgid "Display help about resource types"
|
247
243
|
msgstr ""
|
@@ -274,23 +270,23 @@ msgstr ""
|
|
274
270
|
msgid "No device found in %{config}"
|
275
271
|
msgstr ""
|
276
272
|
|
277
|
-
#: ../lib/puppet/application/device.rb:
|
273
|
+
#: ../lib/puppet/application/device.rb:314
|
278
274
|
msgid "retrieving resource: %{resource} from %{target} at %{scheme}%{url_host}%{port}%{url_path}"
|
279
275
|
msgstr ""
|
280
276
|
|
281
|
-
#: ../lib/puppet/application/device.rb:
|
277
|
+
#: ../lib/puppet/application/device.rb:329
|
282
278
|
msgid "retrieving facts from %{target} at %{scheme}%{url_host}%{port}%{url_path}"
|
283
279
|
msgstr ""
|
284
280
|
|
285
|
-
#: ../lib/puppet/application/device.rb:
|
281
|
+
#: ../lib/puppet/application/device.rb:352
|
286
282
|
msgid "starting applying configuration to %{target} at %{scheme}%{url_host}%{port}%{url_path}"
|
287
283
|
msgstr ""
|
288
284
|
|
289
|
-
#: ../lib/puppet/application/device.rb:
|
285
|
+
#: ../lib/puppet/application/device.rb:388 ../lib/puppet/application/resource.rb:196
|
290
286
|
msgid "You must specify the type to display"
|
291
287
|
msgstr ""
|
292
288
|
|
293
|
-
#: ../lib/puppet/application/device.rb:
|
289
|
+
#: ../lib/puppet/application/device.rb:389 ../lib/puppet/application/resource.rb:197
|
294
290
|
msgid "Could not find type %{type}"
|
295
291
|
msgstr ""
|
296
292
|
|
@@ -356,27 +352,27 @@ msgstr ""
|
|
356
352
|
msgid "Store and retrieve files in a filebucket"
|
357
353
|
msgstr ""
|
358
354
|
|
359
|
-
#: ../lib/puppet/application/filebucket.rb:
|
355
|
+
#: ../lib/puppet/application/filebucket.rb:225
|
360
356
|
msgid "You must specify a file to back up"
|
361
357
|
msgstr ""
|
362
358
|
|
363
|
-
#: ../lib/puppet/application/filebucket.rb:
|
359
|
+
#: ../lib/puppet/application/filebucket.rb:229
|
364
360
|
msgid "%{file}: no such file"
|
365
361
|
msgstr ""
|
366
362
|
|
367
|
-
#: ../lib/puppet/application/filebucket.rb:
|
363
|
+
#: ../lib/puppet/application/filebucket.rb:233
|
368
364
|
msgid "%{file}: cannot read file"
|
369
365
|
msgstr ""
|
370
366
|
|
371
|
-
#: ../lib/puppet/application/filebucket.rb:
|
367
|
+
#: ../lib/puppet/application/filebucket.rb:255 ../lib/puppet/application/filebucket.rb:278
|
372
368
|
msgid "Need exactly two arguments: filebucket diff <file_a> <file_b>"
|
373
369
|
msgstr ""
|
374
370
|
|
375
|
-
#: ../lib/puppet/application/filebucket.rb:
|
371
|
+
#: ../lib/puppet/application/filebucket.rb:275
|
376
372
|
msgid "Comparing %{checksum_a} %{checksum_b} %{file_a} %{file_b}"
|
377
373
|
msgstr ""
|
378
374
|
|
379
|
-
#: ../lib/puppet/application/filebucket.rb:
|
375
|
+
#: ../lib/puppet/application/filebucket.rb:289
|
380
376
|
msgid "Cancelling"
|
381
377
|
msgstr ""
|
382
378
|
|
@@ -414,7 +410,7 @@ msgstr ""
|
|
414
410
|
msgid "Unknown rendering format '%{format}'"
|
415
411
|
msgstr ""
|
416
412
|
|
417
|
-
#: ../lib/puppet/application/lookup.rb:366 ../lib/puppet/face/epp.rb:
|
413
|
+
#: ../lib/puppet/application/lookup.rb:366 ../lib/puppet/face/epp.rb:530
|
418
414
|
msgid "Incorrect formatted data in %{fact_file} given via the --facts flag"
|
419
415
|
msgstr ""
|
420
416
|
|
@@ -470,7 +466,7 @@ msgstr ""
|
|
470
466
|
msgid "Creating a new EC SSL key for %{name} using curve %{curve}"
|
471
467
|
msgstr ""
|
472
468
|
|
473
|
-
#: ../lib/puppet/application/ssl.rb:157
|
469
|
+
#: ../lib/puppet/application/ssl.rb:157
|
474
470
|
msgid "Creating a new SSL key for %{name}"
|
475
471
|
msgstr ""
|
476
472
|
|
@@ -550,81 +546,81 @@ msgstr ""
|
|
550
546
|
msgid "Applied catalog in %{seconds} seconds"
|
551
547
|
msgstr ""
|
552
548
|
|
553
|
-
#: ../lib/puppet/configurer.rb:
|
549
|
+
#: ../lib/puppet/configurer.rb:225
|
554
550
|
msgid "Could not select a functional puppet server from server_list: '%{server_list}'"
|
555
551
|
msgstr ""
|
556
552
|
|
557
553
|
#. TRANSLATORS 'server_list' is the name of a setting and should not be translated
|
558
|
-
#: ../lib/puppet/configurer.rb:
|
554
|
+
#: ../lib/puppet/configurer.rb:239
|
559
555
|
msgid "Selected puppet server from the `server_list` setting: %{server}:%{port}"
|
560
556
|
msgstr ""
|
561
557
|
|
562
|
-
#: ../lib/puppet/configurer.rb:
|
558
|
+
#: ../lib/puppet/configurer.rb:275
|
563
559
|
msgid "Local environment: '%{local_env}' doesn't match the environment of the cached catalog '%{catalog_env}', switching agent to '%{catalog_env}'."
|
564
560
|
msgstr ""
|
565
561
|
|
566
|
-
#: ../lib/puppet/configurer.rb:
|
562
|
+
#: ../lib/puppet/configurer.rb:320
|
567
563
|
msgid "Local environment: '%{local_env}' doesn't match server specified node environment '%{node_env}', switching agent to '%{node_env}'."
|
568
564
|
msgstr ""
|
569
565
|
|
570
|
-
#: ../lib/puppet/configurer.rb:
|
566
|
+
#: ../lib/puppet/configurer.rb:335
|
571
567
|
msgid "Using configured environment '%{env}'"
|
572
568
|
msgstr ""
|
573
569
|
|
574
|
-
#: ../lib/puppet/configurer.rb:
|
570
|
+
#: ../lib/puppet/configurer.rb:339
|
575
571
|
msgid "Unable to fetch my node definition, but the agent run will continue:"
|
576
572
|
msgstr ""
|
577
573
|
|
578
|
-
#: ../lib/puppet/configurer.rb:
|
574
|
+
#: ../lib/puppet/configurer.rb:367
|
579
575
|
msgid "Not using catalog because its environment '%{catalog_env}' does not match agent specified environment '%{local_env}' and strict_environment_mode is set"
|
580
576
|
msgstr ""
|
581
577
|
|
582
|
-
#: ../lib/puppet/configurer.rb:
|
578
|
+
#: ../lib/puppet/configurer.rb:378
|
583
579
|
msgid "Catalog environment didn't stabilize after %{tries} fetches, aborting run"
|
584
580
|
msgstr ""
|
585
581
|
|
586
|
-
#: ../lib/puppet/configurer.rb:
|
582
|
+
#: ../lib/puppet/configurer.rb:380
|
587
583
|
msgid "Local environment: '%{local_env}' doesn't match server specified environment '%{catalog_env}', restarting agent run with environment '%{catalog_env}'"
|
588
584
|
msgstr ""
|
589
585
|
|
590
|
-
#: ../lib/puppet/configurer.rb:
|
586
|
+
#: ../lib/puppet/configurer.rb:421
|
591
587
|
msgid "Failed to apply catalog: %{detail}"
|
592
588
|
msgstr ""
|
593
589
|
|
594
|
-
#: ../lib/puppet/configurer.rb:
|
590
|
+
#: ../lib/puppet/configurer.rb:450 ../lib/puppet/http/resolver/server_list.rb:63
|
595
591
|
msgid "Puppet server %{host}:%{port} is unavailable: %{code} %{reason}"
|
596
592
|
msgstr ""
|
597
593
|
|
598
594
|
#. TRANSLATORS 'server_list' is the name of a setting and should not be translated
|
599
|
-
#: ../lib/puppet/configurer.rb:
|
595
|
+
#: ../lib/puppet/configurer.rb:454 ../lib/puppet/http/resolver/server_list.rb:66
|
600
596
|
msgid "Unable to connect to server from server_list setting: %{detail}"
|
601
597
|
msgstr ""
|
602
598
|
|
603
|
-
#: ../lib/puppet/configurer.rb:
|
599
|
+
#: ../lib/puppet/configurer.rb:465 ../lib/puppet/face/report.rb:47
|
604
600
|
msgid "Could not send report: %{detail}"
|
605
601
|
msgstr ""
|
606
602
|
|
607
|
-
#: ../lib/puppet/configurer.rb:
|
603
|
+
#: ../lib/puppet/configurer.rb:474
|
608
604
|
msgid "Could not save last run local report: %{detail}"
|
609
605
|
msgstr ""
|
610
606
|
|
611
|
-
#: ../lib/puppet/configurer.rb:
|
607
|
+
#: ../lib/puppet/configurer.rb:493
|
612
608
|
msgid "Uploading facts for %{node} to %{server}"
|
613
609
|
msgstr ""
|
614
610
|
|
615
|
-
#: ../lib/puppet/configurer.rb:
|
611
|
+
#: ../lib/puppet/configurer.rb:501
|
616
612
|
msgid "Failed to submit facts: %{detail}"
|
617
613
|
msgstr ""
|
618
614
|
|
619
|
-
#: ../lib/puppet/configurer.rb:
|
615
|
+
#: ../lib/puppet/configurer.rb:516
|
620
616
|
msgid "Could not run command from %{setting}: %{detail}"
|
621
617
|
msgstr ""
|
622
618
|
|
623
|
-
#: ../lib/puppet/configurer.rb:
|
619
|
+
#: ../lib/puppet/configurer.rb:534
|
624
620
|
msgid "Could not retrieve catalog from cache: %{detail}"
|
625
621
|
msgstr ""
|
626
622
|
|
627
|
-
#: ../lib/puppet/configurer.rb:
|
623
|
+
#: ../lib/puppet/configurer.rb:555
|
628
624
|
msgid "Could not retrieve catalog from remote server: %{detail}"
|
629
625
|
msgstr ""
|
630
626
|
|
@@ -692,43 +688,39 @@ msgstr ""
|
|
692
688
|
msgid "a data type can only have one implementation"
|
693
689
|
msgstr ""
|
694
690
|
|
695
|
-
#: ../lib/puppet/defaults.rb:
|
691
|
+
#: ../lib/puppet/defaults.rb:156
|
696
692
|
msgid "Cannot disable unrecognized warning types '%{invalid}'."
|
697
693
|
msgstr ""
|
698
694
|
|
699
|
-
#: ../lib/puppet/defaults.rb:
|
695
|
+
#: ../lib/puppet/defaults.rb:157
|
700
696
|
msgid "Valid values are '%{values}'."
|
701
697
|
msgstr ""
|
702
698
|
|
703
699
|
#. TRANSLATORS 'data_binding_terminus' is a setting and should not be translated
|
704
|
-
#: ../lib/puppet/defaults.rb:
|
700
|
+
#: ../lib/puppet/defaults.rb:522
|
705
701
|
msgid "Setting 'data_binding_terminus' is deprecated."
|
706
702
|
msgstr ""
|
707
703
|
|
708
704
|
#. TRANSLATORS 'hiera' should not be translated
|
709
|
-
#: ../lib/puppet/defaults.rb:
|
705
|
+
#: ../lib/puppet/defaults.rb:524
|
710
706
|
msgid "Convert custom terminus to hiera 5 API."
|
711
707
|
msgstr ""
|
712
708
|
|
713
709
|
#. TRANSLATORS 'environment_data_provider' is a setting and should not be translated
|
714
|
-
#: ../lib/puppet/defaults.rb:
|
710
|
+
#: ../lib/puppet/defaults.rb:717
|
715
711
|
msgid "Setting 'environment_data_provider' is deprecated."
|
716
712
|
msgstr ""
|
717
713
|
|
718
|
-
#: ../lib/puppet/defaults.rb:
|
714
|
+
#: ../lib/puppet/defaults.rb:802
|
719
715
|
msgid "Certificate names must be lower case"
|
720
716
|
msgstr ""
|
721
717
|
|
722
|
-
#: ../lib/puppet/defaults.rb:
|
723
|
-
msgid "Setting 'ssl_client_ca_auth' is deprecated."
|
724
|
-
msgstr ""
|
725
|
-
|
726
|
-
#: ../lib/puppet/defaults.rb:1127 ../lib/puppet/settings/enum_setting.rb:13 ../lib/puppet/settings/symbolic_enum_setting.rb:14
|
718
|
+
#: ../lib/puppet/defaults.rb:1053 ../lib/puppet/settings/enum_setting.rb:13 ../lib/puppet/settings/symbolic_enum_setting.rb:14
|
727
719
|
msgid "Invalid value '%{value}' for parameter %{name}. Allowed values are '%{allowed_values}'"
|
728
720
|
msgstr ""
|
729
721
|
|
730
722
|
#. TRANSLATORS 'pluginsync' is a setting and should not be translated
|
731
|
-
#: ../lib/puppet/defaults.rb:
|
723
|
+
#: ../lib/puppet/defaults.rb:1895
|
732
724
|
msgid "Setting 'pluginsync' is deprecated."
|
733
725
|
msgstr ""
|
734
726
|
|
@@ -774,7 +766,7 @@ msgstr ""
|
|
774
766
|
msgid "no matching resources found"
|
775
767
|
msgstr ""
|
776
768
|
|
777
|
-
#: ../lib/puppet/face/config.rb:7 ../lib/puppet/face/epp.rb:8 ../lib/puppet/face/facts.rb:6 ../lib/puppet/face/generate.rb:7 ../lib/puppet/face/help.rb:9 ../lib/puppet/face/
|
769
|
+
#: ../lib/puppet/face/config.rb:7 ../lib/puppet/face/epp.rb:8 ../lib/puppet/face/facts.rb:6 ../lib/puppet/face/generate.rb:7 ../lib/puppet/face/help.rb:9 ../lib/puppet/face/module.rb:9 ../lib/puppet/face/node.rb:4 ../lib/puppet/face/parser.rb:6 ../lib/puppet/face/plugin.rb:6 ../lib/puppet/face/report.rb:5 ../lib/puppet/face/resource.rb:5
|
778
770
|
msgid "Apache 2 license; see COPYING"
|
779
771
|
msgstr ""
|
780
772
|
|
@@ -1023,14 +1015,50 @@ msgstr ""
|
|
1023
1015
|
msgid "[<node_certname>]"
|
1024
1016
|
msgstr ""
|
1025
1017
|
|
1026
|
-
#: ../lib/puppet/face/facts.rb:
|
1018
|
+
#: ../lib/puppet/face/facts.rb:39
|
1027
1019
|
msgid "Upload local facts to the puppet master."
|
1028
1020
|
msgstr ""
|
1029
1021
|
|
1030
|
-
#: ../lib/puppet/face/facts.rb:
|
1022
|
+
#: ../lib/puppet/face/facts.rb:77
|
1031
1023
|
msgid "Uploading facts for '%{node}' to '%{server}'"
|
1032
1024
|
msgstr ""
|
1033
1025
|
|
1026
|
+
#: ../lib/puppet/face/facts.rb:87
|
1027
|
+
msgid "Retrieve current node's facts."
|
1028
|
+
msgstr ""
|
1029
|
+
|
1030
|
+
#: ../lib/puppet/face/facts.rb:88
|
1031
|
+
msgid "[<facts>]"
|
1032
|
+
msgstr ""
|
1033
|
+
|
1034
|
+
#: ../lib/puppet/face/facts.rb:104 ../lib/puppet/face/facts.rb:109 ../lib/puppet/face/facts.rb:114 ../lib/puppet/face/module/changes.rb:21
|
1035
|
+
msgid "<path>"
|
1036
|
+
msgstr ""
|
1037
|
+
|
1038
|
+
#: ../lib/puppet/face/facts.rb:106
|
1039
|
+
msgid "The location of the config file for Facter."
|
1040
|
+
msgstr ""
|
1041
|
+
|
1042
|
+
#: ../lib/puppet/face/facts.rb:111
|
1043
|
+
msgid "The path to a directory that contains custom facts."
|
1044
|
+
msgstr ""
|
1045
|
+
|
1046
|
+
#: ../lib/puppet/face/facts.rb:116
|
1047
|
+
msgid "The path to a directory that contains external facts."
|
1048
|
+
msgstr ""
|
1049
|
+
|
1050
|
+
#: ../lib/puppet/face/facts.rb:120
|
1051
|
+
msgid "Disable fact blocking mechanism."
|
1052
|
+
msgstr ""
|
1053
|
+
|
1054
|
+
#: ../lib/puppet/face/facts.rb:124
|
1055
|
+
msgid "Disable fact caching mechanism."
|
1056
|
+
msgstr ""
|
1057
|
+
|
1058
|
+
#: ../lib/puppet/face/facts.rb:128
|
1059
|
+
msgid "Show legacy facts when querying all facts."
|
1060
|
+
msgstr ""
|
1061
|
+
|
1034
1062
|
#: ../lib/puppet/face/generate.rb:9
|
1035
1063
|
msgid "Generates Puppet code from Ruby definitions."
|
1036
1064
|
msgstr ""
|
@@ -1140,52 +1168,10 @@ msgstr ""
|
|
1140
1168
|
msgid "Check error logs."
|
1141
1169
|
msgstr ""
|
1142
1170
|
|
1143
|
-
#: ../lib/puppet/face/key.rb:7
|
1144
|
-
msgid "Create, save, and remove certificate keys."
|
1145
|
-
msgstr ""
|
1146
|
-
|
1147
|
-
#: ../lib/puppet/face/man.rb:10
|
1148
|
-
msgid "Display Puppet manual pages."
|
1149
|
-
msgstr ""
|
1150
|
-
|
1151
|
-
#: ../lib/puppet/face/man.rb:28
|
1152
|
-
msgid "Display the manual page for a Puppet subcommand."
|
1153
|
-
msgstr ""
|
1154
|
-
|
1155
|
-
#: ../lib/puppet/face/man.rb:29
|
1156
|
-
msgid "<subcommand>"
|
1157
|
-
msgstr ""
|
1158
|
-
|
1159
|
-
#. TRANSLATORS '--render-as s' is a command line option and should not be translated
|
1160
|
-
#: ../lib/puppet/face/man.rb:31
|
1161
|
-
msgid ""
|
1162
|
-
" The man data, in Markdown format, suitable for consumption by Ronn.\n"
|
1163
|
-
"\n"
|
1164
|
-
" RENDERING ISSUES: To skip fancy formatting and output the raw Markdown\n"
|
1165
|
-
" text (e.g. for use in a pipeline), call this action with '--render-as s'.\n"
|
1166
|
-
msgstr ""
|
1167
|
-
|
1168
|
-
#. TRANSLATORS 'puppet man' is a specific command line and should not be translated
|
1169
|
-
#: ../lib/puppet/face/man.rb:56
|
1170
|
-
msgid "The 'puppet man' command takes a single subcommand to review the subcommand's manpage"
|
1171
|
-
msgstr ""
|
1172
|
-
|
1173
1171
|
#: ../lib/puppet/face/module.rb:11
|
1174
1172
|
msgid "Creates, installs and searches for modules on the Puppet Forge."
|
1175
1173
|
msgstr ""
|
1176
1174
|
|
1177
|
-
#: ../lib/puppet/face/module/build.rb:3
|
1178
|
-
msgid "Build a module release package."
|
1179
|
-
msgstr ""
|
1180
|
-
|
1181
|
-
#. TRANSLATORS 'Puppet Development Kit' is the name of the software package replacing this action and should not be translated.
|
1182
|
-
#. TRANSLATORS 'Puppet Development Kit' is the name of the software package replacing this action and should not be translated.
|
1183
|
-
#. TRANSLATORS 'Puppet Development Kit' is the name of the software package replacing this action and should not be translated.
|
1184
|
-
#. TRANSLATORS 'Puppet Development Kit' is the name of the software package replacing this action and should not be translated.
|
1185
|
-
#: ../lib/puppet/face/module/build.rb:5 ../lib/puppet/face/module/build.rb:9 ../lib/puppet/face/module/generate.rb:5 ../lib/puppet/face/module/generate.rb:9
|
1186
|
-
msgid "This action has been replaced by Puppet Development Kit. For more information visit https://puppet.com/docs/pdk/latest/pdk.html."
|
1187
|
-
msgstr ""
|
1188
|
-
|
1189
1175
|
#: ../lib/puppet/face/module/changes.rb:3
|
1190
1176
|
msgid "Show modified files of an installed module."
|
1191
1177
|
msgstr ""
|
@@ -1194,10 +1180,6 @@ msgstr ""
|
|
1194
1180
|
msgid "Array of strings representing paths of modified files."
|
1195
1181
|
msgstr ""
|
1196
1182
|
|
1197
|
-
#: ../lib/puppet/face/module/changes.rb:21
|
1198
|
-
msgid "<path>"
|
1199
|
-
msgstr ""
|
1200
|
-
|
1201
1183
|
#: ../lib/puppet/face/module/changes.rb:27
|
1202
1184
|
msgid "Could not find a valid module at %{path}"
|
1203
1185
|
msgstr ""
|
@@ -1210,10 +1192,6 @@ msgstr ""
|
|
1210
1192
|
msgid "%{count} files modified"
|
1211
1193
|
msgstr ""
|
1212
1194
|
|
1213
|
-
#: ../lib/puppet/face/module/generate.rb:3
|
1214
|
-
msgid "Generate boilerplate for a new module."
|
1215
|
-
msgstr ""
|
1216
|
-
|
1217
1195
|
#: ../lib/puppet/face/module/install.rb:8
|
1218
1196
|
msgid "Install a module from the Puppet Forge or a release archive."
|
1219
1197
|
msgstr ""
|
@@ -1289,26 +1267,6 @@ msgstr ""
|
|
1289
1267
|
msgid "invalid"
|
1290
1268
|
msgstr ""
|
1291
1269
|
|
1292
|
-
#: ../lib/puppet/face/module/search.rb:6
|
1293
|
-
msgid "Search the Puppet Forge for a module."
|
1294
|
-
msgstr ""
|
1295
|
-
|
1296
|
-
#: ../lib/puppet/face/module/search.rb:14
|
1297
|
-
msgid "Array of module metadata hashes"
|
1298
|
-
msgstr ""
|
1299
|
-
|
1300
|
-
#: ../lib/puppet/face/module/search.rb:24
|
1301
|
-
msgid "<search_term>"
|
1302
|
-
msgstr ""
|
1303
|
-
|
1304
|
-
#: ../lib/puppet/face/module/search.rb:27
|
1305
|
-
msgid "This action has been deprecated. Please use the Puppet Forge to search for modules."
|
1306
|
-
msgstr ""
|
1307
|
-
|
1308
|
-
#: ../lib/puppet/face/module/search.rb:37
|
1309
|
-
msgid "No results found for '%{term}'."
|
1310
|
-
msgstr ""
|
1311
|
-
|
1312
1270
|
#: ../lib/puppet/face/module/uninstall.rb:3
|
1313
1271
|
msgid "Uninstall a puppet module."
|
1314
1272
|
msgstr ""
|
@@ -1478,11 +1436,11 @@ msgid ""
|
|
1478
1436
|
" the files downloaded, which will be empty if none were retrieved.\n"
|
1479
1437
|
msgstr ""
|
1480
1438
|
|
1481
|
-
#: ../lib/puppet/face/plugin.rb:
|
1439
|
+
#: ../lib/puppet/face/plugin.rb:54
|
1482
1440
|
msgid "No plugins downloaded."
|
1483
1441
|
msgstr ""
|
1484
1442
|
|
1485
|
-
#: ../lib/puppet/face/plugin.rb:
|
1443
|
+
#: ../lib/puppet/face/plugin.rb:56
|
1486
1444
|
msgid "Downloaded these plugins: %{plugins}"
|
1487
1445
|
msgstr ""
|
1488
1446
|
|
@@ -1550,23 +1508,16 @@ msgstr ""
|
|
1550
1508
|
msgid "The same resource object passed as an argument."
|
1551
1509
|
msgstr ""
|
1552
1510
|
|
1553
|
-
#: ../lib/puppet/
|
1554
|
-
msgid "
|
1555
|
-
msgstr ""
|
1556
|
-
|
1557
|
-
#: ../lib/puppet/face/status.rb:15
|
1558
|
-
msgid "Check status of puppet master server."
|
1511
|
+
#: ../lib/puppet/feature/base.rb:19
|
1512
|
+
msgid "Cannot determine basic system flavour"
|
1559
1513
|
msgstr ""
|
1560
1514
|
|
1561
|
-
|
1562
|
-
|
1563
|
-
msgid ""
|
1564
|
-
" A \"true\" response or a low-level connection error. When used from the Ruby\n"
|
1565
|
-
" API: returns a Puppet::Status object.\n"
|
1515
|
+
#: ../lib/puppet/ffi/windows/api_types.rb:86
|
1516
|
+
msgid "Unable to read wide strings with %{null_terminator} terminal nulls"
|
1566
1517
|
msgstr ""
|
1567
1518
|
|
1568
|
-
#: ../lib/puppet/
|
1569
|
-
msgid "
|
1519
|
+
#: ../lib/puppet/ffi/windows/api_types.rb:231
|
1520
|
+
msgid "Bad GUID format."
|
1570
1521
|
msgstr ""
|
1571
1522
|
|
1572
1523
|
#: ../lib/puppet/file_bucket/dipper.rb:39
|
@@ -1638,7 +1589,7 @@ msgstr ""
|
|
1638
1589
|
msgid "Cannot find file: Invalid relative path '%{path}'"
|
1639
1590
|
msgstr ""
|
1640
1591
|
|
1641
|
-
#: ../lib/puppet/file_serving/configuration.rb:
|
1592
|
+
#: ../lib/puppet/file_serving/configuration.rb:104
|
1642
1593
|
msgid "Error parsing fileserver configuration: %{detail}; using old configuration"
|
1643
1594
|
msgstr ""
|
1644
1595
|
|
@@ -1654,31 +1605,23 @@ msgstr ""
|
|
1654
1605
|
msgid "Fileserver configuration file does not use '=' as a separator"
|
1655
1606
|
msgstr ""
|
1656
1607
|
|
1657
|
-
#: ../lib/puppet/file_serving/configuration/parser.rb:
|
1608
|
+
#: ../lib/puppet/file_serving/configuration/parser.rb:40 ../lib/puppet/util/network_device/config.rb:101
|
1658
1609
|
msgid "Invalid argument '%{var}' at %{error_location}"
|
1659
1610
|
msgstr ""
|
1660
1611
|
|
1661
|
-
#: ../lib/puppet/file_serving/configuration/parser.rb:
|
1612
|
+
#: ../lib/puppet/file_serving/configuration/parser.rb:45
|
1662
1613
|
msgid "Invalid entry at %{error_location}: '%{file_text}'"
|
1663
1614
|
msgstr ""
|
1664
1615
|
|
1665
|
-
#: ../lib/puppet/file_serving/configuration/parser.rb:
|
1666
|
-
msgid "allowing %{val} access"
|
1667
|
-
msgstr ""
|
1668
|
-
|
1669
|
-
#: ../lib/puppet/file_serving/configuration/parser.rb:85
|
1670
|
-
msgid "denying %{val} access"
|
1671
|
-
msgstr ""
|
1672
|
-
|
1673
|
-
#: ../lib/puppet/file_serving/configuration/parser.rb:99
|
1616
|
+
#: ../lib/puppet/file_serving/configuration/parser.rb:70
|
1674
1617
|
msgid "%{mount} is already mounted at %{name} at %{error_location}"
|
1675
1618
|
msgstr ""
|
1676
1619
|
|
1677
|
-
#: ../lib/puppet/file_serving/configuration/parser.rb:
|
1620
|
+
#: ../lib/puppet/file_serving/configuration/parser.rb:95
|
1678
1621
|
msgid "Removing mount \"%{mount}\": %{detail}"
|
1679
1622
|
msgstr ""
|
1680
1623
|
|
1681
|
-
#: ../lib/puppet/file_serving/configuration/parser.rb:
|
1624
|
+
#: ../lib/puppet/file_serving/configuration/parser.rb:99
|
1682
1625
|
msgid "The '%{mount}' module can not have a path. Ignoring attempt to set it"
|
1683
1626
|
msgstr ""
|
1684
1627
|
|
@@ -1736,7 +1679,7 @@ msgstr ""
|
|
1736
1679
|
msgid "Cannot manage files of type %{file_type}"
|
1737
1680
|
msgstr ""
|
1738
1681
|
|
1739
|
-
#: ../lib/puppet/file_serving/mount.rb:
|
1682
|
+
#: ../lib/puppet/file_serving/mount.rb:20
|
1740
1683
|
msgid "Invalid mount name format '%{name}'"
|
1741
1684
|
msgstr ""
|
1742
1685
|
|
@@ -2236,64 +2179,68 @@ msgstr ""
|
|
2236
2179
|
msgid "Try the '--graph' option and opening the resulting '.dot' file in OmniGraffle or GraphViz"
|
2237
2180
|
msgstr ""
|
2238
2181
|
|
2239
|
-
#: ../lib/puppet/http/client.rb:
|
2182
|
+
#: ../lib/puppet/http/client.rb:156
|
2240
2183
|
msgid "Request to %{uri} timed out connect operation after %{elapsed} seconds"
|
2241
2184
|
msgstr ""
|
2242
2185
|
|
2243
|
-
#: ../lib/puppet/http/client.rb:
|
2186
|
+
#: ../lib/puppet/http/client.rb:158
|
2244
2187
|
msgid "Request to %{uri} timed out read operation after %{elapsed} seconds"
|
2245
2188
|
msgstr ""
|
2246
2189
|
|
2247
|
-
#: ../lib/puppet/http/client.rb:
|
2190
|
+
#: ../lib/puppet/http/client.rb:160
|
2248
2191
|
msgid "Request to %{uri} interrupted after %{elapsed} seconds"
|
2249
2192
|
msgstr ""
|
2250
2193
|
|
2251
|
-
#: ../lib/puppet/http/client.rb:
|
2194
|
+
#: ../lib/puppet/http/client.rb:166
|
2252
2195
|
msgid "Request to %{uri} failed after %{elapsed} seconds: %{message}"
|
2253
2196
|
msgstr ""
|
2254
2197
|
|
2255
|
-
#: ../lib/puppet/http/client.rb:
|
2198
|
+
#: ../lib/puppet/http/client.rb:369
|
2256
2199
|
msgid "Sleeping for %{interval} seconds before retrying the request"
|
2257
2200
|
msgstr ""
|
2258
2201
|
|
2259
|
-
#: ../lib/puppet/http/client.rb:
|
2202
|
+
#: ../lib/puppet/http/client.rb:419
|
2260
2203
|
msgid "HTTP REST queries cannot handle values of type '%{klass}'"
|
2261
2204
|
msgstr ""
|
2262
2205
|
|
2263
|
-
#: ../lib/puppet/http/errors.rb:
|
2206
|
+
#: ../lib/puppet/http/errors.rb:37
|
2264
2207
|
msgid "Too many HTTP redirections for %{addr}"
|
2265
2208
|
msgstr ""
|
2266
2209
|
|
2267
|
-
#: ../lib/puppet/http/errors.rb:
|
2210
|
+
#: ../lib/puppet/http/errors.rb:45
|
2268
2211
|
msgid "Too many HTTP retries for %{addr}"
|
2269
2212
|
msgstr ""
|
2270
2213
|
|
2271
|
-
#: ../lib/puppet/http/
|
2214
|
+
#: ../lib/puppet/http/pool.rb:84
|
2215
|
+
msgid "Failed to close connection for %{site}: %{detail}"
|
2216
|
+
msgstr ""
|
2217
|
+
|
2218
|
+
#: ../lib/puppet/http/redirector.rb:70
|
2272
2219
|
msgid "Location response header is missing"
|
2273
2220
|
msgstr ""
|
2274
2221
|
|
2275
|
-
#: ../lib/puppet/http/redirector.rb:
|
2222
|
+
#: ../lib/puppet/http/redirector.rb:74
|
2276
2223
|
msgid "Location URI is invalid: %{detail}"
|
2277
2224
|
msgstr ""
|
2278
2225
|
|
2279
|
-
#: ../lib/puppet/http/retry_after_handler.rb:
|
2226
|
+
#: ../lib/puppet/http/retry_after_handler.rb:74
|
2280
2227
|
msgid "Failed to parse Retry-After header '%{retry_after}' as an integer or RFC 2822 date"
|
2281
2228
|
msgstr ""
|
2282
2229
|
|
2283
|
-
#: ../lib/puppet/http/service.rb:
|
2230
|
+
#: ../lib/puppet/http/service.rb:107
|
2284
2231
|
msgid "Ignoring extra header \"%{name}\" as it was previously set."
|
2285
2232
|
msgstr ""
|
2286
2233
|
|
2287
|
-
#: ../lib/puppet/http/service.rb:
|
2234
|
+
#: ../lib/puppet/http/service.rb:110
|
2288
2235
|
msgid "Ignoring extra header \"%{name}\" as it has no value."
|
2289
2236
|
msgstr ""
|
2290
2237
|
|
2291
|
-
#: ../lib/puppet/http/service.rb:
|
2238
|
+
#: ../lib/puppet/http/service.rb:133 ../lib/puppet/indirector/rest.rb:53
|
2292
2239
|
msgid "No content type in http response; cannot parse"
|
2293
2240
|
msgstr ""
|
2294
2241
|
|
2295
2242
|
#. TRANSLATORS "pson", "preferred_serialization_format", and "puppetserver" should not be translated
|
2296
|
-
#: ../lib/puppet/http/service/report.rb:
|
2243
|
+
#: ../lib/puppet/http/service/report.rb:59
|
2297
2244
|
msgid "To submit reports to a server running puppetserver %{server_version}, set preferred_serialization_format to pson"
|
2298
2245
|
msgstr ""
|
2299
2246
|
|
@@ -2442,7 +2389,7 @@ msgstr ""
|
|
2442
2389
|
msgid "Unable to serialize catalog to json, retrying with pson"
|
2443
2390
|
msgstr ""
|
2444
2391
|
|
2445
|
-
#: ../lib/puppet/indirector/catalog/rest.rb:
|
2392
|
+
#: ../lib/puppet/indirector/catalog/rest.rb:32 ../lib/puppet/indirector/facts/rest.rb:20 ../lib/puppet/indirector/file_content/rest.rb:29 ../lib/puppet/indirector/file_metadata/rest.rb:26 ../lib/puppet/indirector/node/rest.rb:23
|
2446
2393
|
msgid "Find %{uri} resulted in 404 with the message: %{body}"
|
2447
2394
|
msgstr ""
|
2448
2395
|
|
@@ -2534,7 +2481,11 @@ msgstr ""
|
|
2534
2481
|
msgid "You cannot save facts to the code store; it is only used for getting facts from Facter"
|
2535
2482
|
msgstr ""
|
2536
2483
|
|
2537
|
-
#: ../lib/puppet/indirector/facts/facter.rb:
|
2484
|
+
#: ../lib/puppet/indirector/facts/facter.rb:36
|
2485
|
+
msgid "puppet facts show requires version 4.0.40 or greater of Facter."
|
2486
|
+
msgstr ""
|
2487
|
+
|
2488
|
+
#: ../lib/puppet/indirector/facts/facter.rb:62
|
2538
2489
|
msgid "Loading facts"
|
2539
2490
|
msgstr ""
|
2540
2491
|
|
@@ -2546,7 +2497,7 @@ msgstr ""
|
|
2546
2497
|
msgid "You cannot save facts to the code store; it is only used for getting facts from a remote device"
|
2547
2498
|
msgstr ""
|
2548
2499
|
|
2549
|
-
#: ../lib/puppet/indirector/facts/rest.rb:
|
2500
|
+
#: ../lib/puppet/indirector/facts/rest.rb:28
|
2550
2501
|
msgid "PUT does not accept options"
|
2551
2502
|
msgstr ""
|
2552
2503
|
|
@@ -2597,19 +2548,11 @@ msgstr ""
|
|
2597
2548
|
msgid "Invalid checksum %{checksum}"
|
2598
2549
|
msgstr ""
|
2599
2550
|
|
2600
|
-
#: ../lib/puppet/indirector/file_content/http.rb:14
|
2601
|
-
msgid "Puppet::Indirector::FileContent::Http is deprecated. Use Puppet::HTTP::Client instead."
|
2602
|
-
msgstr ""
|
2603
|
-
|
2604
2551
|
#: ../lib/puppet/indirector/file_metadata/http.rb:32
|
2605
2552
|
msgid "cannot lookup multiple files"
|
2606
2553
|
msgstr ""
|
2607
2554
|
|
2608
|
-
#: ../lib/puppet/indirector/file_server.rb:
|
2609
|
-
msgid "Denying %{method} request for %{desc} on fileserver mount '%{mount_name}'. Use of auth directives for 'fileserver.conf' mount points is no longer supported. Remove these directives and use the 'auth.conf' file instead for access control."
|
2610
|
-
msgstr ""
|
2611
|
-
|
2612
|
-
#: ../lib/puppet/indirector/file_server.rb:49
|
2555
|
+
#: ../lib/puppet/indirector/file_server.rb:42
|
2613
2556
|
msgid "Could not find filesystem info for file '%{request}' in environment %{env}"
|
2614
2557
|
msgstr ""
|
2615
2558
|
|
@@ -2704,26 +2647,18 @@ msgstr ""
|
|
2704
2647
|
msgid "directory traversal detected in %{json}: %{name}"
|
2705
2648
|
msgstr ""
|
2706
2649
|
|
2707
|
-
#: ../lib/puppet/indirector/json.rb:41 ../lib/puppet/indirector/msgpack.rb:48 ../lib/puppet/indirector/
|
2650
|
+
#: ../lib/puppet/indirector/json.rb:41 ../lib/puppet/indirector/msgpack.rb:48 ../lib/puppet/indirector/yaml.rb:40
|
2708
2651
|
msgid "invalid key"
|
2709
2652
|
msgstr ""
|
2710
2653
|
|
2711
|
-
#: ../lib/puppet/indirector/json.rb:
|
2654
|
+
#: ../lib/puppet/indirector/json.rb:62
|
2712
2655
|
msgid "Could not read JSON data for %{name} %{key}: %{detail}"
|
2713
2656
|
msgstr ""
|
2714
2657
|
|
2715
|
-
#: ../lib/puppet/indirector/json.rb:
|
2658
|
+
#: ../lib/puppet/indirector/json.rb:68
|
2716
2659
|
msgid "Could not parse JSON data for %{name} %{key}: %{detail}"
|
2717
2660
|
msgstr ""
|
2718
2661
|
|
2719
|
-
#: ../lib/puppet/indirector/key/file.rb:29
|
2720
|
-
msgid "Could not remove %{request} public key: %{detail}"
|
2721
|
-
msgstr ""
|
2722
|
-
|
2723
|
-
#: ../lib/puppet/indirector/key/file.rb:43
|
2724
|
-
msgid "Could not write %{request}: %{detail}"
|
2725
|
-
msgstr ""
|
2726
|
-
|
2727
2662
|
#: ../lib/puppet/indirector/memory.rb:14
|
2728
2663
|
msgid "Could not find %{request} to destroy"
|
2729
2664
|
msgstr ""
|
@@ -2740,7 +2675,7 @@ msgstr ""
|
|
2740
2675
|
msgid "Could not destroy %{name} %{request}: %{detail}"
|
2741
2676
|
msgstr ""
|
2742
2677
|
|
2743
|
-
#: ../lib/puppet/indirector/msgpack.rb:47 ../lib/puppet/indirector/
|
2678
|
+
#: ../lib/puppet/indirector/msgpack.rb:47 ../lib/puppet/indirector/yaml.rb:39
|
2744
2679
|
msgid "directory traversal detected in %{indirection}: %{name}"
|
2745
2680
|
msgstr ""
|
2746
2681
|
|
@@ -2769,55 +2704,31 @@ msgstr ""
|
|
2769
2704
|
msgid "Could not load external node results for %{name}: %{detail}"
|
2770
2705
|
msgstr ""
|
2771
2706
|
|
2772
|
-
#: ../lib/puppet/indirector/report/
|
2773
|
-
msgid "Report %{report} failed: %{detail}"
|
2774
|
-
msgstr ""
|
2775
|
-
|
2776
|
-
#: ../lib/puppet/indirector/report/processor.rb:56
|
2777
|
-
msgid "No report named '%{name}'"
|
2778
|
-
msgstr ""
|
2779
|
-
|
2780
|
-
#: ../lib/puppet/indirector/report/rest.rb:36
|
2781
|
-
msgid "Server version %{version} does not accept reports in '%{format}', use `preferred_serialization_format=pson`"
|
2782
|
-
msgstr ""
|
2783
|
-
|
2784
|
-
#: ../lib/puppet/indirector/report/yaml.rb:19
|
2707
|
+
#: ../lib/puppet/indirector/report/json.rb:19 ../lib/puppet/indirector/report/yaml.rb:19
|
2785
2708
|
msgid "replace_file mode: %{mode} is invalid"
|
2786
2709
|
msgstr ""
|
2787
2710
|
|
2788
|
-
#: ../lib/puppet/indirector/report/yaml.rb:31 ../lib/puppet/indirector/yaml.rb:32
|
2711
|
+
#: ../lib/puppet/indirector/report/json.rb:31 ../lib/puppet/indirector/report/yaml.rb:31 ../lib/puppet/indirector/yaml.rb:32
|
2789
2712
|
msgid "Could not save %{indirection} %{request}: %{detail}"
|
2790
2713
|
msgstr ""
|
2791
2714
|
|
2792
|
-
#: ../lib/puppet/indirector/
|
2793
|
-
msgid "
|
2794
|
-
msgstr ""
|
2795
|
-
|
2796
|
-
#: ../lib/puppet/indirector/request.rb:202
|
2797
|
-
msgid "Error connecting to %{srv_server}:%{srv_port}: %{message}"
|
2798
|
-
msgstr ""
|
2799
|
-
|
2800
|
-
#. TRANSLATORS 'server_list' is the name of a setting and should not be translated
|
2801
|
-
#: ../lib/puppet/indirector/request.rb:214
|
2802
|
-
msgid "Selected server from first entry of the `server_list` setting: %{server}"
|
2715
|
+
#: ../lib/puppet/indirector/report/processor.rb:39
|
2716
|
+
msgid "Report %{report} failed: %{detail}"
|
2803
2717
|
msgstr ""
|
2804
2718
|
|
2805
|
-
|
2806
|
-
|
2807
|
-
msgid "Selected server from the `server` setting: %{server}"
|
2719
|
+
#: ../lib/puppet/indirector/report/processor.rb:56
|
2720
|
+
msgid "No report named '%{name}'"
|
2808
2721
|
msgstr ""
|
2809
2722
|
|
2810
|
-
|
2811
|
-
|
2812
|
-
msgid "Selected port from the first entry of the `server_list` setting: %{port}"
|
2723
|
+
#: ../lib/puppet/indirector/report/rest.rb:31
|
2724
|
+
msgid "Server version %{version} does not accept reports in '%{format}', use `preferred_serialization_format=pson`"
|
2813
2725
|
msgstr ""
|
2814
2726
|
|
2815
|
-
|
2816
|
-
|
2817
|
-
msgid "Selected port from the `serverport` setting: %{port}"
|
2727
|
+
#: ../lib/puppet/indirector/request.rb:102
|
2728
|
+
msgid "Could not find indirection '%{indirection}'"
|
2818
2729
|
msgstr ""
|
2819
2730
|
|
2820
|
-
#: ../lib/puppet/indirector/request.rb:
|
2731
|
+
#: ../lib/puppet/indirector/request.rb:165
|
2821
2732
|
msgid "Could not understand URL %{key}: %{detail}"
|
2822
2733
|
msgstr ""
|
2823
2734
|
|
@@ -2829,75 +2740,10 @@ msgstr ""
|
|
2829
2740
|
msgid "Resource instance does not match request key"
|
2830
2741
|
msgstr ""
|
2831
2742
|
|
2832
|
-
#: ../lib/puppet/indirector/rest.rb:
|
2833
|
-
msgid "Puppet::Indirector::Rest#find is deprecated. Use Puppet::HTTP::Client instead."
|
2834
|
-
msgstr ""
|
2835
|
-
|
2836
|
-
#: ../lib/puppet/indirector/rest.rb:154
|
2837
|
-
msgid "Puppet::Indirector::Rest#head is deprecated. Use Puppet::HTTP::Client instead."
|
2838
|
-
msgstr ""
|
2839
|
-
|
2840
|
-
#: ../lib/puppet/indirector/rest.rb:167
|
2841
|
-
msgid "Puppet::Indirector::Rest#search is deprecated. Use Puppet::HTTP::Client instead."
|
2842
|
-
msgstr ""
|
2843
|
-
|
2844
|
-
#: ../lib/puppet/indirector/rest.rb:181
|
2845
|
-
msgid "Puppet::Indirector::Rest#destroy is deprecated. Use Puppet::HTTP::Client instead."
|
2846
|
-
msgstr ""
|
2847
|
-
|
2848
|
-
#: ../lib/puppet/indirector/rest.rb:182
|
2849
|
-
msgid "DELETE does not accept options"
|
2850
|
-
msgstr ""
|
2851
|
-
|
2852
|
-
#: ../lib/puppet/indirector/rest.rb:197
|
2853
|
-
msgid "Puppet::Indirector::Rest#save is deprecated. Use Puppet::HTTP::Client instead."
|
2854
|
-
msgstr ""
|
2855
|
-
|
2856
|
-
#. TRANSLATORS "PSON" should not be translated
|
2857
|
-
#: ../lib/puppet/indirector/rest.rb:235
|
2858
|
-
msgid "Downgrading to PSON for future requests"
|
2859
|
-
msgstr ""
|
2860
|
-
|
2861
|
-
#: ../lib/puppet/indirector/rest.rb:277 ../lib/puppet/rest/response.rb:31
|
2743
|
+
#: ../lib/puppet/indirector/rest.rb:43
|
2862
2744
|
msgid "Error %{code} on SERVER: %{returned_message}"
|
2863
2745
|
msgstr ""
|
2864
2746
|
|
2865
|
-
#: ../lib/puppet/indirector/ssl_file.rb:34
|
2866
|
-
msgid "No file or directory setting provided; terminus %{class_name} cannot function"
|
2867
|
-
msgstr ""
|
2868
|
-
|
2869
|
-
#: ../lib/puppet/indirector/ssl_file.rb:55
|
2870
|
-
msgid "Removing file %{model} %{request} at '%{path}'"
|
2871
|
-
msgstr ""
|
2872
|
-
|
2873
|
-
#: ../lib/puppet/indirector/ssl_file.rb:59
|
2874
|
-
msgid "Could not remove %{request}: %{detail}"
|
2875
|
-
msgstr ""
|
2876
|
-
|
2877
|
-
#: ../lib/puppet/indirector/ssl_file.rb:75
|
2878
|
-
msgid "Cannot save %{request}; parent directory %{dir} does not exist"
|
2879
|
-
msgstr ""
|
2880
|
-
|
2881
|
-
#: ../lib/puppet/indirector/ssl_file.rb:76
|
2882
|
-
msgid "Cannot save %{request}; parent directory %{dir} is not writable"
|
2883
|
-
msgstr ""
|
2884
|
-
|
2885
|
-
#: ../lib/puppet/indirector/ssl_file.rb:121
|
2886
|
-
msgid "Tried to fix SSL files to a file containing uppercase"
|
2887
|
-
msgstr ""
|
2888
|
-
|
2889
|
-
#: ../lib/puppet/indirector/ssl_file.rb:130
|
2890
|
-
msgid "Automatic downcasing and renaming of ssl files is deprecated; please request the file using its correct case: %{full_file}"
|
2891
|
-
msgstr ""
|
2892
|
-
|
2893
|
-
#: ../lib/puppet/indirector/ssl_file.rb:150
|
2894
|
-
msgid "Could not write %{path} to %{setting}: %{detail}"
|
2895
|
-
msgstr ""
|
2896
|
-
|
2897
|
-
#: ../lib/puppet/indirector/ssl_file.rb:153
|
2898
|
-
msgid "You must provide a setting to determine where the files are stored"
|
2899
|
-
msgstr ""
|
2900
|
-
|
2901
2747
|
#: ../lib/puppet/indirector/terminus.rb:37
|
2902
2748
|
msgid "Could not find indirection instance %{name} for %{terminus}"
|
2903
2749
|
msgstr ""
|
@@ -3352,10 +3198,6 @@ msgstr ""
|
|
3352
3198
|
msgid "Installing -- do not interrupt ..."
|
3353
3199
|
msgstr ""
|
3354
3200
|
|
3355
|
-
#: ../lib/puppet/module_tool/applications/searcher.rb:15
|
3356
|
-
msgid "Searching %{host} ..."
|
3357
|
-
msgstr ""
|
3358
|
-
|
3359
3201
|
#: ../lib/puppet/module_tool/applications/uninstaller.rb:92
|
3360
3202
|
msgid "Either the `--ignore_changes` or `--force` argument must be specified to uninstall modules when running in FIPS mode."
|
3361
3203
|
msgstr ""
|
@@ -3765,67 +3607,6 @@ msgstr ""
|
|
3765
3607
|
msgid "No suitable tar implementation found"
|
3766
3608
|
msgstr ""
|
3767
3609
|
|
3768
|
-
#. TRANSLATORS "path" is a configuration file entry and should not be translated
|
3769
|
-
#: ../lib/puppet/network/auth_config_parser.rb:32
|
3770
|
-
msgid "Missing or invalid 'path' before right directive at %{error_location}"
|
3771
|
-
msgstr ""
|
3772
|
-
|
3773
|
-
#: ../lib/puppet/network/auth_config_parser.rb:38 ../lib/puppet/util/network_device/config.rb:71
|
3774
|
-
msgid "Invalid entry at %{error_location}: %{file_text}"
|
3775
|
-
msgstr ""
|
3776
|
-
|
3777
|
-
#: ../lib/puppet/network/auth_config_parser.rb:57
|
3778
|
-
msgid "allowing %{value} access"
|
3779
|
-
msgstr ""
|
3780
|
-
|
3781
|
-
#: ../lib/puppet/network/auth_config_parser.rb:59
|
3782
|
-
msgid "denying %{value} access"
|
3783
|
-
msgstr ""
|
3784
|
-
|
3785
|
-
#: ../lib/puppet/network/auth_config_parser.rb:61
|
3786
|
-
msgid "allowing IP %{value} access"
|
3787
|
-
msgstr ""
|
3788
|
-
|
3789
|
-
#: ../lib/puppet/network/auth_config_parser.rb:63
|
3790
|
-
msgid "denying IP %{value} access"
|
3791
|
-
msgstr ""
|
3792
|
-
|
3793
|
-
#: ../lib/puppet/network/auth_config_parser.rb:65
|
3794
|
-
msgid "allowing 'method' %{value}"
|
3795
|
-
msgstr ""
|
3796
|
-
|
3797
|
-
#: ../lib/puppet/network/auth_config_parser.rb:67
|
3798
|
-
msgid "adding environment %{value}"
|
3799
|
-
msgstr ""
|
3800
|
-
|
3801
|
-
#: ../lib/puppet/network/auth_config_parser.rb:69
|
3802
|
-
msgid "adding authentication %{value}"
|
3803
|
-
msgstr ""
|
3804
|
-
|
3805
|
-
#: ../lib/puppet/network/authconfig.rb:41
|
3806
|
-
msgid "Inserting default '%{acl}' (auth %{auth}) ACL"
|
3807
|
-
msgstr ""
|
3808
|
-
|
3809
|
-
#: ../lib/puppet/network/authconfig.rb:71
|
3810
|
-
msgid "Denying access: %{authorization_failure_exception}"
|
3811
|
-
msgstr ""
|
3812
|
-
|
3813
|
-
#: ../lib/puppet/network/authstore.rb:22
|
3814
|
-
msgid "Name and IP must be passed to 'allowed?'"
|
3815
|
-
msgstr ""
|
3816
|
-
|
3817
|
-
#: ../lib/puppet/network/authstore.rb:37
|
3818
|
-
msgid "defaulting to no access for %{name}"
|
3819
|
-
msgstr ""
|
3820
|
-
|
3821
|
-
#: ../lib/puppet/network/authstore.rb:190
|
3822
|
-
msgid "Invalid declaration type %{type}"
|
3823
|
-
msgstr ""
|
3824
|
-
|
3825
|
-
#: ../lib/puppet/network/authstore.rb:258
|
3826
|
-
msgid "Invalid IP pattern %{value}"
|
3827
|
-
msgstr ""
|
3828
|
-
|
3829
3610
|
#: ../lib/puppet/network/client_request.rb:15
|
3830
3611
|
msgid "Request is not set up; cannot build call"
|
3831
3612
|
msgstr ""
|
@@ -3879,77 +3660,77 @@ msgstr ""
|
|
3879
3660
|
msgid "Serialized YAML did not contain a valid instance of %{klass}"
|
3880
3661
|
msgstr ""
|
3881
3662
|
|
3882
|
-
#: ../lib/puppet/network/http/api/indirected_routes.rb:
|
3663
|
+
#: ../lib/puppet/network/http/api/indirected_routes.rb:42
|
3883
3664
|
msgid "No handler for %{indirection}"
|
3884
3665
|
msgstr ""
|
3885
3666
|
|
3886
|
-
#: ../lib/puppet/network/http/api/indirected_routes.rb:
|
3667
|
+
#: ../lib/puppet/network/http/api/indirected_routes.rb:65
|
3887
3668
|
msgid "The indirection name must be purely alphanumeric, not '%{indirection_name}'"
|
3888
3669
|
msgstr ""
|
3889
3670
|
|
3890
|
-
#: ../lib/puppet/network/http/api/indirected_routes.rb:
|
3671
|
+
#: ../lib/puppet/network/http/api/indirected_routes.rb:75
|
3891
3672
|
msgid "Indirection '%{indirection_name}' does not match url prefix '%{url_prefix}'"
|
3892
3673
|
msgstr ""
|
3893
3674
|
|
3894
|
-
#: ../lib/puppet/network/http/api/indirected_routes.rb:
|
3675
|
+
#: ../lib/puppet/network/http/api/indirected_routes.rb:81
|
3895
3676
|
msgid "Could not find indirection '%{indirection_name}'"
|
3896
3677
|
msgstr ""
|
3897
3678
|
|
3898
|
-
#: ../lib/puppet/network/http/api/indirected_routes.rb:
|
3679
|
+
#: ../lib/puppet/network/http/api/indirected_routes.rb:87
|
3899
3680
|
msgid "An environment parameter must be specified"
|
3900
3681
|
msgstr ""
|
3901
3682
|
|
3902
|
-
#: ../lib/puppet/network/http/api/indirected_routes.rb:
|
3683
|
+
#: ../lib/puppet/network/http/api/indirected_routes.rb:92
|
3903
3684
|
msgid "The environment must be purely alphanumeric, not '%{environment}'"
|
3904
3685
|
msgstr ""
|
3905
3686
|
|
3906
|
-
#: ../lib/puppet/network/http/api/indirected_routes.rb:
|
3687
|
+
#: ../lib/puppet/network/http/api/indirected_routes.rb:103
|
3907
3688
|
msgid "Could not find environment '%{environment}'"
|
3908
3689
|
msgstr ""
|
3909
3690
|
|
3910
|
-
#: ../lib/puppet/network/http/api/indirected_routes.rb:
|
3691
|
+
#: ../lib/puppet/network/http/api/indirected_routes.rb:110
|
3911
3692
|
msgid "No request key specified in %{uri}"
|
3912
3693
|
msgstr ""
|
3913
3694
|
|
3914
|
-
#: ../lib/puppet/network/http/api/indirected_routes.rb:
|
3695
|
+
#: ../lib/puppet/network/http/api/indirected_routes.rb:122
|
3915
3696
|
msgid "Could not find %{value0} %{key}"
|
3916
3697
|
msgstr ""
|
3917
3698
|
|
3918
|
-
#: ../lib/puppet/network/http/api/indirected_routes.rb:
|
3699
|
+
#: ../lib/puppet/network/http/api/indirected_routes.rb:129
|
3919
3700
|
msgid "Rendered result in %{format}"
|
3920
3701
|
msgstr ""
|
3921
3702
|
|
3922
|
-
#: ../lib/puppet/network/http/api/indirected_routes.rb:
|
3703
|
+
#: ../lib/puppet/network/http/api/indirected_routes.rb:135
|
3923
3704
|
msgid "Sent response"
|
3924
3705
|
msgstr ""
|
3925
3706
|
|
3926
|
-
#: ../lib/puppet/network/http/api/indirected_routes.rb:
|
3707
|
+
#: ../lib/puppet/network/http/api/indirected_routes.rb:143
|
3927
3708
|
msgid "Could not find %{indirection} %{key}"
|
3928
3709
|
msgstr ""
|
3929
3710
|
|
3930
|
-
#: ../lib/puppet/network/http/api/indirected_routes.rb:
|
3711
|
+
#: ../lib/puppet/network/http/api/indirected_routes.rb:155
|
3931
3712
|
msgid "Could not find instances in %{indirection} with '%{key}'"
|
3932
3713
|
msgstr ""
|
3933
3714
|
|
3934
|
-
#: ../lib/puppet/network/http/api/indirected_routes.rb:
|
3715
|
+
#: ../lib/puppet/network/http/api/indirected_routes.rb:203 ../lib/puppet/network/http/request.rb:61
|
3935
3716
|
msgid "No supported formats are acceptable (Accept: %{accepted_formats})"
|
3936
3717
|
msgstr ""
|
3937
3718
|
|
3938
|
-
#: ../lib/puppet/network/http/api/indirected_routes.rb:
|
3719
|
+
#: ../lib/puppet/network/http/api/indirected_routes.rb:228
|
3939
3720
|
msgid "The request body is invalid: %{message}"
|
3940
3721
|
msgstr ""
|
3941
3722
|
|
3942
3723
|
#. TRANSLATORS "mime-type" is a keyword and should not be translated
|
3943
3724
|
#. TRANSLATORS "mime-type" is a keyword and should not be translated
|
3944
|
-
#: ../lib/puppet/network/http/api/indirected_routes.rb:
|
3725
|
+
#: ../lib/puppet/network/http/api/indirected_routes.rb:234 ../lib/puppet/network/http/request.rb:32
|
3945
3726
|
msgid "Client sent a mime-type (%{header}) that doesn't correspond to a format we support"
|
3946
3727
|
msgstr ""
|
3947
3728
|
|
3948
|
-
#: ../lib/puppet/network/http/api/indirected_routes.rb:
|
3729
|
+
#: ../lib/puppet/network/http/api/indirected_routes.rb:240
|
3949
3730
|
msgid "No support for http method %{http_method}"
|
3950
3731
|
msgstr ""
|
3951
3732
|
|
3952
|
-
#: ../lib/puppet/network/http/api/indirected_routes.rb:
|
3733
|
+
#: ../lib/puppet/network/http/api/indirected_routes.rb:245
|
3953
3734
|
msgid "No support for plurality %{indirection} for %{http_method} operations"
|
3954
3735
|
msgstr ""
|
3955
3736
|
|
@@ -3957,92 +3738,18 @@ msgstr ""
|
|
3957
3738
|
msgid "Not a valid indirection type"
|
3958
3739
|
msgstr ""
|
3959
3740
|
|
3960
|
-
#: ../lib/puppet/network/http/
|
3961
|
-
msgid "%{env_name} is not a known environment"
|
3962
|
-
msgstr ""
|
3963
|
-
|
3964
|
-
#: ../lib/puppet/network/http/api/master/v3/environment.rb:43
|
3965
|
-
msgid "Application %{application} assigns nodes to non-existent components: %{component_list}"
|
3966
|
-
msgstr ""
|
3967
|
-
|
3968
|
-
#: ../lib/puppet/network/http/api/master/v3/environment.rb:49
|
3969
|
-
msgid "Application %{application} has components without assigned nodes: %{component_list}"
|
3970
|
-
msgstr ""
|
3971
|
-
|
3972
|
-
#: ../lib/puppet/network/http/api/master/v3/environment.rb:58
|
3973
|
-
msgid "Application %{app} assigns multiple nodes to component %{comp}"
|
3974
|
-
msgstr ""
|
3975
|
-
|
3976
|
-
#: ../lib/puppet/network/http/compression.rb:23 ../lib/puppet/network/http/compression.rb:27
|
3977
|
-
msgid "Puppet::Network::HTTP::Compression::Active#uncompress_body is deprecated."
|
3978
|
-
msgstr ""
|
3979
|
-
|
3980
|
-
#: ../lib/puppet/network/http/compression.rb:32 ../lib/puppet/network/http/compression.rb:46
|
3981
|
-
msgid "Unknown content encoding - %{encoding}"
|
3982
|
-
msgstr ""
|
3983
|
-
|
3984
|
-
#: ../lib/puppet/network/http/compression.rb:37
|
3985
|
-
msgid "Puppet::Network::HTTP::Compression::Active#uncompress is deprecated."
|
3986
|
-
msgstr ""
|
3987
|
-
|
3988
|
-
#: ../lib/puppet/network/http/compression.rb:77
|
3989
|
-
msgid "Puppet::Network::HTTP::Compression::ZlibAdapter#uncompress is deprecated."
|
3990
|
-
msgstr ""
|
3991
|
-
|
3992
|
-
#: ../lib/puppet/network/http/compression.rb:104
|
3993
|
-
msgid "Puppet::Network::HTTP::Compression::None#uncompress_body is deprecated."
|
3994
|
-
msgstr ""
|
3995
|
-
|
3996
|
-
#: ../lib/puppet/network/http/compression.rb:113
|
3997
|
-
msgid "Puppet::Network::HTTP::Compression::None#uncompress is deprecated."
|
3998
|
-
msgstr ""
|
3999
|
-
|
4000
|
-
#: ../lib/puppet/network/http/compression.rb:120
|
4001
|
-
msgid "Puppet::Network::HTTP::Compression::IdentityAdapter#uncompress is deprecated."
|
4002
|
-
msgstr ""
|
4003
|
-
|
4004
|
-
#: ../lib/puppet/network/http/connection.rb:56
|
3741
|
+
#: ../lib/puppet/network/http/connection.rb:43
|
4005
3742
|
msgid "Unrecognized option(s): %{opts}"
|
4006
3743
|
msgstr ""
|
4007
3744
|
|
4008
|
-
#: ../lib/puppet/network/http/connection.rb:
|
3745
|
+
#: ../lib/puppet/network/http/connection.rb:49
|
4009
3746
|
msgid "Expected an instance of Puppet::SSL::Verifier but was passed a %{klass}"
|
4010
3747
|
msgstr ""
|
4011
3748
|
|
4012
|
-
#: ../lib/puppet/network/http/connection.rb:
|
3749
|
+
#: ../lib/puppet/network/http/connection.rb:272
|
4013
3750
|
msgid "Too many HTTP redirections for %{host}:%{port}"
|
4014
3751
|
msgstr ""
|
4015
3752
|
|
4016
|
-
#. TRANSLATORS: Used in the phrase:
|
4017
|
-
#. "Received a response from the remote server."
|
4018
|
-
#: ../lib/puppet/network/http/connection.rb:259
|
4019
|
-
msgid "the remote server"
|
4020
|
-
msgstr ""
|
4021
|
-
|
4022
|
-
#: ../lib/puppet/network/http/connection.rb:263
|
4023
|
-
msgid "Received a %{status_code} response from %{server_hostname}, but the Retry-After header value of \"%{retry_after}\" could not be converted to an integer or RFC 2822 date."
|
4024
|
-
msgstr ""
|
4025
|
-
|
4026
|
-
#: ../lib/puppet/network/http/connection.rb:274
|
4027
|
-
msgid "Received a %{status_code} response from %{server_hostname}. Sleeping for %{retry_sleep} seconds before retrying the request."
|
4028
|
-
msgstr ""
|
4029
|
-
|
4030
|
-
#: ../lib/puppet/network/http/connection.rb:335
|
4031
|
-
msgid "request %{uri} interrupted after %{elapsed} seconds"
|
4032
|
-
msgstr ""
|
4033
|
-
|
4034
|
-
#: ../lib/puppet/network/http/connection.rb:337
|
4035
|
-
msgid "request %{uri} timed out after %{elapsed} seconds"
|
4036
|
-
msgstr ""
|
4037
|
-
|
4038
|
-
#: ../lib/puppet/network/http/connection.rb:339
|
4039
|
-
msgid "request %{uri} failed: %{msg}"
|
4040
|
-
msgstr ""
|
4041
|
-
|
4042
|
-
#: ../lib/puppet/network/http/connection.rb:346
|
4043
|
-
msgid "Puppet::Network::HTTP::Connection is deprecated. Please use Puppet::Network::HTTP::ConnectionAdapter instead."
|
4044
|
-
msgstr ""
|
4045
|
-
|
4046
3753
|
#: ../lib/puppet/network/http/error.rb:23
|
4047
3754
|
msgid "Not Acceptable: %{message}"
|
4048
3755
|
msgstr ""
|
@@ -4071,30 +3778,22 @@ msgstr ""
|
|
4071
3778
|
msgid "Server Error: %{message}"
|
4072
3779
|
msgstr ""
|
4073
3780
|
|
4074
|
-
#: ../lib/puppet/network/http/handler.rb:
|
3781
|
+
#: ../lib/puppet/network/http/handler.rb:22
|
4075
3782
|
msgid "Given multiple routes with identical path regexes: %{regexes}"
|
4076
3783
|
msgstr ""
|
4077
3784
|
|
4078
|
-
#: ../lib/puppet/network/http/handler.rb:
|
3785
|
+
#: ../lib/puppet/network/http/handler.rb:66
|
4079
3786
|
msgid "Processed request %{request_method} %{request_path}"
|
4080
3787
|
msgstr ""
|
4081
3788
|
|
4082
|
-
#: ../lib/puppet/network/http/handler.rb:
|
3789
|
+
#: ../lib/puppet/network/http/handler.rb:112
|
4083
3790
|
msgid "No route for %{request} %{path}"
|
4084
3791
|
msgstr ""
|
4085
3792
|
|
4086
|
-
#: ../lib/puppet/network/http/handler.rb:
|
3793
|
+
#: ../lib/puppet/network/http/handler.rb:137
|
4087
3794
|
msgid "Could not resolve %{ip}: %{detail}"
|
4088
3795
|
msgstr ""
|
4089
3796
|
|
4090
|
-
#: ../lib/puppet/network/http/nocache_pool.rb:6
|
4091
|
-
msgid "Puppet::Network::HTTP::NoCachePool is deprecated."
|
4092
|
-
msgstr ""
|
4093
|
-
|
4094
|
-
#: ../lib/puppet/network/http/pool.rb:66
|
4095
|
-
msgid "Failed to close connection for %{site}: %{detail}"
|
4096
|
-
msgstr ""
|
4097
|
-
|
4098
3797
|
#: ../lib/puppet/network/http/request.rb:14
|
4099
3798
|
msgid "Unknown arguments: %{args}"
|
4100
3799
|
msgstr ""
|
@@ -4108,39 +3807,15 @@ msgid "Missing required Accept header"
|
|
4108
3807
|
msgstr ""
|
4109
3808
|
|
4110
3809
|
#. TRANSLATORS 'ssl_context' is an argument and should not be translated
|
4111
|
-
#: ../lib/puppet/network/http_pool.rb:
|
3810
|
+
#: ../lib/puppet/network/http_pool.rb:63
|
4112
3811
|
msgid "An ssl_context is required when connecting to 'https://%{host}:%{port}'"
|
4113
3812
|
msgstr ""
|
4114
3813
|
|
4115
3814
|
#. TRANSLATORS 'ssl_context' is an argument and should not be translated
|
4116
|
-
#: ../lib/puppet/network/http_pool.rb:
|
3815
|
+
#: ../lib/puppet/network/http_pool.rb:71
|
4117
3816
|
msgid "An ssl_context is unnecessary when connecting to 'http://%{host}:%{port}' and will be ignored"
|
4118
3817
|
msgstr ""
|
4119
3818
|
|
4120
|
-
#: ../lib/puppet/network/rights.rb:59
|
4121
|
-
msgid "Forbidden request: %{msg}"
|
4122
|
-
msgstr ""
|
4123
|
-
|
4124
|
-
#: ../lib/puppet/network/rights.rb:127
|
4125
|
-
msgid "Unknown right type '%{name}'"
|
4126
|
-
msgstr ""
|
4127
|
-
|
4128
|
-
#: ../lib/puppet/network/rights.rb:169
|
4129
|
-
msgid "'%{m}' is not an allowed value for method directive"
|
4130
|
-
msgstr ""
|
4131
|
-
|
4132
|
-
#: ../lib/puppet/network/rights.rb:176
|
4133
|
-
msgid "'%{m}' is already in the '%{name}' ACL"
|
4134
|
-
msgstr ""
|
4135
|
-
|
4136
|
-
#: ../lib/puppet/network/rights.rb:183
|
4137
|
-
msgid "'%{env}' is already in the '%{name}' ACL"
|
4138
|
-
msgstr ""
|
4139
|
-
|
4140
|
-
#: ../lib/puppet/network/rights.rb:195
|
4141
|
-
msgid "'%{name}' incorrect authenticated value: %{authentication}"
|
4142
|
-
msgstr ""
|
4143
|
-
|
4144
3819
|
#: ../lib/puppet/node.rb:27
|
4145
3820
|
msgid "No name provided in serialized data"
|
4146
3821
|
msgstr ""
|
@@ -4157,11 +3832,7 @@ msgstr ""
|
|
4157
3832
|
msgid "The node parameter '%{param_name}' for node '%{node_name}' was already set to '%{value}'. It could not be set to '%{desired_value}'"
|
4158
3833
|
msgstr ""
|
4159
3834
|
|
4160
|
-
#: ../lib/puppet/node.rb:
|
4161
|
-
msgid "Host is missing hostname and/or domain: %{name}"
|
4162
|
-
msgstr ""
|
4163
|
-
|
4164
|
-
#: ../lib/puppet/node.rb:230
|
3835
|
+
#: ../lib/puppet/node.rb:201
|
4165
3836
|
msgid "Trusted node data modified for node %{name}"
|
4166
3837
|
msgstr ""
|
4167
3838
|
|
@@ -4195,60 +3866,60 @@ msgid "Given data_type value is not a data type, got '%{type}'"
|
|
4195
3866
|
msgstr ""
|
4196
3867
|
|
4197
3868
|
#. TRANSLATORS 'type' and 'title' are internal parameter names - do not translate
|
4198
|
-
#: ../lib/puppet/pal/json_catalog_encoder.rb:
|
3869
|
+
#: ../lib/puppet/pal/json_catalog_encoder.rb:54
|
4199
3870
|
msgid "Both type and title must be given"
|
4200
3871
|
msgstr ""
|
4201
3872
|
|
4202
3873
|
#. TRANSLATORS: do not translate the variable names in this error message
|
4203
3874
|
#. TRANSLATORS: do not translate the variable names in this error message
|
4204
|
-
#: ../lib/puppet/pal/pal_impl.rb:
|
3875
|
+
#: ../lib/puppet/pal/pal_impl.rb:76 ../lib/puppet/pal/pal_impl.rb:174
|
4205
3876
|
msgid "manifest_file or code_string cannot be given when configured_by_env is true"
|
4206
3877
|
msgstr ""
|
4207
3878
|
|
4208
|
-
#: ../lib/puppet/pal/pal_impl.rb:
|
3879
|
+
#: ../lib/puppet/pal/pal_impl.rb:222
|
4209
3880
|
msgid "temporary environment name"
|
4210
3881
|
msgstr ""
|
4211
3882
|
|
4212
3883
|
#. TRANSLATORS: do not translate variable name string in these assertions
|
4213
|
-
#: ../lib/puppet/pal/pal_impl.rb:
|
3884
|
+
#: ../lib/puppet/pal/pal_impl.rb:227
|
4214
3885
|
msgid "A block must be given to 'in_tmp_environment'"
|
4215
3886
|
msgstr ""
|
4216
3887
|
|
4217
3888
|
#. TRANSLATORS terms in the assertions below are names of terms in code
|
4218
|
-
#: ../lib/puppet/pal/pal_impl.rb:
|
3889
|
+
#: ../lib/puppet/pal/pal_impl.rb:282
|
4219
3890
|
msgid "A block must be given to 'in_environment'"
|
4220
3891
|
msgstr ""
|
4221
3892
|
|
4222
3893
|
#. TRANSLATORS 'in_environment' is a name, do not translate
|
4223
|
-
#: ../lib/puppet/pal/pal_impl.rb:
|
3894
|
+
#: ../lib/puppet/pal/pal_impl.rb:287
|
4224
3895
|
msgid "The environment directory '%{env_dir}' does not exist"
|
4225
3896
|
msgstr ""
|
4226
3897
|
|
4227
|
-
#: ../lib/puppet/pal/pal_impl.rb:
|
3898
|
+
#: ../lib/puppet/pal/pal_impl.rb:310
|
4228
3899
|
msgid "No directory found for the environment '%{env_name}' on the path '%{envpath}'"
|
4229
3900
|
msgstr ""
|
4230
3901
|
|
4231
|
-
#: ../lib/puppet/pal/pal_impl.rb:
|
3902
|
+
#: ../lib/puppet/pal/pal_impl.rb:364
|
4232
3903
|
msgid "Given variables must be a hash, got %{type}"
|
4233
3904
|
msgstr ""
|
4234
3905
|
|
4235
|
-
#: ../lib/puppet/pal/pal_impl.rb:
|
3906
|
+
#: ../lib/puppet/pal/pal_impl.rb:370
|
4236
3907
|
msgid "Given variable '%{varname}' has illegal name"
|
4237
3908
|
msgstr ""
|
4238
3909
|
|
4239
|
-
#: ../lib/puppet/pal/pal_impl.rb:
|
3910
|
+
#: ../lib/puppet/pal/pal_impl.rb:374
|
4240
3911
|
msgid "Given value for '%{varname}' has illegal type - got: %{type}"
|
4241
3912
|
msgstr ""
|
4242
3913
|
|
4243
|
-
#: ../lib/puppet/pal/pal_impl.rb:
|
3914
|
+
#: ../lib/puppet/pal/pal_impl.rb:511
|
4244
3915
|
msgid "Puppet Pal: %{what}"
|
4245
3916
|
msgstr ""
|
4246
3917
|
|
4247
|
-
#: ../lib/puppet/pal/pal_impl.rb:
|
3918
|
+
#: ../lib/puppet/pal/pal_impl.rb:525
|
4248
3919
|
msgid "Cannot use '%{a_term}' and '%{b_term}' at the same time"
|
4249
3920
|
msgstr ""
|
4250
3921
|
|
4251
|
-
#: ../lib/puppet/pal/pal_impl.rb:
|
3922
|
+
#: ../lib/puppet/pal/pal_impl.rb:532
|
4252
3923
|
msgid "A block must be given"
|
4253
3924
|
msgstr ""
|
4254
3925
|
|
@@ -4313,7 +3984,7 @@ msgstr ""
|
|
4313
3984
|
msgid "Node inheritance is removed in Puppet 4.0.0. See http://links.puppet.com/puppet-node-inheritance-deprecation"
|
4314
3985
|
msgstr ""
|
4315
3986
|
|
4316
|
-
#: ../lib/puppet/parser/ast/pops_bridge.rb:
|
3987
|
+
#: ../lib/puppet/parser/ast/pops_bridge.rb:180
|
4317
3988
|
msgid "Instantiating Resource with type checked parameters - scope is missing, skipping type checking."
|
4318
3989
|
msgstr ""
|
4319
3990
|
|
@@ -4338,209 +4009,100 @@ msgid "For more information, see https://puppet.com/docs/puppet/latest/environme
|
|
4338
4009
|
msgstr ""
|
4339
4010
|
|
4340
4011
|
#. TRANSLATORS "stage" is a keyword in Puppet and should not be translated
|
4341
|
-
#: ../lib/puppet/parser/compiler.rb:
|
4012
|
+
#: ../lib/puppet/parser/compiler.rb:82
|
4342
4013
|
msgid "Only classes can set 'stage'; normal resources like %{resource} cannot change run stage"
|
4343
4014
|
msgstr ""
|
4344
4015
|
|
4345
|
-
|
4346
|
-
#: ../lib/puppet/parser/compiler.rb:125
|
4347
|
-
msgid "Application instances like '%{resource}' can only be contained within a Site"
|
4348
|
-
msgstr ""
|
4349
|
-
|
4350
|
-
#: ../lib/puppet/parser/compiler.rb:155
|
4016
|
+
#: ../lib/puppet/parser/compiler.rb:123
|
4351
4017
|
msgid "For compiling %{node}"
|
4352
4018
|
msgstr ""
|
4353
4019
|
|
4354
|
-
#: ../lib/puppet/parser/compiler.rb:
|
4020
|
+
#: ../lib/puppet/parser/compiler.rb:127
|
4355
4021
|
msgid "Compile: Set node parameters"
|
4356
4022
|
msgstr ""
|
4357
4023
|
|
4358
|
-
#: ../lib/puppet/parser/compiler.rb:
|
4024
|
+
#: ../lib/puppet/parser/compiler.rb:129
|
4359
4025
|
msgid "Compile: Created settings scope"
|
4360
4026
|
msgstr ""
|
4361
4027
|
|
4362
|
-
#: ../lib/puppet/parser/compiler.rb:163
|
4363
|
-
msgid "Compile: Evaluated capability mappings"
|
4364
|
-
msgstr ""
|
4365
|
-
|
4366
4028
|
#. TRANSLATORS "main" is a function name and should not be translated
|
4367
|
-
#: ../lib/puppet/parser/compiler.rb:
|
4029
|
+
#: ../lib/puppet/parser/compiler.rb:132
|
4368
4030
|
msgid "Compile: Evaluated main"
|
4369
4031
|
msgstr ""
|
4370
4032
|
|
4371
|
-
#: ../lib/puppet/parser/compiler.rb:
|
4372
|
-
msgid "Compile: Evaluated site"
|
4373
|
-
msgstr ""
|
4374
|
-
|
4375
|
-
#: ../lib/puppet/parser/compiler.rb:170
|
4033
|
+
#: ../lib/puppet/parser/compiler.rb:134
|
4376
4034
|
msgid "Compile: Evaluated AST node"
|
4377
4035
|
msgstr ""
|
4378
4036
|
|
4379
|
-
#: ../lib/puppet/parser/compiler.rb:
|
4037
|
+
#: ../lib/puppet/parser/compiler.rb:136
|
4380
4038
|
msgid "Compile: Evaluated node classes"
|
4381
4039
|
msgstr ""
|
4382
4040
|
|
4383
|
-
#: ../lib/puppet/parser/compiler.rb:
|
4384
|
-
msgid "Compile: Evaluated application instances"
|
4385
|
-
msgstr ""
|
4386
|
-
|
4387
|
-
#: ../lib/puppet/parser/compiler.rb:177
|
4388
|
-
msgid "Compile: Evaluated site capability mappings"
|
4389
|
-
msgstr ""
|
4390
|
-
|
4391
|
-
#: ../lib/puppet/parser/compiler.rb:179
|
4041
|
+
#: ../lib/puppet/parser/compiler.rb:138
|
4392
4042
|
msgid "Compile: Evaluated generators"
|
4393
4043
|
msgstr ""
|
4394
4044
|
|
4395
|
-
#: ../lib/puppet/parser/compiler.rb:
|
4045
|
+
#: ../lib/puppet/parser/compiler.rb:140
|
4396
4046
|
msgid "Compile: Validate Catalog pre-finish"
|
4397
4047
|
msgstr ""
|
4398
4048
|
|
4399
|
-
#: ../lib/puppet/parser/compiler.rb:
|
4049
|
+
#: ../lib/puppet/parser/compiler.rb:144
|
4400
4050
|
msgid "Compile: Finished catalog"
|
4401
4051
|
msgstr ""
|
4402
4052
|
|
4403
|
-
#: ../lib/puppet/parser/compiler.rb:
|
4404
|
-
msgid "Compile: Prune"
|
4405
|
-
msgstr ""
|
4406
|
-
|
4407
|
-
#: ../lib/puppet/parser/compiler.rb:191
|
4053
|
+
#: ../lib/puppet/parser/compiler.rb:148
|
4408
4054
|
msgid "Compile: Validate Catalog final"
|
4409
4055
|
msgstr ""
|
4410
4056
|
|
4411
|
-
#: ../lib/puppet/parser/compiler.rb:
|
4412
|
-
msgid "Invalid node mapping in %{app}: Mapping must be a hash"
|
4413
|
-
msgstr ""
|
4414
|
-
|
4415
|
-
#: ../lib/puppet/parser/compiler.rb:324
|
4416
|
-
msgid "Invalid node mapping in %{app}: Key %{k} is not a Node"
|
4417
|
-
msgstr ""
|
4418
|
-
|
4419
|
-
#: ../lib/puppet/parser/compiler.rb:327
|
4420
|
-
msgid "Invalid node mapping in %{app}: Value %{res} is not a resource"
|
4421
|
-
msgstr ""
|
4422
|
-
|
4423
|
-
#: ../lib/puppet/parser/compiler.rb:328
|
4424
|
-
msgid "Application %{app} maps component %{res} to multiple nodes"
|
4425
|
-
msgstr ""
|
4426
|
-
|
4427
|
-
#: ../lib/puppet/parser/compiler.rb:367
|
4057
|
+
#: ../lib/puppet/parser/compiler.rb:218
|
4428
4058
|
msgid "Could not find node statement with name 'default' or '%{names}'"
|
4429
4059
|
msgstr ""
|
4430
4060
|
|
4431
|
-
#: ../lib/puppet/parser/compiler.rb:
|
4061
|
+
#: ../lib/puppet/parser/compiler.rb:236
|
4432
4062
|
msgid "No source for scope passed to evaluate_classes"
|
4433
4063
|
msgstr ""
|
4434
4064
|
|
4435
|
-
#: ../lib/puppet/parser/compiler.rb:
|
4065
|
+
#: ../lib/puppet/parser/compiler.rb:246
|
4436
4066
|
msgid "Could not find class %{name} for %{node}"
|
4437
4067
|
msgstr ""
|
4438
4068
|
|
4439
|
-
#: ../lib/puppet/parser/compiler.rb:
|
4440
|
-
msgid "Capability mapping error: %{kind} clause references nonexistent %{component_type} %{component_name}"
|
4441
|
-
msgstr ""
|
4442
|
-
|
4443
|
-
#: ../lib/puppet/parser/compiler.rb:526
|
4069
|
+
#: ../lib/puppet/parser/compiler.rb:328
|
4444
4070
|
msgid "Evaluated collections"
|
4445
4071
|
msgstr ""
|
4446
4072
|
|
4447
|
-
#: ../lib/puppet/parser/compiler.rb:
|
4073
|
+
#: ../lib/puppet/parser/compiler.rb:343
|
4448
4074
|
msgid "Evaluated definitions"
|
4449
4075
|
msgstr ""
|
4450
4076
|
|
4451
|
-
#: ../lib/puppet/parser/compiler.rb:
|
4077
|
+
#: ../lib/puppet/parser/compiler.rb:372
|
4452
4078
|
msgid "Iterated (%{count}) on generators"
|
4453
4079
|
msgstr ""
|
4454
4080
|
|
4455
|
-
#: ../lib/puppet/parser/compiler.rb:
|
4081
|
+
#: ../lib/puppet/parser/compiler.rb:383
|
4456
4082
|
msgid "Somehow looped more than 1000 times while evaluating host catalog"
|
4457
4083
|
msgstr ""
|
4458
4084
|
|
4459
|
-
#: ../lib/puppet/parser/compiler.rb:
|
4085
|
+
#: ../lib/puppet/parser/compiler.rb:415
|
4460
4086
|
msgid "Could not find resource(s) %{resources} for overriding"
|
4461
4087
|
msgstr ""
|
4462
4088
|
|
4463
|
-
#: ../lib/puppet/parser/compiler.rb:
|
4089
|
+
#: ../lib/puppet/parser/compiler.rb:426
|
4464
4090
|
msgid "Failed to realize virtual resources %{resources}"
|
4465
4091
|
msgstr ""
|
4466
4092
|
|
4467
4093
|
#. TRANSLATORS "main" is a function name and should not be translated
|
4468
|
-
#: ../lib/puppet/parser/compiler.rb:
|
4094
|
+
#: ../lib/puppet/parser/compiler.rb:459
|
4469
4095
|
msgid "Couldn't find main"
|
4470
4096
|
msgstr ""
|
4471
4097
|
|
4472
|
-
#: ../lib/puppet/parser/compiler.rb:
|
4098
|
+
#: ../lib/puppet/parser/compiler.rb:532
|
4473
4099
|
msgid "For initializing compiler"
|
4474
4100
|
msgstr ""
|
4475
4101
|
|
4476
|
-
#: ../lib/puppet/parser/compiler/catalog_validator/
|
4477
|
-
msgid "Capability '%{cap}' referenced by '%{param}' is never exported"
|
4478
|
-
msgstr ""
|
4479
|
-
|
4480
|
-
#: ../lib/puppet/parser/compiler/catalog_validator/env_relationship_validator.rb:58
|
4481
|
-
msgid "'%{value}' is exported by both '%{hash}' and '%{resource}'"
|
4482
|
-
msgstr ""
|
4483
|
-
|
4484
|
-
#: ../lib/puppet/parser/compiler/catalog_validator/relationship_validator.rb:27
|
4485
|
-
msgid "'%{param}' is not a valid relationship to a capability"
|
4486
|
-
msgstr ""
|
4487
|
-
|
4488
|
-
#: ../lib/puppet/parser/compiler/catalog_validator/relationship_validator.rb:43
|
4102
|
+
#: ../lib/puppet/parser/compiler/catalog_validator/relationship_validator.rb:31
|
4489
4103
|
msgid "Could not find resource '%{res}' in parameter '%{param}'"
|
4490
4104
|
msgstr ""
|
4491
4105
|
|
4492
|
-
#: ../lib/puppet/parser/compiler/catalog_validator/site_validator.rb:16
|
4493
|
-
msgid "Only application components can appear inside a site - %{res} is not allowed"
|
4494
|
-
msgstr ""
|
4495
|
-
|
4496
|
-
#: ../lib/puppet/parser/environment_compiler.rb:13
|
4497
|
-
msgid "%{detail} in environment %{env}"
|
4498
|
-
msgstr ""
|
4499
|
-
|
4500
|
-
#: ../lib/puppet/parser/environment_compiler.rb:62
|
4501
|
-
msgid "For compiling environment catalog %{env}"
|
4502
|
-
msgstr ""
|
4503
|
-
|
4504
|
-
#: ../lib/puppet/parser/environment_compiler.rb:65
|
4505
|
-
msgid "Env Compile: Created settings scope"
|
4506
|
-
msgstr ""
|
4507
|
-
|
4508
|
-
#: ../lib/puppet/parser/environment_compiler.rb:67
|
4509
|
-
msgid "Env Compile: Evaluated main"
|
4510
|
-
msgstr ""
|
4511
|
-
|
4512
|
-
#: ../lib/puppet/parser/environment_compiler.rb:69
|
4513
|
-
msgid "Env Compile: Evaluated site"
|
4514
|
-
msgstr ""
|
4515
|
-
|
4516
|
-
#: ../lib/puppet/parser/environment_compiler.rb:71
|
4517
|
-
msgid "Env Compile: Evaluated application instances"
|
4518
|
-
msgstr ""
|
4519
|
-
|
4520
|
-
#: ../lib/puppet/parser/environment_compiler.rb:73
|
4521
|
-
msgid "Env Compile: Prune"
|
4522
|
-
msgstr ""
|
4523
|
-
|
4524
|
-
#: ../lib/puppet/parser/environment_compiler.rb:75
|
4525
|
-
msgid "Env Compile: Validate Catalog pre-finish"
|
4526
|
-
msgstr ""
|
4527
|
-
|
4528
|
-
#: ../lib/puppet/parser/environment_compiler.rb:79
|
4529
|
-
msgid "Env Compile: Finished catalog"
|
4530
|
-
msgstr ""
|
4531
|
-
|
4532
|
-
#: ../lib/puppet/parser/environment_compiler.rb:83
|
4533
|
-
msgid "Env Compile: Validate Catalog final"
|
4534
|
-
msgstr ""
|
4535
|
-
|
4536
|
-
#: ../lib/puppet/parser/environment_compiler.rb:159
|
4537
|
-
msgid "Environment Compiler: Could not find a site definition to evaluate"
|
4538
|
-
msgstr ""
|
4539
|
-
|
4540
|
-
#: ../lib/puppet/parser/environment_compiler.rb:165
|
4541
|
-
msgid "Evaluated application %{resource}"
|
4542
|
-
msgstr ""
|
4543
|
-
|
4544
4106
|
#: ../lib/puppet/parser/functions.rb:43
|
4545
4107
|
msgid "The method 'Puppet::Parser::Functions.autoloader#loadall' is deprecated in favor of using 'Scope#call_function'."
|
4546
4108
|
msgstr ""
|
@@ -4675,55 +4237,35 @@ msgstr ""
|
|
4675
4237
|
msgid "Resources require a scope"
|
4676
4238
|
msgstr ""
|
4677
4239
|
|
4678
|
-
#: ../lib/puppet/parser/resource.rb:
|
4240
|
+
#: ../lib/puppet/parser/resource.rb:159
|
4679
4241
|
msgid "Only subclasses can override parameters"
|
4680
4242
|
msgstr ""
|
4681
4243
|
|
4682
|
-
#: ../lib/puppet/parser/resource.rb:
|
4244
|
+
#: ../lib/puppet/parser/resource.rb:165
|
4683
4245
|
msgid "Attempt to override an already evaluated resource with new values"
|
4684
4246
|
msgstr ""
|
4685
4247
|
|
4686
|
-
#: ../lib/puppet/parser/resource.rb:
|
4248
|
+
#: ../lib/puppet/parser/resource.rb:167
|
4687
4249
|
msgid "Attempt to override an already evaluated resource, defined at %{error_location}, with new values"
|
4688
4250
|
msgstr ""
|
4689
4251
|
|
4690
|
-
#: ../lib/puppet/parser/resource.rb:
|
4691
|
-
msgid "Invalid consume in %{value0}: %{ref} is not a resource"
|
4692
|
-
msgstr ""
|
4693
|
-
|
4694
|
-
#: ../lib/puppet/parser/resource.rb:280
|
4695
|
-
msgid "Resource %{ref} could not be found; it might not have been produced yet"
|
4696
|
-
msgstr ""
|
4697
|
-
|
4698
|
-
#: ../lib/puppet/parser/resource.rb:284
|
4699
|
-
msgid "Invalid consume in %{ref}: %{cap} is not a capability resource"
|
4700
|
-
msgstr ""
|
4701
|
-
|
4702
|
-
#: ../lib/puppet/parser/resource.rb:293
|
4703
|
-
msgid "Resource %{res} tries to consume %{cns} but no 'consumes' mapping exists for %{resource_type} and %{cns_type}"
|
4704
|
-
msgstr ""
|
4705
|
-
|
4706
|
-
#: ../lib/puppet/parser/resource.rb:313
|
4707
|
-
msgid "Attempt to reassign attribute '%{name}' in '%{resource}' caused by multiple consumed mappings to the same attribute"
|
4708
|
-
msgstr ""
|
4709
|
-
|
4710
|
-
#: ../lib/puppet/parser/resource.rb:365
|
4252
|
+
#: ../lib/puppet/parser/resource.rb:296
|
4711
4253
|
msgid "Parameter '%{name}' is already set on %{resource}; cannot redefine"
|
4712
4254
|
msgstr ""
|
4713
4255
|
|
4714
|
-
#: ../lib/puppet/parser/resource.rb:
|
4256
|
+
#: ../lib/puppet/parser/resource.rb:299
|
4715
4257
|
msgid "Parameter '%{name}' is already set on %{resource} at %{error_location}; cannot redefine"
|
4716
4258
|
msgstr ""
|
4717
4259
|
|
4718
|
-
#: ../lib/puppet/parser/resource.rb:
|
4260
|
+
#: ../lib/puppet/parser/resource.rb:304
|
4719
4261
|
msgid "Parameter '%{name}' is already set on %{resource} by %{source}; cannot redefine"
|
4720
4262
|
msgstr ""
|
4721
4263
|
|
4722
|
-
#: ../lib/puppet/parser/resource.rb:
|
4264
|
+
#: ../lib/puppet/parser/resource.rb:307
|
4723
4265
|
msgid "Parameter '%{name}' is already set on %{resource} by %{source} at %{error_location}; cannot redefine"
|
4724
4266
|
msgstr ""
|
4725
4267
|
|
4726
|
-
#: ../lib/puppet/parser/resource.rb:
|
4268
|
+
#: ../lib/puppet/parser/resource.rb:346
|
4727
4269
|
msgid "Duplicate parameter '%{param}' for on %{resource}"
|
4728
4270
|
msgstr ""
|
4729
4271
|
|
@@ -4961,23 +4503,23 @@ msgstr ""
|
|
4961
4503
|
msgid "multi var assignment from class"
|
4962
4504
|
msgstr ""
|
4963
4505
|
|
4964
|
-
#: ../lib/puppet/pops/evaluator/evaluator_impl.rb:
|
4506
|
+
#: ../lib/puppet/pops/evaluator/evaluator_impl.rb:761
|
4965
4507
|
msgid "break() from context where this is illegal"
|
4966
4508
|
msgstr ""
|
4967
4509
|
|
4968
|
-
#: ../lib/puppet/pops/evaluator/evaluator_impl.rb:
|
4510
|
+
#: ../lib/puppet/pops/evaluator/evaluator_impl.rb:1236
|
4969
4511
|
msgid "Can only append Array or Hash to a Hash"
|
4970
4512
|
msgstr ""
|
4971
4513
|
|
4972
|
-
#: ../lib/puppet/pops/evaluator/evaluator_impl.rb:
|
4514
|
+
#: ../lib/puppet/pops/evaluator/evaluator_impl.rb:1240
|
4973
4515
|
msgid "An URI can only be merged with an URI or String"
|
4974
4516
|
msgstr ""
|
4975
4517
|
|
4976
|
-
#: ../lib/puppet/pops/evaluator/evaluator_impl.rb:
|
4518
|
+
#: ../lib/puppet/pops/evaluator/evaluator_impl.rb:1243
|
4977
4519
|
msgid "Can only append Binary to a Binary"
|
4978
4520
|
msgstr ""
|
4979
4521
|
|
4980
|
-
#: ../lib/puppet/pops/evaluator/evaluator_impl.rb:
|
4522
|
+
#: ../lib/puppet/pops/evaluator/evaluator_impl.rb:1276
|
4981
4523
|
msgid "Can only delete from an Array or Hash."
|
4982
4524
|
msgstr ""
|
4983
4525
|
|
@@ -5749,10 +5291,6 @@ msgstr ""
|
|
5749
5291
|
msgid "Failed to load: %{type_name}"
|
5750
5292
|
msgstr ""
|
5751
5293
|
|
5752
|
-
#: ../lib/puppet/pops/issues.rb:925
|
5753
|
-
msgid "Use of the application-orchestration %{expr} is deprecated. See https://puppet.com/docs/puppet/5.5/deprecated_language.html"
|
5754
|
-
msgstr ""
|
5755
|
-
|
5756
5294
|
#: ../lib/puppet/pops/label_provider.rb:76
|
5757
5295
|
msgid "<%{string}> does not appear to contain a word"
|
5758
5296
|
msgstr ""
|
@@ -5875,21 +5413,21 @@ msgstr ""
|
|
5875
5413
|
msgid "The code loaded from %{source_ref} did not produce a Function class when evaluated. Got '%{klass}'"
|
5876
5414
|
msgstr ""
|
5877
5415
|
|
5878
|
-
#: ../lib/puppet/pops/loader/ruby_legacy_function_instantiator.rb:
|
5416
|
+
#: ../lib/puppet/pops/loader/ruby_legacy_function_instantiator.rb:23
|
5879
5417
|
msgid "The code loaded from %{source_ref} does not seem to be a Puppet 3x API function - no 'newfunction' call."
|
5880
5418
|
msgstr ""
|
5881
5419
|
|
5882
5420
|
#. TRANSLATORS - the word 'newfunction' should not be translated as it is a method name.
|
5883
|
-
#: ../lib/puppet/pops/loader/ruby_legacy_function_instantiator.rb:
|
5421
|
+
#: ../lib/puppet/pops/loader/ruby_legacy_function_instantiator.rb:45
|
5884
5422
|
msgid "Illegal legacy function definition! The code loaded from %{source_ref} did not return the result of calling 'newfunction'. Got '%{klass}'"
|
5885
5423
|
msgstr ""
|
5886
5424
|
|
5887
|
-
#: ../lib/puppet/pops/loader/ruby_legacy_function_instantiator.rb:
|
5425
|
+
#: ../lib/puppet/pops/loader/ruby_legacy_function_instantiator.rb:48
|
5888
5426
|
msgid "The code loaded from %{source_ref} produced mis-matched name, expected 'function_%{type_name}', got '%{created_name}'"
|
5889
5427
|
msgstr ""
|
5890
5428
|
|
5891
|
-
#: ../lib/puppet/pops/loader/ruby_legacy_function_instantiator.rb:
|
5892
|
-
msgid "Illegal method definition of method '%{method_name}' on line %{line}
|
5429
|
+
#: ../lib/puppet/pops/loader/ruby_legacy_function_instantiator.rb:92
|
5430
|
+
msgid "Illegal method definition of method '%{method_name}' on line %{line} in legacy function. See %{url} for more information"
|
5893
5431
|
msgstr ""
|
5894
5432
|
|
5895
5433
|
#: ../lib/puppet/pops/loader/task_instantiator.rb:22
|
@@ -6091,19 +5629,19 @@ msgid "Unacceptable transform - found an Object without a rule: %{klass}"
|
|
6091
5629
|
msgstr ""
|
6092
5630
|
|
6093
5631
|
#. TRANSLATORS 'NUMBER' refers to a method name and the 'name_or_numeric' was the passed in value and should not be translated
|
6094
|
-
#: ../lib/puppet/pops/model/factory.rb:
|
5632
|
+
#: ../lib/puppet/pops/model/factory.rb:812
|
6095
5633
|
msgid "Internal Error, NUMBER token does not contain a valid number, %{name_or_numeric}"
|
6096
5634
|
msgstr ""
|
6097
5635
|
|
6098
|
-
#: ../lib/puppet/pops/model/factory.rb:
|
5636
|
+
#: ../lib/puppet/pops/model/factory.rb:1121
|
6099
5637
|
msgid "can only concatenate strings, got %{class_name}"
|
6100
5638
|
msgstr ""
|
6101
5639
|
|
6102
|
-
#: ../lib/puppet/pops/parser/parser_support.rb:
|
5640
|
+
#: ../lib/puppet/pops/parser/parser_support.rb:199
|
6103
5641
|
msgid "attempt to pass argument list to the function '%{name}' which cannot be called without parentheses"
|
6104
5642
|
msgstr ""
|
6105
5643
|
|
6106
|
-
#: ../lib/puppet/pops/parser/parser_support.rb:
|
5644
|
+
#: ../lib/puppet/pops/parser/parser_support.rb:201
|
6107
5645
|
msgid "illegal comma separated argument list"
|
6108
5646
|
msgstr ""
|
6109
5647
|
|
@@ -6143,7 +5681,7 @@ msgstr ""
|
|
6143
5681
|
msgid "digit expected"
|
6144
5682
|
msgstr ""
|
6145
5683
|
|
6146
|
-
#: ../lib/puppet/pops/resource/resource_type_impl.rb:
|
5684
|
+
#: ../lib/puppet/pops/resource/resource_type_impl.rb:165 ../lib/puppet/type.rb:421
|
6147
5685
|
msgid "you must specify title patterns when there are two or more key attributes"
|
6148
5686
|
msgstr ""
|
6149
5687
|
|
@@ -6268,10 +5806,6 @@ msgstr ""
|
|
6268
5806
|
msgid "%{klass} cannot be subtracted from a Timestamp"
|
6269
5807
|
msgstr ""
|
6270
5808
|
|
6271
|
-
#: ../lib/puppet/pops/types/enumeration.rb:7 ../lib/puppet/pops/types/enumeration.rb:12
|
6272
|
-
msgid "Enumeration.enumerator is deprecated. Use Iterable.on instead"
|
6273
|
-
msgstr ""
|
6274
|
-
|
6275
5809
|
#: ../lib/puppet/pops/types/p_binary_type.rb:77
|
6276
5810
|
msgid "The given string in encoding '%{enc}' is invalid. Cannot create a Binary UTF-8 representation"
|
6277
5811
|
msgstr ""
|
@@ -6385,10 +5919,6 @@ msgstr ""
|
|
6385
5919
|
msgid "Options 'include_containers' and 'include_values' cannot both be false"
|
6386
5920
|
msgstr ""
|
6387
5921
|
|
6388
|
-
#: ../lib/puppet/pops/types/type_calculator.rb:187
|
6389
|
-
msgid "TypeCalculator.enumerable is deprecated. Use iterable"
|
6390
|
-
msgstr ""
|
6391
|
-
|
6392
5922
|
#. TRANSLATORS 'TypeFactory#string' is a class and method name and should not be translated
|
6393
5923
|
#: ../lib/puppet/pops/types/type_factory.rb:117
|
6394
5924
|
msgid "Passing more than one argument to TypeFactory#string is deprecated"
|
@@ -6403,85 +5933,85 @@ msgstr ""
|
|
6403
5933
|
msgid "Everything is now reported using present tense"
|
6404
5934
|
msgstr ""
|
6405
5935
|
|
6406
|
-
#: ../lib/puppet/pops/types/type_parser.rb:
|
5936
|
+
#: ../lib/puppet/pops/types/type_parser.rb:425
|
6407
5937
|
msgid "Enum parameters must be identifiers or strings"
|
6408
5938
|
msgstr ""
|
6409
5939
|
|
6410
|
-
#: ../lib/puppet/pops/types/type_parser.rb:
|
5940
|
+
#: ../lib/puppet/pops/types/type_parser.rb:661
|
6411
5941
|
msgid "The expression <%{expression}> is not a valid type specification."
|
6412
5942
|
msgstr ""
|
6413
5943
|
|
6414
|
-
#: ../lib/puppet/pops/types/type_parser.rb:
|
5944
|
+
#: ../lib/puppet/pops/types/type_parser.rb:666
|
6415
5945
|
msgid "Invalid number of type parameters specified: %{type} requires %{required}, %{given} provided"
|
6416
5946
|
msgstr ""
|
6417
5947
|
|
6418
|
-
#: ../lib/puppet/pops/types/type_parser.rb:
|
5948
|
+
#: ../lib/puppet/pops/types/type_parser.rb:671
|
6419
5949
|
msgid "Not a parameterized type <%{type}>"
|
6420
5950
|
msgstr ""
|
6421
5951
|
|
6422
|
-
#: ../lib/puppet/pops/types/type_parser.rb:
|
5952
|
+
#: ../lib/puppet/pops/types/type_parser.rb:675
|
6423
5953
|
msgid "Unknown type <%{type}>"
|
6424
5954
|
msgstr ""
|
6425
5955
|
|
6426
|
-
#: ../lib/puppet/pops/types/types.rb:
|
5956
|
+
#: ../lib/puppet/pops/types/types.rb:929
|
6427
5957
|
msgid "The string '%{str}' cannot be converted to Numeric"
|
6428
5958
|
msgstr ""
|
6429
5959
|
|
6430
|
-
#: ../lib/puppet/pops/types/types.rb:
|
5960
|
+
#: ../lib/puppet/pops/types/types.rb:932
|
6431
5961
|
msgid "Value of type %{type} cannot be converted to Numeric"
|
6432
5962
|
msgstr ""
|
6433
5963
|
|
6434
|
-
#: ../lib/puppet/pops/types/types.rb:
|
5964
|
+
#: ../lib/puppet/pops/types/types.rb:1170
|
6435
5965
|
msgid "The string '%{str}' cannot be converted to Integer"
|
6436
5966
|
msgstr ""
|
6437
5967
|
|
6438
|
-
#: ../lib/puppet/pops/types/types.rb:
|
5968
|
+
#: ../lib/puppet/pops/types/types.rb:1173
|
6439
5969
|
msgid "Value of type %{type} cannot be converted to Integer"
|
6440
5970
|
msgstr ""
|
6441
5971
|
|
6442
|
-
#: ../lib/puppet/pops/types/types.rb:
|
5972
|
+
#: ../lib/puppet/pops/types/types.rb:1181
|
6443
5973
|
msgid "Illegal radix: %{radix}, expected 2, 8, 10, 16, or default"
|
6444
5974
|
msgstr ""
|
6445
5975
|
|
6446
|
-
#: ../lib/puppet/pops/types/types.rb:
|
5976
|
+
#: ../lib/puppet/pops/types/types.rb:1294
|
6447
5977
|
msgid "The string '%{str}' cannot be converted to Float"
|
6448
5978
|
msgstr ""
|
6449
5979
|
|
6450
|
-
#: ../lib/puppet/pops/types/types.rb:
|
5980
|
+
#: ../lib/puppet/pops/types/types.rb:1297
|
6451
5981
|
msgid "Value of type %{type} cannot be converted to Float"
|
6452
5982
|
msgstr ""
|
6453
5983
|
|
6454
5984
|
#. TRANSLATORS 'PStringType#initialize' is a class and method name and should not be translated
|
6455
|
-
#: ../lib/puppet/pops/types/types.rb:
|
5985
|
+
#: ../lib/puppet/pops/types/types.rb:1514
|
6456
5986
|
msgid "Passing more than one argument to PStringType#initialize is deprecated"
|
6457
5987
|
msgstr ""
|
6458
5988
|
|
6459
5989
|
#. TRANSLATORS 'PStringType#values' and '#value' are classes and method names and should not be translated
|
6460
|
-
#: ../lib/puppet/pops/types/types.rb:
|
5990
|
+
#: ../lib/puppet/pops/types/types.rb:1568
|
6461
5991
|
msgid "Method PStringType#values is deprecated. Use #value instead"
|
6462
5992
|
msgstr ""
|
6463
5993
|
|
6464
|
-
#: ../lib/puppet/pops/types/types.rb:
|
5994
|
+
#: ../lib/puppet/pops/types/types.rb:1894
|
6465
5995
|
msgid "The string '%{str}' cannot be converted to Boolean"
|
6466
5996
|
msgstr ""
|
6467
5997
|
|
6468
|
-
#: ../lib/puppet/pops/types/types.rb:
|
5998
|
+
#: ../lib/puppet/pops/types/types.rb:1897
|
6469
5999
|
msgid "Value of type %{type} cannot be converted to Boolean"
|
6470
6000
|
msgstr ""
|
6471
6001
|
|
6472
|
-
#: ../lib/puppet/pops/types/types.rb:
|
6002
|
+
#: ../lib/puppet/pops/types/types.rb:2625
|
6473
6003
|
msgid "Value of type %{type} cannot be converted to Array"
|
6474
6004
|
msgstr ""
|
6475
6005
|
|
6476
|
-
#: ../lib/puppet/pops/types/types.rb:
|
6006
|
+
#: ../lib/puppet/pops/types/types.rb:2695
|
6477
6007
|
msgid "Puppet::Pops::Types::PHashType#element_type is deprecated, use #value_type instead"
|
6478
6008
|
msgstr ""
|
6479
6009
|
|
6480
|
-
#: ../lib/puppet/pops/types/types.rb:
|
6010
|
+
#: ../lib/puppet/pops/types/types.rb:2832
|
6481
6011
|
msgid "odd number of arguments for Hash"
|
6482
6012
|
msgstr ""
|
6483
6013
|
|
6484
|
-
#: ../lib/puppet/pops/types/types.rb:
|
6014
|
+
#: ../lib/puppet/pops/types/types.rb:2843
|
6485
6015
|
msgid "Value of type %{type} cannot be converted to Hash"
|
6486
6016
|
msgstr ""
|
6487
6017
|
|
@@ -6560,19 +6090,19 @@ msgstr ""
|
|
6560
6090
|
msgid "Key/value pairs must be separated by '%{separator}'"
|
6561
6091
|
msgstr ""
|
6562
6092
|
|
6563
|
-
#: ../lib/puppet/provider.rb:
|
6093
|
+
#: ../lib/puppet/provider.rb:132
|
6564
6094
|
msgid "No command %{command} defined for provider %{provider}"
|
6565
6095
|
msgstr ""
|
6566
6096
|
|
6567
|
-
#: ../lib/puppet/provider.rb:
|
6097
|
+
#: ../lib/puppet/provider.rb:384
|
6568
6098
|
msgid "To support listing resources of this type the '%{provider}' provider needs to implement an 'instances' class method returning the current set of resources. We recommend porting your module to the simpler Resource API instead: https://puppet.com/search/docs?keys=resource+api"
|
6569
6099
|
msgstr ""
|
6570
6100
|
|
6571
|
-
#: ../lib/puppet/provider.rb:
|
6101
|
+
#: ../lib/puppet/provider.rb:457
|
6572
6102
|
msgid "'%{parameter_name}' is not a valid parameter for %{resource_type}"
|
6573
6103
|
msgstr ""
|
6574
6104
|
|
6575
|
-
#: ../lib/puppet/provider.rb:
|
6105
|
+
#: ../lib/puppet/provider.rb:543
|
6576
6106
|
msgid "No resource and no name in property hash in %{class_name} instance"
|
6577
6107
|
msgstr ""
|
6578
6108
|
|
@@ -6600,11 +6130,11 @@ msgstr ""
|
|
6600
6130
|
msgid "aix.object_info(): Could not find %{resource}[%{name}]"
|
6601
6131
|
msgstr ""
|
6602
6132
|
|
6603
|
-
#: ../lib/puppet/provider/aix_object.rb:471 ../lib/puppet/provider/nameservice.rb:
|
6133
|
+
#: ../lib/puppet/provider/aix_object.rb:471 ../lib/puppet/provider/nameservice.rb:164 ../lib/puppet/provider/nameservice/directoryservice.rb:425
|
6604
6134
|
msgid "Could not create %{resource} %{name}: %{detail}"
|
6605
6135
|
msgstr ""
|
6606
6136
|
|
6607
|
-
#: ../lib/puppet/provider/aix_object.rb:483 ../lib/puppet/provider/nameservice.rb:
|
6137
|
+
#: ../lib/puppet/provider/aix_object.rb:483 ../lib/puppet/provider/nameservice.rb:178
|
6608
6138
|
msgid "Could not delete %{resource} %{name}: %{detail}"
|
6609
6139
|
msgstr ""
|
6610
6140
|
|
@@ -6693,32 +6223,28 @@ msgstr ""
|
|
6693
6223
|
msgid "%{name} is not a valid attribute for %{resource_type}"
|
6694
6224
|
msgstr ""
|
6695
6225
|
|
6696
|
-
#: ../lib/puppet/provider/nameservice.rb:
|
6697
|
-
msgid "listbyname is deprecated and will be removed in a future release of Puppet. Please use `self.instances` to obtain a list of users."
|
6698
|
-
msgstr ""
|
6699
|
-
|
6700
|
-
#: ../lib/puppet/provider/nameservice.rb:103
|
6226
|
+
#: ../lib/puppet/provider/nameservice.rb:85
|
6701
6227
|
msgid "Invalid value %{value}: %{error}"
|
6702
6228
|
msgstr ""
|
6703
6229
|
|
6704
6230
|
#. TRANSLATORS "autogen_id()" is a method name and should not be translated
|
6705
|
-
#: ../lib/puppet/provider/nameservice.rb:
|
6231
|
+
#: ../lib/puppet/provider/nameservice.rb:130
|
6706
6232
|
msgid "autogen_id() does not support auto generation of id for resource type %{resource_type}"
|
6707
6233
|
msgstr ""
|
6708
6234
|
|
6709
|
-
#: ../lib/puppet/provider/nameservice.rb:
|
6235
|
+
#: ../lib/puppet/provider/nameservice.rb:152 ../lib/puppet/provider/nameservice/directoryservice.rb:379
|
6710
6236
|
msgid "already exists"
|
6711
6237
|
msgstr ""
|
6712
6238
|
|
6713
|
-
#: ../lib/puppet/provider/nameservice.rb:
|
6239
|
+
#: ../lib/puppet/provider/nameservice.rb:170
|
6714
6240
|
msgid "already absent"
|
6715
6241
|
msgstr ""
|
6716
6242
|
|
6717
|
-
#: ../lib/puppet/provider/nameservice.rb:
|
6243
|
+
#: ../lib/puppet/provider/nameservice.rb:264
|
6718
6244
|
msgid "Nameservice command must be an array"
|
6719
6245
|
msgstr ""
|
6720
6246
|
|
6721
|
-
#: ../lib/puppet/provider/nameservice.rb:
|
6247
|
+
#: ../lib/puppet/provider/nameservice.rb:269 ../lib/puppet/provider/nameservice/directoryservice.rb:340 ../lib/puppet/provider/nameservice/directoryservice.rb:369
|
6722
6248
|
msgid "Could not set %{param} on %{resource}[%{name}]: %{detail}"
|
6723
6249
|
msgstr ""
|
6724
6250
|
|
@@ -6864,27 +6390,27 @@ msgstr ""
|
|
6864
6390
|
msgid "source is defined but does not have trailing slash, ignoring %{source}"
|
6865
6391
|
msgstr ""
|
6866
6392
|
|
6867
|
-
#: ../lib/puppet/provider/package/gem.rb:
|
6393
|
+
#: ../lib/puppet/provider/package/gem.rb:122 ../lib/puppet/provider/package/puppetserver_gem.rb:61
|
6868
6394
|
msgid "Could not list gems: %{detail}"
|
6869
6395
|
msgstr ""
|
6870
6396
|
|
6871
|
-
#: ../lib/puppet/provider/package/gem.rb:
|
6397
|
+
#: ../lib/puppet/provider/package/gem.rb:148
|
6872
6398
|
msgid "Could not match %{desc}"
|
6873
6399
|
msgstr ""
|
6874
6400
|
|
6875
|
-
#: ../lib/puppet/provider/package/gem.rb:
|
6401
|
+
#: ../lib/puppet/provider/package/gem.rb:226 ../lib/puppet/provider/package/puppetserver_gem.rb:93
|
6876
6402
|
msgid "Invalid source '%{uri}': %{detail}"
|
6877
6403
|
msgstr ""
|
6878
6404
|
|
6879
|
-
#: ../lib/puppet/provider/package/gem.rb:
|
6405
|
+
#: ../lib/puppet/provider/package/gem.rb:237 ../lib/puppet/provider/package/puppetserver_gem.rb:104
|
6880
6406
|
msgid "puppet:// URLs are not supported as gem sources"
|
6881
6407
|
msgstr ""
|
6882
6408
|
|
6883
|
-
#: ../lib/puppet/provider/package/gem.rb:
|
6409
|
+
#: ../lib/puppet/provider/package/gem.rb:253 ../lib/puppet/provider/package/puppetserver_gem.rb:115
|
6884
6410
|
msgid "Could not install: %{output}"
|
6885
6411
|
msgstr ""
|
6886
6412
|
|
6887
|
-
#: ../lib/puppet/provider/package/gem.rb:
|
6413
|
+
#: ../lib/puppet/provider/package/gem.rb:279 ../lib/puppet/provider/package/puppetserver_gem.rb:125
|
6888
6414
|
msgid "Could not uninstall: %{output}"
|
6889
6415
|
msgstr ""
|
6890
6416
|
|
@@ -6994,7 +6520,7 @@ msgstr ""
|
|
6994
6520
|
msgid "Refusing to install package group %{resource_name}, because allow_virtual is false."
|
6995
6521
|
msgstr ""
|
6996
6522
|
|
6997
|
-
#: ../lib/puppet/provider/package/pip.rb:
|
6523
|
+
#: ../lib/puppet/provider/package/pip.rb:57
|
6998
6524
|
msgid "Cannot resolve pip version"
|
6999
6525
|
msgstr ""
|
7000
6526
|
|
@@ -7010,27 +6536,27 @@ msgstr ""
|
|
7010
6536
|
msgid "Unknown line format %{resource_name}: %{parse_line}"
|
7011
6537
|
msgstr ""
|
7012
6538
|
|
7013
|
-
#: ../lib/puppet/provider/package/pkg.rb:
|
6539
|
+
#: ../lib/puppet/provider/package/pkg.rb:123
|
7014
6540
|
msgid "Unable to unfreeze %{package}"
|
7015
6541
|
msgstr ""
|
7016
6542
|
|
7017
|
-
#: ../lib/puppet/provider/package/pkg.rb:
|
6543
|
+
#: ../lib/puppet/provider/package/pkg.rb:158
|
7018
6544
|
msgid "Implicit version %{should} has %{n} possible matches"
|
7019
6545
|
msgstr ""
|
7020
6546
|
|
7021
|
-
#: ../lib/puppet/provider/package/pkg.rb:
|
6547
|
+
#: ../lib/puppet/provider/package/pkg.rb:170
|
7022
6548
|
msgid "Selecting version '%{version}' for implicit '%{should}'"
|
7023
6549
|
msgstr ""
|
7024
6550
|
|
7025
|
-
#: ../lib/puppet/provider/package/pkg.rb:
|
6551
|
+
#: ../lib/puppet/provider/package/pkg.rb:175
|
7026
6552
|
msgid "No version of %{name} matching %{should} is installable, even though the package is currently installed"
|
7027
6553
|
msgstr ""
|
7028
6554
|
|
7029
|
-
#: ../lib/puppet/provider/package/pkg.rb:
|
6555
|
+
#: ../lib/puppet/provider/package/pkg.rb:194
|
7030
6556
|
msgid "pkg warning: %{warnings}"
|
7031
6557
|
msgstr ""
|
7032
6558
|
|
7033
|
-
#: ../lib/puppet/provider/package/pkg.rb:
|
6559
|
+
#: ../lib/puppet/provider/package/pkg.rb:238 ../lib/puppet/provider/package/pkg.rb:264
|
7034
6560
|
msgid "Unable to update %{package}"
|
7035
6561
|
msgstr ""
|
7036
6562
|
|
@@ -7217,15 +6743,15 @@ msgstr ""
|
|
7217
6743
|
msgid "Waiting 5 seconds for runsvdir to discover service %{service}"
|
7218
6744
|
msgstr ""
|
7219
6745
|
|
7220
|
-
#: ../lib/puppet/provider/service/smf.rb:
|
6746
|
+
#: ../lib/puppet/provider/service/smf.rb:120
|
7221
6747
|
msgid "Failed to get the FMRI of the %{service} service: The pattern '%{service}' matches multiple FMRIs! These are the FMRIs it matches: %{all_fmris}"
|
7222
6748
|
msgstr ""
|
7223
6749
|
|
7224
|
-
#: ../lib/puppet/provider/service/smf.rb:
|
6750
|
+
#: ../lib/puppet/provider/service/smf.rb:135
|
7225
6751
|
msgid "Cannot query if the %{service} service is complete: The concept of complete/incomplete services was introduced in Solaris 11.1. You are on a Solaris %{release} machine."
|
7226
6752
|
msgstr ""
|
7227
6753
|
|
7228
|
-
#: ../lib/puppet/provider/service/smf.rb:
|
6754
|
+
#: ../lib/puppet/provider/service/smf.rb:221
|
7229
6755
|
msgid "The %{service} service is incomplete so its status will be reported as :stopped. See `svcs -xv %{fmri}` for more details."
|
7230
6756
|
msgstr ""
|
7231
6757
|
|
@@ -7350,142 +6876,90 @@ msgstr ""
|
|
7350
6876
|
msgid "Invalid node name %{host}"
|
7351
6877
|
msgstr ""
|
7352
6878
|
|
7353
|
-
#: ../lib/puppet/resource.rb:
|
6879
|
+
#: ../lib/puppet/resource.rb:47
|
7354
6880
|
msgid "No resource type provided in serialized data"
|
7355
6881
|
msgstr ""
|
7356
6882
|
|
7357
|
-
#: ../lib/puppet/resource.rb:
|
6883
|
+
#: ../lib/puppet/resource.rb:49
|
7358
6884
|
msgid "No resource title provided in serialized data"
|
7359
6885
|
msgstr ""
|
7360
6886
|
|
7361
6887
|
#. TRANSLATORS 'Puppet::Resource.new' should not be translated
|
7362
|
-
#: ../lib/puppet/resource.rb:
|
6888
|
+
#: ../lib/puppet/resource.rb:276
|
7363
6889
|
msgid "Puppet::Resource.new does not take a hash as the first argument."
|
7364
6890
|
msgstr ""
|
7365
6891
|
|
7366
|
-
#: ../lib/puppet/resource.rb:
|
6892
|
+
#: ../lib/puppet/resource.rb:277
|
7367
6893
|
msgid "Did you mean (%{type}, %{title}) ?"
|
7368
6894
|
msgstr ""
|
7369
6895
|
|
7370
|
-
#: ../lib/puppet/resource.rb:
|
6896
|
+
#: ../lib/puppet/resource.rb:314
|
7371
6897
|
msgid "Could not find declared class %{title}"
|
7372
6898
|
msgstr ""
|
7373
6899
|
|
7374
|
-
#: ../lib/puppet/resource.rb:
|
6900
|
+
#: ../lib/puppet/resource.rb:316
|
7375
6901
|
msgid "Invalid resource type %{type}"
|
7376
6902
|
msgstr ""
|
7377
6903
|
|
7378
|
-
#: ../lib/puppet/resource.rb:
|
7379
|
-
msgid "The method Puppet::Resource.set_default_parameters is deprecated and will be removed in the next major release of Puppet."
|
7380
|
-
msgstr ""
|
7381
|
-
|
7382
|
-
#: ../lib/puppet/resource.rb:526
|
7383
|
-
msgid "Cannot evaluate default parameters for %{resource} - not a parser resource"
|
7384
|
-
msgstr ""
|
7385
|
-
|
7386
|
-
#: ../lib/puppet/resource.rb:566
|
7387
|
-
msgid "The method Puppet::Resource.validate_complete is deprecated and will be removed in the next major release of Puppet."
|
7388
|
-
msgstr ""
|
7389
|
-
|
7390
|
-
#: ../lib/puppet/resource.rb:572
|
7391
|
-
msgid "Must pass %{param} to %{resource}"
|
7392
|
-
msgstr ""
|
7393
|
-
|
7394
|
-
#: ../lib/puppet/resource.rb:584
|
7395
|
-
msgid "Expected parameter '%{name}' of '%{value0}' to have type %{value1}, got %{value2}"
|
7396
|
-
msgstr ""
|
7397
|
-
|
7398
|
-
#: ../lib/puppet/resource.rb:590
|
6904
|
+
#: ../lib/puppet/resource.rb:502
|
7399
6905
|
msgid "no parameter named '%{name}'"
|
7400
6906
|
msgstr ""
|
7401
6907
|
|
7402
|
-
#: ../lib/puppet/resource.rb:
|
6908
|
+
#: ../lib/puppet/resource.rb:547
|
7403
6909
|
msgid "No title provided and %{type} is not a valid resource reference"
|
7404
6910
|
msgstr ""
|
7405
6911
|
|
7406
|
-
#: ../lib/puppet/resource.rb:
|
6912
|
+
#: ../lib/puppet/resource.rb:621
|
7407
6913
|
msgid "No set of title patterns matched the title \"%{title}\"."
|
7408
6914
|
msgstr ""
|
7409
6915
|
|
7410
|
-
#: ../lib/puppet/resource/
|
7411
|
-
msgid "PuppetDB is not available"
|
7412
|
-
msgstr ""
|
7413
|
-
|
7414
|
-
#: ../lib/puppet/resource/capability_finder.rb:47
|
7415
|
-
msgid "Unexpected response from PuppetDB when looking up %{capability}:"
|
7416
|
-
msgstr ""
|
7417
|
-
|
7418
|
-
#: ../lib/puppet/resource/capability_finder.rb:48
|
7419
|
-
msgid "expected exactly one resource but got %{count};"
|
7420
|
-
msgstr ""
|
7421
|
-
|
7422
|
-
#: ../lib/puppet/resource/capability_finder.rb:49
|
7423
|
-
msgid ""
|
7424
|
-
"returned data is:\n"
|
7425
|
-
"%{resources}"
|
7426
|
-
msgstr ""
|
7427
|
-
|
7428
|
-
#: ../lib/puppet/resource/capability_finder.rb:81
|
7429
|
-
msgid "Looking up capability %{capability} in PuppetDB: %{query_terms}"
|
7430
|
-
msgstr ""
|
7431
|
-
|
7432
|
-
#: ../lib/puppet/resource/capability_finder.rb:105
|
7433
|
-
msgid "Unexpected response from PuppetDB when looking up %{capability}: expected an Array but got %{result}"
|
7434
|
-
msgstr ""
|
7435
|
-
|
7436
|
-
#: ../lib/puppet/resource/capability_finder.rb:112
|
7437
|
-
msgid ""
|
7438
|
-
"Invalid JSON from PuppetDB when looking up %{capability}\n"
|
7439
|
-
"%{detail}"
|
7440
|
-
msgstr ""
|
7441
|
-
|
7442
|
-
#: ../lib/puppet/resource/catalog.rb:104
|
6916
|
+
#: ../lib/puppet/resource/catalog.rb:102
|
7443
6917
|
msgid "Cannot add resource %{resource_1} before %{resource_2} because %{resource_2} is not yet in the catalog"
|
7444
6918
|
msgstr ""
|
7445
6919
|
|
7446
|
-
#: ../lib/puppet/resource/catalog.rb:
|
6920
|
+
#: ../lib/puppet/resource/catalog.rb:117
|
7447
6921
|
msgid "Cannot add resource %{resource_1} after %{resource_2} because %{resource_2} is not yet in the catalog"
|
7448
6922
|
msgstr ""
|
7449
6923
|
|
7450
6924
|
#. TRANSLATORS 'alias' should not be translated
|
7451
|
-
#: ../lib/puppet/resource/catalog.rb:
|
6925
|
+
#: ../lib/puppet/resource/catalog.rb:204
|
7452
6926
|
msgid "Cannot alias %{resource} to %{key}; resource %{newref} already declared"
|
7453
6927
|
msgstr ""
|
7454
6928
|
|
7455
6929
|
#. TRANSLATORS 'alias' should not be translated
|
7456
|
-
#: ../lib/puppet/resource/catalog.rb:
|
6930
|
+
#: ../lib/puppet/resource/catalog.rb:208
|
7457
6931
|
msgid "Cannot alias %{resource} to %{key} at %{resource_declaration}; resource %{newref} already declared"
|
7458
6932
|
msgstr ""
|
7459
6933
|
|
7460
|
-
#: ../lib/puppet/resource/catalog.rb:
|
6934
|
+
#: ../lib/puppet/resource/catalog.rb:290
|
7461
6935
|
msgid "Unknown resource type %{type}"
|
7462
6936
|
msgstr ""
|
7463
6937
|
|
7464
|
-
#: ../lib/puppet/resource/catalog.rb:
|
6938
|
+
#: ../lib/puppet/resource/catalog.rb:433
|
7465
6939
|
msgid "Could not intern from data: Could not find relationship source %{source} for %{target}"
|
7466
6940
|
msgstr ""
|
7467
6941
|
|
7468
|
-
#: ../lib/puppet/resource/catalog.rb:
|
6942
|
+
#: ../lib/puppet/resource/catalog.rb:440
|
7469
6943
|
msgid "Could not intern from data: Could not find relationship target %{target} for %{source}"
|
7470
6944
|
msgstr ""
|
7471
6945
|
|
7472
|
-
#: ../lib/puppet/resource/catalog.rb:
|
6946
|
+
#: ../lib/puppet/resource/catalog.rb:530
|
7473
6947
|
msgid "Could not create class file %{file}: %{detail}"
|
7474
6948
|
msgstr ""
|
7475
6949
|
|
7476
|
-
#: ../lib/puppet/resource/catalog.rb:
|
6950
|
+
#: ../lib/puppet/resource/catalog.rb:546
|
7477
6951
|
msgid "Could not create resource file %{file}: %{detail}"
|
7478
6952
|
msgstr ""
|
7479
6953
|
|
7480
|
-
#: ../lib/puppet/resource/catalog.rb:
|
6954
|
+
#: ../lib/puppet/resource/catalog.rb:581
|
7481
6955
|
msgid "Duplicate declaration: %{resource} is already declared; cannot redeclare"
|
7482
6956
|
msgstr ""
|
7483
6957
|
|
7484
|
-
#: ../lib/puppet/resource/catalog.rb:
|
6958
|
+
#: ../lib/puppet/resource/catalog.rb:583
|
7485
6959
|
msgid "Duplicate declaration: %{resource} is already declared at %{error_location}; cannot redeclare"
|
7486
6960
|
msgstr ""
|
7487
6961
|
|
7488
|
-
#: ../lib/puppet/resource/catalog.rb:
|
6962
|
+
#: ../lib/puppet/resource/catalog.rb:632 ../lib/puppet/resource/catalog.rb:637
|
7489
6963
|
msgid "Could not find resource %{resource} when converting %{message} resources"
|
7490
6964
|
msgstr ""
|
7491
6965
|
|
@@ -7493,201 +6967,145 @@ msgstr ""
|
|
7493
6967
|
msgid "Could not evaluate: %{detail}"
|
7494
6968
|
msgstr ""
|
7495
6969
|
|
7496
|
-
#: ../lib/puppet/resource/type.rb:82
|
7497
|
-
msgid "Invalid export in %{reference}: %{ex} is not a resource"
|
7498
|
-
msgstr ""
|
7499
|
-
|
7500
|
-
#: ../lib/puppet/resource/type.rb:83
|
7501
|
-
msgid "Invalid export in %{reference}: %{ex} is not a capability resource"
|
7502
|
-
msgstr ""
|
7503
|
-
|
7504
6970
|
#: ../lib/puppet/resource/type.rb:87
|
7505
|
-
msgid "Resource type %{res_type} does not produce %{ex_type}"
|
7506
|
-
msgstr ""
|
7507
|
-
|
7508
|
-
#: ../lib/puppet/resource/type.rb:148
|
7509
6971
|
msgid "Invalid resource supertype '%{type}'"
|
7510
6972
|
msgstr ""
|
7511
6973
|
|
7512
|
-
#: ../lib/puppet/resource/type.rb:
|
6974
|
+
#: ../lib/puppet/resource/type.rb:117
|
7513
6975
|
msgid "%{name} is not a class; cannot add code to it"
|
7514
6976
|
msgstr ""
|
7515
6977
|
|
7516
|
-
#: ../lib/puppet/resource/type.rb:
|
6978
|
+
#: ../lib/puppet/resource/type.rb:118
|
7517
6979
|
msgid "%{name} is not a class; cannot add code from it"
|
7518
6980
|
msgstr ""
|
7519
6981
|
|
7520
|
-
#: ../lib/puppet/resource/type.rb:
|
6982
|
+
#: ../lib/puppet/resource/type.rb:122
|
7521
6983
|
msgid "Cannot have code outside of a class/node/define because 'freeze_main' is enabled"
|
7522
6984
|
msgstr ""
|
7523
6985
|
|
7524
|
-
#: ../lib/puppet/resource/type.rb:
|
6986
|
+
#: ../lib/puppet/resource/type.rb:126
|
7525
6987
|
msgid "Cannot merge classes with different parent classes (%{name} => %{parent} vs. %{other_name} => %{other_parent})"
|
7526
6988
|
msgstr ""
|
7527
6989
|
|
7528
|
-
#: ../lib/puppet/resource/type.rb:
|
6990
|
+
#: ../lib/puppet/resource/type.rb:157
|
7529
6991
|
msgid "Cannot create resources for defined resource types"
|
7530
6992
|
msgstr ""
|
7531
6993
|
|
7532
|
-
#: ../lib/puppet/resource/type.rb:
|
7533
|
-
msgid "The method Puppet::Resource::Type.assign_parameter_values is deprecated and will be removed in the next major release of Puppet."
|
7534
|
-
msgstr ""
|
7535
|
-
|
7536
|
-
#: ../lib/puppet/resource/type.rb:311
|
6994
|
+
#: ../lib/puppet/resource/type.rb:210
|
7537
6995
|
msgid "Could not find parent resource type '%{parent}' of type %{parent_type} in %{env}"
|
7538
6996
|
msgstr ""
|
7539
6997
|
|
7540
|
-
#: ../lib/puppet/resource/type.rb:
|
6998
|
+
#: ../lib/puppet/resource/type.rb:336
|
7541
6999
|
msgid "Parameter '%{name}' is given a type, but is not a valid parameter."
|
7542
7000
|
msgstr ""
|
7543
7001
|
|
7544
|
-
#: ../lib/puppet/resource/type.rb:
|
7002
|
+
#: ../lib/puppet/resource/type.rb:339
|
7545
7003
|
msgid "Parameter '%{name}' is given a type that is not a Puppet Type, got %{class_name}"
|
7546
7004
|
msgstr ""
|
7547
7005
|
|
7548
|
-
#: ../lib/puppet/resource/type.rb:
|
7006
|
+
#: ../lib/puppet/resource/type.rb:373
|
7549
7007
|
msgid "Could not find scope for %{class_name}"
|
7550
7008
|
msgstr ""
|
7551
7009
|
|
7552
|
-
#: ../lib/puppet/resource/type.rb:
|
7010
|
+
#: ../lib/puppet/resource/type.rb:394
|
7553
7011
|
msgid "%{param} is a metaparam; this value will inherit to all contained resources in the %{name} definition"
|
7554
7012
|
msgstr ""
|
7555
7013
|
|
7556
|
-
#: ../lib/puppet/resource/type.rb:
|
7014
|
+
#: ../lib/puppet/resource/type.rb:396
|
7557
7015
|
msgid "%{param} is a metaparameter; please choose another parameter name in the %{name} definition"
|
7558
7016
|
msgstr ""
|
7559
7017
|
|
7560
|
-
#: ../lib/puppet/resource/type_collection.rb:
|
7018
|
+
#: ../lib/puppet/resource/type_collection.rb:63
|
7561
7019
|
msgid "Class '%{klass}' is already defined%{error}; cannot redefine"
|
7562
7020
|
msgstr ""
|
7563
7021
|
|
7564
|
-
#: ../lib/puppet/resource/type_collection.rb:
|
7022
|
+
#: ../lib/puppet/resource/type_collection.rb:64
|
7565
7023
|
msgid "Definition '%{klass}' is already defined%{error}; cannot be redefined as a class"
|
7566
7024
|
msgstr ""
|
7567
7025
|
|
7568
|
-
#: ../lib/puppet/resource/type_collection.rb:
|
7569
|
-
msgid "Application '%{klass}' is already defined%{error}; cannot be redefined as a class"
|
7570
|
-
msgstr ""
|
7571
|
-
|
7572
|
-
#: ../lib/puppet/resource/type_collection.rb:105
|
7026
|
+
#: ../lib/puppet/resource/type_collection.rb:95
|
7573
7027
|
msgid "Node '%{name}' is already defined%{error}; cannot redefine"
|
7574
7028
|
msgstr ""
|
7575
7029
|
|
7576
|
-
#: ../lib/puppet/resource/type_collection.rb:
|
7577
|
-
msgid "Site is already defined%{error}; cannot redefine"
|
7578
|
-
msgstr ""
|
7579
|
-
|
7580
|
-
#: ../lib/puppet/resource/type_collection.rb:150
|
7030
|
+
#: ../lib/puppet/resource/type_collection.rb:130
|
7581
7031
|
msgid "'%{name}' is already defined%{error} as a class; cannot redefine as a definition"
|
7582
7032
|
msgstr ""
|
7583
7033
|
|
7584
|
-
#: ../lib/puppet/resource/type_collection.rb:
|
7034
|
+
#: ../lib/puppet/resource/type_collection.rb:131
|
7585
7035
|
msgid "Definition '%{name}' is already defined%{error}; cannot be redefined"
|
7586
7036
|
msgstr ""
|
7587
7037
|
|
7588
|
-
#: ../lib/puppet/resource/type_collection.rb:
|
7589
|
-
msgid "'%{name}' is already defined%{error} as an application; cannot be redefined"
|
7590
|
-
msgstr ""
|
7591
|
-
|
7592
|
-
#: ../lib/puppet/resource/type_collection.rb:157
|
7593
|
-
msgid "'%{name}' is already defined%{error} as a class; cannot redefine as a mapping"
|
7594
|
-
msgstr ""
|
7595
|
-
|
7596
|
-
#: ../lib/puppet/resource/type_collection.rb:166
|
7597
|
-
msgid "'%{name}' is already defined%{error} as a class; cannot redefine as an application"
|
7598
|
-
msgstr ""
|
7599
|
-
|
7600
|
-
#: ../lib/puppet/resource/type_collection.rb:167
|
7601
|
-
msgid "'%{name}' is already defined%{error} as a definition; cannot redefine as an application"
|
7602
|
-
msgstr ""
|
7603
|
-
|
7604
|
-
#: ../lib/puppet/resource/type_collection.rb:220
|
7038
|
+
#: ../lib/puppet/resource/type_collection.rb:175
|
7605
7039
|
msgid "Execution of config_version command `%{cmd}` failed: %{message}"
|
7606
7040
|
msgstr ""
|
7607
7041
|
|
7608
|
-
#: ../lib/puppet/resource/type_collection.rb:
|
7042
|
+
#: ../lib/puppet/resource/type_collection.rb:196
|
7609
7043
|
msgid "Not attempting to load %{type} %{fqname} as this object was missing during a prior compilation"
|
7610
7044
|
msgstr ""
|
7611
7045
|
|
7612
|
-
#: ../lib/puppet/
|
7613
|
-
msgid "Connection to cached server and port %{server}:%{port} failed: %{message}"
|
7614
|
-
msgstr ""
|
7615
|
-
|
7616
|
-
#: ../lib/puppet/rest/routes.rb:46
|
7617
|
-
msgid "Downloaded certificate for %{name} from %{server}"
|
7618
|
-
msgstr ""
|
7619
|
-
|
7620
|
-
#: ../lib/puppet/rest/routes.rb:76
|
7621
|
-
msgid "Downloaded certificate revocation list for %{name} from %{server}"
|
7622
|
-
msgstr ""
|
7623
|
-
|
7624
|
-
#: ../lib/puppet/rest/routes.rb:129
|
7625
|
-
msgid "Downloaded existing certificate request for %{name} from %{server}"
|
7626
|
-
msgstr ""
|
7627
|
-
|
7628
|
-
#: ../lib/puppet/settings.rb:98
|
7046
|
+
#: ../lib/puppet/settings.rb:101
|
7629
7047
|
msgid "New environment loaders generated from the requested section."
|
7630
7048
|
msgstr ""
|
7631
7049
|
|
7632
|
-
#: ../lib/puppet/settings.rb:
|
7050
|
+
#: ../lib/puppet/settings.rb:303
|
7633
7051
|
msgid "Attempting to initialize global default settings more than once!"
|
7634
7052
|
msgstr ""
|
7635
7053
|
|
7636
|
-
#: ../lib/puppet/settings.rb:
|
7054
|
+
#: ../lib/puppet/settings.rb:516
|
7637
7055
|
msgid "Using --configprint is deprecated. Use 'puppet config <subcommand>' instead."
|
7638
7056
|
msgstr ""
|
7639
7057
|
|
7640
|
-
#: ../lib/puppet/settings.rb:
|
7058
|
+
#: ../lib/puppet/settings.rb:658
|
7641
7059
|
msgid "Could not load %{file}: %{detail}"
|
7642
7060
|
msgstr ""
|
7643
7061
|
|
7644
|
-
#: ../lib/puppet/settings.rb:
|
7062
|
+
#: ../lib/puppet/settings.rb:766
|
7645
7063
|
msgid "Invalid setting type '%{type}'"
|
7646
7064
|
msgstr ""
|
7647
7065
|
|
7648
|
-
#: ../lib/puppet/settings.rb:
|
7066
|
+
#: ../lib/puppet/settings.rb:921
|
7649
7067
|
msgid "Unknown searchpath case: %{source_type} for the %{source} settings path element."
|
7650
7068
|
msgstr ""
|
7651
7069
|
|
7652
|
-
#: ../lib/puppet/settings.rb:
|
7070
|
+
#: ../lib/puppet/settings.rb:994
|
7653
7071
|
msgid "setting definition for '%{name}' is not a hash!"
|
7654
7072
|
msgstr ""
|
7655
7073
|
|
7656
|
-
#: ../lib/puppet/settings.rb:
|
7074
|
+
#: ../lib/puppet/settings.rb:999
|
7657
7075
|
msgid "Setting %{name} is already defined"
|
7658
7076
|
msgstr ""
|
7659
7077
|
|
7660
|
-
#: ../lib/puppet/settings.rb:
|
7078
|
+
#: ../lib/puppet/settings.rb:1005
|
7661
7079
|
msgid "Setting %{name} is already using short name '%{short}'"
|
7662
7080
|
msgstr ""
|
7663
7081
|
|
7664
|
-
#: ../lib/puppet/settings.rb:
|
7082
|
+
#: ../lib/puppet/settings.rb:1276
|
7665
7083
|
msgid "Setting %{name} is deprecated."
|
7666
7084
|
msgstr ""
|
7667
7085
|
|
7668
7086
|
#. TRANSLATORS 'puppet.conf' is a file name and should not be translated
|
7669
|
-
#: ../lib/puppet/settings.rb:
|
7087
|
+
#: ../lib/puppet/settings.rb:1281
|
7670
7088
|
msgid "Setting %{name} is deprecated in puppet.conf."
|
7671
7089
|
msgstr ""
|
7672
7090
|
|
7673
|
-
#: ../lib/puppet/settings.rb:
|
7091
|
+
#: ../lib/puppet/settings.rb:1452
|
7674
7092
|
msgid "Error converting value for param '%{name}': %{detail}"
|
7675
7093
|
msgstr ""
|
7676
7094
|
|
7677
|
-
#: ../lib/puppet/settings.rb:
|
7095
|
+
#: ../lib/puppet/settings.rb:1476
|
7678
7096
|
msgid "Could not find value for %{expression}"
|
7679
7097
|
msgstr ""
|
7680
7098
|
|
7681
7099
|
#. TRANSLATORS '$environment' is a Puppet specific variable and should not be translated
|
7682
|
-
#: ../lib/puppet/settings.rb:
|
7100
|
+
#: ../lib/puppet/settings.rb:1486
|
7683
7101
|
msgid "You cannot interpolate $environment within '%{setting_name}' when using directory environments."
|
7684
7102
|
msgstr ""
|
7685
7103
|
|
7686
|
-
#: ../lib/puppet/settings.rb:
|
7104
|
+
#: ../lib/puppet/settings.rb:1487
|
7687
7105
|
msgid "Its value will remain %{value}."
|
7688
7106
|
msgstr ""
|
7689
7107
|
|
7690
|
-
#: ../lib/puppet/settings.rb:
|
7108
|
+
#: ../lib/puppet/settings.rb:1518
|
7691
7109
|
msgid "Attempt to assign a value to unknown setting %{name}"
|
7692
7110
|
msgstr ""
|
7693
7111
|
|
@@ -7700,38 +7118,38 @@ msgid "Invalid autosign value %{value}: must be 'true'/'false' or an absolute pa
|
|
7700
7118
|
msgstr ""
|
7701
7119
|
|
7702
7120
|
#. TRANSLATORS ':%{name}', ':call_hook', and ':on_write_only' should not be translated
|
7703
|
-
#: ../lib/puppet/settings/base_setting.rb:
|
7121
|
+
#: ../lib/puppet/settings/base_setting.rb:37
|
7704
7122
|
msgid "Setting :%{name} :call_hook is nil, defaulting to :on_write_only"
|
7705
7123
|
msgstr ""
|
7706
7124
|
|
7707
7125
|
#. TRANSLATORS 'call_hook' is a Puppet option name and should not be translated
|
7708
|
-
#: ../lib/puppet/settings/base_setting.rb:
|
7126
|
+
#: ../lib/puppet/settings/base_setting.rb:42
|
7709
7127
|
msgid "Invalid option %{value} for call_hook"
|
7710
7128
|
msgstr ""
|
7711
7129
|
|
7712
7130
|
#. TRANSLATORS ':call_hook' and ':hook' are specific setting names and should not be translated
|
7713
|
-
#: ../lib/puppet/settings/base_setting.rb:
|
7131
|
+
#: ../lib/puppet/settings/base_setting.rb:101
|
7714
7132
|
msgid "Cannot reference :call_hook for :%{name} if no :hook is defined"
|
7715
7133
|
msgstr ""
|
7716
7134
|
|
7717
|
-
#: ../lib/puppet/settings/base_setting.rb:
|
7135
|
+
#: ../lib/puppet/settings/base_setting.rb:107
|
7718
7136
|
msgid "%{class_name} (setting '%{setting}') does not accept %{parameter}"
|
7719
7137
|
msgstr ""
|
7720
7138
|
|
7721
|
-
#: ../lib/puppet/settings/base_setting.rb:
|
7139
|
+
#: ../lib/puppet/settings/base_setting.rb:114
|
7722
7140
|
msgid "You must provide a description for the %{class_name} config option"
|
7723
7141
|
msgstr ""
|
7724
7142
|
|
7725
|
-
#: ../lib/puppet/settings/base_setting.rb:
|
7143
|
+
#: ../lib/puppet/settings/base_setting.rb:128
|
7726
7144
|
msgid "Short names can only be one character."
|
7727
7145
|
msgstr ""
|
7728
7146
|
|
7729
7147
|
#. TRANSLATORS 'deprecated' is a Puppet setting and ':completely' and ':allowed_on_commandline' are possible values and should not be translated
|
7730
|
-
#: ../lib/puppet/settings/base_setting.rb:
|
7148
|
+
#: ../lib/puppet/settings/base_setting.rb:197
|
7731
7149
|
msgid "Unsupported deprecated value '%{deprecation}'."
|
7732
7150
|
msgstr ""
|
7733
7151
|
|
7734
|
-
#: ../lib/puppet/settings/base_setting.rb:
|
7152
|
+
#: ../lib/puppet/settings/base_setting.rb:198
|
7735
7153
|
msgid "Supported values for deprecated are ':completely' or ':allowed_on_commandline'"
|
7736
7154
|
msgstr ""
|
7737
7155
|
|
@@ -7809,7 +7227,15 @@ msgstr ""
|
|
7809
7227
|
msgid "Expected an Array, String, or Hash, got a %{klass}"
|
7810
7228
|
msgstr ""
|
7811
7229
|
|
7812
|
-
#: ../lib/puppet/settings/
|
7230
|
+
#: ../lib/puppet/settings/integer_setting.rb:8
|
7231
|
+
msgid "Cannot convert '%{value}' to an integer for parameter: %{name}"
|
7232
|
+
msgstr ""
|
7233
|
+
|
7234
|
+
#: ../lib/puppet/settings/port_setting.rb:6
|
7235
|
+
msgid "Value '%{value}' is not a valid port number for parameter: %{name}"
|
7236
|
+
msgstr ""
|
7237
|
+
|
7238
|
+
#: ../lib/puppet/settings/priority_setting.rb:40
|
7813
7239
|
msgid "Invalid priority format '%{value}' for parameter: %{name}"
|
7814
7240
|
msgstr ""
|
7815
7241
|
|
@@ -7829,83 +7255,83 @@ msgstr ""
|
|
7829
7255
|
msgid "Invalid 'time to live' format '%{value}' for parameter: %{param_name}"
|
7830
7256
|
msgstr ""
|
7831
7257
|
|
7832
|
-
#: ../lib/puppet/ssl/base.rb:
|
7258
|
+
#: ../lib/puppet/ssl/base.rb:26
|
7833
7259
|
msgid "%{name} has not declared what class it wraps"
|
7834
7260
|
msgstr ""
|
7835
7261
|
|
7836
|
-
#: ../lib/puppet/ssl/base.rb:
|
7262
|
+
#: ../lib/puppet/ssl/base.rb:31 ../lib/puppet/x509/cert_provider.rb:370
|
7837
7263
|
msgid "Certname %{name} must not contain unprintable or non-ASCII characters"
|
7838
7264
|
msgstr ""
|
7839
7265
|
|
7840
|
-
#: ../lib/puppet/ssl/base.rb:
|
7266
|
+
#: ../lib/puppet/ssl/base.rb:37
|
7841
7267
|
msgid "%{class_name} did not override 'generate'"
|
7842
7268
|
msgstr ""
|
7843
7269
|
|
7844
|
-
#: ../lib/puppet/ssl/base.rb:
|
7270
|
+
#: ../lib/puppet/ssl/base.rb:64
|
7845
7271
|
msgid "Object must be an instance of %{class_name}, %{actual_class} given"
|
7846
7272
|
msgstr ""
|
7847
7273
|
|
7848
|
-
#: ../lib/puppet/ssl/base.rb:
|
7274
|
+
#: ../lib/puppet/ssl/base.rb:68
|
7849
7275
|
msgid "Name must be supplied if it cannot be determined from the instance"
|
7850
7276
|
msgstr ""
|
7851
7277
|
|
7852
|
-
#: ../lib/puppet/ssl/base.rb:
|
7278
|
+
#: ../lib/puppet/ssl/base.rb:140
|
7853
7279
|
msgid "Unknown signature algorithm '%{ln}'"
|
7854
7280
|
msgstr ""
|
7855
7281
|
|
7856
|
-
#: ../lib/puppet/ssl/certificate_request.rb:
|
7282
|
+
#: ../lib/puppet/ssl/certificate_request.rb:57
|
7857
7283
|
msgid "Creating a new SSL certificate request for %{name}"
|
7858
7284
|
msgstr ""
|
7859
7285
|
|
7860
|
-
#: ../lib/puppet/ssl/certificate_request.rb:
|
7286
|
+
#: ../lib/puppet/ssl/certificate_request.rb:90
|
7861
7287
|
msgid "CSR sign verification failed; you need to clean the certificate request for %{name} on the server"
|
7862
7288
|
msgstr ""
|
7863
7289
|
|
7864
|
-
#: ../lib/puppet/ssl/certificate_request.rb:
|
7290
|
+
#: ../lib/puppet/ssl/certificate_request.rb:96
|
7865
7291
|
msgid "Certificate Request fingerprint (%{digest}): %{hex_digest}"
|
7866
7292
|
msgstr ""
|
7867
7293
|
|
7868
|
-
#: ../lib/puppet/ssl/certificate_request.rb:
|
7294
|
+
#: ../lib/puppet/ssl/certificate_request.rb:140
|
7869
7295
|
msgid "CSR needs content to extract fields"
|
7870
7296
|
msgstr ""
|
7871
7297
|
|
7872
|
-
#: ../lib/puppet/ssl/certificate_request.rb:
|
7298
|
+
#: ../lib/puppet/ssl/certificate_request.rb:167
|
7873
7299
|
msgid "In %{attr}, expected extension record %{index} to have two or three items, but found %{count}"
|
7874
7300
|
msgstr ""
|
7875
7301
|
|
7876
|
-
#: ../lib/puppet/ssl/certificate_request.rb:
|
7302
|
+
#: ../lib/puppet/ssl/certificate_request.rb:218
|
7877
7303
|
msgid "Cannot specify CSR attribute %{oid}: conflicts with internally used CSR attribute"
|
7878
7304
|
msgstr ""
|
7879
7305
|
|
7880
|
-
#: ../lib/puppet/ssl/certificate_request.rb:
|
7306
|
+
#: ../lib/puppet/ssl/certificate_request.rb:227
|
7881
7307
|
msgid "Cannot create CSR with attribute %{oid}: %{message}"
|
7882
7308
|
msgstr ""
|
7883
7309
|
|
7884
|
-
#: ../lib/puppet/ssl/certificate_request.rb:
|
7310
|
+
#: ../lib/puppet/ssl/certificate_request.rb:244
|
7885
7311
|
msgid "Cannot specify CSR extension request %{oid}: conflicts with internally used extension request"
|
7886
7312
|
msgstr ""
|
7887
7313
|
|
7888
|
-
#: ../lib/puppet/ssl/certificate_request.rb:
|
7314
|
+
#: ../lib/puppet/ssl/certificate_request.rb:250
|
7889
7315
|
msgid "Cannot create CSR with extension request %{oid}: %{message}"
|
7890
7316
|
msgstr ""
|
7891
7317
|
|
7892
|
-
#: ../lib/puppet/ssl/certificate_request.rb:
|
7318
|
+
#: ../lib/puppet/ssl/certificate_request.rb:301
|
7893
7319
|
msgid "In %{attr}, expected Set but found %{klass}"
|
7894
7320
|
msgstr ""
|
7895
7321
|
|
7896
|
-
#: ../lib/puppet/ssl/certificate_request.rb:
|
7322
|
+
#: ../lib/puppet/ssl/certificate_request.rb:305
|
7897
7323
|
msgid "In %{attr}, expected Set[Array] but found %{klass}"
|
7898
7324
|
msgstr ""
|
7899
7325
|
|
7900
|
-
#: ../lib/puppet/ssl/certificate_request.rb:
|
7326
|
+
#: ../lib/puppet/ssl/certificate_request.rb:309
|
7901
7327
|
msgid "In %{attr}, expected Set[Array] with one value but found %{count} elements"
|
7902
7328
|
msgstr ""
|
7903
7329
|
|
7904
|
-
#: ../lib/puppet/ssl/certificate_request.rb:
|
7330
|
+
#: ../lib/puppet/ssl/certificate_request.rb:313
|
7905
7331
|
msgid "In %{attr}, expected Set[Array[Sequence[...]]], but found %{klass}"
|
7906
7332
|
msgstr ""
|
7907
7333
|
|
7908
|
-
#: ../lib/puppet/ssl/certificate_request.rb:
|
7334
|
+
#: ../lib/puppet/ssl/certificate_request.rb:317
|
7909
7335
|
msgid "In %{attr}, expected Set[Array[Sequence[Array[...]]]], but found %{klass}"
|
7910
7336
|
msgstr ""
|
7911
7337
|
|
@@ -7933,195 +7359,107 @@ msgstr ""
|
|
7933
7359
|
msgid "Server hostname '%{host}' did not match server certificate; %{expected_certnames}"
|
7934
7360
|
msgstr ""
|
7935
7361
|
|
7936
|
-
#: ../lib/puppet/ssl/
|
7937
|
-
msgid "No certificate to validate."
|
7938
|
-
msgstr ""
|
7939
|
-
|
7940
|
-
#: ../lib/puppet/ssl/host.rb:155
|
7941
|
-
msgid "No private key with which to validate certificate with fingerprint: %{fingerprint}"
|
7942
|
-
msgstr ""
|
7943
|
-
|
7944
|
-
#: ../lib/puppet/ssl/host.rb:157
|
7945
|
-
msgid ""
|
7946
|
-
"The certificate retrieved from the master does not match the agent's private key. Did you forget to run as root?\n"
|
7947
|
-
"Certificate fingerprint: %{fingerprint}\n"
|
7948
|
-
"To fix this, remove the certificate from both the master and the agent and then start a puppet run, which will automatically regenerate a certificate.\n"
|
7949
|
-
"On the master:\n"
|
7950
|
-
" puppetserver ca clean --certname %{cert_name}\n"
|
7951
|
-
"On the agent:\n"
|
7952
|
-
" 1. puppet ssl clean %{clean_params}\n"
|
7953
|
-
" 2. puppet %{puppet_params}\n"
|
7954
|
-
msgstr ""
|
7955
|
-
|
7956
|
-
#: ../lib/puppet/ssl/host.rb:212
|
7957
|
-
msgid ""
|
7958
|
-
"The CSR retrieved from the master does not match the agent's public key.\n"
|
7959
|
-
"CSR fingerprint: %{fingerprint}\n"
|
7960
|
-
"CSR public key: %{csr_public_key}\n"
|
7961
|
-
"Agent public key: %{agent_public_key}\n"
|
7962
|
-
"To fix this, remove the CSR from both the master and the agent and then start a puppet run, which will automatically regenerate a CSR.\n"
|
7963
|
-
"On the master:\n"
|
7964
|
-
" puppetserver ca clean --certname %{cert_name}\n"
|
7965
|
-
"On the agent:\n"
|
7966
|
-
" 1. puppet ssl clean %{clean_params}\n"
|
7967
|
-
" 2. puppet %{puppet_params}\n"
|
7968
|
-
msgstr ""
|
7969
|
-
|
7970
|
-
#: ../lib/puppet/ssl/host.rb:235
|
7971
|
-
msgid "Puppet::SSL::Host is deprecated and will be removed in a future release of Puppet."
|
7972
|
-
msgstr ""
|
7973
|
-
|
7974
|
-
#: ../lib/puppet/ssl/host.rb:267 ../lib/puppet/ssl/host.rb:288
|
7975
|
-
msgid "Could not request certificate: %{message}"
|
7976
|
-
msgstr ""
|
7977
|
-
|
7978
|
-
#: ../lib/puppet/ssl/host.rb:269
|
7979
|
-
msgid "Exiting; failed to retrieve certificate and waitforcert is disabled"
|
7980
|
-
msgstr ""
|
7981
|
-
|
7982
|
-
#: ../lib/puppet/ssl/host.rb:278
|
7983
|
-
msgid "Exiting; no certificate found and waitforcert is disabled"
|
7984
|
-
msgstr ""
|
7985
|
-
|
7986
|
-
#: ../lib/puppet/ssl/host.rb:286
|
7987
|
-
msgid "Did not receive certificate"
|
7988
|
-
msgstr ""
|
7989
|
-
|
7990
|
-
#: ../lib/puppet/ssl/host.rb:326
|
7991
|
-
msgid "Response from the CA did not contain a valid certificate request: %{message}"
|
7992
|
-
msgstr ""
|
7993
|
-
|
7994
|
-
#: ../lib/puppet/ssl/host.rb:332
|
7995
|
-
msgid "Could not download certificate request: %{message}"
|
7996
|
-
msgstr ""
|
7997
|
-
|
7998
|
-
#: ../lib/puppet/ssl/host.rb:359
|
7999
|
-
msgid ""
|
8000
|
-
"Failed attempting to load CRL from %{crl_path}! The CRL below caused the error '%{error}':\n"
|
8001
|
-
"%{crl}"
|
8002
|
-
msgstr ""
|
8003
|
-
|
8004
|
-
#: ../lib/puppet/ssl/host.rb:391 ../lib/puppet/ssl/state_machine.rb:120
|
8005
|
-
msgid "Could not download CRLs: %{message}"
|
8006
|
-
msgstr ""
|
8007
|
-
|
8008
|
-
#: ../lib/puppet/ssl/host.rb:425
|
8009
|
-
msgid "The certificate at %{file_path} is invalid. Could not load."
|
8010
|
-
msgstr ""
|
8011
|
-
|
8012
|
-
#: ../lib/puppet/ssl/host.rb:446
|
8013
|
-
msgid "Response from the CA did not contain a valid certificate for %{cert_name}."
|
8014
|
-
msgstr ""
|
8015
|
-
|
8016
|
-
#: ../lib/puppet/ssl/host.rb:450
|
8017
|
-
msgid "No certificate for %{cert_name} on CA"
|
8018
|
-
msgstr ""
|
8019
|
-
|
8020
|
-
#: ../lib/puppet/ssl/host.rb:453
|
8021
|
-
msgid "Could not download host certificate: %{message}"
|
8022
|
-
msgstr ""
|
8023
|
-
|
8024
|
-
#: ../lib/puppet/ssl/oids.rb:110
|
7362
|
+
#: ../lib/puppet/ssl/oids.rb:112
|
8025
7363
|
msgid "Error loading ssl custom OIDs mapping file from '%{custom_oid_file}': %{err}"
|
8026
7364
|
msgstr ""
|
8027
7365
|
|
8028
|
-
#: ../lib/puppet/ssl/oids.rb:
|
7366
|
+
#: ../lib/puppet/ssl/oids.rb:116
|
8029
7367
|
msgid "Error loading ssl custom OIDs mapping file from '%{custom_oid_file}': no such index '%{map_key}'"
|
8030
7368
|
msgstr ""
|
8031
7369
|
|
8032
|
-
#: ../lib/puppet/ssl/oids.rb:
|
7370
|
+
#: ../lib/puppet/ssl/oids.rb:120
|
8033
7371
|
msgid "Error loading ssl custom OIDs mapping file from '%{custom_oid_file}': data under index '%{map_key}' must be a Hash"
|
8034
7372
|
msgstr ""
|
8035
7373
|
|
8036
|
-
#: ../lib/puppet/ssl/oids.rb:
|
7374
|
+
#: ../lib/puppet/ssl/oids.rb:127
|
8037
7375
|
msgid "Error loading ssl custom OIDs mapping file from '%{custom_oid_file}': incomplete definition of oid '%{oid}'"
|
8038
7376
|
msgstr ""
|
8039
7377
|
|
8040
|
-
#: ../lib/puppet/ssl/oids.rb:
|
7378
|
+
#: ../lib/puppet/ssl/oids.rb:159
|
8041
7379
|
msgid "Error registering ssl custom OIDs mapping from file '%{custom_oid_file}': %{err}"
|
8042
7380
|
msgstr ""
|
8043
7381
|
|
8044
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
7382
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:83
|
8045
7383
|
msgid "Failed to add '%{path}' as a trusted CA file: %{detail}"
|
8046
7384
|
msgstr ""
|
8047
7385
|
|
8048
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
7386
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:87
|
8049
7387
|
msgid "The 'ssl_trust_store' setting does not refer to a file and will be ignored: '%{path}'"
|
8050
7388
|
msgstr ""
|
8051
7389
|
|
8052
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
7390
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:121
|
8053
7391
|
msgid "CA certs are missing"
|
8054
7392
|
msgstr ""
|
8055
7393
|
|
8056
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
7394
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:122
|
8057
7395
|
msgid "CRLs are missing"
|
8058
7396
|
msgstr ""
|
8059
7397
|
|
8060
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
7398
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:123
|
8061
7399
|
msgid "Private key is missing"
|
8062
7400
|
msgstr ""
|
8063
7401
|
|
8064
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
7402
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:124
|
8065
7403
|
msgid "Client cert is missing"
|
8066
7404
|
msgstr ""
|
8067
7405
|
|
8068
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
7406
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:130
|
8069
7407
|
msgid "Unsupported key '%{type}'"
|
8070
7408
|
msgstr ""
|
8071
7409
|
|
8072
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
7410
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:134
|
8073
7411
|
msgid "The certificate for '%{name}' does not match its private key"
|
8074
7412
|
msgstr ""
|
8075
7413
|
|
8076
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
7414
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:173
|
8077
7415
|
msgid "Failed to load private key for host '%{name}': %{message}"
|
8078
7416
|
msgstr ""
|
8079
7417
|
|
8080
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
7418
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:187
|
8081
7419
|
msgid "The CSR for host '%{name}' does not match the public key"
|
8082
7420
|
msgstr ""
|
8083
7421
|
|
8084
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
7422
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:251
|
8085
7423
|
msgid "The issuer '%{issuer}' of certificate '%{subject}' cannot be found locally"
|
8086
7424
|
msgstr ""
|
8087
7425
|
|
8088
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
7426
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:267
|
8089
7427
|
msgid "The certificate '%{subject}' is not yet valid, verify time is synchronized"
|
8090
7428
|
msgstr ""
|
8091
7429
|
|
8092
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
7430
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:269
|
8093
7431
|
msgid "The certificate '%{subject}' has expired, verify time is synchronized"
|
8094
7432
|
msgstr ""
|
8095
7433
|
|
8096
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
7434
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:271
|
8097
7435
|
msgid "The CRL issued by '%{issuer}' is not yet valid, verify time is synchronized"
|
8098
7436
|
msgstr ""
|
8099
7437
|
|
8100
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
7438
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:273
|
8101
7439
|
msgid "The CRL issued by '%{issuer}' has expired, verify time is synchronized"
|
8102
7440
|
msgstr ""
|
8103
7441
|
|
8104
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
7442
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:275
|
8105
7443
|
msgid "Invalid signature for certificate '%{subject}'"
|
8106
7444
|
msgstr ""
|
8107
7445
|
|
8108
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
7446
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:277
|
8109
7447
|
msgid "Invalid signature for CRL issued by '%{issuer}'"
|
8110
7448
|
msgstr ""
|
8111
7449
|
|
8112
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
7450
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:279
|
8113
7451
|
msgid "The issuer '%{issuer}' of certificate '%{subject}' is missing"
|
8114
7452
|
msgstr ""
|
8115
7453
|
|
8116
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
7454
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:282
|
8117
7455
|
msgid "The CRL issued by '%{issuer}' is missing"
|
8118
7456
|
msgstr ""
|
8119
7457
|
|
8120
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
7458
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:284
|
8121
7459
|
msgid "Certificate '%{subject}' is revoked"
|
8122
7460
|
msgstr ""
|
8123
7461
|
|
8124
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
7462
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:288
|
8125
7463
|
msgid "Certificate '%{subject}' failed verification (%{err}): %{err_utf8}"
|
8126
7464
|
msgstr ""
|
8127
7465
|
|
@@ -8145,6 +7483,10 @@ msgstr ""
|
|
8145
7483
|
msgid "CRL is missing from the server"
|
8146
7484
|
msgstr ""
|
8147
7485
|
|
7486
|
+
#: ../lib/puppet/ssl/state_machine.rb:120
|
7487
|
+
msgid "Could not download CRLs: %{message}"
|
7488
|
+
msgstr ""
|
7489
|
+
|
8148
7490
|
#: ../lib/puppet/ssl/state_machine.rb:127
|
8149
7491
|
msgid "Refreshing CRL"
|
8150
7492
|
msgstr ""
|
@@ -8217,16 +7559,16 @@ msgstr ""
|
|
8217
7559
|
msgid "Another puppet instance is already running; waiting for it to finish"
|
8218
7560
|
msgstr ""
|
8219
7561
|
|
8220
|
-
#: ../lib/puppet/ssl/state_machine.rb:
|
7562
|
+
#: ../lib/puppet/ssl/state_machine.rb:429
|
8221
7563
|
msgid "Verified client certificate '%{subject}' fingerprint %{digest}"
|
8222
7564
|
msgstr ""
|
8223
7565
|
|
8224
|
-
#: ../lib/puppet/ssl/state_machine.rb:
|
7566
|
+
#: ../lib/puppet/ssl/state_machine.rb:431
|
8225
7567
|
msgid "Verified CA certificate '%{subject}' fingerprint %{digest}"
|
8226
7568
|
msgstr ""
|
8227
7569
|
|
8228
7570
|
#. TRANSLATORS: `error` is an untranslated message from openssl describing why a certificate in the server's chain is invalid, and `subject` is the identity/name of the failed certificate
|
8229
|
-
#: ../lib/puppet/ssl/verifier.rb:
|
7571
|
+
#: ../lib/puppet/ssl/verifier.rb:130
|
8230
7572
|
msgid "certificate verify failed [%{error} for %{subject}]"
|
8231
7573
|
msgstr ""
|
8232
7574
|
|
@@ -8351,19 +7693,19 @@ msgid "Prefetch failed for %{type_name} provider '%{name}'"
|
|
8351
7693
|
msgstr ""
|
8352
7694
|
|
8353
7695
|
#. TRANSLATORS `prefetch` is a function name and should not be translated
|
8354
|
-
#: ../lib/puppet/transaction.rb:381
|
7696
|
+
#: ../lib/puppet/transaction.rb:381
|
8355
7697
|
msgid "Could not prefetch %{type_name} provider '%{name}': %{detail}"
|
8356
7698
|
msgstr ""
|
8357
7699
|
|
8358
|
-
#: ../lib/puppet/transaction.rb:
|
7700
|
+
#: ../lib/puppet/transaction.rb:415
|
8359
7701
|
msgid "Skipping resources in class because of failed class dependencies"
|
8360
7702
|
msgstr ""
|
8361
7703
|
|
8362
|
-
#: ../lib/puppet/transaction.rb:
|
7704
|
+
#: ../lib/puppet/transaction.rb:419
|
8363
7705
|
msgid "Skipping because of failed dependencies"
|
8364
7706
|
msgstr ""
|
8365
7707
|
|
8366
|
-
#: ../lib/puppet/transaction.rb:
|
7708
|
+
#: ../lib/puppet/transaction.rb:424
|
8367
7709
|
msgid "Skipping because provider prefetch failed"
|
8368
7710
|
msgstr ""
|
8369
7711
|
|
@@ -8484,77 +7826,77 @@ msgstr ""
|
|
8484
7826
|
msgid "There is more than one '%{basename}' script in %{dir}"
|
8485
7827
|
msgstr ""
|
8486
7828
|
|
8487
|
-
#: ../lib/puppet/type.rb:
|
7829
|
+
#: ../lib/puppet/type.rb:496
|
8488
7830
|
msgid "Options must be a hash, not %{type}"
|
8489
7831
|
msgstr ""
|
8490
7832
|
|
8491
|
-
#: ../lib/puppet/type.rb:
|
7833
|
+
#: ../lib/puppet/type.rb:499
|
8492
7834
|
msgid "Class %{class_name} already has a property named %{property}"
|
8493
7835
|
msgstr ""
|
8494
7836
|
|
8495
|
-
#: ../lib/puppet/type.rb:
|
7837
|
+
#: ../lib/puppet/type.rb:586
|
8496
7838
|
msgid "Class %{class_name} has not defined parameters"
|
8497
7839
|
msgstr ""
|
8498
7840
|
|
8499
|
-
#: ../lib/puppet/type.rb:
|
7841
|
+
#: ../lib/puppet/type.rb:673
|
8500
7842
|
msgid "Parameter %{name} failed on %{ref}: %{detail}"
|
8501
7843
|
msgstr ""
|
8502
7844
|
|
8503
|
-
#: ../lib/puppet/type.rb:
|
7845
|
+
#: ../lib/puppet/type.rb:696
|
8504
7846
|
msgid "Undefined attribute '%{attribute}' in %{name}"
|
8505
7847
|
msgstr ""
|
8506
7848
|
|
8507
7849
|
#. TRANSLATORS 'is' is a variable name and should not be translated
|
8508
7850
|
#. TRANSLATORS 'is' is a variable name and should not be translated
|
8509
|
-
#: ../lib/puppet/type.rb:
|
7851
|
+
#: ../lib/puppet/type.rb:1039 ../lib/puppet/type.rb:1050
|
8510
7852
|
msgid "The 'is' value is not in the 'is' array for '%{name}'"
|
8511
7853
|
msgstr ""
|
8512
7854
|
|
8513
|
-
#: ../lib/puppet/type.rb:
|
7855
|
+
#: ../lib/puppet/type.rb:1181
|
8514
7856
|
msgid "%{name} has no providers and has not overridden 'instances'"
|
8515
7857
|
msgstr ""
|
8516
7858
|
|
8517
|
-
#: ../lib/puppet/type.rb:
|
7859
|
+
#: ../lib/puppet/type.rb:1445
|
8518
7860
|
msgid "Cannot add aliases without a catalog"
|
8519
7861
|
msgstr ""
|
8520
7862
|
|
8521
|
-
#: ../lib/puppet/type.rb:
|
7863
|
+
#: ../lib/puppet/type.rb:1525
|
8522
7864
|
msgid "Could not find %{description} %{ref} for %{resource}"
|
8523
7865
|
msgstr ""
|
8524
7866
|
|
8525
|
-
#: ../lib/puppet/type.rb:
|
7867
|
+
#: ../lib/puppet/type.rb:1749
|
8526
7868
|
msgid "Found multiple default providers for %{name}: %{provider_list}; using %{selected_provider}"
|
8527
7869
|
msgstr ""
|
8528
7870
|
|
8529
|
-
#: ../lib/puppet/type.rb:
|
7871
|
+
#: ../lib/puppet/type.rb:1836
|
8530
7872
|
msgid "Could not find parent provider %{parent} of %{name}"
|
8531
7873
|
msgstr ""
|
8532
7874
|
|
8533
|
-
#: ../lib/puppet/type.rb:
|
7875
|
+
#: ../lib/puppet/type.rb:1910
|
8534
7876
|
msgid "Invalid %{resource} provider '%{provider_class}'"
|
8535
7877
|
msgstr ""
|
8536
7878
|
|
8537
|
-
#: ../lib/puppet/type.rb:
|
7879
|
+
#: ../lib/puppet/type.rb:1995
|
8538
7880
|
msgid "Could not find %{name} provider of %{provider}"
|
8539
7881
|
msgstr ""
|
8540
7882
|
|
8541
|
-
#: ../lib/puppet/type.rb:
|
7883
|
+
#: ../lib/puppet/type.rb:2113
|
8542
7884
|
msgid "You cannot add relationships without a catalog"
|
8543
7885
|
msgstr ""
|
8544
7886
|
|
8545
|
-
#: ../lib/puppet/type.rb:
|
7887
|
+
#: ../lib/puppet/type.rb:2416
|
8546
7888
|
msgid "Unable to mark '%{name}' as sensitive: %{name} is a parameter and not a property, and cannot be automatically redacted."
|
8547
7889
|
msgstr ""
|
8548
7890
|
|
8549
|
-
#: ../lib/puppet/type.rb:
|
7891
|
+
#: ../lib/puppet/type.rb:2419
|
8550
7892
|
msgid "Unable to mark '%{name}' as sensitive: the property itself was not assigned a value."
|
8551
7893
|
msgstr ""
|
8552
7894
|
|
8553
|
-
#: ../lib/puppet/type.rb:
|
7895
|
+
#: ../lib/puppet/type.rb:2421
|
8554
7896
|
msgid "Unable to mark '%{name}' as sensitive: the property itself is not defined on %{type}."
|
8555
7897
|
msgstr ""
|
8556
7898
|
|
8557
|
-
#: ../lib/puppet/type.rb:
|
7899
|
+
#: ../lib/puppet/type.rb:2479
|
8558
7900
|
msgid "Could not set %{attribute} on %{class_name}: %{detail}"
|
8559
7901
|
msgstr ""
|
8560
7902
|
|
@@ -8631,86 +7973,86 @@ msgstr ""
|
|
8631
7973
|
msgid "File paths must be fully qualified, not '%{path}'"
|
8632
7974
|
msgstr ""
|
8633
7975
|
|
8634
|
-
#: ../lib/puppet/type/file.rb:
|
7976
|
+
#: ../lib/puppet/type/file.rb:140
|
8635
7977
|
msgid "Invalid backup type %{value}"
|
8636
7978
|
msgstr ""
|
8637
7979
|
|
8638
|
-
#: ../lib/puppet/type/file.rb:
|
7980
|
+
#: ../lib/puppet/type/file.rb:184 ../lib/puppet/type/tidy.rb:48
|
8639
7981
|
msgid "Invalid recurse value %{value}"
|
8640
7982
|
msgstr ""
|
8641
7983
|
|
8642
|
-
#: ../lib/puppet/type/file.rb:
|
7984
|
+
#: ../lib/puppet/type/file.rb:216
|
8643
7985
|
msgid "Invalid recurselimit value %{value}"
|
8644
7986
|
msgstr ""
|
8645
7987
|
|
8646
|
-
#: ../lib/puppet/type/file.rb:
|
7988
|
+
#: ../lib/puppet/type/file.rb:416
|
8647
7989
|
msgid "You cannot specify more than one of %{creators}"
|
8648
7990
|
msgstr ""
|
8649
7991
|
|
8650
|
-
#: ../lib/puppet/type/file.rb:
|
7992
|
+
#: ../lib/puppet/type/file.rb:418
|
8651
7993
|
msgid "You cannot specify a remote recursion without a source"
|
8652
7994
|
msgstr ""
|
8653
7995
|
|
8654
|
-
#: ../lib/puppet/type/file.rb:
|
7996
|
+
#: ../lib/puppet/type/file.rb:420
|
8655
7997
|
msgid "You cannot specify source when using checksum 'none'"
|
8656
7998
|
msgstr ""
|
8657
7999
|
|
8658
|
-
#: ../lib/puppet/type/file.rb:
|
8000
|
+
#: ../lib/puppet/type/file.rb:423
|
8659
8001
|
msgid "You cannot specify content when using checksum '%{checksum_type}'"
|
8660
8002
|
msgstr ""
|
8661
8003
|
|
8662
|
-
#: ../lib/puppet/type/file.rb:
|
8004
|
+
#: ../lib/puppet/type/file.rb:426
|
8663
8005
|
msgid "Possible error: recurselimit is set but not recurse, no recursion will happen"
|
8664
8006
|
msgstr ""
|
8665
8007
|
|
8666
|
-
#: ../lib/puppet/type/file.rb:
|
8008
|
+
#: ../lib/puppet/type/file.rb:434
|
8667
8009
|
msgid "Checksum value '%{value}' is not a valid checksum type %{checksum}"
|
8668
8010
|
msgstr ""
|
8669
8011
|
|
8670
|
-
#: ../lib/puppet/type/file.rb:
|
8012
|
+
#: ../lib/puppet/type/file.rb:437
|
8671
8013
|
msgid "Checksum value is ignored unless content or source are specified"
|
8672
8014
|
msgstr ""
|
8673
8015
|
|
8674
|
-
#: ../lib/puppet/type/file.rb:
|
8016
|
+
#: ../lib/puppet/type/file.rb:475
|
8675
8017
|
msgid "Can not find filebucket for backups without a catalog"
|
8676
8018
|
msgstr ""
|
8677
8019
|
|
8678
|
-
#: ../lib/puppet/type/file.rb:
|
8020
|
+
#: ../lib/puppet/type/file.rb:480
|
8679
8021
|
msgid "Could not find filebucket %{backup} specified in backup"
|
8680
8022
|
msgstr ""
|
8681
8023
|
|
8682
|
-
#: ../lib/puppet/type/file.rb:
|
8024
|
+
#: ../lib/puppet/type/file.rb:778
|
8683
8025
|
msgid "Could not back up file of type %{current_type}"
|
8684
8026
|
msgstr ""
|
8685
8027
|
|
8686
|
-
#: ../lib/puppet/type/file.rb:
|
8028
|
+
#: ../lib/puppet/type/file.rb:793
|
8687
8029
|
msgid "Could not remove files of type %{current_type}"
|
8688
8030
|
msgstr ""
|
8689
8031
|
|
8690
8032
|
#. TRANSLATORS "source_permissions => ignore" should not be translated
|
8691
|
-
#: ../lib/puppet/type/file.rb:
|
8033
|
+
#: ../lib/puppet/type/file.rb:804
|
8692
8034
|
msgid "Copying owner/mode/group from the source file on Windows is not supported; use source_permissions => ignore."
|
8693
8035
|
msgstr ""
|
8694
8036
|
|
8695
8037
|
#. TRANSLATORS "stat" is a program name and should not be translated
|
8696
|
-
#: ../lib/puppet/type/file.rb:
|
8038
|
+
#: ../lib/puppet/type/file.rb:885 ../lib/puppet/type/tidy.rb:352
|
8697
8039
|
msgid "Could not stat; permission denied"
|
8698
8040
|
msgstr ""
|
8699
8041
|
|
8700
|
-
#: ../lib/puppet/type/file.rb:
|
8042
|
+
#: ../lib/puppet/type/file.rb:888
|
8701
8043
|
msgid "Could not stat; invalid pathname"
|
8702
8044
|
msgstr ""
|
8703
8045
|
|
8704
|
-
#: ../lib/puppet/type/file.rb:
|
8046
|
+
#: ../lib/puppet/type/file.rb:1016
|
8705
8047
|
msgid "Not removing directory; use 'force' to override"
|
8706
8048
|
msgstr ""
|
8707
8049
|
|
8708
8050
|
#. TRANSLATORS refers to a file which could not be backed up
|
8709
|
-
#: ../lib/puppet/type/file.rb:
|
8051
|
+
#: ../lib/puppet/type/file.rb:1041
|
8710
8052
|
msgid "Could not back up; will not remove"
|
8711
8053
|
msgstr ""
|
8712
8054
|
|
8713
|
-
#: ../lib/puppet/type/file.rb:
|
8055
|
+
#: ../lib/puppet/type/file.rb:1056
|
8714
8056
|
msgid "File written to disk did not match desired checksum; discarding changes (%{content_checksum} vs %{desired_checksum})"
|
8715
8057
|
msgstr ""
|
8716
8058
|
|
@@ -8776,36 +8118,36 @@ msgstr ""
|
|
8776
8118
|
msgid "Invalid GID %{gid}"
|
8777
8119
|
msgstr ""
|
8778
8120
|
|
8779
|
-
#: ../lib/puppet/type/package.rb:
|
8121
|
+
#: ../lib/puppet/type/package.rb:124 ../lib/puppet/type/package.rb:138
|
8780
8122
|
msgid "Could not update: %{detail}"
|
8781
8123
|
msgstr ""
|
8782
8124
|
|
8783
|
-
#: ../lib/puppet/type/package.rb:
|
8125
|
+
#: ../lib/puppet/type/package.rb:173
|
8784
8126
|
msgid "Could not get latest version: %{detail}"
|
8785
8127
|
msgstr ""
|
8786
8128
|
|
8787
|
-
#: ../lib/puppet/type/package.rb:
|
8129
|
+
#: ../lib/puppet/type/package.rb:273
|
8788
8130
|
msgid "Name must be a String not %{klass}"
|
8789
8131
|
msgstr ""
|
8790
8132
|
|
8791
|
-
#: ../lib/puppet/type/package.rb:
|
8133
|
+
#: ../lib/puppet/type/package.rb:419
|
8792
8134
|
msgid "Cannot have both `ensure => disabled` and `flavor`"
|
8793
8135
|
msgstr ""
|
8794
8136
|
|
8795
|
-
#: ../lib/puppet/type/package.rb:
|
8137
|
+
#: ../lib/puppet/type/package.rb:518
|
8796
8138
|
msgid "Cannot have both `enable_only => true` and `flavor`"
|
8797
8139
|
msgstr ""
|
8798
8140
|
|
8799
|
-
#: ../lib/puppet/type/package.rb:
|
8141
|
+
#: ../lib/puppet/type/package.rb:521
|
8800
8142
|
msgid "Cannot have both `ensure => disabled` and `enable_only => true`"
|
8801
8143
|
msgstr ""
|
8802
8144
|
|
8803
|
-
#: ../lib/puppet/type/package.rb:
|
8145
|
+
#: ../lib/puppet/type/package.rb:682
|
8804
8146
|
msgid "Invalid hold value %{value}. %{doc}"
|
8805
8147
|
msgstr ""
|
8806
8148
|
|
8807
|
-
#: ../lib/puppet/type/package.rb:
|
8808
|
-
msgid "You cannot use \"mark\" property while \"ensure\" is one of [\"absent\", \"purged\"
|
8149
|
+
#: ../lib/puppet/type/package.rb:709
|
8150
|
+
msgid "You cannot use \"mark\" property while \"ensure\" is one of [\"absent\", \"purged\"]"
|
8809
8151
|
msgstr ""
|
8810
8152
|
|
8811
8153
|
#: ../lib/puppet/type/resources.rb:15
|
@@ -9297,37 +8639,6 @@ msgstr ""
|
|
9297
8639
|
msgid "Trollop::die can only be called after Trollop::options"
|
9298
8640
|
msgstr ""
|
9299
8641
|
|
9300
|
-
#: ../lib/puppet/util/connection.rb:28
|
9301
|
-
msgid "Selected server from the %{setting} setting: %{server}"
|
9302
|
-
msgstr ""
|
9303
|
-
|
9304
|
-
#. TRANSLATORS 'server_list' is the name of a setting and should not be translated
|
9305
|
-
#: ../lib/puppet/util/connection.rb:35
|
9306
|
-
msgid "Dynamically-bound server lookup failed; using first entry from the `server_list` setting: %{server}"
|
9307
|
-
msgstr ""
|
9308
|
-
|
9309
|
-
#: ../lib/puppet/util/connection.rb:39
|
9310
|
-
msgid "Dynamically-bound server lookup failed, falling back to %{setting} setting: %{server}"
|
9311
|
-
msgstr ""
|
9312
|
-
|
9313
|
-
#: ../lib/puppet/util/connection.rb:60
|
9314
|
-
msgid "Selected port from the %{setting} setting: %{port}"
|
9315
|
-
msgstr ""
|
9316
|
-
|
9317
|
-
#. TRANSLATORS 'server_list' is the name of a setting and should not be translated
|
9318
|
-
#: ../lib/puppet/util/connection.rb:71
|
9319
|
-
msgid "Dynamically-bound port lookup failed; using first entry from the `server_list` setting: %{port}"
|
9320
|
-
msgstr ""
|
9321
|
-
|
9322
|
-
#. TRANSLATORS 'serverport' is the name of a setting and should not be translated
|
9323
|
-
#: ../lib/puppet/util/connection.rb:75
|
9324
|
-
msgid "Dynamically-bound port lookup failed; falling back to `serverport` setting: %{port}"
|
9325
|
-
msgstr ""
|
9326
|
-
|
9327
|
-
#: ../lib/puppet/util/connection.rb:80
|
9328
|
-
msgid "Dynamically-bound port lookup failed; falling back to %{setting} setting: %{port}"
|
9329
|
-
msgstr ""
|
9330
|
-
|
9331
8642
|
#: ../lib/puppet/util/diff.rb:30
|
9332
8643
|
msgid "Cannot provide diff without the diff/lcs Ruby library"
|
9333
8644
|
msgstr ""
|
@@ -9360,23 +8671,23 @@ msgstr ""
|
|
9360
8671
|
msgid "%{klass} failed with error %{error_type}: %{detail}"
|
9361
8672
|
msgstr ""
|
9362
8673
|
|
9363
|
-
#: ../lib/puppet/util/execution.rb:
|
8674
|
+
#: ../lib/puppet/util/execution.rb:185
|
9364
8675
|
msgid "Working directory %{cwd} does not exist!"
|
9365
8676
|
msgstr ""
|
9366
8677
|
|
9367
|
-
#: ../lib/puppet/util/execution.rb:
|
8678
|
+
#: ../lib/puppet/util/execution.rb:277
|
9368
8679
|
msgid "Could not get output"
|
9369
8680
|
msgstr ""
|
9370
8681
|
|
9371
|
-
#: ../lib/puppet/util/execution.rb:
|
8682
|
+
#: ../lib/puppet/util/execution.rb:286
|
9372
8683
|
msgid "Execution of '%{str}' returned %{exit_status}: %{output}"
|
9373
8684
|
msgstr ""
|
9374
8685
|
|
9375
|
-
#: ../lib/puppet/util/execution.rb:
|
8686
|
+
#: ../lib/puppet/util/execution.rb:363
|
9376
8687
|
msgid "Could not execute posix command: %{detail}"
|
9377
8688
|
msgstr ""
|
9378
8689
|
|
9379
|
-
#: ../lib/puppet/util/execution.rb:
|
8690
|
+
#: ../lib/puppet/util/execution.rb:411
|
9380
8691
|
msgid "Waiting for output; will sleep %{time_to_sleep} seconds"
|
9381
8692
|
msgstr ""
|
9382
8693
|
|
@@ -9488,10 +8799,6 @@ msgstr ""
|
|
9488
8799
|
msgid "Could not write crontab for %{path}: %{detail}"
|
9489
8800
|
msgstr ""
|
9490
8801
|
|
9491
|
-
#: ../lib/puppet/util/http_proxy.rb:215
|
9492
|
-
msgid "Too many HTTP redirections for %{uri}"
|
9493
|
-
msgstr ""
|
9494
|
-
|
9495
8802
|
#: ../lib/puppet/util/inifile.rb:139
|
9496
8803
|
msgid "Cannot read nonexistent file %{file}"
|
9497
8804
|
msgstr ""
|
@@ -9640,6 +8947,10 @@ msgstr ""
|
|
9640
8947
|
msgid "Duplicate device found at %{file_error_location}, already found at %{device_error_location}"
|
9641
8948
|
msgstr ""
|
9642
8949
|
|
8950
|
+
#: ../lib/puppet/util/network_device/config.rb:71
|
8951
|
+
msgid "Invalid entry at %{error_location}: %{file_text}"
|
8952
|
+
msgstr ""
|
8953
|
+
|
9643
8954
|
#: ../lib/puppet/util/network_device/config.rb:77
|
9644
8955
|
msgid "Configuration error: Cannot read %{file}; cannot serve"
|
9645
8956
|
msgstr ""
|
@@ -9696,7 +9007,7 @@ msgstr ""
|
|
9696
9007
|
msgid "Could not create feature %{name}: %{detail}"
|
9697
9008
|
msgstr ""
|
9698
9009
|
|
9699
|
-
#: ../lib/puppet/util/rdoc.rb:
|
9010
|
+
#: ../lib/puppet/util/rdoc.rb:37 ../lib/puppet/util/rdoc.rb:43 ../lib/puppet/util/rdoc.rb:47 ../lib/puppet/util/rdoc.rb:51
|
9700
9011
|
msgid "RDOC SUPPORT FOR MANIFEST HAS BEEN REMOVED - See PUP-3638"
|
9701
9012
|
msgstr ""
|
9702
9013
|
|
@@ -9900,14 +9211,6 @@ msgstr ""
|
|
9900
9211
|
msgid "Cannot create group if user '%{name}' exists."
|
9901
9212
|
msgstr ""
|
9902
9213
|
|
9903
|
-
#: ../lib/puppet/util/windows/api_types.rb:85
|
9904
|
-
msgid "Unable to read wide strings with %{null_terminator} terminal nulls"
|
9905
|
-
msgstr ""
|
9906
|
-
|
9907
|
-
#: ../lib/puppet/util/windows/api_types.rb:230
|
9908
|
-
msgid "Bad GUID format."
|
9909
|
-
msgstr ""
|
9910
|
-
|
9911
9214
|
#: ../lib/puppet/util/windows/com.rb:17
|
9912
9215
|
msgid "%{name} failed (hresult %{result})."
|
9913
9216
|
msgstr ""
|
@@ -9920,11 +9223,11 @@ msgstr ""
|
|
9920
9223
|
msgid "CoCreateInstance failed (%{klass})."
|
9921
9224
|
msgstr ""
|
9922
9225
|
|
9923
|
-
#: ../lib/puppet/util/windows/error.rb:
|
9226
|
+
#: ../lib/puppet/util/windows/error.rb:43
|
9924
9227
|
msgid "FormatMessageW could not format code %{code}"
|
9925
9228
|
msgstr ""
|
9926
9229
|
|
9927
|
-
#: ../lib/puppet/util/windows/error.rb:
|
9230
|
+
#: ../lib/puppet/util/windows/error.rb:49
|
9928
9231
|
msgid "FormatMessageW failed to allocate buffer for code %{code}"
|
9929
9232
|
msgstr ""
|
9930
9233
|
|
@@ -9947,15 +9250,15 @@ msgstr ""
|
|
9947
9250
|
msgid "(Win32 error: %{detail})"
|
9948
9251
|
msgstr ""
|
9949
9252
|
|
9950
|
-
#: ../lib/puppet/util/windows/file.rb:
|
9253
|
+
#: ../lib/puppet/util/windows/file.rb:117
|
9951
9254
|
msgid "Failed to set file attributes"
|
9952
9255
|
msgstr ""
|
9953
9256
|
|
9954
|
-
#: ../lib/puppet/util/windows/file.rb:
|
9257
|
+
#: ../lib/puppet/util/windows/file.rb:180
|
9955
9258
|
msgid "out_buffer is required"
|
9956
9259
|
msgstr ""
|
9957
9260
|
|
9958
|
-
#: ../lib/puppet/util/windows/file.rb:
|
9261
|
+
#: ../lib/puppet/util/windows/file.rb:253
|
9959
9262
|
msgid "Failed to call GetLongPathName"
|
9960
9263
|
msgstr ""
|
9961
9264
|
|
@@ -10122,119 +9425,119 @@ msgstr ""
|
|
10122
9425
|
msgid "Failed to set security information"
|
10123
9426
|
msgstr ""
|
10124
9427
|
|
10125
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9428
|
+
#: ../lib/puppet/util/windows/service.rb:44
|
10126
9429
|
msgid "Starting the %{service_name} service. Timeout set to: %{timeout} seconds"
|
10127
9430
|
msgstr ""
|
10128
9431
|
|
10129
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9432
|
+
#: ../lib/puppet/util/windows/service.rb:54
|
10130
9433
|
msgid "Failed to start the service"
|
10131
9434
|
msgstr ""
|
10132
9435
|
|
10133
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9436
|
+
#: ../lib/puppet/util/windows/service.rb:58
|
10134
9437
|
msgid "Successfully started the %{service_name} service"
|
10135
9438
|
msgstr ""
|
10136
9439
|
|
10137
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9440
|
+
#: ../lib/puppet/util/windows/service.rb:67
|
10138
9441
|
msgid "Stopping the %{service_name} service. Timeout set to: %{timeout} seconds"
|
10139
9442
|
msgstr ""
|
10140
9443
|
|
10141
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9444
|
+
#: ../lib/puppet/util/windows/service.rb:75
|
10142
9445
|
msgid "Successfully stopped the %{service_name} service"
|
10143
9446
|
msgstr ""
|
10144
9447
|
|
10145
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9448
|
+
#: ../lib/puppet/util/windows/service.rb:84
|
10146
9449
|
msgid "Resuming the %{service_name} service. Timeout set to: %{timeout} seconds"
|
10147
9450
|
msgstr ""
|
10148
9451
|
|
10149
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9452
|
+
#: ../lib/puppet/util/windows/service.rb:100
|
10150
9453
|
msgid "Successfully resumed the %{service_name} service"
|
10151
9454
|
msgstr ""
|
10152
9455
|
|
10153
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9456
|
+
#: ../lib/puppet/util/windows/service.rb:116
|
10154
9457
|
msgid "Unknown Service state '%{current_state}' for '%{service_name}'"
|
10155
9458
|
msgstr ""
|
10156
9459
|
|
10157
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9460
|
+
#: ../lib/puppet/util/windows/service.rb:143
|
10158
9461
|
msgid "Unknown start type '%{start_type}' for '%{service_name}'"
|
10159
9462
|
msgstr ""
|
10160
9463
|
|
10161
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9464
|
+
#: ../lib/puppet/util/windows/service.rb:193
|
10162
9465
|
msgid "Failed to update service configuration"
|
10163
9466
|
msgstr ""
|
10164
9467
|
|
10165
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9468
|
+
#: ../lib/puppet/util/windows/service.rb:258
|
10166
9469
|
msgid "Failed to fetch services"
|
10167
9470
|
msgstr ""
|
10168
9471
|
|
10169
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9472
|
+
#: ../lib/puppet/util/windows/service.rb:307
|
10170
9473
|
msgid "Failed to open a handle to the service"
|
10171
9474
|
msgstr ""
|
10172
9475
|
|
10173
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9476
|
+
#: ../lib/puppet/util/windows/service.rb:324
|
10174
9477
|
msgid "Failed to open a handle to the service control manager"
|
10175
9478
|
msgstr ""
|
10176
9479
|
|
10177
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9480
|
+
#: ../lib/puppet/util/windows/service.rb:347
|
10178
9481
|
msgid "The service is already in the %{final_state} state. No further work needs to be done."
|
10179
9482
|
msgstr ""
|
10180
9483
|
|
10181
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9484
|
+
#: ../lib/puppet/util/windows/service.rb:359
|
10182
9485
|
msgid "The service must be in one of the %{valid_initial_states} states to perform this transition. It is currently in the %{current_state} state."
|
10183
9486
|
msgstr ""
|
10184
9487
|
|
10185
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9488
|
+
#: ../lib/puppet/util/windows/service.rb:370
|
10186
9489
|
msgid "There is already a pending transition to the %{final_state} state for the %{service_name} service."
|
10187
9490
|
msgstr ""
|
10188
9491
|
|
10189
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9492
|
+
#: ../lib/puppet/util/windows/service.rb:386
|
10190
9493
|
msgid "The service is in the %{pending_state} state, which is an unsafe pending state."
|
10191
9494
|
msgstr ""
|
10192
9495
|
|
10193
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9496
|
+
#: ../lib/puppet/util/windows/service.rb:391
|
10194
9497
|
msgid "Transitioning the %{service_name} service from %{initial_state} to %{final_state}"
|
10195
9498
|
msgstr ""
|
10196
9499
|
|
10197
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9500
|
+
#: ../lib/puppet/util/windows/service.rb:395
|
10198
9501
|
msgid "Waiting for the transition to finish"
|
10199
9502
|
msgstr ""
|
10200
9503
|
|
10201
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9504
|
+
#: ../lib/puppet/util/windows/service.rb:400
|
10202
9505
|
msgid "Failed to transition the %{service_name} service to the %{final_state} state. Detail: %{detail}"
|
10203
9506
|
msgstr ""
|
10204
9507
|
|
10205
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9508
|
+
#: ../lib/puppet/util/windows/service.rb:439 ../lib/puppet/util/windows/service.rb:475
|
10206
9509
|
msgid "Service query failed"
|
10207
9510
|
msgstr ""
|
10208
9511
|
|
10209
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9512
|
+
#: ../lib/puppet/util/windows/service.rb:518
|
10210
9513
|
msgid "Service query for %{parameter_name} failed"
|
10211
9514
|
msgstr ""
|
10212
9515
|
|
10213
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9516
|
+
#: ../lib/puppet/util/windows/service.rb:541
|
10214
9517
|
msgid "Failed to update service %{change} configuration"
|
10215
9518
|
msgstr ""
|
10216
9519
|
|
10217
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9520
|
+
#: ../lib/puppet/util/windows/service.rb:568
|
10218
9521
|
msgid "Failed to send the %{control_signal} signal to the service. Its current state is %{current_state}. Reason for failure:"
|
10219
9522
|
msgstr ""
|
10220
9523
|
|
10221
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9524
|
+
#: ../lib/puppet/util/windows/service.rb:603
|
10222
9525
|
msgid "The service transitioned to the %{pending_state} state."
|
10223
9526
|
msgstr ""
|
10224
9527
|
|
10225
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9528
|
+
#: ../lib/puppet/util/windows/service.rb:617
|
10226
9529
|
msgid "Timed out while waiting for the service to transition from %{initial_state} to %{final_state} OR from %{initial_state} to %{pending_state} to %{final_state}. The service's current state is %{current_state}."
|
10227
9530
|
msgstr ""
|
10228
9531
|
|
10229
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9532
|
+
#: ../lib/puppet/util/windows/service.rb:632
|
10230
9533
|
msgid "Waiting for the pending transition to the %{final_state} state to finish."
|
10231
9534
|
msgstr ""
|
10232
9535
|
|
10233
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9536
|
+
#: ../lib/puppet/util/windows/service.rb:646
|
10234
9537
|
msgid "Unexpected transition to the %{current_state} state while waiting for the pending transition from %{pending_state} to %{final_state} to finish."
|
10235
9538
|
msgstr ""
|
10236
9539
|
|
10237
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9540
|
+
#: ../lib/puppet/util/windows/service.rb:660
|
10238
9541
|
msgid "Timed out while waiting for the pending transition from %{pending_state} to %{final_state} to finish. The current state is %{current_state}."
|
10239
9542
|
msgstr ""
|
10240
9543
|
|
@@ -10274,76 +9577,72 @@ msgstr ""
|
|
10274
9577
|
msgid "Failed to unload user profile %{user}"
|
10275
9578
|
msgstr ""
|
10276
9579
|
|
10277
|
-
#: ../lib/puppet/
|
10278
|
-
msgid "Puppet::Util::Yaml.load_file is deprecated. Use safe_load_file instead."
|
10279
|
-
msgstr ""
|
10280
|
-
|
10281
|
-
#: ../lib/puppet/x509/cert_provider.rb:39
|
9580
|
+
#: ../lib/puppet/x509/cert_provider.rb:45
|
10282
9581
|
msgid "Failed to save CA certificates to '%{capath}'"
|
10283
9582
|
msgstr ""
|
10284
9583
|
|
10285
|
-
#: ../lib/puppet/x509/cert_provider.rb:
|
9584
|
+
#: ../lib/puppet/x509/cert_provider.rb:59
|
10286
9585
|
msgid "The CA certificates are missing from '%{path}'"
|
10287
9586
|
msgstr ""
|
10288
9587
|
|
10289
|
-
#: ../lib/puppet/x509/cert_provider.rb:
|
9588
|
+
#: ../lib/puppet/x509/cert_provider.rb:63
|
10290
9589
|
msgid "Failed to load CA certificates from '%{capath}'"
|
10291
9590
|
msgstr ""
|
10292
9591
|
|
10293
9592
|
#. TRANSLATORS 'PEM' is an acronym and shouldn't be translated
|
10294
|
-
#: ../lib/puppet/x509/cert_provider.rb:
|
9593
|
+
#: ../lib/puppet/x509/cert_provider.rb:75
|
10295
9594
|
msgid "Failed to parse CA certificates as PEM"
|
10296
9595
|
msgstr ""
|
10297
9596
|
|
10298
|
-
#: ../lib/puppet/x509/cert_provider.rb:
|
9597
|
+
#: ../lib/puppet/x509/cert_provider.rb:91
|
10299
9598
|
msgid "Failed to save CRLs to '%{crlpath}'"
|
10300
9599
|
msgstr ""
|
10301
9600
|
|
10302
|
-
#: ../lib/puppet/x509/cert_provider.rb:
|
9601
|
+
#: ../lib/puppet/x509/cert_provider.rb:105
|
10303
9602
|
msgid "The CRL is missing from '%{path}'"
|
10304
9603
|
msgstr ""
|
10305
9604
|
|
10306
|
-
#: ../lib/puppet/x509/cert_provider.rb:
|
9605
|
+
#: ../lib/puppet/x509/cert_provider.rb:109
|
10307
9606
|
msgid "Failed to load CRLs from '%{crlpath}'"
|
10308
9607
|
msgstr ""
|
10309
9608
|
|
10310
9609
|
#. TRANSLATORS 'PEM' is an acronym and shouldn't be translated
|
10311
|
-
#: ../lib/puppet/x509/cert_provider.rb:
|
9610
|
+
#: ../lib/puppet/x509/cert_provider.rb:121
|
10312
9611
|
msgid "Failed to parse CRLs as PEM"
|
10313
9612
|
msgstr ""
|
10314
9613
|
|
10315
|
-
#: ../lib/puppet/x509/cert_provider.rb:
|
9614
|
+
#: ../lib/puppet/x509/cert_provider.rb:171
|
10316
9615
|
msgid "Failed to save private key for '%{name}'"
|
10317
9616
|
msgstr ""
|
10318
9617
|
|
10319
|
-
#: ../lib/puppet/x509/cert_provider.rb:
|
9618
|
+
#: ../lib/puppet/x509/cert_provider.rb:191
|
10320
9619
|
msgid "The private key is missing from '%{path}'"
|
10321
9620
|
msgstr ""
|
10322
9621
|
|
10323
|
-
#: ../lib/puppet/x509/cert_provider.rb:
|
9622
|
+
#: ../lib/puppet/x509/cert_provider.rb:195
|
10324
9623
|
msgid "Failed to load private key for '%{name}'"
|
10325
9624
|
msgstr ""
|
10326
9625
|
|
10327
|
-
#: ../lib/puppet/x509/cert_provider.rb:
|
9626
|
+
#: ../lib/puppet/x509/cert_provider.rb:255
|
10328
9627
|
msgid "Failed to save client certificate for '%{name}'"
|
10329
9628
|
msgstr ""
|
10330
9629
|
|
10331
|
-
#: ../lib/puppet/x509/cert_provider.rb:
|
9630
|
+
#: ../lib/puppet/x509/cert_provider.rb:271
|
10332
9631
|
msgid "The client certificate is missing from '%{path}'"
|
10333
9632
|
msgstr ""
|
10334
9633
|
|
10335
|
-
#: ../lib/puppet/x509/cert_provider.rb:
|
9634
|
+
#: ../lib/puppet/x509/cert_provider.rb:275
|
10336
9635
|
msgid "Failed to load client certificate for '%{name}'"
|
10337
9636
|
msgstr ""
|
10338
9637
|
|
10339
|
-
#: ../lib/puppet/x509/cert_provider.rb:
|
9638
|
+
#: ../lib/puppet/x509/cert_provider.rb:324
|
10340
9639
|
msgid "Failed to save certificate request for '%{name}'"
|
10341
9640
|
msgstr ""
|
10342
9641
|
|
10343
|
-
#: ../lib/puppet/x509/cert_provider.rb:
|
9642
|
+
#: ../lib/puppet/x509/cert_provider.rb:340
|
10344
9643
|
msgid "Failed to load certificate request for '%{name}'"
|
10345
9644
|
msgstr ""
|
10346
9645
|
|
10347
|
-
#: ../lib/puppet/x509/cert_provider.rb:
|
9646
|
+
#: ../lib/puppet/x509/cert_provider.rb:353
|
10348
9647
|
msgid "Failed to delete certificate request for '%{name}'"
|
10349
9648
|
msgstr ""
|