puppet 6.20.0-x64-mingw32 → 7.0.0-x64-mingw32
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/CODEOWNERS +16 -2
- data/Gemfile +0 -2
- data/Gemfile.lock +18 -24
- 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 +178 -108
- data/lib/puppet/application/agent.rb +0 -1
- data/lib/puppet/application/apply.rb +2 -3
- data/lib/puppet/application/device.rb +100 -105
- data/lib/puppet/application/filebucket.rb +13 -9
- data/lib/puppet/application/script.rb +0 -1
- data/lib/puppet/application/ssl.rb +1 -1
- data/lib/puppet/application_support.rb +0 -7
- data/lib/puppet/configurer.rb +30 -45
- data/lib/puppet/configurer/plugin_handler.rb +21 -19
- data/lib/puppet/defaults.rb +97 -167
- data/lib/puppet/environments.rb +59 -58
- data/lib/puppet/face/facts.rb +51 -51
- 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/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/facts/facter.rb +24 -3
- data/lib/puppet/indirector/facts/rest.rb +3 -22
- 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/node/rest.rb +2 -4
- 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/module_tool/applications/installer.rb +2 -48
- data/lib/puppet/module_tool/errors/shared.rb +2 -17
- data/lib/puppet/network/authconfig.rb +2 -96
- data/lib/puppet/network/authorization.rb +13 -35
- 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 +3 -1
- data/lib/puppet/parser/ast/leaf.rb +2 -3
- 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/parser/templatewrapper.rb +1 -1
- data/lib/puppet/pops/evaluator/deferred_resolver.rb +3 -5
- data/lib/puppet/pops/evaluator/evaluator_impl.rb +0 -5
- 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/ast_transformer.rb +1 -1
- 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/apt.rb +0 -4
- 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/aix.rb +2 -2
- data/lib/puppet/provider/user/directoryservice.rb +0 -10
- data/lib/puppet/reference/configuration.rb +7 -6
- 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 +73 -66
- 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/autoload.rb +8 -1
- 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/posix.rb +5 -54
- data/lib/puppet/util/rdoc.rb +0 -7
- data/lib/puppet/util/retry_action.rb +1 -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 +587 -1312
- data/man/man5/puppet.conf.5 +39 -99
- data/man/man8/puppet-agent.8 +2 -2
- data/man/man8/puppet-apply.8 +2 -2
- 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 +2 -2
- data/man/man8/puppet-doc.8 +1 -1
- data/man/man8/puppet-epp.8 +1 -1
- data/man/man8/puppet-facts.8 +51 -36
- data/man/man8/puppet-filebucket.8 +4 -4
- 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 +1 -1
- data/man/man8/puppet-parser.8 +1 -1
- data/man/man8/puppet-plugin.8 +1 -1
- data/man/man8/puppet-report.8 +1 -1
- data/man/man8/puppet-resource.8 +1 -1
- data/man/man8/puppet-script.8 +2 -2
- 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/fixtures/unit/provider/user/aix/aix_passwd_file.out +0 -4
- data/spec/integration/application/agent_spec.rb +27 -138
- data/spec/integration/application/apply_spec.rb +1 -20
- 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 +14 -3
- 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/resource/type_collection_spec.rb +6 -2
- data/spec/integration/transaction_spec.rb +9 -4
- data/spec/integration/type/file_spec.rb +5 -4
- data/spec/integration/util/windows/adsi_spec.rb +1 -3
- data/spec/integration/util/windows/monkey_patches/process_spec.rb +231 -0
- data/spec/integration/util/windows/registry_spec.rb +10 -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 +1 -0
- data/spec/spec_helper.rb +6 -1
- data/spec/unit/agent_spec.rb +6 -10
- data/spec/unit/application/agent_spec.rb +1 -0
- data/spec/unit/application/facts_spec.rb +35 -0
- data/spec/unit/application/filebucket_spec.rb +43 -39
- data/spec/unit/application/ssl_spec.rb +2 -2
- data/spec/unit/application_spec.rb +9 -51
- 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/confine/feature_spec.rb +1 -1
- data/spec/unit/confine_spec.rb +2 -8
- data/spec/unit/context/trusted_information_spec.rb +2 -6
- data/spec/unit/defaults_spec.rb +72 -42
- data/spec/unit/environments_spec.rb +19 -99
- data/spec/unit/face/facts_spec.rb +4 -0
- data/spec/unit/face/node_spec.rb +11 -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 +15 -18
- data/spec/unit/file_serving/configuration_spec.rb +6 -12
- data/spec/unit/file_serving/metadata_spec.rb +3 -3
- data/spec/unit/file_serving/terminus_helper_spec.rb +4 -11
- data/spec/unit/forge/module_release_spec.rb +7 -2
- 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/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 +0 -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 +0 -1
- data/spec/unit/http/session_spec.rb +16 -14
- data/spec/unit/{network/http → http}/site_spec.rb +3 -3
- data/spec/unit/indirector/face_spec.rb +1 -0
- data/spec/unit/indirector/facts/facter_spec.rb +98 -0
- data/spec/unit/indirector/file_bucket_file/file_spec.rb +5 -3
- data/spec/unit/indirector/file_bucket_file/selector_spec.rb +8 -26
- 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/indirection_spec.rb +12 -8
- data/spec/unit/indirector/report/rest_spec.rb +2 -17
- data/spec/unit/indirector/request_spec.rb +0 -264
- data/spec/unit/indirector/rest_spec.rb +98 -752
- data/spec/unit/indirector_spec.rb +2 -2
- data/spec/unit/module_tool/applications/installer_spec.rb +0 -66
- data/spec/unit/network/authconfig_spec.rb +2 -129
- 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 +5 -92
- 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 -1
- 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/compiler_spec.rb +19 -3
- data/spec/unit/parser/functions/create_resources_spec.rb +2 -20
- data/spec/unit/parser/resource_spec.rb +8 -14
- data/spec/unit/parser/templatewrapper_spec.rb +3 -4
- 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/property_spec.rb +0 -1
- data/spec/unit/provider/nameservice_spec.rb +64 -122
- data/spec/unit/provider/package/apt_spec.rb +8 -4
- data/spec/unit/provider/package/base_spec.rb +5 -6
- 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/pacman_spec.rb +12 -18
- data/spec/unit/provider/package/pip_spec.rb +11 -6
- data/spec/unit/provider/package/pkgdmg_spec.rb +4 -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/user/aix_spec.rb +0 -5
- data/spec/unit/provider/user/hpux_spec.rb +1 -1
- data/spec/unit/provider/user/pw_spec.rb +0 -2
- data/spec/unit/provider/user/useradd_spec.rb +0 -1
- data/spec/unit/provider_spec.rb +8 -18
- data/spec/unit/resource/type_collection_spec.rb +2 -22
- data/spec/unit/resource/type_spec.rb +1 -1
- data/spec/unit/resource_spec.rb +10 -67
- 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 +23 -13
- data/spec/unit/ssl/base_spec.rb +37 -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 +2 -5
- data/spec/unit/ssl/state_machine_spec.rb +0 -1
- data/spec/unit/ssl/verifier_spec.rb +0 -21
- data/spec/unit/transaction/additional_resource_generator_spec.rb +7 -3
- data/spec/unit/transaction/event_manager_spec.rb +11 -14
- 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 +48 -91
- data/spec/unit/type/file/checksum_spec.rb +6 -6
- data/spec/unit/type/file/content_spec.rb +2 -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/selinux_spec.rb +2 -0
- data/spec/unit/type/file/source_spec.rb +0 -1
- data/spec/unit/type/file_spec.rb +18 -6
- data/spec/unit/type/group_spec.rb +6 -13
- data/spec/unit/type/package_spec.rb +1 -1
- data/spec/unit/type/resources_spec.rb +7 -7
- data/spec/unit/type/service_spec.rb +1 -1
- data/spec/unit/type/tidy_spec.rb +1 -0
- data/spec/unit/type_spec.rb +22 -2
- data/spec/unit/util/at_fork_spec.rb +2 -2
- data/spec/unit/util/autoload_spec.rb +1 -5
- data/spec/unit/util/backups_spec.rb +2 -3
- data/spec/unit/util/execution_spec.rb +11 -44
- data/spec/unit/util/inifile_spec.rb +14 -6
- data/spec/unit/util/log_spec.rb +7 -8
- data/spec/unit/util/logging_spec.rb +3 -3
- data/spec/unit/util/monkey_patches_spec.rb +0 -6
- data/spec/unit/util/posix_spec.rb +15 -363
- data/spec/unit/util/run_mode_spec.rb +21 -121
- data/spec/unit/util/selinux_spec.rb +52 -76
- data/spec/unit/util/storage_spec.rb +1 -3
- data/spec/unit/util/suidmanager_spec.rb +41 -44
- 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 +6 -31
- metadata +40 -233
- 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/ffi/posix.rb +0 -10
- data/lib/puppet/ffi/posix/constants.rb +0 -14
- data/lib/puppet/ffi/posix/functions.rb +0 -24
- 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/settings/alias_setting.rb +0 -37
- 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/fact_dif.rb +0 -62
- 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/fixtures/integration/application/agent/cached_deferred_catalog.json +0 -91
- 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/key_spec.rb +0 -9
- data/spec/unit/face/module/search_spec.rb +0 -231
- 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 -78
- 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/evaluator/deferred_resolver_spec.rb +0 -20
- data/spec/unit/pops/types/enumeration_spec.rb +0 -51
- data/spec/unit/resource/capability_finder_spec.rb +0 -148
- data/spec/unit/rest/route_spec.rb +0 -132
- data/spec/unit/ssl/host_spec.rb +0 -645
- 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
@@ -1,16 +1,16 @@
|
|
1
1
|
# SOME DESCRIPTIVE TITLE.
|
2
|
-
# Copyright (C)
|
2
|
+
# Copyright (C) 2020 Puppet, Inc.
|
3
3
|
# This file is distributed under the same license as the Puppet automation framework package.
|
4
|
-
# FIRST AUTHOR <EMAIL@ADDRESS>,
|
4
|
+
# FIRST AUTHOR <EMAIL@ADDRESS>, 2020.
|
5
5
|
#
|
6
6
|
#, fuzzy
|
7
7
|
msgid ""
|
8
8
|
msgstr ""
|
9
|
-
"Project-Id-Version: Puppet automation framework 6.19.1-
|
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:
|
13
|
-
"PO-Revision-Date:
|
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
|
|
@@ -184,19 +184,19 @@ msgstr ""
|
|
184
184
|
msgid "The puppet agent daemon"
|
185
185
|
msgstr ""
|
186
186
|
|
187
|
-
#: ../lib/puppet/application/agent.rb:
|
187
|
+
#: ../lib/puppet/application/agent.rb:414
|
188
188
|
msgid "Fingerprint asked but neither the certificate, nor the certificate request have been issued"
|
189
189
|
msgstr ""
|
190
190
|
|
191
|
-
#: ../lib/puppet/application/agent.rb:
|
191
|
+
#: ../lib/puppet/application/agent.rb:419
|
192
192
|
msgid "Failed to generate fingerprint: %{message}"
|
193
193
|
msgstr ""
|
194
194
|
|
195
|
-
#: ../lib/puppet/application/agent.rb:
|
195
|
+
#: ../lib/puppet/application/agent.rb:442
|
196
196
|
msgid "Starting Puppet client version %{version}"
|
197
197
|
msgstr ""
|
198
198
|
|
199
|
-
#: ../lib/puppet/application/agent.rb:
|
199
|
+
#: ../lib/puppet/application/agent.rb:458
|
200
200
|
msgid "The puppet agent command does not take parameters"
|
201
201
|
msgstr ""
|
202
202
|
|
@@ -206,42 +206,38 @@ msgstr ""
|
|
206
206
|
|
207
207
|
#. TRANSLATORS "puppet apply" is a program command and should not be translated
|
208
208
|
#. TRANSLATORS "puppet apply" is a program command and should not be translated
|
209
|
-
#: ../lib/puppet/application/apply.rb:
|
209
|
+
#: ../lib/puppet/application/apply.rb:207 ../lib/puppet/application/apply.rb:320
|
210
210
|
msgid "For puppet apply"
|
211
211
|
msgstr ""
|
212
212
|
|
213
|
-
#: ../lib/puppet/application/apply.rb:
|
213
|
+
#: ../lib/puppet/application/apply.rb:215
|
214
214
|
msgid "%{file} is not readable"
|
215
215
|
msgstr ""
|
216
216
|
|
217
|
-
#: ../lib/puppet/application/apply.rb:
|
217
|
+
#: ../lib/puppet/application/apply.rb:286 ../lib/puppet/application/script.rb:239
|
218
218
|
msgid "Exiting"
|
219
219
|
msgstr ""
|
220
220
|
|
221
|
-
#: ../lib/puppet/application/apply.rb:
|
221
|
+
#: ../lib/puppet/application/apply.rb:330
|
222
222
|
msgid "Could not deserialize catalog from %{format}: %{detail}"
|
223
223
|
msgstr ""
|
224
224
|
|
225
|
-
#: ../lib/puppet/application/apply.rb:
|
225
|
+
#: ../lib/puppet/application/apply.rb:351 ../lib/puppet/application/script.rb:144
|
226
226
|
msgid "Could not find facts for %{node}"
|
227
227
|
msgstr ""
|
228
228
|
|
229
|
-
#: ../lib/puppet/application/apply.rb:
|
229
|
+
#: ../lib/puppet/application/apply.rb:363 ../lib/puppet/application/script.rb:152
|
230
230
|
msgid "Could not find node %{node}"
|
231
231
|
msgstr ""
|
232
232
|
|
233
|
-
#: ../lib/puppet/application/apply.rb:
|
233
|
+
#: ../lib/puppet/application/apply.rb:376 ../lib/puppet/application/script.rb:137
|
234
234
|
msgid "Could not find file %{manifest}"
|
235
235
|
msgstr ""
|
236
236
|
|
237
|
-
#: ../lib/puppet/application/apply.rb:
|
237
|
+
#: ../lib/puppet/application/apply.rb:377
|
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 ""
|
@@ -250,47 +246,47 @@ msgstr ""
|
|
250
246
|
msgid "Manage remote network devices"
|
251
247
|
msgstr ""
|
252
248
|
|
253
|
-
#: ../lib/puppet/application/device.rb:
|
249
|
+
#: ../lib/puppet/application/device.rb:230
|
254
250
|
msgid "resource command requires target"
|
255
251
|
msgstr ""
|
256
252
|
|
257
|
-
#: ../lib/puppet/application/device.rb:
|
253
|
+
#: ../lib/puppet/application/device.rb:233
|
258
254
|
msgid "facts command requires target"
|
259
255
|
msgstr ""
|
260
256
|
|
261
|
-
#: ../lib/puppet/application/device.rb:
|
257
|
+
#: ../lib/puppet/application/device.rb:236
|
262
258
|
msgid "missing argument: --target is required when using --apply"
|
263
259
|
msgstr ""
|
264
260
|
|
265
|
-
#: ../lib/puppet/application/device.rb:
|
261
|
+
#: ../lib/puppet/application/device.rb:237
|
266
262
|
msgid "%{file} does not exist, cannot apply"
|
267
263
|
msgstr ""
|
268
264
|
|
269
|
-
#: ../lib/puppet/application/device.rb:
|
265
|
+
#: ../lib/puppet/application/device.rb:255
|
270
266
|
msgid "Target device / certificate '%{target}' not found in %{config}"
|
271
267
|
msgstr ""
|
272
268
|
|
273
|
-
#: ../lib/puppet/application/device.rb:
|
269
|
+
#: ../lib/puppet/application/device.rb:257
|
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
|
|
@@ -438,11 +434,11 @@ msgstr ""
|
|
438
434
|
msgid "Run a puppet manifests as a script without compiling a catalog"
|
439
435
|
msgstr ""
|
440
436
|
|
441
|
-
#: ../lib/puppet/application/script.rb:
|
437
|
+
#: ../lib/puppet/application/script.rb:124
|
442
438
|
msgid "Bolt must be installed to use the script application"
|
443
439
|
msgstr ""
|
444
440
|
|
445
|
-
#: ../lib/puppet/application/script.rb:
|
441
|
+
#: ../lib/puppet/application/script.rb:138
|
446
442
|
msgid "Only one file can be used per run. Skipping %{files}"
|
447
443
|
msgstr ""
|
448
444
|
|
@@ -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,50 +688,42 @@ 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:1121 ../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
|
|
735
|
-
#: ../lib/puppet/defaults.rb:2230
|
736
|
-
msgid "The 'func3x_check' setting is deprecated and will be removed in a future release."
|
737
|
-
msgstr ""
|
738
|
-
|
739
727
|
#: ../lib/puppet/error.rb:77
|
740
728
|
msgid "Could not parse for environment %{environment}: %{message}"
|
741
729
|
msgstr ""
|
@@ -778,7 +766,7 @@ msgstr ""
|
|
778
766
|
msgid "no matching resources found"
|
779
767
|
msgstr ""
|
780
768
|
|
781
|
-
#: ../lib/puppet/face/config.rb:7 ../lib/puppet/face/epp.rb:8 ../lib/puppet/face/facts.rb:
|
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
|
782
770
|
msgid "Apache 2 license; see COPYING"
|
783
771
|
msgstr ""
|
784
772
|
|
@@ -844,28 +832,28 @@ msgid ""
|
|
844
832
|
"https://puppet.com/docs/puppet/latest/configuration.html#environment\n"
|
845
833
|
msgstr ""
|
846
834
|
|
847
|
-
#: ../lib/puppet/face/config.rb:
|
835
|
+
#: ../lib/puppet/face/config.rb:176
|
848
836
|
msgid "Deleted setting from '%{section_name}': '%{setting_string}', and adding it to 'server' section"
|
849
837
|
msgstr ""
|
850
838
|
|
851
|
-
#: ../lib/puppet/face/config.rb:
|
839
|
+
#: ../lib/puppet/face/config.rb:191
|
852
840
|
msgid "Delete a Puppet setting."
|
853
841
|
msgstr ""
|
854
842
|
|
855
|
-
#: ../lib/puppet/face/config.rb:
|
843
|
+
#: ../lib/puppet/face/config.rb:192
|
856
844
|
msgid "<setting>"
|
857
845
|
msgstr ""
|
858
846
|
|
859
|
-
#: ../lib/puppet/face/config.rb:
|
847
|
+
#: ../lib/puppet/face/config.rb:226 ../lib/puppet/face/config.rb:230 ../lib/puppet/face/config.rb:241
|
860
848
|
msgid "Deleted setting from '%{section_name}': '%{setting_string}'"
|
861
849
|
msgstr ""
|
862
850
|
|
863
|
-
#: ../lib/puppet/face/config.rb:
|
851
|
+
#: ../lib/puppet/face/config.rb:244
|
864
852
|
msgid "No setting found in configuration file for section '%{section_name}' setting name '%{name}'"
|
865
853
|
msgstr ""
|
866
854
|
|
867
855
|
#. TRANSLATORS the 'puppet.conf' is a specific file and should not be translated
|
868
|
-
#: ../lib/puppet/face/config.rb:
|
856
|
+
#: ../lib/puppet/face/config.rb:252
|
869
857
|
msgid "The puppet.conf file does not exist %{puppet_conf}"
|
870
858
|
msgstr ""
|
871
859
|
|
@@ -1015,32 +1003,60 @@ msgstr ""
|
|
1015
1003
|
msgid "--values option must evaluate to a Hash or undef, got: '%{values_class}'"
|
1016
1004
|
msgstr ""
|
1017
1005
|
|
1018
|
-
#: ../lib/puppet/face/facts.rb:
|
1006
|
+
#: ../lib/puppet/face/facts.rb:8
|
1019
1007
|
msgid "Retrieve and store facts."
|
1020
1008
|
msgstr ""
|
1021
1009
|
|
1022
|
-
#: ../lib/puppet/face/facts.rb:
|
1010
|
+
#: ../lib/puppet/face/facts.rb:16
|
1023
1011
|
msgid "Retrieve a node's facts."
|
1024
1012
|
msgstr ""
|
1025
1013
|
|
1026
|
-
#: ../lib/puppet/face/facts.rb:
|
1014
|
+
#: ../lib/puppet/face/facts.rb:17
|
1027
1015
|
msgid "[<node_certname>]"
|
1028
1016
|
msgstr ""
|
1029
1017
|
|
1030
|
-
#: ../lib/puppet/face/facts.rb:
|
1018
|
+
#: ../lib/puppet/face/facts.rb:39
|
1031
1019
|
msgid "Upload local facts to the puppet master."
|
1032
1020
|
msgstr ""
|
1033
1021
|
|
1034
|
-
#: ../lib/puppet/face/facts.rb:
|
1022
|
+
#: ../lib/puppet/face/facts.rb:77
|
1035
1023
|
msgid "Uploading facts for '%{node}' to '%{server}'"
|
1036
1024
|
msgstr ""
|
1037
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
|
+
|
1038
1046
|
#: ../lib/puppet/face/facts.rb:116
|
1039
|
-
msgid "
|
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."
|
1040
1052
|
msgstr ""
|
1041
1053
|
|
1042
|
-
#: ../lib/puppet/face/facts.rb:
|
1043
|
-
msgid "
|
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."
|
1044
1060
|
msgstr ""
|
1045
1061
|
|
1046
1062
|
#: ../lib/puppet/face/generate.rb:9
|
@@ -1152,52 +1168,10 @@ msgstr ""
|
|
1152
1168
|
msgid "Check error logs."
|
1153
1169
|
msgstr ""
|
1154
1170
|
|
1155
|
-
#: ../lib/puppet/face/key.rb:7
|
1156
|
-
msgid "Create, save, and remove certificate keys."
|
1157
|
-
msgstr ""
|
1158
|
-
|
1159
|
-
#: ../lib/puppet/face/man.rb:10
|
1160
|
-
msgid "Display Puppet manual pages."
|
1161
|
-
msgstr ""
|
1162
|
-
|
1163
|
-
#: ../lib/puppet/face/man.rb:28
|
1164
|
-
msgid "Display the manual page for a Puppet subcommand."
|
1165
|
-
msgstr ""
|
1166
|
-
|
1167
|
-
#: ../lib/puppet/face/man.rb:29
|
1168
|
-
msgid "<subcommand>"
|
1169
|
-
msgstr ""
|
1170
|
-
|
1171
|
-
#. TRANSLATORS '--render-as s' is a command line option and should not be translated
|
1172
|
-
#: ../lib/puppet/face/man.rb:31
|
1173
|
-
msgid ""
|
1174
|
-
" The man data, in Markdown format, suitable for consumption by Ronn.\n"
|
1175
|
-
"\n"
|
1176
|
-
" RENDERING ISSUES: To skip fancy formatting and output the raw Markdown\n"
|
1177
|
-
" text (e.g. for use in a pipeline), call this action with '--render-as s'.\n"
|
1178
|
-
msgstr ""
|
1179
|
-
|
1180
|
-
#. TRANSLATORS 'puppet man' is a specific command line and should not be translated
|
1181
|
-
#: ../lib/puppet/face/man.rb:56
|
1182
|
-
msgid "The 'puppet man' command takes a single subcommand to review the subcommand's manpage"
|
1183
|
-
msgstr ""
|
1184
|
-
|
1185
1171
|
#: ../lib/puppet/face/module.rb:11
|
1186
1172
|
msgid "Creates, installs and searches for modules on the Puppet Forge."
|
1187
1173
|
msgstr ""
|
1188
1174
|
|
1189
|
-
#: ../lib/puppet/face/module/build.rb:3
|
1190
|
-
msgid "Build a module release package."
|
1191
|
-
msgstr ""
|
1192
|
-
|
1193
|
-
#. TRANSLATORS 'Puppet Development Kit' is the name of the software package replacing this action and should not be translated.
|
1194
|
-
#. TRANSLATORS 'Puppet Development Kit' is the name of the software package replacing this action and should not be translated.
|
1195
|
-
#. TRANSLATORS 'Puppet Development Kit' is the name of the software package replacing this action and should not be translated.
|
1196
|
-
#. TRANSLATORS 'Puppet Development Kit' is the name of the software package replacing this action and should not be translated.
|
1197
|
-
#: ../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
|
1198
|
-
msgid "This action has been replaced by Puppet Development Kit. For more information visit https://puppet.com/docs/pdk/latest/pdk.html."
|
1199
|
-
msgstr ""
|
1200
|
-
|
1201
1175
|
#: ../lib/puppet/face/module/changes.rb:3
|
1202
1176
|
msgid "Show modified files of an installed module."
|
1203
1177
|
msgstr ""
|
@@ -1206,10 +1180,6 @@ msgstr ""
|
|
1206
1180
|
msgid "Array of strings representing paths of modified files."
|
1207
1181
|
msgstr ""
|
1208
1182
|
|
1209
|
-
#: ../lib/puppet/face/module/changes.rb:21
|
1210
|
-
msgid "<path>"
|
1211
|
-
msgstr ""
|
1212
|
-
|
1213
1183
|
#: ../lib/puppet/face/module/changes.rb:27
|
1214
1184
|
msgid "Could not find a valid module at %{path}"
|
1215
1185
|
msgstr ""
|
@@ -1222,10 +1192,6 @@ msgstr ""
|
|
1222
1192
|
msgid "%{count} files modified"
|
1223
1193
|
msgstr ""
|
1224
1194
|
|
1225
|
-
#: ../lib/puppet/face/module/generate.rb:3
|
1226
|
-
msgid "Generate boilerplate for a new module."
|
1227
|
-
msgstr ""
|
1228
|
-
|
1229
1195
|
#: ../lib/puppet/face/module/install.rb:8
|
1230
1196
|
msgid "Install a module from the Puppet Forge or a release archive."
|
1231
1197
|
msgstr ""
|
@@ -1301,26 +1267,6 @@ msgstr ""
|
|
1301
1267
|
msgid "invalid"
|
1302
1268
|
msgstr ""
|
1303
1269
|
|
1304
|
-
#: ../lib/puppet/face/module/search.rb:6
|
1305
|
-
msgid "Search the Puppet Forge for a module."
|
1306
|
-
msgstr ""
|
1307
|
-
|
1308
|
-
#: ../lib/puppet/face/module/search.rb:14
|
1309
|
-
msgid "Array of module metadata hashes"
|
1310
|
-
msgstr ""
|
1311
|
-
|
1312
|
-
#: ../lib/puppet/face/module/search.rb:24
|
1313
|
-
msgid "<search_term>"
|
1314
|
-
msgstr ""
|
1315
|
-
|
1316
|
-
#: ../lib/puppet/face/module/search.rb:27
|
1317
|
-
msgid "This action has been deprecated. Please use the Puppet Forge to search for modules."
|
1318
|
-
msgstr ""
|
1319
|
-
|
1320
|
-
#: ../lib/puppet/face/module/search.rb:37
|
1321
|
-
msgid "No results found for '%{term}'."
|
1322
|
-
msgstr ""
|
1323
|
-
|
1324
1270
|
#: ../lib/puppet/face/module/uninstall.rb:3
|
1325
1271
|
msgid "Uninstall a puppet module."
|
1326
1272
|
msgstr ""
|
@@ -1490,11 +1436,11 @@ msgid ""
|
|
1490
1436
|
" the files downloaded, which will be empty if none were retrieved.\n"
|
1491
1437
|
msgstr ""
|
1492
1438
|
|
1493
|
-
#: ../lib/puppet/face/plugin.rb:
|
1439
|
+
#: ../lib/puppet/face/plugin.rb:54
|
1494
1440
|
msgid "No plugins downloaded."
|
1495
1441
|
msgstr ""
|
1496
1442
|
|
1497
|
-
#: ../lib/puppet/face/plugin.rb:
|
1443
|
+
#: ../lib/puppet/face/plugin.rb:56
|
1498
1444
|
msgid "Downloaded these plugins: %{plugins}"
|
1499
1445
|
msgstr ""
|
1500
1446
|
|
@@ -1562,23 +1508,16 @@ msgstr ""
|
|
1562
1508
|
msgid "The same resource object passed as an argument."
|
1563
1509
|
msgstr ""
|
1564
1510
|
|
1565
|
-
#: ../lib/puppet/
|
1566
|
-
msgid "
|
1567
|
-
msgstr ""
|
1568
|
-
|
1569
|
-
#: ../lib/puppet/face/status.rb:15
|
1570
|
-
msgid "Check status of puppet master server."
|
1511
|
+
#: ../lib/puppet/feature/base.rb:19
|
1512
|
+
msgid "Cannot determine basic system flavour"
|
1571
1513
|
msgstr ""
|
1572
1514
|
|
1573
|
-
|
1574
|
-
|
1575
|
-
msgid ""
|
1576
|
-
" A \"true\" response or a low-level connection error. When used from the Ruby\n"
|
1577
|
-
" 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"
|
1578
1517
|
msgstr ""
|
1579
1518
|
|
1580
|
-
#: ../lib/puppet/
|
1581
|
-
msgid "
|
1519
|
+
#: ../lib/puppet/ffi/windows/api_types.rb:231
|
1520
|
+
msgid "Bad GUID format."
|
1582
1521
|
msgstr ""
|
1583
1522
|
|
1584
1523
|
#: ../lib/puppet/file_bucket/dipper.rb:39
|
@@ -1650,7 +1589,7 @@ msgstr ""
|
|
1650
1589
|
msgid "Cannot find file: Invalid relative path '%{path}'"
|
1651
1590
|
msgstr ""
|
1652
1591
|
|
1653
|
-
#: ../lib/puppet/file_serving/configuration.rb:
|
1592
|
+
#: ../lib/puppet/file_serving/configuration.rb:104
|
1654
1593
|
msgid "Error parsing fileserver configuration: %{detail}; using old configuration"
|
1655
1594
|
msgstr ""
|
1656
1595
|
|
@@ -1666,31 +1605,23 @@ msgstr ""
|
|
1666
1605
|
msgid "Fileserver configuration file does not use '=' as a separator"
|
1667
1606
|
msgstr ""
|
1668
1607
|
|
1669
|
-
#: ../lib/puppet/file_serving/configuration/parser.rb:
|
1608
|
+
#: ../lib/puppet/file_serving/configuration/parser.rb:40 ../lib/puppet/util/network_device/config.rb:101
|
1670
1609
|
msgid "Invalid argument '%{var}' at %{error_location}"
|
1671
1610
|
msgstr ""
|
1672
1611
|
|
1673
|
-
#: ../lib/puppet/file_serving/configuration/parser.rb:
|
1612
|
+
#: ../lib/puppet/file_serving/configuration/parser.rb:45
|
1674
1613
|
msgid "Invalid entry at %{error_location}: '%{file_text}'"
|
1675
1614
|
msgstr ""
|
1676
1615
|
|
1677
|
-
#: ../lib/puppet/file_serving/configuration/parser.rb:
|
1678
|
-
msgid "allowing %{val} access"
|
1679
|
-
msgstr ""
|
1680
|
-
|
1681
|
-
#: ../lib/puppet/file_serving/configuration/parser.rb:85
|
1682
|
-
msgid "denying %{val} access"
|
1683
|
-
msgstr ""
|
1684
|
-
|
1685
|
-
#: ../lib/puppet/file_serving/configuration/parser.rb:99
|
1616
|
+
#: ../lib/puppet/file_serving/configuration/parser.rb:70
|
1686
1617
|
msgid "%{mount} is already mounted at %{name} at %{error_location}"
|
1687
1618
|
msgstr ""
|
1688
1619
|
|
1689
|
-
#: ../lib/puppet/file_serving/configuration/parser.rb:
|
1620
|
+
#: ../lib/puppet/file_serving/configuration/parser.rb:95
|
1690
1621
|
msgid "Removing mount \"%{mount}\": %{detail}"
|
1691
1622
|
msgstr ""
|
1692
1623
|
|
1693
|
-
#: ../lib/puppet/file_serving/configuration/parser.rb:
|
1624
|
+
#: ../lib/puppet/file_serving/configuration/parser.rb:99
|
1694
1625
|
msgid "The '%{mount}' module can not have a path. Ignoring attempt to set it"
|
1695
1626
|
msgstr ""
|
1696
1627
|
|
@@ -1748,7 +1679,7 @@ msgstr ""
|
|
1748
1679
|
msgid "Cannot manage files of type %{file_type}"
|
1749
1680
|
msgstr ""
|
1750
1681
|
|
1751
|
-
#: ../lib/puppet/file_serving/mount.rb:
|
1682
|
+
#: ../lib/puppet/file_serving/mount.rb:20
|
1752
1683
|
msgid "Invalid mount name format '%{name}'"
|
1753
1684
|
msgstr ""
|
1754
1685
|
|
@@ -2248,64 +2179,68 @@ msgstr ""
|
|
2248
2179
|
msgid "Try the '--graph' option and opening the resulting '.dot' file in OmniGraffle or GraphViz"
|
2249
2180
|
msgstr ""
|
2250
2181
|
|
2251
|
-
#: ../lib/puppet/http/client.rb:
|
2182
|
+
#: ../lib/puppet/http/client.rb:156
|
2252
2183
|
msgid "Request to %{uri} timed out connect operation after %{elapsed} seconds"
|
2253
2184
|
msgstr ""
|
2254
2185
|
|
2255
|
-
#: ../lib/puppet/http/client.rb:
|
2186
|
+
#: ../lib/puppet/http/client.rb:158
|
2256
2187
|
msgid "Request to %{uri} timed out read operation after %{elapsed} seconds"
|
2257
2188
|
msgstr ""
|
2258
2189
|
|
2259
|
-
#: ../lib/puppet/http/client.rb:
|
2190
|
+
#: ../lib/puppet/http/client.rb:160
|
2260
2191
|
msgid "Request to %{uri} interrupted after %{elapsed} seconds"
|
2261
2192
|
msgstr ""
|
2262
2193
|
|
2263
|
-
#: ../lib/puppet/http/client.rb:
|
2194
|
+
#: ../lib/puppet/http/client.rb:166
|
2264
2195
|
msgid "Request to %{uri} failed after %{elapsed} seconds: %{message}"
|
2265
2196
|
msgstr ""
|
2266
2197
|
|
2267
|
-
#: ../lib/puppet/http/client.rb:
|
2198
|
+
#: ../lib/puppet/http/client.rb:369
|
2268
2199
|
msgid "Sleeping for %{interval} seconds before retrying the request"
|
2269
2200
|
msgstr ""
|
2270
2201
|
|
2271
|
-
#: ../lib/puppet/http/client.rb:
|
2202
|
+
#: ../lib/puppet/http/client.rb:419
|
2272
2203
|
msgid "HTTP REST queries cannot handle values of type '%{klass}'"
|
2273
2204
|
msgstr ""
|
2274
2205
|
|
2275
|
-
#: ../lib/puppet/http/errors.rb:
|
2206
|
+
#: ../lib/puppet/http/errors.rb:37
|
2276
2207
|
msgid "Too many HTTP redirections for %{addr}"
|
2277
2208
|
msgstr ""
|
2278
2209
|
|
2279
|
-
#: ../lib/puppet/http/errors.rb:
|
2210
|
+
#: ../lib/puppet/http/errors.rb:45
|
2280
2211
|
msgid "Too many HTTP retries for %{addr}"
|
2281
2212
|
msgstr ""
|
2282
2213
|
|
2283
|
-
#: ../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
|
2284
2219
|
msgid "Location response header is missing"
|
2285
2220
|
msgstr ""
|
2286
2221
|
|
2287
|
-
#: ../lib/puppet/http/redirector.rb:
|
2222
|
+
#: ../lib/puppet/http/redirector.rb:74
|
2288
2223
|
msgid "Location URI is invalid: %{detail}"
|
2289
2224
|
msgstr ""
|
2290
2225
|
|
2291
|
-
#: ../lib/puppet/http/retry_after_handler.rb:
|
2226
|
+
#: ../lib/puppet/http/retry_after_handler.rb:74
|
2292
2227
|
msgid "Failed to parse Retry-After header '%{retry_after}' as an integer or RFC 2822 date"
|
2293
2228
|
msgstr ""
|
2294
2229
|
|
2295
|
-
#: ../lib/puppet/http/service.rb:
|
2230
|
+
#: ../lib/puppet/http/service.rb:107
|
2296
2231
|
msgid "Ignoring extra header \"%{name}\" as it was previously set."
|
2297
2232
|
msgstr ""
|
2298
2233
|
|
2299
|
-
#: ../lib/puppet/http/service.rb:
|
2234
|
+
#: ../lib/puppet/http/service.rb:110
|
2300
2235
|
msgid "Ignoring extra header \"%{name}\" as it has no value."
|
2301
2236
|
msgstr ""
|
2302
2237
|
|
2303
|
-
#: ../lib/puppet/http/service.rb:
|
2238
|
+
#: ../lib/puppet/http/service.rb:133 ../lib/puppet/indirector/rest.rb:53
|
2304
2239
|
msgid "No content type in http response; cannot parse"
|
2305
2240
|
msgstr ""
|
2306
2241
|
|
2307
2242
|
#. TRANSLATORS "pson", "preferred_serialization_format", and "puppetserver" should not be translated
|
2308
|
-
#: ../lib/puppet/http/service/report.rb:
|
2243
|
+
#: ../lib/puppet/http/service/report.rb:59
|
2309
2244
|
msgid "To submit reports to a server running puppetserver %{server_version}, set preferred_serialization_format to pson"
|
2310
2245
|
msgstr ""
|
2311
2246
|
|
@@ -2454,7 +2389,7 @@ msgstr ""
|
|
2454
2389
|
msgid "Unable to serialize catalog to json, retrying with pson"
|
2455
2390
|
msgstr ""
|
2456
2391
|
|
2457
|
-
#: ../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
|
2458
2393
|
msgid "Find %{uri} resulted in 404 with the message: %{body}"
|
2459
2394
|
msgstr ""
|
2460
2395
|
|
@@ -2546,7 +2481,11 @@ msgstr ""
|
|
2546
2481
|
msgid "You cannot save facts to the code store; it is only used for getting facts from Facter"
|
2547
2482
|
msgstr ""
|
2548
2483
|
|
2549
|
-
#: ../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
|
2550
2489
|
msgid "Loading facts"
|
2551
2490
|
msgstr ""
|
2552
2491
|
|
@@ -2558,7 +2497,7 @@ msgstr ""
|
|
2558
2497
|
msgid "You cannot save facts to the code store; it is only used for getting facts from a remote device"
|
2559
2498
|
msgstr ""
|
2560
2499
|
|
2561
|
-
#: ../lib/puppet/indirector/facts/rest.rb:
|
2500
|
+
#: ../lib/puppet/indirector/facts/rest.rb:28
|
2562
2501
|
msgid "PUT does not accept options"
|
2563
2502
|
msgstr ""
|
2564
2503
|
|
@@ -2609,19 +2548,11 @@ msgstr ""
|
|
2609
2548
|
msgid "Invalid checksum %{checksum}"
|
2610
2549
|
msgstr ""
|
2611
2550
|
|
2612
|
-
#: ../lib/puppet/indirector/file_content/http.rb:14
|
2613
|
-
msgid "Puppet::Indirector::FileContent::Http is deprecated. Use Puppet::HTTP::Client instead."
|
2614
|
-
msgstr ""
|
2615
|
-
|
2616
2551
|
#: ../lib/puppet/indirector/file_metadata/http.rb:32
|
2617
2552
|
msgid "cannot lookup multiple files"
|
2618
2553
|
msgstr ""
|
2619
2554
|
|
2620
|
-
#: ../lib/puppet/indirector/file_server.rb:
|
2621
|
-
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."
|
2622
|
-
msgstr ""
|
2623
|
-
|
2624
|
-
#: ../lib/puppet/indirector/file_server.rb:49
|
2555
|
+
#: ../lib/puppet/indirector/file_server.rb:42
|
2625
2556
|
msgid "Could not find filesystem info for file '%{request}' in environment %{env}"
|
2626
2557
|
msgstr ""
|
2627
2558
|
|
@@ -2716,7 +2647,7 @@ msgstr ""
|
|
2716
2647
|
msgid "directory traversal detected in %{json}: %{name}"
|
2717
2648
|
msgstr ""
|
2718
2649
|
|
2719
|
-
#: ../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
|
2720
2651
|
msgid "invalid key"
|
2721
2652
|
msgstr ""
|
2722
2653
|
|
@@ -2728,14 +2659,6 @@ msgstr ""
|
|
2728
2659
|
msgid "Could not parse JSON data for %{name} %{key}: %{detail}"
|
2729
2660
|
msgstr ""
|
2730
2661
|
|
2731
|
-
#: ../lib/puppet/indirector/key/file.rb:29
|
2732
|
-
msgid "Could not remove %{request} public key: %{detail}"
|
2733
|
-
msgstr ""
|
2734
|
-
|
2735
|
-
#: ../lib/puppet/indirector/key/file.rb:43
|
2736
|
-
msgid "Could not write %{request}: %{detail}"
|
2737
|
-
msgstr ""
|
2738
|
-
|
2739
2662
|
#: ../lib/puppet/indirector/memory.rb:14
|
2740
2663
|
msgid "Could not find %{request} to destroy"
|
2741
2664
|
msgstr ""
|
@@ -2752,7 +2675,7 @@ msgstr ""
|
|
2752
2675
|
msgid "Could not destroy %{name} %{request}: %{detail}"
|
2753
2676
|
msgstr ""
|
2754
2677
|
|
2755
|
-
#: ../lib/puppet/indirector/msgpack.rb:47 ../lib/puppet/indirector/
|
2678
|
+
#: ../lib/puppet/indirector/msgpack.rb:47 ../lib/puppet/indirector/yaml.rb:39
|
2756
2679
|
msgid "directory traversal detected in %{indirection}: %{name}"
|
2757
2680
|
msgstr ""
|
2758
2681
|
|
@@ -2797,39 +2720,15 @@ msgstr ""
|
|
2797
2720
|
msgid "No report named '%{name}'"
|
2798
2721
|
msgstr ""
|
2799
2722
|
|
2800
|
-
#: ../lib/puppet/indirector/report/rest.rb:
|
2723
|
+
#: ../lib/puppet/indirector/report/rest.rb:31
|
2801
2724
|
msgid "Server version %{version} does not accept reports in '%{format}', use `preferred_serialization_format=pson`"
|
2802
2725
|
msgstr ""
|
2803
2726
|
|
2804
|
-
#: ../lib/puppet/indirector/request.rb:
|
2727
|
+
#: ../lib/puppet/indirector/request.rb:102
|
2805
2728
|
msgid "Could not find indirection '%{indirection}'"
|
2806
2729
|
msgstr ""
|
2807
2730
|
|
2808
|
-
#: ../lib/puppet/indirector/request.rb:
|
2809
|
-
msgid "Error connecting to %{srv_server}:%{srv_port}: %{message}"
|
2810
|
-
msgstr ""
|
2811
|
-
|
2812
|
-
#. TRANSLATORS 'server_list' is the name of a setting and should not be translated
|
2813
|
-
#: ../lib/puppet/indirector/request.rb:214
|
2814
|
-
msgid "Selected server from first entry of the `server_list` setting: %{server}"
|
2815
|
-
msgstr ""
|
2816
|
-
|
2817
|
-
#. TRANSLATORS 'server' is the name of a setting and should not be translated
|
2818
|
-
#: ../lib/puppet/indirector/request.rb:218
|
2819
|
-
msgid "Selected server from the `server` setting: %{server}"
|
2820
|
-
msgstr ""
|
2821
|
-
|
2822
|
-
#. TRANSLATORS 'server_list' is the name of a setting and should not be translated
|
2823
|
-
#: ../lib/puppet/indirector/request.rb:231
|
2824
|
-
msgid "Selected port from the first entry of the `server_list` setting: %{port}"
|
2825
|
-
msgstr ""
|
2826
|
-
|
2827
|
-
#. TRANSLATORS 'serverport' is the name of a setting and should not be translated
|
2828
|
-
#: ../lib/puppet/indirector/request.rb:235
|
2829
|
-
msgid "Selected port from the `serverport` setting: %{port}"
|
2830
|
-
msgstr ""
|
2831
|
-
|
2832
|
-
#: ../lib/puppet/indirector/request.rb:266
|
2731
|
+
#: ../lib/puppet/indirector/request.rb:165
|
2833
2732
|
msgid "Could not understand URL %{key}: %{detail}"
|
2834
2733
|
msgstr ""
|
2835
2734
|
|
@@ -2841,75 +2740,10 @@ msgstr ""
|
|
2841
2740
|
msgid "Resource instance does not match request key"
|
2842
2741
|
msgstr ""
|
2843
2742
|
|
2844
|
-
#: ../lib/puppet/indirector/rest.rb:
|
2845
|
-
msgid "Puppet::Indirector::Rest#find is deprecated. Use Puppet::HTTP::Client instead."
|
2846
|
-
msgstr ""
|
2847
|
-
|
2848
|
-
#: ../lib/puppet/indirector/rest.rb:154
|
2849
|
-
msgid "Puppet::Indirector::Rest#head is deprecated. Use Puppet::HTTP::Client instead."
|
2850
|
-
msgstr ""
|
2851
|
-
|
2852
|
-
#: ../lib/puppet/indirector/rest.rb:167
|
2853
|
-
msgid "Puppet::Indirector::Rest#search is deprecated. Use Puppet::HTTP::Client instead."
|
2854
|
-
msgstr ""
|
2855
|
-
|
2856
|
-
#: ../lib/puppet/indirector/rest.rb:181
|
2857
|
-
msgid "Puppet::Indirector::Rest#destroy is deprecated. Use Puppet::HTTP::Client instead."
|
2858
|
-
msgstr ""
|
2859
|
-
|
2860
|
-
#: ../lib/puppet/indirector/rest.rb:182
|
2861
|
-
msgid "DELETE does not accept options"
|
2862
|
-
msgstr ""
|
2863
|
-
|
2864
|
-
#: ../lib/puppet/indirector/rest.rb:197
|
2865
|
-
msgid "Puppet::Indirector::Rest#save is deprecated. Use Puppet::HTTP::Client instead."
|
2866
|
-
msgstr ""
|
2867
|
-
|
2868
|
-
#. TRANSLATORS "PSON" should not be translated
|
2869
|
-
#: ../lib/puppet/indirector/rest.rb:235
|
2870
|
-
msgid "Downgrading to PSON for future requests"
|
2871
|
-
msgstr ""
|
2872
|
-
|
2873
|
-
#: ../lib/puppet/indirector/rest.rb:277 ../lib/puppet/rest/response.rb:31
|
2743
|
+
#: ../lib/puppet/indirector/rest.rb:43
|
2874
2744
|
msgid "Error %{code} on SERVER: %{returned_message}"
|
2875
2745
|
msgstr ""
|
2876
2746
|
|
2877
|
-
#: ../lib/puppet/indirector/ssl_file.rb:34
|
2878
|
-
msgid "No file or directory setting provided; terminus %{class_name} cannot function"
|
2879
|
-
msgstr ""
|
2880
|
-
|
2881
|
-
#: ../lib/puppet/indirector/ssl_file.rb:55
|
2882
|
-
msgid "Removing file %{model} %{request} at '%{path}'"
|
2883
|
-
msgstr ""
|
2884
|
-
|
2885
|
-
#: ../lib/puppet/indirector/ssl_file.rb:59
|
2886
|
-
msgid "Could not remove %{request}: %{detail}"
|
2887
|
-
msgstr ""
|
2888
|
-
|
2889
|
-
#: ../lib/puppet/indirector/ssl_file.rb:75
|
2890
|
-
msgid "Cannot save %{request}; parent directory %{dir} does not exist"
|
2891
|
-
msgstr ""
|
2892
|
-
|
2893
|
-
#: ../lib/puppet/indirector/ssl_file.rb:76
|
2894
|
-
msgid "Cannot save %{request}; parent directory %{dir} is not writable"
|
2895
|
-
msgstr ""
|
2896
|
-
|
2897
|
-
#: ../lib/puppet/indirector/ssl_file.rb:121
|
2898
|
-
msgid "Tried to fix SSL files to a file containing uppercase"
|
2899
|
-
msgstr ""
|
2900
|
-
|
2901
|
-
#: ../lib/puppet/indirector/ssl_file.rb:130
|
2902
|
-
msgid "Automatic downcasing and renaming of ssl files is deprecated; please request the file using its correct case: %{full_file}"
|
2903
|
-
msgstr ""
|
2904
|
-
|
2905
|
-
#: ../lib/puppet/indirector/ssl_file.rb:150
|
2906
|
-
msgid "Could not write %{path} to %{setting}: %{detail}"
|
2907
|
-
msgstr ""
|
2908
|
-
|
2909
|
-
#: ../lib/puppet/indirector/ssl_file.rb:153
|
2910
|
-
msgid "You must provide a setting to determine where the files are stored"
|
2911
|
-
msgstr ""
|
2912
|
-
|
2913
2747
|
#: ../lib/puppet/indirector/terminus.rb:37
|
2914
2748
|
msgid "Could not find indirection instance %{name} for %{terminus}"
|
2915
2749
|
msgstr ""
|
@@ -2999,8 +2833,8 @@ msgstr ""
|
|
2999
2833
|
msgid "Option %{option} conflicts with existing option %{conflict} on %{face}"
|
3000
2834
|
msgstr ""
|
3001
2835
|
|
3002
|
-
#. TRANSLATORS 'Puppet.settings' references to the Puppet settings options and should not be translated
|
3003
2836
|
#. TRANSLATORS 'Puppet.settings' should not be translated
|
2837
|
+
#. TRANSLATORS 'Puppet.settings' references to the Puppet settings options and should not be translated
|
3004
2838
|
#: ../lib/puppet/interface/action.rb:315 ../lib/puppet/interface/option_manager.rb:14
|
3005
2839
|
msgid "Global option %{option} does not exist in Puppet.settings"
|
3006
2840
|
msgstr ""
|
@@ -3356,18 +3190,14 @@ msgstr ""
|
|
3356
3190
|
msgid "Resolving dependencies ..."
|
3357
3191
|
msgstr ""
|
3358
3192
|
|
3359
|
-
#: ../lib/puppet/module_tool/applications/installer.rb:
|
3193
|
+
#: ../lib/puppet/module_tool/applications/installer.rb:162
|
3360
3194
|
msgid "Preparing to install ..."
|
3361
3195
|
msgstr ""
|
3362
3196
|
|
3363
|
-
#: ../lib/puppet/module_tool/applications/installer.rb:
|
3197
|
+
#: ../lib/puppet/module_tool/applications/installer.rb:165
|
3364
3198
|
msgid "Installing -- do not interrupt ..."
|
3365
3199
|
msgstr ""
|
3366
3200
|
|
3367
|
-
#: ../lib/puppet/module_tool/applications/searcher.rb:15
|
3368
|
-
msgid "Searching %{host} ..."
|
3369
|
-
msgstr ""
|
3370
|
-
|
3371
3201
|
#: ../lib/puppet/module_tool/applications/uninstaller.rb:92
|
3372
3202
|
msgid "Either the `--ignore_changes` or `--force` argument must be specified to uninstall modules when running in FIPS mode."
|
3373
3203
|
msgstr ""
|
@@ -3404,7 +3234,7 @@ msgstr ""
|
|
3404
3234
|
msgid "'%{module_name}' (%{version}) requested; '%{module_name}' (%{installed_version}) already installed"
|
3405
3235
|
msgstr ""
|
3406
3236
|
|
3407
|
-
#: ../lib/puppet/module_tool/errors/installer.rb:16 ../lib/puppet/module_tool/errors/installer.rb:54 ../lib/puppet/module_tool/errors/installer.rb:72 ../lib/puppet/module_tool/errors/shared.rb:
|
3237
|
+
#: ../lib/puppet/module_tool/errors/installer.rb:16 ../lib/puppet/module_tool/errors/installer.rb:54 ../lib/puppet/module_tool/errors/installer.rb:72 ../lib/puppet/module_tool/errors/shared.rb:64 ../lib/puppet/module_tool/errors/shared.rb:106
|
3408
3238
|
msgid "Could not install module '%{module_name}' (%{version})"
|
3409
3239
|
msgstr ""
|
3410
3240
|
|
@@ -3434,7 +3264,7 @@ msgstr ""
|
|
3434
3264
|
msgid "Could not install '%{requested_package}'"
|
3435
3265
|
msgstr ""
|
3436
3266
|
|
3437
|
-
#: ../lib/puppet/module_tool/errors/installer.rb:38 ../lib/puppet/module_tool/errors/shared.rb:
|
3267
|
+
#: ../lib/puppet/module_tool/errors/installer.rb:38 ../lib/puppet/module_tool/errors/shared.rb:43
|
3438
3268
|
msgid " No releases are available from %{source}"
|
3439
3269
|
msgstr ""
|
3440
3270
|
|
@@ -3479,162 +3309,150 @@ msgstr ""
|
|
3479
3309
|
msgid " Package attempted to install file into %{path} under %{directory}."
|
3480
3310
|
msgstr ""
|
3481
3311
|
|
3482
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3312
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:11
|
3483
3313
|
msgid "Could not %{action} '%{module_name}' (%{version}); no version satisfies all dependencies"
|
3484
3314
|
msgstr ""
|
3485
3315
|
|
3486
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3316
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:16 ../lib/puppet/module_tool/errors/shared.rb:171 ../lib/puppet/module_tool/errors/upgrader.rb:58
|
3487
3317
|
msgid "Could not %{action} module '%{module_name}' (%{version})"
|
3488
3318
|
msgstr ""
|
3489
3319
|
|
3490
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3491
|
-
msgid "
|
3492
|
-
msgstr ""
|
3493
|
-
|
3494
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:22
|
3495
|
-
msgid " %{name}, installed: %{current_version}, expected: %{constraints}"
|
3496
|
-
msgstr ""
|
3497
|
-
|
3498
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:25
|
3499
|
-
msgid " %{mod}, expects '%{name}': %{range}"
|
3500
|
-
msgstr ""
|
3501
|
-
|
3502
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:30
|
3503
|
-
msgid " The requested version cannot satisfy all dependencies"
|
3320
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:17
|
3321
|
+
msgid " No version of '%{module_name}' can satisfy all dependencies"
|
3504
3322
|
msgstr ""
|
3505
3323
|
|
3506
3324
|
#. TRANSLATORS `puppet module %{action} --ignore-dependencies` is a command line and should not be translated
|
3507
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3508
|
-
msgid "
|
3325
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:19
|
3326
|
+
msgid " Use `puppet module %{action} --ignore-dependencies` to %{action} only this module"
|
3509
3327
|
msgstr ""
|
3510
3328
|
|
3511
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3329
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:33
|
3512
3330
|
msgid "Could not %{action} '%{module_name}'; no releases are available from %{source}"
|
3513
3331
|
msgstr ""
|
3514
3332
|
|
3515
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3333
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:35
|
3516
3334
|
msgid "Could not %{action} '%{module_name}'; no releases matching '%{version}' are available from %{source}"
|
3517
3335
|
msgstr ""
|
3518
3336
|
|
3519
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3337
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:41
|
3520
3338
|
msgid "Could not %{action} '%{module_name}' (%{version})"
|
3521
3339
|
msgstr ""
|
3522
3340
|
|
3523
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3341
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:44
|
3524
3342
|
msgid " Does '%{module_name}' have at least one published release?"
|
3525
3343
|
msgstr ""
|
3526
3344
|
|
3527
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3345
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:46
|
3528
3346
|
msgid " No releases matching '%{requested_version}' are available from %{source}"
|
3529
3347
|
msgstr ""
|
3530
3348
|
|
3531
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3349
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:59
|
3532
3350
|
msgid "'%{module_name}' (%{version}) requested; installation conflict"
|
3533
3351
|
msgstr ""
|
3534
3352
|
|
3535
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3353
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:67
|
3536
3354
|
msgid " Dependency '%{name}' (%{version}) would overwrite %{directory}"
|
3537
3355
|
msgstr ""
|
3538
3356
|
|
3539
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3357
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:69
|
3540
3358
|
msgid " Installation would overwrite %{directory}"
|
3541
3359
|
msgstr ""
|
3542
3360
|
|
3543
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3361
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:73
|
3544
3362
|
msgid " Currently, '%{current_name}' (%{current_version}) is installed to that directory"
|
3545
3363
|
msgstr ""
|
3546
3364
|
|
3547
3365
|
#. TRANSLATORS `puppet module install --ignore-dependencies` is a command line and should not be translated
|
3548
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3366
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:78
|
3549
3367
|
msgid " Use `puppet module install --ignore-dependencies` to install only this module"
|
3550
3368
|
msgstr ""
|
3551
3369
|
|
3552
3370
|
#. TRANSLATORS `puppet module install --force` is a command line and should not be translated
|
3553
3371
|
#. TRANSLATORS `puppet module install --force` is a command line and should not be translated
|
3554
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3372
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:81 ../lib/puppet/module_tool/errors/shared.rb:110
|
3555
3373
|
msgid " Use `puppet module install --force` to install this module anyway"
|
3556
3374
|
msgstr ""
|
3557
3375
|
|
3558
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3376
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:95
|
3559
3377
|
msgid "'%{module_name}' (%{version}) requested; Invalid dependency cycle"
|
3560
3378
|
msgstr ""
|
3561
3379
|
|
3562
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3380
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:100
|
3563
3381
|
msgid "You specified '%{name}' (%{version})"
|
3564
3382
|
msgstr ""
|
3565
3383
|
|
3566
3384
|
#. TRANSLATORS This message repeats as separate lines as a list under the heading "You specified '%{name}' (%{version})\n"
|
3567
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3385
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:103
|
3568
3386
|
msgid "This depends on '%{name}' (%{version})"
|
3569
3387
|
msgstr ""
|
3570
3388
|
|
3571
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3389
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:107
|
3572
3390
|
msgid " No version of '%{module_name}' will satisfy dependencies"
|
3573
3391
|
msgstr ""
|
3574
3392
|
|
3575
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3393
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:120
|
3576
3394
|
msgid "Could not %{action} '%{module_name}'; module is not installed"
|
3577
3395
|
msgstr ""
|
3578
3396
|
|
3579
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3397
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:125 ../lib/puppet/module_tool/errors/shared.rb:148 ../lib/puppet/module_tool/errors/shared.rb:189
|
3580
3398
|
msgid "Could not %{action} module '%{module_name}'"
|
3581
3399
|
msgstr ""
|
3582
3400
|
|
3583
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3401
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:126
|
3584
3402
|
msgid " Module '%{module_name}' is not installed"
|
3585
3403
|
msgstr ""
|
3586
3404
|
|
3587
3405
|
#. TRANSLATORS `puppet module %{action} %{suggestion}` is a command line and should not be translated
|
3588
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3406
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:129
|
3589
3407
|
msgid " You may have meant `puppet module %{action} %{suggestion}`"
|
3590
3408
|
msgstr ""
|
3591
3409
|
|
3592
3410
|
#. TRANSLATORS `puppet module install` is a command line and should not be translated
|
3593
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3411
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:132
|
3594
3412
|
msgid " Use `puppet module install` to install this module"
|
3595
3413
|
msgstr ""
|
3596
3414
|
|
3597
3415
|
#. TRANSLATORS "module path" refers to a set of directories where modules may be installed
|
3598
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3416
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:143
|
3599
3417
|
msgid "Could not %{action} '%{module_name}'; module appears in multiple places in the module path"
|
3600
3418
|
msgstr ""
|
3601
3419
|
|
3602
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3420
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:149
|
3603
3421
|
msgid " Module '%{module_name}' appears multiple places in the module path"
|
3604
3422
|
msgstr ""
|
3605
3423
|
|
3606
3424
|
#. TRANSLATORS This is repeats as separate lines as a list under "Module '%{module_name}' appears multiple places in the module path"
|
3607
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3425
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:152
|
3608
3426
|
msgid " '%{module_name}' (%{version}) was found in %{path}"
|
3609
3427
|
msgstr ""
|
3610
3428
|
|
3611
3429
|
#. TRANSLATORS `--modulepath` is command line option and should not be translated
|
3612
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3430
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:155
|
3613
3431
|
msgid " Use the `--modulepath` option to limit the search to specific directories"
|
3614
3432
|
msgstr ""
|
3615
3433
|
|
3616
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3434
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:166
|
3617
3435
|
msgid "Could not %{action} '%{module_name}'; module has had changes made locally"
|
3618
3436
|
msgstr ""
|
3619
3437
|
|
3620
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3438
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:172
|
3621
3439
|
msgid " Installed module has had changes made locally"
|
3622
3440
|
msgstr ""
|
3623
3441
|
|
3624
3442
|
#. TRANSLATORS `puppet module %{action} --ignore-changes` is a command line and should not be translated
|
3625
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3443
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:174
|
3626
3444
|
msgid " Use `puppet module %{action} --ignore-changes` to %{action} this module anyway"
|
3627
3445
|
msgstr ""
|
3628
3446
|
|
3629
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3447
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:184
|
3630
3448
|
msgid "Could not %{action} '%{module_name}'; %{error}"
|
3631
3449
|
msgstr ""
|
3632
3450
|
|
3633
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3451
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:190
|
3634
3452
|
msgid " Failure trying to parse metadata"
|
3635
3453
|
msgstr ""
|
3636
3454
|
|
3637
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3455
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:191
|
3638
3456
|
msgid " Original message was: %{message}"
|
3639
3457
|
msgstr ""
|
3640
3458
|
|
@@ -3789,67 +3607,6 @@ msgstr ""
|
|
3789
3607
|
msgid "No suitable tar implementation found"
|
3790
3608
|
msgstr ""
|
3791
3609
|
|
3792
|
-
#. TRANSLATORS "path" is a configuration file entry and should not be translated
|
3793
|
-
#: ../lib/puppet/network/auth_config_parser.rb:32
|
3794
|
-
msgid "Missing or invalid 'path' before right directive at %{error_location}"
|
3795
|
-
msgstr ""
|
3796
|
-
|
3797
|
-
#: ../lib/puppet/network/auth_config_parser.rb:38 ../lib/puppet/util/network_device/config.rb:71
|
3798
|
-
msgid "Invalid entry at %{error_location}: %{file_text}"
|
3799
|
-
msgstr ""
|
3800
|
-
|
3801
|
-
#: ../lib/puppet/network/auth_config_parser.rb:57
|
3802
|
-
msgid "allowing %{value} access"
|
3803
|
-
msgstr ""
|
3804
|
-
|
3805
|
-
#: ../lib/puppet/network/auth_config_parser.rb:59
|
3806
|
-
msgid "denying %{value} access"
|
3807
|
-
msgstr ""
|
3808
|
-
|
3809
|
-
#: ../lib/puppet/network/auth_config_parser.rb:61
|
3810
|
-
msgid "allowing IP %{value} access"
|
3811
|
-
msgstr ""
|
3812
|
-
|
3813
|
-
#: ../lib/puppet/network/auth_config_parser.rb:63
|
3814
|
-
msgid "denying IP %{value} access"
|
3815
|
-
msgstr ""
|
3816
|
-
|
3817
|
-
#: ../lib/puppet/network/auth_config_parser.rb:65
|
3818
|
-
msgid "allowing 'method' %{value}"
|
3819
|
-
msgstr ""
|
3820
|
-
|
3821
|
-
#: ../lib/puppet/network/auth_config_parser.rb:67
|
3822
|
-
msgid "adding environment %{value}"
|
3823
|
-
msgstr ""
|
3824
|
-
|
3825
|
-
#: ../lib/puppet/network/auth_config_parser.rb:69
|
3826
|
-
msgid "adding authentication %{value}"
|
3827
|
-
msgstr ""
|
3828
|
-
|
3829
|
-
#: ../lib/puppet/network/authconfig.rb:41
|
3830
|
-
msgid "Inserting default '%{acl}' (auth %{auth}) ACL"
|
3831
|
-
msgstr ""
|
3832
|
-
|
3833
|
-
#: ../lib/puppet/network/authconfig.rb:71
|
3834
|
-
msgid "Denying access: %{authorization_failure_exception}"
|
3835
|
-
msgstr ""
|
3836
|
-
|
3837
|
-
#: ../lib/puppet/network/authstore.rb:22
|
3838
|
-
msgid "Name and IP must be passed to 'allowed?'"
|
3839
|
-
msgstr ""
|
3840
|
-
|
3841
|
-
#: ../lib/puppet/network/authstore.rb:37
|
3842
|
-
msgid "defaulting to no access for %{name}"
|
3843
|
-
msgstr ""
|
3844
|
-
|
3845
|
-
#: ../lib/puppet/network/authstore.rb:190
|
3846
|
-
msgid "Invalid declaration type %{type}"
|
3847
|
-
msgstr ""
|
3848
|
-
|
3849
|
-
#: ../lib/puppet/network/authstore.rb:258
|
3850
|
-
msgid "Invalid IP pattern %{value}"
|
3851
|
-
msgstr ""
|
3852
|
-
|
3853
3610
|
#: ../lib/puppet/network/client_request.rb:15
|
3854
3611
|
msgid "Request is not set up; cannot build call"
|
3855
3612
|
msgstr ""
|
@@ -3903,77 +3660,77 @@ msgstr ""
|
|
3903
3660
|
msgid "Serialized YAML did not contain a valid instance of %{klass}"
|
3904
3661
|
msgstr ""
|
3905
3662
|
|
3906
|
-
#: ../lib/puppet/network/http/api/indirected_routes.rb:
|
3663
|
+
#: ../lib/puppet/network/http/api/indirected_routes.rb:42
|
3907
3664
|
msgid "No handler for %{indirection}"
|
3908
3665
|
msgstr ""
|
3909
3666
|
|
3910
|
-
#: ../lib/puppet/network/http/api/indirected_routes.rb:
|
3667
|
+
#: ../lib/puppet/network/http/api/indirected_routes.rb:65
|
3911
3668
|
msgid "The indirection name must be purely alphanumeric, not '%{indirection_name}'"
|
3912
3669
|
msgstr ""
|
3913
3670
|
|
3914
|
-
#: ../lib/puppet/network/http/api/indirected_routes.rb:
|
3671
|
+
#: ../lib/puppet/network/http/api/indirected_routes.rb:75
|
3915
3672
|
msgid "Indirection '%{indirection_name}' does not match url prefix '%{url_prefix}'"
|
3916
3673
|
msgstr ""
|
3917
3674
|
|
3918
|
-
#: ../lib/puppet/network/http/api/indirected_routes.rb:
|
3675
|
+
#: ../lib/puppet/network/http/api/indirected_routes.rb:81
|
3919
3676
|
msgid "Could not find indirection '%{indirection_name}'"
|
3920
3677
|
msgstr ""
|
3921
3678
|
|
3922
|
-
#: ../lib/puppet/network/http/api/indirected_routes.rb:
|
3679
|
+
#: ../lib/puppet/network/http/api/indirected_routes.rb:87
|
3923
3680
|
msgid "An environment parameter must be specified"
|
3924
3681
|
msgstr ""
|
3925
3682
|
|
3926
|
-
#: ../lib/puppet/network/http/api/indirected_routes.rb:
|
3683
|
+
#: ../lib/puppet/network/http/api/indirected_routes.rb:92
|
3927
3684
|
msgid "The environment must be purely alphanumeric, not '%{environment}'"
|
3928
3685
|
msgstr ""
|
3929
3686
|
|
3930
|
-
#: ../lib/puppet/network/http/api/indirected_routes.rb:
|
3687
|
+
#: ../lib/puppet/network/http/api/indirected_routes.rb:103
|
3931
3688
|
msgid "Could not find environment '%{environment}'"
|
3932
3689
|
msgstr ""
|
3933
3690
|
|
3934
|
-
#: ../lib/puppet/network/http/api/indirected_routes.rb:
|
3691
|
+
#: ../lib/puppet/network/http/api/indirected_routes.rb:110
|
3935
3692
|
msgid "No request key specified in %{uri}"
|
3936
3693
|
msgstr ""
|
3937
3694
|
|
3938
|
-
#: ../lib/puppet/network/http/api/indirected_routes.rb:
|
3695
|
+
#: ../lib/puppet/network/http/api/indirected_routes.rb:122
|
3939
3696
|
msgid "Could not find %{value0} %{key}"
|
3940
3697
|
msgstr ""
|
3941
3698
|
|
3942
|
-
#: ../lib/puppet/network/http/api/indirected_routes.rb:
|
3699
|
+
#: ../lib/puppet/network/http/api/indirected_routes.rb:129
|
3943
3700
|
msgid "Rendered result in %{format}"
|
3944
3701
|
msgstr ""
|
3945
3702
|
|
3946
|
-
#: ../lib/puppet/network/http/api/indirected_routes.rb:
|
3703
|
+
#: ../lib/puppet/network/http/api/indirected_routes.rb:135
|
3947
3704
|
msgid "Sent response"
|
3948
3705
|
msgstr ""
|
3949
3706
|
|
3950
|
-
#: ../lib/puppet/network/http/api/indirected_routes.rb:
|
3707
|
+
#: ../lib/puppet/network/http/api/indirected_routes.rb:143
|
3951
3708
|
msgid "Could not find %{indirection} %{key}"
|
3952
3709
|
msgstr ""
|
3953
3710
|
|
3954
|
-
#: ../lib/puppet/network/http/api/indirected_routes.rb:
|
3711
|
+
#: ../lib/puppet/network/http/api/indirected_routes.rb:155
|
3955
3712
|
msgid "Could not find instances in %{indirection} with '%{key}'"
|
3956
3713
|
msgstr ""
|
3957
3714
|
|
3958
|
-
#: ../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
|
3959
3716
|
msgid "No supported formats are acceptable (Accept: %{accepted_formats})"
|
3960
3717
|
msgstr ""
|
3961
3718
|
|
3962
|
-
#: ../lib/puppet/network/http/api/indirected_routes.rb:
|
3719
|
+
#: ../lib/puppet/network/http/api/indirected_routes.rb:228
|
3963
3720
|
msgid "The request body is invalid: %{message}"
|
3964
3721
|
msgstr ""
|
3965
3722
|
|
3966
3723
|
#. TRANSLATORS "mime-type" is a keyword and should not be translated
|
3967
3724
|
#. TRANSLATORS "mime-type" is a keyword and should not be translated
|
3968
|
-
#: ../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
|
3969
3726
|
msgid "Client sent a mime-type (%{header}) that doesn't correspond to a format we support"
|
3970
3727
|
msgstr ""
|
3971
3728
|
|
3972
|
-
#: ../lib/puppet/network/http/api/indirected_routes.rb:
|
3729
|
+
#: ../lib/puppet/network/http/api/indirected_routes.rb:240
|
3973
3730
|
msgid "No support for http method %{http_method}"
|
3974
3731
|
msgstr ""
|
3975
3732
|
|
3976
|
-
#: ../lib/puppet/network/http/api/indirected_routes.rb:
|
3733
|
+
#: ../lib/puppet/network/http/api/indirected_routes.rb:245
|
3977
3734
|
msgid "No support for plurality %{indirection} for %{http_method} operations"
|
3978
3735
|
msgstr ""
|
3979
3736
|
|
@@ -3981,92 +3738,18 @@ msgstr ""
|
|
3981
3738
|
msgid "Not a valid indirection type"
|
3982
3739
|
msgstr ""
|
3983
3740
|
|
3984
|
-
#: ../lib/puppet/network/http/
|
3985
|
-
msgid "%{env_name} is not a known environment"
|
3986
|
-
msgstr ""
|
3987
|
-
|
3988
|
-
#: ../lib/puppet/network/http/api/master/v3/environment.rb:43
|
3989
|
-
msgid "Application %{application} assigns nodes to non-existent components: %{component_list}"
|
3990
|
-
msgstr ""
|
3991
|
-
|
3992
|
-
#: ../lib/puppet/network/http/api/master/v3/environment.rb:49
|
3993
|
-
msgid "Application %{application} has components without assigned nodes: %{component_list}"
|
3994
|
-
msgstr ""
|
3995
|
-
|
3996
|
-
#: ../lib/puppet/network/http/api/master/v3/environment.rb:58
|
3997
|
-
msgid "Application %{app} assigns multiple nodes to component %{comp}"
|
3998
|
-
msgstr ""
|
3999
|
-
|
4000
|
-
#: ../lib/puppet/network/http/compression.rb:23 ../lib/puppet/network/http/compression.rb:27
|
4001
|
-
msgid "Puppet::Network::HTTP::Compression::Active#uncompress_body is deprecated."
|
4002
|
-
msgstr ""
|
4003
|
-
|
4004
|
-
#: ../lib/puppet/network/http/compression.rb:32 ../lib/puppet/network/http/compression.rb:46
|
4005
|
-
msgid "Unknown content encoding - %{encoding}"
|
4006
|
-
msgstr ""
|
4007
|
-
|
4008
|
-
#: ../lib/puppet/network/http/compression.rb:37
|
4009
|
-
msgid "Puppet::Network::HTTP::Compression::Active#uncompress is deprecated."
|
4010
|
-
msgstr ""
|
4011
|
-
|
4012
|
-
#: ../lib/puppet/network/http/compression.rb:77
|
4013
|
-
msgid "Puppet::Network::HTTP::Compression::ZlibAdapter#uncompress is deprecated."
|
4014
|
-
msgstr ""
|
4015
|
-
|
4016
|
-
#: ../lib/puppet/network/http/compression.rb:104
|
4017
|
-
msgid "Puppet::Network::HTTP::Compression::None#uncompress_body is deprecated."
|
4018
|
-
msgstr ""
|
4019
|
-
|
4020
|
-
#: ../lib/puppet/network/http/compression.rb:113
|
4021
|
-
msgid "Puppet::Network::HTTP::Compression::None#uncompress is deprecated."
|
4022
|
-
msgstr ""
|
4023
|
-
|
4024
|
-
#: ../lib/puppet/network/http/compression.rb:120
|
4025
|
-
msgid "Puppet::Network::HTTP::Compression::IdentityAdapter#uncompress is deprecated."
|
4026
|
-
msgstr ""
|
4027
|
-
|
4028
|
-
#: ../lib/puppet/network/http/connection.rb:56
|
3741
|
+
#: ../lib/puppet/network/http/connection.rb:43
|
4029
3742
|
msgid "Unrecognized option(s): %{opts}"
|
4030
3743
|
msgstr ""
|
4031
3744
|
|
4032
|
-
#: ../lib/puppet/network/http/connection.rb:
|
3745
|
+
#: ../lib/puppet/network/http/connection.rb:49
|
4033
3746
|
msgid "Expected an instance of Puppet::SSL::Verifier but was passed a %{klass}"
|
4034
3747
|
msgstr ""
|
4035
3748
|
|
4036
|
-
#: ../lib/puppet/network/http/connection.rb:
|
3749
|
+
#: ../lib/puppet/network/http/connection.rb:272
|
4037
3750
|
msgid "Too many HTTP redirections for %{host}:%{port}"
|
4038
3751
|
msgstr ""
|
4039
3752
|
|
4040
|
-
#. TRANSLATORS: Used in the phrase:
|
4041
|
-
#. "Received a response from the remote server."
|
4042
|
-
#: ../lib/puppet/network/http/connection.rb:259
|
4043
|
-
msgid "the remote server"
|
4044
|
-
msgstr ""
|
4045
|
-
|
4046
|
-
#: ../lib/puppet/network/http/connection.rb:263
|
4047
|
-
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."
|
4048
|
-
msgstr ""
|
4049
|
-
|
4050
|
-
#: ../lib/puppet/network/http/connection.rb:274
|
4051
|
-
msgid "Received a %{status_code} response from %{server_hostname}. Sleeping for %{retry_sleep} seconds before retrying the request."
|
4052
|
-
msgstr ""
|
4053
|
-
|
4054
|
-
#: ../lib/puppet/network/http/connection.rb:335
|
4055
|
-
msgid "request %{uri} interrupted after %{elapsed} seconds"
|
4056
|
-
msgstr ""
|
4057
|
-
|
4058
|
-
#: ../lib/puppet/network/http/connection.rb:337
|
4059
|
-
msgid "request %{uri} timed out after %{elapsed} seconds"
|
4060
|
-
msgstr ""
|
4061
|
-
|
4062
|
-
#: ../lib/puppet/network/http/connection.rb:339
|
4063
|
-
msgid "request %{uri} failed: %{msg}"
|
4064
|
-
msgstr ""
|
4065
|
-
|
4066
|
-
#: ../lib/puppet/network/http/connection.rb:346
|
4067
|
-
msgid "Puppet::Network::HTTP::Connection is deprecated. Please use Puppet::Network::HTTP::ConnectionAdapter instead."
|
4068
|
-
msgstr ""
|
4069
|
-
|
4070
3753
|
#: ../lib/puppet/network/http/error.rb:23
|
4071
3754
|
msgid "Not Acceptable: %{message}"
|
4072
3755
|
msgstr ""
|
@@ -4095,30 +3778,22 @@ msgstr ""
|
|
4095
3778
|
msgid "Server Error: %{message}"
|
4096
3779
|
msgstr ""
|
4097
3780
|
|
4098
|
-
#: ../lib/puppet/network/http/handler.rb:
|
3781
|
+
#: ../lib/puppet/network/http/handler.rb:22
|
4099
3782
|
msgid "Given multiple routes with identical path regexes: %{regexes}"
|
4100
3783
|
msgstr ""
|
4101
3784
|
|
4102
|
-
#: ../lib/puppet/network/http/handler.rb:
|
3785
|
+
#: ../lib/puppet/network/http/handler.rb:66
|
4103
3786
|
msgid "Processed request %{request_method} %{request_path}"
|
4104
3787
|
msgstr ""
|
4105
3788
|
|
4106
|
-
#: ../lib/puppet/network/http/handler.rb:
|
3789
|
+
#: ../lib/puppet/network/http/handler.rb:112
|
4107
3790
|
msgid "No route for %{request} %{path}"
|
4108
3791
|
msgstr ""
|
4109
3792
|
|
4110
|
-
#: ../lib/puppet/network/http/handler.rb:
|
3793
|
+
#: ../lib/puppet/network/http/handler.rb:137
|
4111
3794
|
msgid "Could not resolve %{ip}: %{detail}"
|
4112
3795
|
msgstr ""
|
4113
3796
|
|
4114
|
-
#: ../lib/puppet/network/http/nocache_pool.rb:6
|
4115
|
-
msgid "Puppet::Network::HTTP::NoCachePool is deprecated."
|
4116
|
-
msgstr ""
|
4117
|
-
|
4118
|
-
#: ../lib/puppet/network/http/pool.rb:66
|
4119
|
-
msgid "Failed to close connection for %{site}: %{detail}"
|
4120
|
-
msgstr ""
|
4121
|
-
|
4122
3797
|
#: ../lib/puppet/network/http/request.rb:14
|
4123
3798
|
msgid "Unknown arguments: %{args}"
|
4124
3799
|
msgstr ""
|
@@ -4132,39 +3807,15 @@ msgid "Missing required Accept header"
|
|
4132
3807
|
msgstr ""
|
4133
3808
|
|
4134
3809
|
#. TRANSLATORS 'ssl_context' is an argument and should not be translated
|
4135
|
-
#: ../lib/puppet/network/http_pool.rb:
|
3810
|
+
#: ../lib/puppet/network/http_pool.rb:63
|
4136
3811
|
msgid "An ssl_context is required when connecting to 'https://%{host}:%{port}'"
|
4137
3812
|
msgstr ""
|
4138
3813
|
|
4139
3814
|
#. TRANSLATORS 'ssl_context' is an argument and should not be translated
|
4140
|
-
#: ../lib/puppet/network/http_pool.rb:
|
3815
|
+
#: ../lib/puppet/network/http_pool.rb:71
|
4141
3816
|
msgid "An ssl_context is unnecessary when connecting to 'http://%{host}:%{port}' and will be ignored"
|
4142
3817
|
msgstr ""
|
4143
3818
|
|
4144
|
-
#: ../lib/puppet/network/rights.rb:59
|
4145
|
-
msgid "Forbidden request: %{msg}"
|
4146
|
-
msgstr ""
|
4147
|
-
|
4148
|
-
#: ../lib/puppet/network/rights.rb:127
|
4149
|
-
msgid "Unknown right type '%{name}'"
|
4150
|
-
msgstr ""
|
4151
|
-
|
4152
|
-
#: ../lib/puppet/network/rights.rb:169
|
4153
|
-
msgid "'%{m}' is not an allowed value for method directive"
|
4154
|
-
msgstr ""
|
4155
|
-
|
4156
|
-
#: ../lib/puppet/network/rights.rb:176
|
4157
|
-
msgid "'%{m}' is already in the '%{name}' ACL"
|
4158
|
-
msgstr ""
|
4159
|
-
|
4160
|
-
#: ../lib/puppet/network/rights.rb:183
|
4161
|
-
msgid "'%{env}' is already in the '%{name}' ACL"
|
4162
|
-
msgstr ""
|
4163
|
-
|
4164
|
-
#: ../lib/puppet/network/rights.rb:195
|
4165
|
-
msgid "'%{name}' incorrect authenticated value: %{authentication}"
|
4166
|
-
msgstr ""
|
4167
|
-
|
4168
3819
|
#: ../lib/puppet/node.rb:27
|
4169
3820
|
msgid "No name provided in serialized data"
|
4170
3821
|
msgstr ""
|
@@ -4181,11 +3832,7 @@ msgstr ""
|
|
4181
3832
|
msgid "The node parameter '%{param_name}' for node '%{node_name}' was already set to '%{value}'. It could not be set to '%{desired_value}'"
|
4182
3833
|
msgstr ""
|
4183
3834
|
|
4184
|
-
#: ../lib/puppet/node.rb:
|
4185
|
-
msgid "Host is missing hostname and/or domain: %{name}"
|
4186
|
-
msgstr ""
|
4187
|
-
|
4188
|
-
#: ../lib/puppet/node.rb:230
|
3835
|
+
#: ../lib/puppet/node.rb:201
|
4189
3836
|
msgid "Trusted node data modified for node %{name}"
|
4190
3837
|
msgstr ""
|
4191
3838
|
|
@@ -4219,60 +3866,60 @@ msgid "Given data_type value is not a data type, got '%{type}'"
|
|
4219
3866
|
msgstr ""
|
4220
3867
|
|
4221
3868
|
#. TRANSLATORS 'type' and 'title' are internal parameter names - do not translate
|
4222
|
-
#: ../lib/puppet/pal/json_catalog_encoder.rb:
|
3869
|
+
#: ../lib/puppet/pal/json_catalog_encoder.rb:54
|
4223
3870
|
msgid "Both type and title must be given"
|
4224
3871
|
msgstr ""
|
4225
3872
|
|
4226
3873
|
#. TRANSLATORS: do not translate the variable names in this error message
|
4227
3874
|
#. TRANSLATORS: do not translate the variable names in this error message
|
4228
|
-
#: ../lib/puppet/pal/pal_impl.rb:
|
3875
|
+
#: ../lib/puppet/pal/pal_impl.rb:76 ../lib/puppet/pal/pal_impl.rb:174
|
4229
3876
|
msgid "manifest_file or code_string cannot be given when configured_by_env is true"
|
4230
3877
|
msgstr ""
|
4231
3878
|
|
4232
|
-
#: ../lib/puppet/pal/pal_impl.rb:
|
3879
|
+
#: ../lib/puppet/pal/pal_impl.rb:222
|
4233
3880
|
msgid "temporary environment name"
|
4234
3881
|
msgstr ""
|
4235
3882
|
|
4236
3883
|
#. TRANSLATORS: do not translate variable name string in these assertions
|
4237
|
-
#: ../lib/puppet/pal/pal_impl.rb:
|
3884
|
+
#: ../lib/puppet/pal/pal_impl.rb:227
|
4238
3885
|
msgid "A block must be given to 'in_tmp_environment'"
|
4239
3886
|
msgstr ""
|
4240
3887
|
|
4241
3888
|
#. TRANSLATORS terms in the assertions below are names of terms in code
|
4242
|
-
#: ../lib/puppet/pal/pal_impl.rb:
|
3889
|
+
#: ../lib/puppet/pal/pal_impl.rb:282
|
4243
3890
|
msgid "A block must be given to 'in_environment'"
|
4244
3891
|
msgstr ""
|
4245
3892
|
|
4246
3893
|
#. TRANSLATORS 'in_environment' is a name, do not translate
|
4247
|
-
#: ../lib/puppet/pal/pal_impl.rb:
|
3894
|
+
#: ../lib/puppet/pal/pal_impl.rb:287
|
4248
3895
|
msgid "The environment directory '%{env_dir}' does not exist"
|
4249
3896
|
msgstr ""
|
4250
3897
|
|
4251
|
-
#: ../lib/puppet/pal/pal_impl.rb:
|
3898
|
+
#: ../lib/puppet/pal/pal_impl.rb:310
|
4252
3899
|
msgid "No directory found for the environment '%{env_name}' on the path '%{envpath}'"
|
4253
3900
|
msgstr ""
|
4254
3901
|
|
4255
|
-
#: ../lib/puppet/pal/pal_impl.rb:
|
3902
|
+
#: ../lib/puppet/pal/pal_impl.rb:364
|
4256
3903
|
msgid "Given variables must be a hash, got %{type}"
|
4257
3904
|
msgstr ""
|
4258
3905
|
|
4259
|
-
#: ../lib/puppet/pal/pal_impl.rb:
|
3906
|
+
#: ../lib/puppet/pal/pal_impl.rb:370
|
4260
3907
|
msgid "Given variable '%{varname}' has illegal name"
|
4261
3908
|
msgstr ""
|
4262
3909
|
|
4263
|
-
#: ../lib/puppet/pal/pal_impl.rb:
|
3910
|
+
#: ../lib/puppet/pal/pal_impl.rb:374
|
4264
3911
|
msgid "Given value for '%{varname}' has illegal type - got: %{type}"
|
4265
3912
|
msgstr ""
|
4266
3913
|
|
4267
|
-
#: ../lib/puppet/pal/pal_impl.rb:
|
3914
|
+
#: ../lib/puppet/pal/pal_impl.rb:511
|
4268
3915
|
msgid "Puppet Pal: %{what}"
|
4269
3916
|
msgstr ""
|
4270
3917
|
|
4271
|
-
#: ../lib/puppet/pal/pal_impl.rb:
|
3918
|
+
#: ../lib/puppet/pal/pal_impl.rb:525
|
4272
3919
|
msgid "Cannot use '%{a_term}' and '%{b_term}' at the same time"
|
4273
3920
|
msgstr ""
|
4274
3921
|
|
4275
|
-
#: ../lib/puppet/pal/pal_impl.rb:
|
3922
|
+
#: ../lib/puppet/pal/pal_impl.rb:532
|
4276
3923
|
msgid "A block must be given"
|
4277
3924
|
msgstr ""
|
4278
3925
|
|
@@ -4337,7 +3984,7 @@ msgstr ""
|
|
4337
3984
|
msgid "Node inheritance is removed in Puppet 4.0.0. See http://links.puppet.com/puppet-node-inheritance-deprecation"
|
4338
3985
|
msgstr ""
|
4339
3986
|
|
4340
|
-
#: ../lib/puppet/parser/ast/pops_bridge.rb:
|
3987
|
+
#: ../lib/puppet/parser/ast/pops_bridge.rb:180
|
4341
3988
|
msgid "Instantiating Resource with type checked parameters - scope is missing, skipping type checking."
|
4342
3989
|
msgstr ""
|
4343
3990
|
|
@@ -4362,209 +4009,100 @@ msgid "For more information, see https://puppet.com/docs/puppet/latest/environme
|
|
4362
4009
|
msgstr ""
|
4363
4010
|
|
4364
4011
|
#. TRANSLATORS "stage" is a keyword in Puppet and should not be translated
|
4365
|
-
#: ../lib/puppet/parser/compiler.rb:
|
4012
|
+
#: ../lib/puppet/parser/compiler.rb:82
|
4366
4013
|
msgid "Only classes can set 'stage'; normal resources like %{resource} cannot change run stage"
|
4367
4014
|
msgstr ""
|
4368
4015
|
|
4369
|
-
|
4370
|
-
#: ../lib/puppet/parser/compiler.rb:125
|
4371
|
-
msgid "Application instances like '%{resource}' can only be contained within a Site"
|
4372
|
-
msgstr ""
|
4373
|
-
|
4374
|
-
#: ../lib/puppet/parser/compiler.rb:155
|
4016
|
+
#: ../lib/puppet/parser/compiler.rb:123
|
4375
4017
|
msgid "For compiling %{node}"
|
4376
4018
|
msgstr ""
|
4377
4019
|
|
4378
|
-
#: ../lib/puppet/parser/compiler.rb:
|
4020
|
+
#: ../lib/puppet/parser/compiler.rb:127
|
4379
4021
|
msgid "Compile: Set node parameters"
|
4380
4022
|
msgstr ""
|
4381
4023
|
|
4382
|
-
#: ../lib/puppet/parser/compiler.rb:
|
4024
|
+
#: ../lib/puppet/parser/compiler.rb:129
|
4383
4025
|
msgid "Compile: Created settings scope"
|
4384
4026
|
msgstr ""
|
4385
4027
|
|
4386
|
-
#: ../lib/puppet/parser/compiler.rb:163
|
4387
|
-
msgid "Compile: Evaluated capability mappings"
|
4388
|
-
msgstr ""
|
4389
|
-
|
4390
4028
|
#. TRANSLATORS "main" is a function name and should not be translated
|
4391
|
-
#: ../lib/puppet/parser/compiler.rb:
|
4029
|
+
#: ../lib/puppet/parser/compiler.rb:132
|
4392
4030
|
msgid "Compile: Evaluated main"
|
4393
4031
|
msgstr ""
|
4394
4032
|
|
4395
|
-
#: ../lib/puppet/parser/compiler.rb:
|
4396
|
-
msgid "Compile: Evaluated site"
|
4397
|
-
msgstr ""
|
4398
|
-
|
4399
|
-
#: ../lib/puppet/parser/compiler.rb:170
|
4033
|
+
#: ../lib/puppet/parser/compiler.rb:134
|
4400
4034
|
msgid "Compile: Evaluated AST node"
|
4401
4035
|
msgstr ""
|
4402
4036
|
|
4403
|
-
#: ../lib/puppet/parser/compiler.rb:
|
4037
|
+
#: ../lib/puppet/parser/compiler.rb:136
|
4404
4038
|
msgid "Compile: Evaluated node classes"
|
4405
4039
|
msgstr ""
|
4406
4040
|
|
4407
|
-
#: ../lib/puppet/parser/compiler.rb:
|
4408
|
-
msgid "Compile: Evaluated application instances"
|
4409
|
-
msgstr ""
|
4410
|
-
|
4411
|
-
#: ../lib/puppet/parser/compiler.rb:177
|
4412
|
-
msgid "Compile: Evaluated site capability mappings"
|
4413
|
-
msgstr ""
|
4414
|
-
|
4415
|
-
#: ../lib/puppet/parser/compiler.rb:179
|
4041
|
+
#: ../lib/puppet/parser/compiler.rb:138
|
4416
4042
|
msgid "Compile: Evaluated generators"
|
4417
4043
|
msgstr ""
|
4418
4044
|
|
4419
|
-
#: ../lib/puppet/parser/compiler.rb:
|
4045
|
+
#: ../lib/puppet/parser/compiler.rb:140
|
4420
4046
|
msgid "Compile: Validate Catalog pre-finish"
|
4421
4047
|
msgstr ""
|
4422
4048
|
|
4423
|
-
#: ../lib/puppet/parser/compiler.rb:
|
4049
|
+
#: ../lib/puppet/parser/compiler.rb:144
|
4424
4050
|
msgid "Compile: Finished catalog"
|
4425
4051
|
msgstr ""
|
4426
4052
|
|
4427
|
-
#: ../lib/puppet/parser/compiler.rb:
|
4428
|
-
msgid "Compile: Prune"
|
4429
|
-
msgstr ""
|
4430
|
-
|
4431
|
-
#: ../lib/puppet/parser/compiler.rb:191
|
4053
|
+
#: ../lib/puppet/parser/compiler.rb:148
|
4432
4054
|
msgid "Compile: Validate Catalog final"
|
4433
4055
|
msgstr ""
|
4434
4056
|
|
4435
|
-
#: ../lib/puppet/parser/compiler.rb:
|
4436
|
-
msgid "Invalid node mapping in %{app}: Mapping must be a hash"
|
4437
|
-
msgstr ""
|
4438
|
-
|
4439
|
-
#: ../lib/puppet/parser/compiler.rb:324
|
4440
|
-
msgid "Invalid node mapping in %{app}: Key %{k} is not a Node"
|
4441
|
-
msgstr ""
|
4442
|
-
|
4443
|
-
#: ../lib/puppet/parser/compiler.rb:327
|
4444
|
-
msgid "Invalid node mapping in %{app}: Value %{res} is not a resource"
|
4445
|
-
msgstr ""
|
4446
|
-
|
4447
|
-
#: ../lib/puppet/parser/compiler.rb:328
|
4448
|
-
msgid "Application %{app} maps component %{res} to multiple nodes"
|
4449
|
-
msgstr ""
|
4450
|
-
|
4451
|
-
#: ../lib/puppet/parser/compiler.rb:367
|
4057
|
+
#: ../lib/puppet/parser/compiler.rb:218
|
4452
4058
|
msgid "Could not find node statement with name 'default' or '%{names}'"
|
4453
4059
|
msgstr ""
|
4454
4060
|
|
4455
|
-
#: ../lib/puppet/parser/compiler.rb:
|
4061
|
+
#: ../lib/puppet/parser/compiler.rb:236
|
4456
4062
|
msgid "No source for scope passed to evaluate_classes"
|
4457
4063
|
msgstr ""
|
4458
4064
|
|
4459
|
-
#: ../lib/puppet/parser/compiler.rb:
|
4065
|
+
#: ../lib/puppet/parser/compiler.rb:246
|
4460
4066
|
msgid "Could not find class %{name} for %{node}"
|
4461
4067
|
msgstr ""
|
4462
4068
|
|
4463
|
-
#: ../lib/puppet/parser/compiler.rb:
|
4464
|
-
msgid "Capability mapping error: %{kind} clause references nonexistent %{component_type} %{component_name}"
|
4465
|
-
msgstr ""
|
4466
|
-
|
4467
|
-
#: ../lib/puppet/parser/compiler.rb:526
|
4069
|
+
#: ../lib/puppet/parser/compiler.rb:328
|
4468
4070
|
msgid "Evaluated collections"
|
4469
4071
|
msgstr ""
|
4470
4072
|
|
4471
|
-
#: ../lib/puppet/parser/compiler.rb:
|
4073
|
+
#: ../lib/puppet/parser/compiler.rb:343
|
4472
4074
|
msgid "Evaluated definitions"
|
4473
4075
|
msgstr ""
|
4474
4076
|
|
4475
|
-
#: ../lib/puppet/parser/compiler.rb:
|
4077
|
+
#: ../lib/puppet/parser/compiler.rb:372
|
4476
4078
|
msgid "Iterated (%{count}) on generators"
|
4477
4079
|
msgstr ""
|
4478
4080
|
|
4479
|
-
#: ../lib/puppet/parser/compiler.rb:
|
4081
|
+
#: ../lib/puppet/parser/compiler.rb:383
|
4480
4082
|
msgid "Somehow looped more than 1000 times while evaluating host catalog"
|
4481
4083
|
msgstr ""
|
4482
4084
|
|
4483
|
-
#: ../lib/puppet/parser/compiler.rb:
|
4085
|
+
#: ../lib/puppet/parser/compiler.rb:415
|
4484
4086
|
msgid "Could not find resource(s) %{resources} for overriding"
|
4485
4087
|
msgstr ""
|
4486
4088
|
|
4487
|
-
#: ../lib/puppet/parser/compiler.rb:
|
4089
|
+
#: ../lib/puppet/parser/compiler.rb:426
|
4488
4090
|
msgid "Failed to realize virtual resources %{resources}"
|
4489
4091
|
msgstr ""
|
4490
4092
|
|
4491
4093
|
#. TRANSLATORS "main" is a function name and should not be translated
|
4492
|
-
#: ../lib/puppet/parser/compiler.rb:
|
4094
|
+
#: ../lib/puppet/parser/compiler.rb:459
|
4493
4095
|
msgid "Couldn't find main"
|
4494
4096
|
msgstr ""
|
4495
4097
|
|
4496
|
-
#: ../lib/puppet/parser/compiler.rb:
|
4098
|
+
#: ../lib/puppet/parser/compiler.rb:532
|
4497
4099
|
msgid "For initializing compiler"
|
4498
4100
|
msgstr ""
|
4499
4101
|
|
4500
|
-
#: ../lib/puppet/parser/compiler/catalog_validator/
|
4501
|
-
msgid "Capability '%{cap}' referenced by '%{param}' is never exported"
|
4502
|
-
msgstr ""
|
4503
|
-
|
4504
|
-
#: ../lib/puppet/parser/compiler/catalog_validator/env_relationship_validator.rb:58
|
4505
|
-
msgid "'%{value}' is exported by both '%{hash}' and '%{resource}'"
|
4506
|
-
msgstr ""
|
4507
|
-
|
4508
|
-
#: ../lib/puppet/parser/compiler/catalog_validator/relationship_validator.rb:27
|
4509
|
-
msgid "'%{param}' is not a valid relationship to a capability"
|
4510
|
-
msgstr ""
|
4511
|
-
|
4512
|
-
#: ../lib/puppet/parser/compiler/catalog_validator/relationship_validator.rb:43
|
4102
|
+
#: ../lib/puppet/parser/compiler/catalog_validator/relationship_validator.rb:31
|
4513
4103
|
msgid "Could not find resource '%{res}' in parameter '%{param}'"
|
4514
4104
|
msgstr ""
|
4515
4105
|
|
4516
|
-
#: ../lib/puppet/parser/compiler/catalog_validator/site_validator.rb:16
|
4517
|
-
msgid "Only application components can appear inside a site - %{res} is not allowed"
|
4518
|
-
msgstr ""
|
4519
|
-
|
4520
|
-
#: ../lib/puppet/parser/environment_compiler.rb:13
|
4521
|
-
msgid "%{detail} in environment %{env}"
|
4522
|
-
msgstr ""
|
4523
|
-
|
4524
|
-
#: ../lib/puppet/parser/environment_compiler.rb:62
|
4525
|
-
msgid "For compiling environment catalog %{env}"
|
4526
|
-
msgstr ""
|
4527
|
-
|
4528
|
-
#: ../lib/puppet/parser/environment_compiler.rb:65
|
4529
|
-
msgid "Env Compile: Created settings scope"
|
4530
|
-
msgstr ""
|
4531
|
-
|
4532
|
-
#: ../lib/puppet/parser/environment_compiler.rb:67
|
4533
|
-
msgid "Env Compile: Evaluated main"
|
4534
|
-
msgstr ""
|
4535
|
-
|
4536
|
-
#: ../lib/puppet/parser/environment_compiler.rb:69
|
4537
|
-
msgid "Env Compile: Evaluated site"
|
4538
|
-
msgstr ""
|
4539
|
-
|
4540
|
-
#: ../lib/puppet/parser/environment_compiler.rb:71
|
4541
|
-
msgid "Env Compile: Evaluated application instances"
|
4542
|
-
msgstr ""
|
4543
|
-
|
4544
|
-
#: ../lib/puppet/parser/environment_compiler.rb:73
|
4545
|
-
msgid "Env Compile: Prune"
|
4546
|
-
msgstr ""
|
4547
|
-
|
4548
|
-
#: ../lib/puppet/parser/environment_compiler.rb:75
|
4549
|
-
msgid "Env Compile: Validate Catalog pre-finish"
|
4550
|
-
msgstr ""
|
4551
|
-
|
4552
|
-
#: ../lib/puppet/parser/environment_compiler.rb:79
|
4553
|
-
msgid "Env Compile: Finished catalog"
|
4554
|
-
msgstr ""
|
4555
|
-
|
4556
|
-
#: ../lib/puppet/parser/environment_compiler.rb:83
|
4557
|
-
msgid "Env Compile: Validate Catalog final"
|
4558
|
-
msgstr ""
|
4559
|
-
|
4560
|
-
#: ../lib/puppet/parser/environment_compiler.rb:159
|
4561
|
-
msgid "Environment Compiler: Could not find a site definition to evaluate"
|
4562
|
-
msgstr ""
|
4563
|
-
|
4564
|
-
#: ../lib/puppet/parser/environment_compiler.rb:165
|
4565
|
-
msgid "Evaluated application %{resource}"
|
4566
|
-
msgstr ""
|
4567
|
-
|
4568
4106
|
#: ../lib/puppet/parser/functions.rb:43
|
4569
4107
|
msgid "The method 'Puppet::Parser::Functions.autoloader#loadall' is deprecated in favor of using 'Scope#call_function'."
|
4570
4108
|
msgstr ""
|
@@ -4699,55 +4237,35 @@ msgstr ""
|
|
4699
4237
|
msgid "Resources require a scope"
|
4700
4238
|
msgstr ""
|
4701
4239
|
|
4702
|
-
#: ../lib/puppet/parser/resource.rb:
|
4240
|
+
#: ../lib/puppet/parser/resource.rb:159
|
4703
4241
|
msgid "Only subclasses can override parameters"
|
4704
4242
|
msgstr ""
|
4705
4243
|
|
4706
|
-
#: ../lib/puppet/parser/resource.rb:
|
4244
|
+
#: ../lib/puppet/parser/resource.rb:165
|
4707
4245
|
msgid "Attempt to override an already evaluated resource with new values"
|
4708
4246
|
msgstr ""
|
4709
4247
|
|
4710
|
-
#: ../lib/puppet/parser/resource.rb:
|
4248
|
+
#: ../lib/puppet/parser/resource.rb:167
|
4711
4249
|
msgid "Attempt to override an already evaluated resource, defined at %{error_location}, with new values"
|
4712
4250
|
msgstr ""
|
4713
4251
|
|
4714
|
-
#: ../lib/puppet/parser/resource.rb:
|
4715
|
-
msgid "Invalid consume in %{value0}: %{ref} is not a resource"
|
4716
|
-
msgstr ""
|
4717
|
-
|
4718
|
-
#: ../lib/puppet/parser/resource.rb:280
|
4719
|
-
msgid "Resource %{ref} could not be found; it might not have been produced yet"
|
4720
|
-
msgstr ""
|
4721
|
-
|
4722
|
-
#: ../lib/puppet/parser/resource.rb:284
|
4723
|
-
msgid "Invalid consume in %{ref}: %{cap} is not a capability resource"
|
4724
|
-
msgstr ""
|
4725
|
-
|
4726
|
-
#: ../lib/puppet/parser/resource.rb:293
|
4727
|
-
msgid "Resource %{res} tries to consume %{cns} but no 'consumes' mapping exists for %{resource_type} and %{cns_type}"
|
4728
|
-
msgstr ""
|
4729
|
-
|
4730
|
-
#: ../lib/puppet/parser/resource.rb:313
|
4731
|
-
msgid "Attempt to reassign attribute '%{name}' in '%{resource}' caused by multiple consumed mappings to the same attribute"
|
4732
|
-
msgstr ""
|
4733
|
-
|
4734
|
-
#: ../lib/puppet/parser/resource.rb:365
|
4252
|
+
#: ../lib/puppet/parser/resource.rb:296
|
4735
4253
|
msgid "Parameter '%{name}' is already set on %{resource}; cannot redefine"
|
4736
4254
|
msgstr ""
|
4737
4255
|
|
4738
|
-
#: ../lib/puppet/parser/resource.rb:
|
4256
|
+
#: ../lib/puppet/parser/resource.rb:299
|
4739
4257
|
msgid "Parameter '%{name}' is already set on %{resource} at %{error_location}; cannot redefine"
|
4740
4258
|
msgstr ""
|
4741
4259
|
|
4742
|
-
#: ../lib/puppet/parser/resource.rb:
|
4260
|
+
#: ../lib/puppet/parser/resource.rb:304
|
4743
4261
|
msgid "Parameter '%{name}' is already set on %{resource} by %{source}; cannot redefine"
|
4744
4262
|
msgstr ""
|
4745
4263
|
|
4746
|
-
#: ../lib/puppet/parser/resource.rb:
|
4264
|
+
#: ../lib/puppet/parser/resource.rb:307
|
4747
4265
|
msgid "Parameter '%{name}' is already set on %{resource} by %{source} at %{error_location}; cannot redefine"
|
4748
4266
|
msgstr ""
|
4749
4267
|
|
4750
|
-
#: ../lib/puppet/parser/resource.rb:
|
4268
|
+
#: ../lib/puppet/parser/resource.rb:346
|
4751
4269
|
msgid "Duplicate parameter '%{param}' for on %{resource}"
|
4752
4270
|
msgstr ""
|
4753
4271
|
|
@@ -4989,19 +4507,19 @@ msgstr ""
|
|
4989
4507
|
msgid "break() from context where this is illegal"
|
4990
4508
|
msgstr ""
|
4991
4509
|
|
4992
|
-
#: ../lib/puppet/pops/evaluator/evaluator_impl.rb:
|
4510
|
+
#: ../lib/puppet/pops/evaluator/evaluator_impl.rb:1236
|
4993
4511
|
msgid "Can only append Array or Hash to a Hash"
|
4994
4512
|
msgstr ""
|
4995
4513
|
|
4996
|
-
#: ../lib/puppet/pops/evaluator/evaluator_impl.rb:
|
4514
|
+
#: ../lib/puppet/pops/evaluator/evaluator_impl.rb:1240
|
4997
4515
|
msgid "An URI can only be merged with an URI or String"
|
4998
4516
|
msgstr ""
|
4999
4517
|
|
5000
|
-
#: ../lib/puppet/pops/evaluator/evaluator_impl.rb:
|
4518
|
+
#: ../lib/puppet/pops/evaluator/evaluator_impl.rb:1243
|
5001
4519
|
msgid "Can only append Binary to a Binary"
|
5002
4520
|
msgstr ""
|
5003
4521
|
|
5004
|
-
#: ../lib/puppet/pops/evaluator/evaluator_impl.rb:
|
4522
|
+
#: ../lib/puppet/pops/evaluator/evaluator_impl.rb:1276
|
5005
4523
|
msgid "Can only delete from an Array or Hash."
|
5006
4524
|
msgstr ""
|
5007
4525
|
|
@@ -5773,10 +5291,6 @@ msgstr ""
|
|
5773
5291
|
msgid "Failed to load: %{type_name}"
|
5774
5292
|
msgstr ""
|
5775
5293
|
|
5776
|
-
#: ../lib/puppet/pops/issues.rb:925
|
5777
|
-
msgid "Use of the application-orchestration %{expr} is deprecated. See https://puppet.com/docs/puppet/5.5/deprecated_language.html"
|
5778
|
-
msgstr ""
|
5779
|
-
|
5780
5294
|
#: ../lib/puppet/pops/label_provider.rb:76
|
5781
5295
|
msgid "<%{string}> does not appear to contain a word"
|
5782
5296
|
msgstr ""
|
@@ -5899,21 +5413,21 @@ msgstr ""
|
|
5899
5413
|
msgid "The code loaded from %{source_ref} did not produce a Function class when evaluated. Got '%{klass}'"
|
5900
5414
|
msgstr ""
|
5901
5415
|
|
5902
|
-
#: ../lib/puppet/pops/loader/ruby_legacy_function_instantiator.rb:
|
5416
|
+
#: ../lib/puppet/pops/loader/ruby_legacy_function_instantiator.rb:23
|
5903
5417
|
msgid "The code loaded from %{source_ref} does not seem to be a Puppet 3x API function - no 'newfunction' call."
|
5904
5418
|
msgstr ""
|
5905
5419
|
|
5906
5420
|
#. TRANSLATORS - the word 'newfunction' should not be translated as it is a method name.
|
5907
|
-
#: ../lib/puppet/pops/loader/ruby_legacy_function_instantiator.rb:
|
5421
|
+
#: ../lib/puppet/pops/loader/ruby_legacy_function_instantiator.rb:45
|
5908
5422
|
msgid "Illegal legacy function definition! The code loaded from %{source_ref} did not return the result of calling 'newfunction'. Got '%{klass}'"
|
5909
5423
|
msgstr ""
|
5910
5424
|
|
5911
|
-
#: ../lib/puppet/pops/loader/ruby_legacy_function_instantiator.rb:
|
5425
|
+
#: ../lib/puppet/pops/loader/ruby_legacy_function_instantiator.rb:48
|
5912
5426
|
msgid "The code loaded from %{source_ref} produced mis-matched name, expected 'function_%{type_name}', got '%{created_name}'"
|
5913
5427
|
msgstr ""
|
5914
5428
|
|
5915
|
-
#: ../lib/puppet/pops/loader/ruby_legacy_function_instantiator.rb:
|
5916
|
-
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"
|
5917
5431
|
msgstr ""
|
5918
5432
|
|
5919
5433
|
#: ../lib/puppet/pops/loader/task_instantiator.rb:22
|
@@ -6115,19 +5629,19 @@ msgid "Unacceptable transform - found an Object without a rule: %{klass}"
|
|
6115
5629
|
msgstr ""
|
6116
5630
|
|
6117
5631
|
#. TRANSLATORS 'NUMBER' refers to a method name and the 'name_or_numeric' was the passed in value and should not be translated
|
6118
|
-
#: ../lib/puppet/pops/model/factory.rb:
|
5632
|
+
#: ../lib/puppet/pops/model/factory.rb:812
|
6119
5633
|
msgid "Internal Error, NUMBER token does not contain a valid number, %{name_or_numeric}"
|
6120
5634
|
msgstr ""
|
6121
5635
|
|
6122
|
-
#: ../lib/puppet/pops/model/factory.rb:
|
5636
|
+
#: ../lib/puppet/pops/model/factory.rb:1121
|
6123
5637
|
msgid "can only concatenate strings, got %{class_name}"
|
6124
5638
|
msgstr ""
|
6125
5639
|
|
6126
|
-
#: ../lib/puppet/pops/parser/parser_support.rb:
|
5640
|
+
#: ../lib/puppet/pops/parser/parser_support.rb:199
|
6127
5641
|
msgid "attempt to pass argument list to the function '%{name}' which cannot be called without parentheses"
|
6128
5642
|
msgstr ""
|
6129
5643
|
|
6130
|
-
#: ../lib/puppet/pops/parser/parser_support.rb:
|
5644
|
+
#: ../lib/puppet/pops/parser/parser_support.rb:201
|
6131
5645
|
msgid "illegal comma separated argument list"
|
6132
5646
|
msgstr ""
|
6133
5647
|
|
@@ -6167,7 +5681,7 @@ msgstr ""
|
|
6167
5681
|
msgid "digit expected"
|
6168
5682
|
msgstr ""
|
6169
5683
|
|
6170
|
-
#: ../lib/puppet/pops/resource/resource_type_impl.rb:
|
5684
|
+
#: ../lib/puppet/pops/resource/resource_type_impl.rb:165 ../lib/puppet/type.rb:421
|
6171
5685
|
msgid "you must specify title patterns when there are two or more key attributes"
|
6172
5686
|
msgstr ""
|
6173
5687
|
|
@@ -6292,10 +5806,6 @@ msgstr ""
|
|
6292
5806
|
msgid "%{klass} cannot be subtracted from a Timestamp"
|
6293
5807
|
msgstr ""
|
6294
5808
|
|
6295
|
-
#: ../lib/puppet/pops/types/enumeration.rb:7 ../lib/puppet/pops/types/enumeration.rb:12
|
6296
|
-
msgid "Enumeration.enumerator is deprecated. Use Iterable.on instead"
|
6297
|
-
msgstr ""
|
6298
|
-
|
6299
5809
|
#: ../lib/puppet/pops/types/p_binary_type.rb:77
|
6300
5810
|
msgid "The given string in encoding '%{enc}' is invalid. Cannot create a Binary UTF-8 representation"
|
6301
5811
|
msgstr ""
|
@@ -6409,10 +5919,6 @@ msgstr ""
|
|
6409
5919
|
msgid "Options 'include_containers' and 'include_values' cannot both be false"
|
6410
5920
|
msgstr ""
|
6411
5921
|
|
6412
|
-
#: ../lib/puppet/pops/types/type_calculator.rb:187
|
6413
|
-
msgid "TypeCalculator.enumerable is deprecated. Use iterable"
|
6414
|
-
msgstr ""
|
6415
|
-
|
6416
5922
|
#. TRANSLATORS 'TypeFactory#string' is a class and method name and should not be translated
|
6417
5923
|
#: ../lib/puppet/pops/types/type_factory.rb:117
|
6418
5924
|
msgid "Passing more than one argument to TypeFactory#string is deprecated"
|
@@ -6427,85 +5933,85 @@ msgstr ""
|
|
6427
5933
|
msgid "Everything is now reported using present tense"
|
6428
5934
|
msgstr ""
|
6429
5935
|
|
6430
|
-
#: ../lib/puppet/pops/types/type_parser.rb:
|
5936
|
+
#: ../lib/puppet/pops/types/type_parser.rb:425
|
6431
5937
|
msgid "Enum parameters must be identifiers or strings"
|
6432
5938
|
msgstr ""
|
6433
5939
|
|
6434
|
-
#: ../lib/puppet/pops/types/type_parser.rb:
|
5940
|
+
#: ../lib/puppet/pops/types/type_parser.rb:661
|
6435
5941
|
msgid "The expression <%{expression}> is not a valid type specification."
|
6436
5942
|
msgstr ""
|
6437
5943
|
|
6438
|
-
#: ../lib/puppet/pops/types/type_parser.rb:
|
5944
|
+
#: ../lib/puppet/pops/types/type_parser.rb:666
|
6439
5945
|
msgid "Invalid number of type parameters specified: %{type} requires %{required}, %{given} provided"
|
6440
5946
|
msgstr ""
|
6441
5947
|
|
6442
|
-
#: ../lib/puppet/pops/types/type_parser.rb:
|
5948
|
+
#: ../lib/puppet/pops/types/type_parser.rb:671
|
6443
5949
|
msgid "Not a parameterized type <%{type}>"
|
6444
5950
|
msgstr ""
|
6445
5951
|
|
6446
|
-
#: ../lib/puppet/pops/types/type_parser.rb:
|
5952
|
+
#: ../lib/puppet/pops/types/type_parser.rb:675
|
6447
5953
|
msgid "Unknown type <%{type}>"
|
6448
5954
|
msgstr ""
|
6449
5955
|
|
6450
|
-
#: ../lib/puppet/pops/types/types.rb:
|
5956
|
+
#: ../lib/puppet/pops/types/types.rb:929
|
6451
5957
|
msgid "The string '%{str}' cannot be converted to Numeric"
|
6452
5958
|
msgstr ""
|
6453
5959
|
|
6454
|
-
#: ../lib/puppet/pops/types/types.rb:
|
5960
|
+
#: ../lib/puppet/pops/types/types.rb:932
|
6455
5961
|
msgid "Value of type %{type} cannot be converted to Numeric"
|
6456
5962
|
msgstr ""
|
6457
5963
|
|
6458
|
-
#: ../lib/puppet/pops/types/types.rb:
|
5964
|
+
#: ../lib/puppet/pops/types/types.rb:1170
|
6459
5965
|
msgid "The string '%{str}' cannot be converted to Integer"
|
6460
5966
|
msgstr ""
|
6461
5967
|
|
6462
|
-
#: ../lib/puppet/pops/types/types.rb:
|
5968
|
+
#: ../lib/puppet/pops/types/types.rb:1173
|
6463
5969
|
msgid "Value of type %{type} cannot be converted to Integer"
|
6464
5970
|
msgstr ""
|
6465
5971
|
|
6466
|
-
#: ../lib/puppet/pops/types/types.rb:
|
5972
|
+
#: ../lib/puppet/pops/types/types.rb:1181
|
6467
5973
|
msgid "Illegal radix: %{radix}, expected 2, 8, 10, 16, or default"
|
6468
5974
|
msgstr ""
|
6469
5975
|
|
6470
|
-
#: ../lib/puppet/pops/types/types.rb:
|
5976
|
+
#: ../lib/puppet/pops/types/types.rb:1294
|
6471
5977
|
msgid "The string '%{str}' cannot be converted to Float"
|
6472
5978
|
msgstr ""
|
6473
5979
|
|
6474
|
-
#: ../lib/puppet/pops/types/types.rb:
|
5980
|
+
#: ../lib/puppet/pops/types/types.rb:1297
|
6475
5981
|
msgid "Value of type %{type} cannot be converted to Float"
|
6476
5982
|
msgstr ""
|
6477
5983
|
|
6478
5984
|
#. TRANSLATORS 'PStringType#initialize' is a class and method name and should not be translated
|
6479
|
-
#: ../lib/puppet/pops/types/types.rb:
|
5985
|
+
#: ../lib/puppet/pops/types/types.rb:1514
|
6480
5986
|
msgid "Passing more than one argument to PStringType#initialize is deprecated"
|
6481
5987
|
msgstr ""
|
6482
5988
|
|
6483
5989
|
#. TRANSLATORS 'PStringType#values' and '#value' are classes and method names and should not be translated
|
6484
|
-
#: ../lib/puppet/pops/types/types.rb:
|
5990
|
+
#: ../lib/puppet/pops/types/types.rb:1568
|
6485
5991
|
msgid "Method PStringType#values is deprecated. Use #value instead"
|
6486
5992
|
msgstr ""
|
6487
5993
|
|
6488
|
-
#: ../lib/puppet/pops/types/types.rb:
|
5994
|
+
#: ../lib/puppet/pops/types/types.rb:1894
|
6489
5995
|
msgid "The string '%{str}' cannot be converted to Boolean"
|
6490
5996
|
msgstr ""
|
6491
5997
|
|
6492
|
-
#: ../lib/puppet/pops/types/types.rb:
|
5998
|
+
#: ../lib/puppet/pops/types/types.rb:1897
|
6493
5999
|
msgid "Value of type %{type} cannot be converted to Boolean"
|
6494
6000
|
msgstr ""
|
6495
6001
|
|
6496
|
-
#: ../lib/puppet/pops/types/types.rb:
|
6002
|
+
#: ../lib/puppet/pops/types/types.rb:2625
|
6497
6003
|
msgid "Value of type %{type} cannot be converted to Array"
|
6498
6004
|
msgstr ""
|
6499
6005
|
|
6500
|
-
#: ../lib/puppet/pops/types/types.rb:
|
6006
|
+
#: ../lib/puppet/pops/types/types.rb:2695
|
6501
6007
|
msgid "Puppet::Pops::Types::PHashType#element_type is deprecated, use #value_type instead"
|
6502
6008
|
msgstr ""
|
6503
6009
|
|
6504
|
-
#: ../lib/puppet/pops/types/types.rb:
|
6010
|
+
#: ../lib/puppet/pops/types/types.rb:2832
|
6505
6011
|
msgid "odd number of arguments for Hash"
|
6506
6012
|
msgstr ""
|
6507
6013
|
|
6508
|
-
#: ../lib/puppet/pops/types/types.rb:
|
6014
|
+
#: ../lib/puppet/pops/types/types.rb:2843
|
6509
6015
|
msgid "Value of type %{type} cannot be converted to Hash"
|
6510
6016
|
msgstr ""
|
6511
6017
|
|
@@ -6584,19 +6090,19 @@ msgstr ""
|
|
6584
6090
|
msgid "Key/value pairs must be separated by '%{separator}'"
|
6585
6091
|
msgstr ""
|
6586
6092
|
|
6587
|
-
#: ../lib/puppet/provider.rb:
|
6093
|
+
#: ../lib/puppet/provider.rb:132
|
6588
6094
|
msgid "No command %{command} defined for provider %{provider}"
|
6589
6095
|
msgstr ""
|
6590
6096
|
|
6591
|
-
#: ../lib/puppet/provider.rb:
|
6097
|
+
#: ../lib/puppet/provider.rb:384
|
6592
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"
|
6593
6099
|
msgstr ""
|
6594
6100
|
|
6595
|
-
#: ../lib/puppet/provider.rb:
|
6101
|
+
#: ../lib/puppet/provider.rb:457
|
6596
6102
|
msgid "'%{parameter_name}' is not a valid parameter for %{resource_type}"
|
6597
6103
|
msgstr ""
|
6598
6104
|
|
6599
|
-
#: ../lib/puppet/provider.rb:
|
6105
|
+
#: ../lib/puppet/provider.rb:543
|
6600
6106
|
msgid "No resource and no name in property hash in %{class_name} instance"
|
6601
6107
|
msgstr ""
|
6602
6108
|
|
@@ -6624,11 +6130,11 @@ msgstr ""
|
|
6624
6130
|
msgid "aix.object_info(): Could not find %{resource}[%{name}]"
|
6625
6131
|
msgstr ""
|
6626
6132
|
|
6627
|
-
#: ../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
|
6628
6134
|
msgid "Could not create %{resource} %{name}: %{detail}"
|
6629
6135
|
msgstr ""
|
6630
6136
|
|
6631
|
-
#: ../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
|
6632
6138
|
msgid "Could not delete %{resource} %{name}: %{detail}"
|
6633
6139
|
msgstr ""
|
6634
6140
|
|
@@ -6717,32 +6223,28 @@ msgstr ""
|
|
6717
6223
|
msgid "%{name} is not a valid attribute for %{resource_type}"
|
6718
6224
|
msgstr ""
|
6719
6225
|
|
6720
|
-
#: ../lib/puppet/provider/nameservice.rb:
|
6721
|
-
msgid "listbyname is deprecated and will be removed in a future release of Puppet. Please use `self.instances` to obtain a list of users."
|
6722
|
-
msgstr ""
|
6723
|
-
|
6724
|
-
#: ../lib/puppet/provider/nameservice.rb:103
|
6226
|
+
#: ../lib/puppet/provider/nameservice.rb:85
|
6725
6227
|
msgid "Invalid value %{value}: %{error}"
|
6726
6228
|
msgstr ""
|
6727
6229
|
|
6728
6230
|
#. TRANSLATORS "autogen_id()" is a method name and should not be translated
|
6729
|
-
#: ../lib/puppet/provider/nameservice.rb:
|
6231
|
+
#: ../lib/puppet/provider/nameservice.rb:130
|
6730
6232
|
msgid "autogen_id() does not support auto generation of id for resource type %{resource_type}"
|
6731
6233
|
msgstr ""
|
6732
6234
|
|
6733
|
-
#: ../lib/puppet/provider/nameservice.rb:
|
6235
|
+
#: ../lib/puppet/provider/nameservice.rb:152 ../lib/puppet/provider/nameservice/directoryservice.rb:379
|
6734
6236
|
msgid "already exists"
|
6735
6237
|
msgstr ""
|
6736
6238
|
|
6737
|
-
#: ../lib/puppet/provider/nameservice.rb:
|
6239
|
+
#: ../lib/puppet/provider/nameservice.rb:170
|
6738
6240
|
msgid "already absent"
|
6739
6241
|
msgstr ""
|
6740
6242
|
|
6741
|
-
#: ../lib/puppet/provider/nameservice.rb:
|
6243
|
+
#: ../lib/puppet/provider/nameservice.rb:264
|
6742
6244
|
msgid "Nameservice command must be an array"
|
6743
6245
|
msgstr ""
|
6744
6246
|
|
6745
|
-
#: ../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
|
6746
6248
|
msgid "Could not set %{param} on %{resource}[%{name}]: %{detail}"
|
6747
6249
|
msgstr ""
|
6748
6250
|
|
@@ -6824,19 +6326,19 @@ msgstr ""
|
|
6824
6326
|
msgid "Mac OS X packages must specify a package source"
|
6825
6327
|
msgstr ""
|
6826
6328
|
|
6827
|
-
#: ../lib/puppet/provider/package/apt.rb:
|
6329
|
+
#: ../lib/puppet/provider/package/apt.rb:81
|
6828
6330
|
msgid "/etc/apt/sources.list contains a cdrom source; not installing. Use 'allowcdrom' to override this failure."
|
6829
6331
|
msgstr ""
|
6830
6332
|
|
6831
|
-
#: ../lib/puppet/provider/package/apt.rb:
|
6333
|
+
#: ../lib/puppet/provider/package/apt.rb:163 ../lib/puppet/provider/package/fink.rb:55
|
6832
6334
|
msgid "Could not find latest version"
|
6833
6335
|
msgstr ""
|
6834
6336
|
|
6835
|
-
#: ../lib/puppet/provider/package/apt.rb:
|
6337
|
+
#: ../lib/puppet/provider/package/apt.rb:174 ../lib/puppet/provider/package/fink.rb:66
|
6836
6338
|
msgid "Preseeding %{response} to debconf-set-selections"
|
6837
6339
|
msgstr ""
|
6838
6340
|
|
6839
|
-
#: ../lib/puppet/provider/package/apt.rb:
|
6341
|
+
#: ../lib/puppet/provider/package/apt.rb:178 ../lib/puppet/provider/package/fink.rb:70
|
6840
6342
|
msgid "No responsefile specified or non existent, not preseeding anything"
|
6841
6343
|
msgstr ""
|
6842
6344
|
|
@@ -6888,27 +6390,27 @@ msgstr ""
|
|
6888
6390
|
msgid "source is defined but does not have trailing slash, ignoring %{source}"
|
6889
6391
|
msgstr ""
|
6890
6392
|
|
6891
|
-
#: ../lib/puppet/provider/package/gem.rb:
|
6393
|
+
#: ../lib/puppet/provider/package/gem.rb:122 ../lib/puppet/provider/package/puppetserver_gem.rb:61
|
6892
6394
|
msgid "Could not list gems: %{detail}"
|
6893
6395
|
msgstr ""
|
6894
6396
|
|
6895
|
-
#: ../lib/puppet/provider/package/gem.rb:
|
6397
|
+
#: ../lib/puppet/provider/package/gem.rb:148
|
6896
6398
|
msgid "Could not match %{desc}"
|
6897
6399
|
msgstr ""
|
6898
6400
|
|
6899
|
-
#: ../lib/puppet/provider/package/gem.rb:
|
6401
|
+
#: ../lib/puppet/provider/package/gem.rb:226 ../lib/puppet/provider/package/puppetserver_gem.rb:93
|
6900
6402
|
msgid "Invalid source '%{uri}': %{detail}"
|
6901
6403
|
msgstr ""
|
6902
6404
|
|
6903
|
-
#: ../lib/puppet/provider/package/gem.rb:
|
6405
|
+
#: ../lib/puppet/provider/package/gem.rb:237 ../lib/puppet/provider/package/puppetserver_gem.rb:104
|
6904
6406
|
msgid "puppet:// URLs are not supported as gem sources"
|
6905
6407
|
msgstr ""
|
6906
6408
|
|
6907
|
-
#: ../lib/puppet/provider/package/gem.rb:
|
6409
|
+
#: ../lib/puppet/provider/package/gem.rb:253 ../lib/puppet/provider/package/puppetserver_gem.rb:115
|
6908
6410
|
msgid "Could not install: %{output}"
|
6909
6411
|
msgstr ""
|
6910
6412
|
|
6911
|
-
#: ../lib/puppet/provider/package/gem.rb:
|
6413
|
+
#: ../lib/puppet/provider/package/gem.rb:279 ../lib/puppet/provider/package/puppetserver_gem.rb:125
|
6912
6414
|
msgid "Could not uninstall: %{output}"
|
6913
6415
|
msgstr ""
|
6914
6416
|
|
@@ -7018,7 +6520,7 @@ msgstr ""
|
|
7018
6520
|
msgid "Refusing to install package group %{resource_name}, because allow_virtual is false."
|
7019
6521
|
msgstr ""
|
7020
6522
|
|
7021
|
-
#: ../lib/puppet/provider/package/pip.rb:
|
6523
|
+
#: ../lib/puppet/provider/package/pip.rb:57
|
7022
6524
|
msgid "Cannot resolve pip version"
|
7023
6525
|
msgstr ""
|
7024
6526
|
|
@@ -7034,27 +6536,27 @@ msgstr ""
|
|
7034
6536
|
msgid "Unknown line format %{resource_name}: %{parse_line}"
|
7035
6537
|
msgstr ""
|
7036
6538
|
|
7037
|
-
#: ../lib/puppet/provider/package/pkg.rb:
|
6539
|
+
#: ../lib/puppet/provider/package/pkg.rb:123
|
7038
6540
|
msgid "Unable to unfreeze %{package}"
|
7039
6541
|
msgstr ""
|
7040
6542
|
|
7041
|
-
#: ../lib/puppet/provider/package/pkg.rb:
|
6543
|
+
#: ../lib/puppet/provider/package/pkg.rb:158
|
7042
6544
|
msgid "Implicit version %{should} has %{n} possible matches"
|
7043
6545
|
msgstr ""
|
7044
6546
|
|
7045
|
-
#: ../lib/puppet/provider/package/pkg.rb:
|
6547
|
+
#: ../lib/puppet/provider/package/pkg.rb:170
|
7046
6548
|
msgid "Selecting version '%{version}' for implicit '%{should}'"
|
7047
6549
|
msgstr ""
|
7048
6550
|
|
7049
|
-
#: ../lib/puppet/provider/package/pkg.rb:
|
6551
|
+
#: ../lib/puppet/provider/package/pkg.rb:175
|
7050
6552
|
msgid "No version of %{name} matching %{should} is installable, even though the package is currently installed"
|
7051
6553
|
msgstr ""
|
7052
6554
|
|
7053
|
-
#: ../lib/puppet/provider/package/pkg.rb:
|
6555
|
+
#: ../lib/puppet/provider/package/pkg.rb:194
|
7054
6556
|
msgid "pkg warning: %{warnings}"
|
7055
6557
|
msgstr ""
|
7056
6558
|
|
7057
|
-
#: ../lib/puppet/provider/package/pkg.rb:
|
6559
|
+
#: ../lib/puppet/provider/package/pkg.rb:238 ../lib/puppet/provider/package/pkg.rb:264
|
7058
6560
|
msgid "Unable to update %{package}"
|
7059
6561
|
msgstr ""
|
7060
6562
|
|
@@ -7241,15 +6743,15 @@ msgstr ""
|
|
7241
6743
|
msgid "Waiting 5 seconds for runsvdir to discover service %{service}"
|
7242
6744
|
msgstr ""
|
7243
6745
|
|
7244
|
-
#: ../lib/puppet/provider/service/smf.rb:
|
6746
|
+
#: ../lib/puppet/provider/service/smf.rb:120
|
7245
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}"
|
7246
6748
|
msgstr ""
|
7247
6749
|
|
7248
|
-
#: ../lib/puppet/provider/service/smf.rb:
|
6750
|
+
#: ../lib/puppet/provider/service/smf.rb:135
|
7249
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."
|
7250
6752
|
msgstr ""
|
7251
6753
|
|
7252
|
-
#: ../lib/puppet/provider/service/smf.rb:
|
6754
|
+
#: ../lib/puppet/provider/service/smf.rb:221
|
7253
6755
|
msgid "The %{service} service is incomplete so its status will be reported as :stopped. See `svcs -xv %{fmri}` for more details."
|
7254
6756
|
msgstr ""
|
7255
6757
|
|
@@ -7374,142 +6876,90 @@ msgstr ""
|
|
7374
6876
|
msgid "Invalid node name %{host}"
|
7375
6877
|
msgstr ""
|
7376
6878
|
|
7377
|
-
#: ../lib/puppet/resource.rb:
|
6879
|
+
#: ../lib/puppet/resource.rb:47
|
7378
6880
|
msgid "No resource type provided in serialized data"
|
7379
6881
|
msgstr ""
|
7380
6882
|
|
7381
|
-
#: ../lib/puppet/resource.rb:
|
6883
|
+
#: ../lib/puppet/resource.rb:49
|
7382
6884
|
msgid "No resource title provided in serialized data"
|
7383
6885
|
msgstr ""
|
7384
6886
|
|
7385
6887
|
#. TRANSLATORS 'Puppet::Resource.new' should not be translated
|
7386
|
-
#: ../lib/puppet/resource.rb:
|
6888
|
+
#: ../lib/puppet/resource.rb:276
|
7387
6889
|
msgid "Puppet::Resource.new does not take a hash as the first argument."
|
7388
6890
|
msgstr ""
|
7389
6891
|
|
7390
|
-
#: ../lib/puppet/resource.rb:
|
6892
|
+
#: ../lib/puppet/resource.rb:277
|
7391
6893
|
msgid "Did you mean (%{type}, %{title}) ?"
|
7392
6894
|
msgstr ""
|
7393
6895
|
|
7394
|
-
#: ../lib/puppet/resource.rb:
|
6896
|
+
#: ../lib/puppet/resource.rb:314
|
7395
6897
|
msgid "Could not find declared class %{title}"
|
7396
6898
|
msgstr ""
|
7397
6899
|
|
7398
|
-
#: ../lib/puppet/resource.rb:
|
6900
|
+
#: ../lib/puppet/resource.rb:316
|
7399
6901
|
msgid "Invalid resource type %{type}"
|
7400
6902
|
msgstr ""
|
7401
6903
|
|
7402
|
-
#: ../lib/puppet/resource.rb:
|
7403
|
-
msgid "The method Puppet::Resource.set_default_parameters is deprecated and will be removed in the next major release of Puppet."
|
7404
|
-
msgstr ""
|
7405
|
-
|
7406
|
-
#: ../lib/puppet/resource.rb:526
|
7407
|
-
msgid "Cannot evaluate default parameters for %{resource} - not a parser resource"
|
7408
|
-
msgstr ""
|
7409
|
-
|
7410
|
-
#: ../lib/puppet/resource.rb:566
|
7411
|
-
msgid "The method Puppet::Resource.validate_complete is deprecated and will be removed in the next major release of Puppet."
|
7412
|
-
msgstr ""
|
7413
|
-
|
7414
|
-
#: ../lib/puppet/resource.rb:572
|
7415
|
-
msgid "Must pass %{param} to %{resource}"
|
7416
|
-
msgstr ""
|
7417
|
-
|
7418
|
-
#: ../lib/puppet/resource.rb:584
|
7419
|
-
msgid "Expected parameter '%{name}' of '%{value0}' to have type %{value1}, got %{value2}"
|
7420
|
-
msgstr ""
|
7421
|
-
|
7422
|
-
#: ../lib/puppet/resource.rb:590
|
6904
|
+
#: ../lib/puppet/resource.rb:502
|
7423
6905
|
msgid "no parameter named '%{name}'"
|
7424
6906
|
msgstr ""
|
7425
6907
|
|
7426
|
-
#: ../lib/puppet/resource.rb:
|
6908
|
+
#: ../lib/puppet/resource.rb:547
|
7427
6909
|
msgid "No title provided and %{type} is not a valid resource reference"
|
7428
6910
|
msgstr ""
|
7429
6911
|
|
7430
|
-
#: ../lib/puppet/resource.rb:
|
6912
|
+
#: ../lib/puppet/resource.rb:621
|
7431
6913
|
msgid "No set of title patterns matched the title \"%{title}\"."
|
7432
6914
|
msgstr ""
|
7433
6915
|
|
7434
|
-
#: ../lib/puppet/resource/
|
7435
|
-
msgid "PuppetDB is not available"
|
7436
|
-
msgstr ""
|
7437
|
-
|
7438
|
-
#: ../lib/puppet/resource/capability_finder.rb:47
|
7439
|
-
msgid "Unexpected response from PuppetDB when looking up %{capability}:"
|
7440
|
-
msgstr ""
|
7441
|
-
|
7442
|
-
#: ../lib/puppet/resource/capability_finder.rb:48
|
7443
|
-
msgid "expected exactly one resource but got %{count};"
|
7444
|
-
msgstr ""
|
7445
|
-
|
7446
|
-
#: ../lib/puppet/resource/capability_finder.rb:49
|
7447
|
-
msgid ""
|
7448
|
-
"returned data is:\n"
|
7449
|
-
"%{resources}"
|
7450
|
-
msgstr ""
|
7451
|
-
|
7452
|
-
#: ../lib/puppet/resource/capability_finder.rb:81
|
7453
|
-
msgid "Looking up capability %{capability} in PuppetDB: %{query_terms}"
|
7454
|
-
msgstr ""
|
7455
|
-
|
7456
|
-
#: ../lib/puppet/resource/capability_finder.rb:105
|
7457
|
-
msgid "Unexpected response from PuppetDB when looking up %{capability}: expected an Array but got %{result}"
|
7458
|
-
msgstr ""
|
7459
|
-
|
7460
|
-
#: ../lib/puppet/resource/capability_finder.rb:112
|
7461
|
-
msgid ""
|
7462
|
-
"Invalid JSON from PuppetDB when looking up %{capability}\n"
|
7463
|
-
"%{detail}"
|
7464
|
-
msgstr ""
|
7465
|
-
|
7466
|
-
#: ../lib/puppet/resource/catalog.rb:104
|
6916
|
+
#: ../lib/puppet/resource/catalog.rb:102
|
7467
6917
|
msgid "Cannot add resource %{resource_1} before %{resource_2} because %{resource_2} is not yet in the catalog"
|
7468
6918
|
msgstr ""
|
7469
6919
|
|
7470
|
-
#: ../lib/puppet/resource/catalog.rb:
|
6920
|
+
#: ../lib/puppet/resource/catalog.rb:117
|
7471
6921
|
msgid "Cannot add resource %{resource_1} after %{resource_2} because %{resource_2} is not yet in the catalog"
|
7472
6922
|
msgstr ""
|
7473
6923
|
|
7474
6924
|
#. TRANSLATORS 'alias' should not be translated
|
7475
|
-
#: ../lib/puppet/resource/catalog.rb:
|
6925
|
+
#: ../lib/puppet/resource/catalog.rb:204
|
7476
6926
|
msgid "Cannot alias %{resource} to %{key}; resource %{newref} already declared"
|
7477
6927
|
msgstr ""
|
7478
6928
|
|
7479
6929
|
#. TRANSLATORS 'alias' should not be translated
|
7480
|
-
#: ../lib/puppet/resource/catalog.rb:
|
6930
|
+
#: ../lib/puppet/resource/catalog.rb:208
|
7481
6931
|
msgid "Cannot alias %{resource} to %{key} at %{resource_declaration}; resource %{newref} already declared"
|
7482
6932
|
msgstr ""
|
7483
6933
|
|
7484
|
-
#: ../lib/puppet/resource/catalog.rb:
|
6934
|
+
#: ../lib/puppet/resource/catalog.rb:290
|
7485
6935
|
msgid "Unknown resource type %{type}"
|
7486
6936
|
msgstr ""
|
7487
6937
|
|
7488
|
-
#: ../lib/puppet/resource/catalog.rb:
|
6938
|
+
#: ../lib/puppet/resource/catalog.rb:433
|
7489
6939
|
msgid "Could not intern from data: Could not find relationship source %{source} for %{target}"
|
7490
6940
|
msgstr ""
|
7491
6941
|
|
7492
|
-
#: ../lib/puppet/resource/catalog.rb:
|
6942
|
+
#: ../lib/puppet/resource/catalog.rb:440
|
7493
6943
|
msgid "Could not intern from data: Could not find relationship target %{target} for %{source}"
|
7494
6944
|
msgstr ""
|
7495
6945
|
|
7496
|
-
#: ../lib/puppet/resource/catalog.rb:
|
6946
|
+
#: ../lib/puppet/resource/catalog.rb:530
|
7497
6947
|
msgid "Could not create class file %{file}: %{detail}"
|
7498
6948
|
msgstr ""
|
7499
6949
|
|
7500
|
-
#: ../lib/puppet/resource/catalog.rb:
|
6950
|
+
#: ../lib/puppet/resource/catalog.rb:546
|
7501
6951
|
msgid "Could not create resource file %{file}: %{detail}"
|
7502
6952
|
msgstr ""
|
7503
6953
|
|
7504
|
-
#: ../lib/puppet/resource/catalog.rb:
|
6954
|
+
#: ../lib/puppet/resource/catalog.rb:581
|
7505
6955
|
msgid "Duplicate declaration: %{resource} is already declared; cannot redeclare"
|
7506
6956
|
msgstr ""
|
7507
6957
|
|
7508
|
-
#: ../lib/puppet/resource/catalog.rb:
|
6958
|
+
#: ../lib/puppet/resource/catalog.rb:583
|
7509
6959
|
msgid "Duplicate declaration: %{resource} is already declared at %{error_location}; cannot redeclare"
|
7510
6960
|
msgstr ""
|
7511
6961
|
|
7512
|
-
#: ../lib/puppet/resource/catalog.rb:
|
6962
|
+
#: ../lib/puppet/resource/catalog.rb:632 ../lib/puppet/resource/catalog.rb:637
|
7513
6963
|
msgid "Could not find resource %{resource} when converting %{message} resources"
|
7514
6964
|
msgstr ""
|
7515
6965
|
|
@@ -7517,201 +6967,145 @@ msgstr ""
|
|
7517
6967
|
msgid "Could not evaluate: %{detail}"
|
7518
6968
|
msgstr ""
|
7519
6969
|
|
7520
|
-
#: ../lib/puppet/resource/type.rb:82
|
7521
|
-
msgid "Invalid export in %{reference}: %{ex} is not a resource"
|
7522
|
-
msgstr ""
|
7523
|
-
|
7524
|
-
#: ../lib/puppet/resource/type.rb:83
|
7525
|
-
msgid "Invalid export in %{reference}: %{ex} is not a capability resource"
|
7526
|
-
msgstr ""
|
7527
|
-
|
7528
6970
|
#: ../lib/puppet/resource/type.rb:87
|
7529
|
-
msgid "Resource type %{res_type} does not produce %{ex_type}"
|
7530
|
-
msgstr ""
|
7531
|
-
|
7532
|
-
#: ../lib/puppet/resource/type.rb:148
|
7533
6971
|
msgid "Invalid resource supertype '%{type}'"
|
7534
6972
|
msgstr ""
|
7535
6973
|
|
7536
|
-
#: ../lib/puppet/resource/type.rb:
|
6974
|
+
#: ../lib/puppet/resource/type.rb:117
|
7537
6975
|
msgid "%{name} is not a class; cannot add code to it"
|
7538
6976
|
msgstr ""
|
7539
6977
|
|
7540
|
-
#: ../lib/puppet/resource/type.rb:
|
6978
|
+
#: ../lib/puppet/resource/type.rb:118
|
7541
6979
|
msgid "%{name} is not a class; cannot add code from it"
|
7542
6980
|
msgstr ""
|
7543
6981
|
|
7544
|
-
#: ../lib/puppet/resource/type.rb:
|
6982
|
+
#: ../lib/puppet/resource/type.rb:122
|
7545
6983
|
msgid "Cannot have code outside of a class/node/define because 'freeze_main' is enabled"
|
7546
6984
|
msgstr ""
|
7547
6985
|
|
7548
|
-
#: ../lib/puppet/resource/type.rb:
|
6986
|
+
#: ../lib/puppet/resource/type.rb:126
|
7549
6987
|
msgid "Cannot merge classes with different parent classes (%{name} => %{parent} vs. %{other_name} => %{other_parent})"
|
7550
6988
|
msgstr ""
|
7551
6989
|
|
7552
|
-
#: ../lib/puppet/resource/type.rb:
|
6990
|
+
#: ../lib/puppet/resource/type.rb:157
|
7553
6991
|
msgid "Cannot create resources for defined resource types"
|
7554
6992
|
msgstr ""
|
7555
6993
|
|
7556
|
-
#: ../lib/puppet/resource/type.rb:
|
7557
|
-
msgid "The method Puppet::Resource::Type.assign_parameter_values is deprecated and will be removed in the next major release of Puppet."
|
7558
|
-
msgstr ""
|
7559
|
-
|
7560
|
-
#: ../lib/puppet/resource/type.rb:311
|
6994
|
+
#: ../lib/puppet/resource/type.rb:210
|
7561
6995
|
msgid "Could not find parent resource type '%{parent}' of type %{parent_type} in %{env}"
|
7562
6996
|
msgstr ""
|
7563
6997
|
|
7564
|
-
#: ../lib/puppet/resource/type.rb:
|
6998
|
+
#: ../lib/puppet/resource/type.rb:336
|
7565
6999
|
msgid "Parameter '%{name}' is given a type, but is not a valid parameter."
|
7566
7000
|
msgstr ""
|
7567
7001
|
|
7568
|
-
#: ../lib/puppet/resource/type.rb:
|
7002
|
+
#: ../lib/puppet/resource/type.rb:339
|
7569
7003
|
msgid "Parameter '%{name}' is given a type that is not a Puppet Type, got %{class_name}"
|
7570
7004
|
msgstr ""
|
7571
7005
|
|
7572
|
-
#: ../lib/puppet/resource/type.rb:
|
7006
|
+
#: ../lib/puppet/resource/type.rb:373
|
7573
7007
|
msgid "Could not find scope for %{class_name}"
|
7574
7008
|
msgstr ""
|
7575
7009
|
|
7576
|
-
#: ../lib/puppet/resource/type.rb:
|
7010
|
+
#: ../lib/puppet/resource/type.rb:394
|
7577
7011
|
msgid "%{param} is a metaparam; this value will inherit to all contained resources in the %{name} definition"
|
7578
7012
|
msgstr ""
|
7579
7013
|
|
7580
|
-
#: ../lib/puppet/resource/type.rb:
|
7014
|
+
#: ../lib/puppet/resource/type.rb:396
|
7581
7015
|
msgid "%{param} is a metaparameter; please choose another parameter name in the %{name} definition"
|
7582
7016
|
msgstr ""
|
7583
7017
|
|
7584
|
-
#: ../lib/puppet/resource/type_collection.rb:
|
7018
|
+
#: ../lib/puppet/resource/type_collection.rb:63
|
7585
7019
|
msgid "Class '%{klass}' is already defined%{error}; cannot redefine"
|
7586
7020
|
msgstr ""
|
7587
7021
|
|
7588
|
-
#: ../lib/puppet/resource/type_collection.rb:
|
7022
|
+
#: ../lib/puppet/resource/type_collection.rb:64
|
7589
7023
|
msgid "Definition '%{klass}' is already defined%{error}; cannot be redefined as a class"
|
7590
7024
|
msgstr ""
|
7591
7025
|
|
7592
|
-
#: ../lib/puppet/resource/type_collection.rb:
|
7593
|
-
msgid "Application '%{klass}' is already defined%{error}; cannot be redefined as a class"
|
7594
|
-
msgstr ""
|
7595
|
-
|
7596
|
-
#: ../lib/puppet/resource/type_collection.rb:105
|
7026
|
+
#: ../lib/puppet/resource/type_collection.rb:95
|
7597
7027
|
msgid "Node '%{name}' is already defined%{error}; cannot redefine"
|
7598
7028
|
msgstr ""
|
7599
7029
|
|
7600
|
-
#: ../lib/puppet/resource/type_collection.rb:
|
7601
|
-
msgid "Site is already defined%{error}; cannot redefine"
|
7602
|
-
msgstr ""
|
7603
|
-
|
7604
|
-
#: ../lib/puppet/resource/type_collection.rb:150
|
7030
|
+
#: ../lib/puppet/resource/type_collection.rb:130
|
7605
7031
|
msgid "'%{name}' is already defined%{error} as a class; cannot redefine as a definition"
|
7606
7032
|
msgstr ""
|
7607
7033
|
|
7608
|
-
#: ../lib/puppet/resource/type_collection.rb:
|
7034
|
+
#: ../lib/puppet/resource/type_collection.rb:131
|
7609
7035
|
msgid "Definition '%{name}' is already defined%{error}; cannot be redefined"
|
7610
7036
|
msgstr ""
|
7611
7037
|
|
7612
|
-
#: ../lib/puppet/resource/type_collection.rb:
|
7613
|
-
msgid "'%{name}' is already defined%{error} as an application; cannot be redefined"
|
7614
|
-
msgstr ""
|
7615
|
-
|
7616
|
-
#: ../lib/puppet/resource/type_collection.rb:157
|
7617
|
-
msgid "'%{name}' is already defined%{error} as a class; cannot redefine as a mapping"
|
7618
|
-
msgstr ""
|
7619
|
-
|
7620
|
-
#: ../lib/puppet/resource/type_collection.rb:166
|
7621
|
-
msgid "'%{name}' is already defined%{error} as a class; cannot redefine as an application"
|
7622
|
-
msgstr ""
|
7623
|
-
|
7624
|
-
#: ../lib/puppet/resource/type_collection.rb:167
|
7625
|
-
msgid "'%{name}' is already defined%{error} as a definition; cannot redefine as an application"
|
7626
|
-
msgstr ""
|
7627
|
-
|
7628
|
-
#: ../lib/puppet/resource/type_collection.rb:220
|
7038
|
+
#: ../lib/puppet/resource/type_collection.rb:175
|
7629
7039
|
msgid "Execution of config_version command `%{cmd}` failed: %{message}"
|
7630
7040
|
msgstr ""
|
7631
7041
|
|
7632
|
-
#: ../lib/puppet/resource/type_collection.rb:
|
7042
|
+
#: ../lib/puppet/resource/type_collection.rb:196
|
7633
7043
|
msgid "Not attempting to load %{type} %{fqname} as this object was missing during a prior compilation"
|
7634
7044
|
msgstr ""
|
7635
7045
|
|
7636
|
-
#: ../lib/puppet/
|
7637
|
-
msgid "Connection to cached server and port %{server}:%{port} failed: %{message}"
|
7638
|
-
msgstr ""
|
7639
|
-
|
7640
|
-
#: ../lib/puppet/rest/routes.rb:46
|
7641
|
-
msgid "Downloaded certificate for %{name} from %{server}"
|
7642
|
-
msgstr ""
|
7643
|
-
|
7644
|
-
#: ../lib/puppet/rest/routes.rb:76
|
7645
|
-
msgid "Downloaded certificate revocation list for %{name} from %{server}"
|
7646
|
-
msgstr ""
|
7647
|
-
|
7648
|
-
#: ../lib/puppet/rest/routes.rb:129
|
7649
|
-
msgid "Downloaded existing certificate request for %{name} from %{server}"
|
7650
|
-
msgstr ""
|
7651
|
-
|
7652
|
-
#: ../lib/puppet/settings.rb:99
|
7046
|
+
#: ../lib/puppet/settings.rb:101
|
7653
7047
|
msgid "New environment loaders generated from the requested section."
|
7654
7048
|
msgstr ""
|
7655
7049
|
|
7656
|
-
#: ../lib/puppet/settings.rb:
|
7050
|
+
#: ../lib/puppet/settings.rb:303
|
7657
7051
|
msgid "Attempting to initialize global default settings more than once!"
|
7658
7052
|
msgstr ""
|
7659
7053
|
|
7660
|
-
#: ../lib/puppet/settings.rb:
|
7054
|
+
#: ../lib/puppet/settings.rb:516
|
7661
7055
|
msgid "Using --configprint is deprecated. Use 'puppet config <subcommand>' instead."
|
7662
7056
|
msgstr ""
|
7663
7057
|
|
7664
|
-
#: ../lib/puppet/settings.rb:
|
7058
|
+
#: ../lib/puppet/settings.rb:658
|
7665
7059
|
msgid "Could not load %{file}: %{detail}"
|
7666
7060
|
msgstr ""
|
7667
7061
|
|
7668
|
-
#: ../lib/puppet/settings.rb:
|
7062
|
+
#: ../lib/puppet/settings.rb:766
|
7669
7063
|
msgid "Invalid setting type '%{type}'"
|
7670
7064
|
msgstr ""
|
7671
7065
|
|
7672
|
-
#: ../lib/puppet/settings.rb:
|
7066
|
+
#: ../lib/puppet/settings.rb:921
|
7673
7067
|
msgid "Unknown searchpath case: %{source_type} for the %{source} settings path element."
|
7674
7068
|
msgstr ""
|
7675
7069
|
|
7676
|
-
#: ../lib/puppet/settings.rb:
|
7070
|
+
#: ../lib/puppet/settings.rb:994
|
7677
7071
|
msgid "setting definition for '%{name}' is not a hash!"
|
7678
7072
|
msgstr ""
|
7679
7073
|
|
7680
|
-
#: ../lib/puppet/settings.rb:
|
7074
|
+
#: ../lib/puppet/settings.rb:999
|
7681
7075
|
msgid "Setting %{name} is already defined"
|
7682
7076
|
msgstr ""
|
7683
7077
|
|
7684
|
-
#: ../lib/puppet/settings.rb:
|
7078
|
+
#: ../lib/puppet/settings.rb:1005
|
7685
7079
|
msgid "Setting %{name} is already using short name '%{short}'"
|
7686
7080
|
msgstr ""
|
7687
7081
|
|
7688
|
-
#: ../lib/puppet/settings.rb:
|
7082
|
+
#: ../lib/puppet/settings.rb:1276
|
7689
7083
|
msgid "Setting %{name} is deprecated."
|
7690
7084
|
msgstr ""
|
7691
7085
|
|
7692
7086
|
#. TRANSLATORS 'puppet.conf' is a file name and should not be translated
|
7693
|
-
#: ../lib/puppet/settings.rb:
|
7087
|
+
#: ../lib/puppet/settings.rb:1281
|
7694
7088
|
msgid "Setting %{name} is deprecated in puppet.conf."
|
7695
7089
|
msgstr ""
|
7696
7090
|
|
7697
|
-
#: ../lib/puppet/settings.rb:
|
7091
|
+
#: ../lib/puppet/settings.rb:1452
|
7698
7092
|
msgid "Error converting value for param '%{name}': %{detail}"
|
7699
7093
|
msgstr ""
|
7700
7094
|
|
7701
|
-
#: ../lib/puppet/settings.rb:
|
7095
|
+
#: ../lib/puppet/settings.rb:1476
|
7702
7096
|
msgid "Could not find value for %{expression}"
|
7703
7097
|
msgstr ""
|
7704
7098
|
|
7705
7099
|
#. TRANSLATORS '$environment' is a Puppet specific variable and should not be translated
|
7706
|
-
#: ../lib/puppet/settings.rb:
|
7100
|
+
#: ../lib/puppet/settings.rb:1486
|
7707
7101
|
msgid "You cannot interpolate $environment within '%{setting_name}' when using directory environments."
|
7708
7102
|
msgstr ""
|
7709
7103
|
|
7710
|
-
#: ../lib/puppet/settings.rb:
|
7104
|
+
#: ../lib/puppet/settings.rb:1487
|
7711
7105
|
msgid "Its value will remain %{value}."
|
7712
7106
|
msgstr ""
|
7713
7107
|
|
7714
|
-
#: ../lib/puppet/settings.rb:
|
7108
|
+
#: ../lib/puppet/settings.rb:1518
|
7715
7109
|
msgid "Attempt to assign a value to unknown setting %{name}"
|
7716
7110
|
msgstr ""
|
7717
7111
|
|
@@ -7833,7 +7227,15 @@ msgstr ""
|
|
7833
7227
|
msgid "Expected an Array, String, or Hash, got a %{klass}"
|
7834
7228
|
msgstr ""
|
7835
7229
|
|
7836
|
-
#: ../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
|
7837
7239
|
msgid "Invalid priority format '%{value}' for parameter: %{name}"
|
7838
7240
|
msgstr ""
|
7839
7241
|
|
@@ -7853,83 +7255,83 @@ msgstr ""
|
|
7853
7255
|
msgid "Invalid 'time to live' format '%{value}' for parameter: %{param_name}"
|
7854
7256
|
msgstr ""
|
7855
7257
|
|
7856
|
-
#: ../lib/puppet/ssl/base.rb:
|
7258
|
+
#: ../lib/puppet/ssl/base.rb:26
|
7857
7259
|
msgid "%{name} has not declared what class it wraps"
|
7858
7260
|
msgstr ""
|
7859
7261
|
|
7860
|
-
#: ../lib/puppet/ssl/base.rb:
|
7262
|
+
#: ../lib/puppet/ssl/base.rb:31 ../lib/puppet/x509/cert_provider.rb:370
|
7861
7263
|
msgid "Certname %{name} must not contain unprintable or non-ASCII characters"
|
7862
7264
|
msgstr ""
|
7863
7265
|
|
7864
|
-
#: ../lib/puppet/ssl/base.rb:
|
7266
|
+
#: ../lib/puppet/ssl/base.rb:37
|
7865
7267
|
msgid "%{class_name} did not override 'generate'"
|
7866
7268
|
msgstr ""
|
7867
7269
|
|
7868
|
-
#: ../lib/puppet/ssl/base.rb:
|
7270
|
+
#: ../lib/puppet/ssl/base.rb:64
|
7869
7271
|
msgid "Object must be an instance of %{class_name}, %{actual_class} given"
|
7870
7272
|
msgstr ""
|
7871
7273
|
|
7872
|
-
#: ../lib/puppet/ssl/base.rb:
|
7274
|
+
#: ../lib/puppet/ssl/base.rb:68
|
7873
7275
|
msgid "Name must be supplied if it cannot be determined from the instance"
|
7874
7276
|
msgstr ""
|
7875
7277
|
|
7876
|
-
#: ../lib/puppet/ssl/base.rb:
|
7278
|
+
#: ../lib/puppet/ssl/base.rb:140
|
7877
7279
|
msgid "Unknown signature algorithm '%{ln}'"
|
7878
7280
|
msgstr ""
|
7879
7281
|
|
7880
|
-
#: ../lib/puppet/ssl/certificate_request.rb:
|
7282
|
+
#: ../lib/puppet/ssl/certificate_request.rb:57
|
7881
7283
|
msgid "Creating a new SSL certificate request for %{name}"
|
7882
7284
|
msgstr ""
|
7883
7285
|
|
7884
|
-
#: ../lib/puppet/ssl/certificate_request.rb:
|
7286
|
+
#: ../lib/puppet/ssl/certificate_request.rb:90
|
7885
7287
|
msgid "CSR sign verification failed; you need to clean the certificate request for %{name} on the server"
|
7886
7288
|
msgstr ""
|
7887
7289
|
|
7888
|
-
#: ../lib/puppet/ssl/certificate_request.rb:
|
7290
|
+
#: ../lib/puppet/ssl/certificate_request.rb:96
|
7889
7291
|
msgid "Certificate Request fingerprint (%{digest}): %{hex_digest}"
|
7890
7292
|
msgstr ""
|
7891
7293
|
|
7892
|
-
#: ../lib/puppet/ssl/certificate_request.rb:
|
7294
|
+
#: ../lib/puppet/ssl/certificate_request.rb:140
|
7893
7295
|
msgid "CSR needs content to extract fields"
|
7894
7296
|
msgstr ""
|
7895
7297
|
|
7896
|
-
#: ../lib/puppet/ssl/certificate_request.rb:
|
7298
|
+
#: ../lib/puppet/ssl/certificate_request.rb:167
|
7897
7299
|
msgid "In %{attr}, expected extension record %{index} to have two or three items, but found %{count}"
|
7898
7300
|
msgstr ""
|
7899
7301
|
|
7900
|
-
#: ../lib/puppet/ssl/certificate_request.rb:
|
7302
|
+
#: ../lib/puppet/ssl/certificate_request.rb:218
|
7901
7303
|
msgid "Cannot specify CSR attribute %{oid}: conflicts with internally used CSR attribute"
|
7902
7304
|
msgstr ""
|
7903
7305
|
|
7904
|
-
#: ../lib/puppet/ssl/certificate_request.rb:
|
7306
|
+
#: ../lib/puppet/ssl/certificate_request.rb:227
|
7905
7307
|
msgid "Cannot create CSR with attribute %{oid}: %{message}"
|
7906
7308
|
msgstr ""
|
7907
7309
|
|
7908
|
-
#: ../lib/puppet/ssl/certificate_request.rb:
|
7310
|
+
#: ../lib/puppet/ssl/certificate_request.rb:244
|
7909
7311
|
msgid "Cannot specify CSR extension request %{oid}: conflicts with internally used extension request"
|
7910
7312
|
msgstr ""
|
7911
7313
|
|
7912
|
-
#: ../lib/puppet/ssl/certificate_request.rb:
|
7314
|
+
#: ../lib/puppet/ssl/certificate_request.rb:250
|
7913
7315
|
msgid "Cannot create CSR with extension request %{oid}: %{message}"
|
7914
7316
|
msgstr ""
|
7915
7317
|
|
7916
|
-
#: ../lib/puppet/ssl/certificate_request.rb:
|
7318
|
+
#: ../lib/puppet/ssl/certificate_request.rb:301
|
7917
7319
|
msgid "In %{attr}, expected Set but found %{klass}"
|
7918
7320
|
msgstr ""
|
7919
7321
|
|
7920
|
-
#: ../lib/puppet/ssl/certificate_request.rb:
|
7322
|
+
#: ../lib/puppet/ssl/certificate_request.rb:305
|
7921
7323
|
msgid "In %{attr}, expected Set[Array] but found %{klass}"
|
7922
7324
|
msgstr ""
|
7923
7325
|
|
7924
|
-
#: ../lib/puppet/ssl/certificate_request.rb:
|
7326
|
+
#: ../lib/puppet/ssl/certificate_request.rb:309
|
7925
7327
|
msgid "In %{attr}, expected Set[Array] with one value but found %{count} elements"
|
7926
7328
|
msgstr ""
|
7927
7329
|
|
7928
|
-
#: ../lib/puppet/ssl/certificate_request.rb:
|
7330
|
+
#: ../lib/puppet/ssl/certificate_request.rb:313
|
7929
7331
|
msgid "In %{attr}, expected Set[Array[Sequence[...]]], but found %{klass}"
|
7930
7332
|
msgstr ""
|
7931
7333
|
|
7932
|
-
#: ../lib/puppet/ssl/certificate_request.rb:
|
7334
|
+
#: ../lib/puppet/ssl/certificate_request.rb:317
|
7933
7335
|
msgid "In %{attr}, expected Set[Array[Sequence[Array[...]]]], but found %{klass}"
|
7934
7336
|
msgstr ""
|
7935
7337
|
|
@@ -7957,195 +7359,107 @@ msgstr ""
|
|
7957
7359
|
msgid "Server hostname '%{host}' did not match server certificate; %{expected_certnames}"
|
7958
7360
|
msgstr ""
|
7959
7361
|
|
7960
|
-
#: ../lib/puppet/ssl/
|
7961
|
-
msgid "No certificate to validate."
|
7962
|
-
msgstr ""
|
7963
|
-
|
7964
|
-
#: ../lib/puppet/ssl/host.rb:155
|
7965
|
-
msgid "No private key with which to validate certificate with fingerprint: %{fingerprint}"
|
7966
|
-
msgstr ""
|
7967
|
-
|
7968
|
-
#: ../lib/puppet/ssl/host.rb:157
|
7969
|
-
msgid ""
|
7970
|
-
"The certificate retrieved from the master does not match the agent's private key. Did you forget to run as root?\n"
|
7971
|
-
"Certificate fingerprint: %{fingerprint}\n"
|
7972
|
-
"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"
|
7973
|
-
"On the master:\n"
|
7974
|
-
" puppetserver ca clean --certname %{cert_name}\n"
|
7975
|
-
"On the agent:\n"
|
7976
|
-
" 1. puppet ssl clean %{clean_params}\n"
|
7977
|
-
" 2. puppet %{puppet_params}\n"
|
7978
|
-
msgstr ""
|
7979
|
-
|
7980
|
-
#: ../lib/puppet/ssl/host.rb:212
|
7981
|
-
msgid ""
|
7982
|
-
"The CSR retrieved from the master does not match the agent's public key.\n"
|
7983
|
-
"CSR fingerprint: %{fingerprint}\n"
|
7984
|
-
"CSR public key: %{csr_public_key}\n"
|
7985
|
-
"Agent public key: %{agent_public_key}\n"
|
7986
|
-
"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"
|
7987
|
-
"On the master:\n"
|
7988
|
-
" puppetserver ca clean --certname %{cert_name}\n"
|
7989
|
-
"On the agent:\n"
|
7990
|
-
" 1. puppet ssl clean %{clean_params}\n"
|
7991
|
-
" 2. puppet %{puppet_params}\n"
|
7992
|
-
msgstr ""
|
7993
|
-
|
7994
|
-
#: ../lib/puppet/ssl/host.rb:235
|
7995
|
-
msgid "Puppet::SSL::Host is deprecated and will be removed in a future release of Puppet."
|
7996
|
-
msgstr ""
|
7997
|
-
|
7998
|
-
#: ../lib/puppet/ssl/host.rb:267 ../lib/puppet/ssl/host.rb:288
|
7999
|
-
msgid "Could not request certificate: %{message}"
|
8000
|
-
msgstr ""
|
8001
|
-
|
8002
|
-
#: ../lib/puppet/ssl/host.rb:269
|
8003
|
-
msgid "Exiting; failed to retrieve certificate and waitforcert is disabled"
|
8004
|
-
msgstr ""
|
8005
|
-
|
8006
|
-
#: ../lib/puppet/ssl/host.rb:278
|
8007
|
-
msgid "Exiting; no certificate found and waitforcert is disabled"
|
8008
|
-
msgstr ""
|
8009
|
-
|
8010
|
-
#: ../lib/puppet/ssl/host.rb:286
|
8011
|
-
msgid "Did not receive certificate"
|
8012
|
-
msgstr ""
|
8013
|
-
|
8014
|
-
#: ../lib/puppet/ssl/host.rb:326
|
8015
|
-
msgid "Response from the CA did not contain a valid certificate request: %{message}"
|
8016
|
-
msgstr ""
|
8017
|
-
|
8018
|
-
#: ../lib/puppet/ssl/host.rb:332
|
8019
|
-
msgid "Could not download certificate request: %{message}"
|
8020
|
-
msgstr ""
|
8021
|
-
|
8022
|
-
#: ../lib/puppet/ssl/host.rb:359
|
8023
|
-
msgid ""
|
8024
|
-
"Failed attempting to load CRL from %{crl_path}! The CRL below caused the error '%{error}':\n"
|
8025
|
-
"%{crl}"
|
8026
|
-
msgstr ""
|
8027
|
-
|
8028
|
-
#: ../lib/puppet/ssl/host.rb:391 ../lib/puppet/ssl/state_machine.rb:120
|
8029
|
-
msgid "Could not download CRLs: %{message}"
|
8030
|
-
msgstr ""
|
8031
|
-
|
8032
|
-
#: ../lib/puppet/ssl/host.rb:425
|
8033
|
-
msgid "The certificate at %{file_path} is invalid. Could not load."
|
8034
|
-
msgstr ""
|
8035
|
-
|
8036
|
-
#: ../lib/puppet/ssl/host.rb:446
|
8037
|
-
msgid "Response from the CA did not contain a valid certificate for %{cert_name}."
|
8038
|
-
msgstr ""
|
8039
|
-
|
8040
|
-
#: ../lib/puppet/ssl/host.rb:450
|
8041
|
-
msgid "No certificate for %{cert_name} on CA"
|
8042
|
-
msgstr ""
|
8043
|
-
|
8044
|
-
#: ../lib/puppet/ssl/host.rb:453
|
8045
|
-
msgid "Could not download host certificate: %{message}"
|
8046
|
-
msgstr ""
|
8047
|
-
|
8048
|
-
#: ../lib/puppet/ssl/oids.rb:110
|
7362
|
+
#: ../lib/puppet/ssl/oids.rb:112
|
8049
7363
|
msgid "Error loading ssl custom OIDs mapping file from '%{custom_oid_file}': %{err}"
|
8050
7364
|
msgstr ""
|
8051
7365
|
|
8052
|
-
#: ../lib/puppet/ssl/oids.rb:
|
7366
|
+
#: ../lib/puppet/ssl/oids.rb:116
|
8053
7367
|
msgid "Error loading ssl custom OIDs mapping file from '%{custom_oid_file}': no such index '%{map_key}'"
|
8054
7368
|
msgstr ""
|
8055
7369
|
|
8056
|
-
#: ../lib/puppet/ssl/oids.rb:
|
7370
|
+
#: ../lib/puppet/ssl/oids.rb:120
|
8057
7371
|
msgid "Error loading ssl custom OIDs mapping file from '%{custom_oid_file}': data under index '%{map_key}' must be a Hash"
|
8058
7372
|
msgstr ""
|
8059
7373
|
|
8060
|
-
#: ../lib/puppet/ssl/oids.rb:
|
7374
|
+
#: ../lib/puppet/ssl/oids.rb:127
|
8061
7375
|
msgid "Error loading ssl custom OIDs mapping file from '%{custom_oid_file}': incomplete definition of oid '%{oid}'"
|
8062
7376
|
msgstr ""
|
8063
7377
|
|
8064
|
-
#: ../lib/puppet/ssl/oids.rb:
|
7378
|
+
#: ../lib/puppet/ssl/oids.rb:159
|
8065
7379
|
msgid "Error registering ssl custom OIDs mapping from file '%{custom_oid_file}': %{err}"
|
8066
7380
|
msgstr ""
|
8067
7381
|
|
8068
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
7382
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:83
|
8069
7383
|
msgid "Failed to add '%{path}' as a trusted CA file: %{detail}"
|
8070
7384
|
msgstr ""
|
8071
7385
|
|
8072
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
7386
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:87
|
8073
7387
|
msgid "The 'ssl_trust_store' setting does not refer to a file and will be ignored: '%{path}'"
|
8074
7388
|
msgstr ""
|
8075
7389
|
|
8076
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
7390
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:121
|
8077
7391
|
msgid "CA certs are missing"
|
8078
7392
|
msgstr ""
|
8079
7393
|
|
8080
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
7394
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:122
|
8081
7395
|
msgid "CRLs are missing"
|
8082
7396
|
msgstr ""
|
8083
7397
|
|
8084
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
7398
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:123
|
8085
7399
|
msgid "Private key is missing"
|
8086
7400
|
msgstr ""
|
8087
7401
|
|
8088
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
7402
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:124
|
8089
7403
|
msgid "Client cert is missing"
|
8090
7404
|
msgstr ""
|
8091
7405
|
|
8092
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
7406
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:130
|
8093
7407
|
msgid "Unsupported key '%{type}'"
|
8094
7408
|
msgstr ""
|
8095
7409
|
|
8096
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
7410
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:134
|
8097
7411
|
msgid "The certificate for '%{name}' does not match its private key"
|
8098
7412
|
msgstr ""
|
8099
7413
|
|
8100
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
7414
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:173
|
8101
7415
|
msgid "Failed to load private key for host '%{name}': %{message}"
|
8102
7416
|
msgstr ""
|
8103
7417
|
|
8104
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
7418
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:187
|
8105
7419
|
msgid "The CSR for host '%{name}' does not match the public key"
|
8106
7420
|
msgstr ""
|
8107
7421
|
|
8108
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
7422
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:251
|
8109
7423
|
msgid "The issuer '%{issuer}' of certificate '%{subject}' cannot be found locally"
|
8110
7424
|
msgstr ""
|
8111
7425
|
|
8112
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
7426
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:267
|
8113
7427
|
msgid "The certificate '%{subject}' is not yet valid, verify time is synchronized"
|
8114
7428
|
msgstr ""
|
8115
7429
|
|
8116
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
7430
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:269
|
8117
7431
|
msgid "The certificate '%{subject}' has expired, verify time is synchronized"
|
8118
7432
|
msgstr ""
|
8119
7433
|
|
8120
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
7434
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:271
|
8121
7435
|
msgid "The CRL issued by '%{issuer}' is not yet valid, verify time is synchronized"
|
8122
7436
|
msgstr ""
|
8123
7437
|
|
8124
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
7438
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:273
|
8125
7439
|
msgid "The CRL issued by '%{issuer}' has expired, verify time is synchronized"
|
8126
7440
|
msgstr ""
|
8127
7441
|
|
8128
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
7442
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:275
|
8129
7443
|
msgid "Invalid signature for certificate '%{subject}'"
|
8130
7444
|
msgstr ""
|
8131
7445
|
|
8132
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
7446
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:277
|
8133
7447
|
msgid "Invalid signature for CRL issued by '%{issuer}'"
|
8134
7448
|
msgstr ""
|
8135
7449
|
|
8136
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
7450
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:279
|
8137
7451
|
msgid "The issuer '%{issuer}' of certificate '%{subject}' is missing"
|
8138
7452
|
msgstr ""
|
8139
7453
|
|
8140
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
7454
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:282
|
8141
7455
|
msgid "The CRL issued by '%{issuer}' is missing"
|
8142
7456
|
msgstr ""
|
8143
7457
|
|
8144
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
7458
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:284
|
8145
7459
|
msgid "Certificate '%{subject}' is revoked"
|
8146
7460
|
msgstr ""
|
8147
7461
|
|
8148
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
7462
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:288
|
8149
7463
|
msgid "Certificate '%{subject}' failed verification (%{err}): %{err_utf8}"
|
8150
7464
|
msgstr ""
|
8151
7465
|
|
@@ -8169,6 +7483,10 @@ msgstr ""
|
|
8169
7483
|
msgid "CRL is missing from the server"
|
8170
7484
|
msgstr ""
|
8171
7485
|
|
7486
|
+
#: ../lib/puppet/ssl/state_machine.rb:120
|
7487
|
+
msgid "Could not download CRLs: %{message}"
|
7488
|
+
msgstr ""
|
7489
|
+
|
8172
7490
|
#: ../lib/puppet/ssl/state_machine.rb:127
|
8173
7491
|
msgid "Refreshing CRL"
|
8174
7492
|
msgstr ""
|
@@ -8241,16 +7559,16 @@ msgstr ""
|
|
8241
7559
|
msgid "Another puppet instance is already running; waiting for it to finish"
|
8242
7560
|
msgstr ""
|
8243
7561
|
|
8244
|
-
#: ../lib/puppet/ssl/state_machine.rb:
|
7562
|
+
#: ../lib/puppet/ssl/state_machine.rb:429
|
8245
7563
|
msgid "Verified client certificate '%{subject}' fingerprint %{digest}"
|
8246
7564
|
msgstr ""
|
8247
7565
|
|
8248
|
-
#: ../lib/puppet/ssl/state_machine.rb:
|
7566
|
+
#: ../lib/puppet/ssl/state_machine.rb:431
|
8249
7567
|
msgid "Verified CA certificate '%{subject}' fingerprint %{digest}"
|
8250
7568
|
msgstr ""
|
8251
7569
|
|
8252
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
|
8253
|
-
#: ../lib/puppet/ssl/verifier.rb:
|
7571
|
+
#: ../lib/puppet/ssl/verifier.rb:130
|
8254
7572
|
msgid "certificate verify failed [%{error} for %{subject}]"
|
8255
7573
|
msgstr ""
|
8256
7574
|
|
@@ -8375,19 +7693,19 @@ msgid "Prefetch failed for %{type_name} provider '%{name}'"
|
|
8375
7693
|
msgstr ""
|
8376
7694
|
|
8377
7695
|
#. TRANSLATORS `prefetch` is a function name and should not be translated
|
8378
|
-
#: ../lib/puppet/transaction.rb:381
|
7696
|
+
#: ../lib/puppet/transaction.rb:381
|
8379
7697
|
msgid "Could not prefetch %{type_name} provider '%{name}': %{detail}"
|
8380
7698
|
msgstr ""
|
8381
7699
|
|
8382
|
-
#: ../lib/puppet/transaction.rb:
|
7700
|
+
#: ../lib/puppet/transaction.rb:415
|
8383
7701
|
msgid "Skipping resources in class because of failed class dependencies"
|
8384
7702
|
msgstr ""
|
8385
7703
|
|
8386
|
-
#: ../lib/puppet/transaction.rb:
|
7704
|
+
#: ../lib/puppet/transaction.rb:419
|
8387
7705
|
msgid "Skipping because of failed dependencies"
|
8388
7706
|
msgstr ""
|
8389
7707
|
|
8390
|
-
#: ../lib/puppet/transaction.rb:
|
7708
|
+
#: ../lib/puppet/transaction.rb:424
|
8391
7709
|
msgid "Skipping because provider prefetch failed"
|
8392
7710
|
msgstr ""
|
8393
7711
|
|
@@ -8508,77 +7826,77 @@ msgstr ""
|
|
8508
7826
|
msgid "There is more than one '%{basename}' script in %{dir}"
|
8509
7827
|
msgstr ""
|
8510
7828
|
|
8511
|
-
#: ../lib/puppet/type.rb:
|
7829
|
+
#: ../lib/puppet/type.rb:496
|
8512
7830
|
msgid "Options must be a hash, not %{type}"
|
8513
7831
|
msgstr ""
|
8514
7832
|
|
8515
|
-
#: ../lib/puppet/type.rb:
|
7833
|
+
#: ../lib/puppet/type.rb:499
|
8516
7834
|
msgid "Class %{class_name} already has a property named %{property}"
|
8517
7835
|
msgstr ""
|
8518
7836
|
|
8519
|
-
#: ../lib/puppet/type.rb:
|
7837
|
+
#: ../lib/puppet/type.rb:586
|
8520
7838
|
msgid "Class %{class_name} has not defined parameters"
|
8521
7839
|
msgstr ""
|
8522
7840
|
|
8523
|
-
#: ../lib/puppet/type.rb:
|
7841
|
+
#: ../lib/puppet/type.rb:673
|
8524
7842
|
msgid "Parameter %{name} failed on %{ref}: %{detail}"
|
8525
7843
|
msgstr ""
|
8526
7844
|
|
8527
|
-
#: ../lib/puppet/type.rb:
|
7845
|
+
#: ../lib/puppet/type.rb:696
|
8528
7846
|
msgid "Undefined attribute '%{attribute}' in %{name}"
|
8529
7847
|
msgstr ""
|
8530
7848
|
|
8531
7849
|
#. TRANSLATORS 'is' is a variable name and should not be translated
|
8532
7850
|
#. TRANSLATORS 'is' is a variable name and should not be translated
|
8533
|
-
#: ../lib/puppet/type.rb:
|
7851
|
+
#: ../lib/puppet/type.rb:1039 ../lib/puppet/type.rb:1050
|
8534
7852
|
msgid "The 'is' value is not in the 'is' array for '%{name}'"
|
8535
7853
|
msgstr ""
|
8536
7854
|
|
8537
|
-
#: ../lib/puppet/type.rb:
|
7855
|
+
#: ../lib/puppet/type.rb:1181
|
8538
7856
|
msgid "%{name} has no providers and has not overridden 'instances'"
|
8539
7857
|
msgstr ""
|
8540
7858
|
|
8541
|
-
#: ../lib/puppet/type.rb:
|
7859
|
+
#: ../lib/puppet/type.rb:1445
|
8542
7860
|
msgid "Cannot add aliases without a catalog"
|
8543
7861
|
msgstr ""
|
8544
7862
|
|
8545
|
-
#: ../lib/puppet/type.rb:
|
7863
|
+
#: ../lib/puppet/type.rb:1525
|
8546
7864
|
msgid "Could not find %{description} %{ref} for %{resource}"
|
8547
7865
|
msgstr ""
|
8548
7866
|
|
8549
|
-
#: ../lib/puppet/type.rb:
|
7867
|
+
#: ../lib/puppet/type.rb:1749
|
8550
7868
|
msgid "Found multiple default providers for %{name}: %{provider_list}; using %{selected_provider}"
|
8551
7869
|
msgstr ""
|
8552
7870
|
|
8553
|
-
#: ../lib/puppet/type.rb:
|
7871
|
+
#: ../lib/puppet/type.rb:1836
|
8554
7872
|
msgid "Could not find parent provider %{parent} of %{name}"
|
8555
7873
|
msgstr ""
|
8556
7874
|
|
8557
|
-
#: ../lib/puppet/type.rb:
|
7875
|
+
#: ../lib/puppet/type.rb:1910
|
8558
7876
|
msgid "Invalid %{resource} provider '%{provider_class}'"
|
8559
7877
|
msgstr ""
|
8560
7878
|
|
8561
|
-
#: ../lib/puppet/type.rb:
|
7879
|
+
#: ../lib/puppet/type.rb:1995
|
8562
7880
|
msgid "Could not find %{name} provider of %{provider}"
|
8563
7881
|
msgstr ""
|
8564
7882
|
|
8565
|
-
#: ../lib/puppet/type.rb:
|
7883
|
+
#: ../lib/puppet/type.rb:2113
|
8566
7884
|
msgid "You cannot add relationships without a catalog"
|
8567
7885
|
msgstr ""
|
8568
7886
|
|
8569
|
-
#: ../lib/puppet/type.rb:
|
7887
|
+
#: ../lib/puppet/type.rb:2416
|
8570
7888
|
msgid "Unable to mark '%{name}' as sensitive: %{name} is a parameter and not a property, and cannot be automatically redacted."
|
8571
7889
|
msgstr ""
|
8572
7890
|
|
8573
|
-
#: ../lib/puppet/type.rb:
|
7891
|
+
#: ../lib/puppet/type.rb:2419
|
8574
7892
|
msgid "Unable to mark '%{name}' as sensitive: the property itself was not assigned a value."
|
8575
7893
|
msgstr ""
|
8576
7894
|
|
8577
|
-
#: ../lib/puppet/type.rb:
|
7895
|
+
#: ../lib/puppet/type.rb:2421
|
8578
7896
|
msgid "Unable to mark '%{name}' as sensitive: the property itself is not defined on %{type}."
|
8579
7897
|
msgstr ""
|
8580
7898
|
|
8581
|
-
#: ../lib/puppet/type.rb:
|
7899
|
+
#: ../lib/puppet/type.rb:2479
|
8582
7900
|
msgid "Could not set %{attribute} on %{class_name}: %{detail}"
|
8583
7901
|
msgstr ""
|
8584
7902
|
|
@@ -8655,86 +7973,86 @@ msgstr ""
|
|
8655
7973
|
msgid "File paths must be fully qualified, not '%{path}'"
|
8656
7974
|
msgstr ""
|
8657
7975
|
|
8658
|
-
#: ../lib/puppet/type/file.rb:
|
7976
|
+
#: ../lib/puppet/type/file.rb:140
|
8659
7977
|
msgid "Invalid backup type %{value}"
|
8660
7978
|
msgstr ""
|
8661
7979
|
|
8662
|
-
#: ../lib/puppet/type/file.rb:
|
7980
|
+
#: ../lib/puppet/type/file.rb:184 ../lib/puppet/type/tidy.rb:48
|
8663
7981
|
msgid "Invalid recurse value %{value}"
|
8664
7982
|
msgstr ""
|
8665
7983
|
|
8666
|
-
#: ../lib/puppet/type/file.rb:
|
7984
|
+
#: ../lib/puppet/type/file.rb:216
|
8667
7985
|
msgid "Invalid recurselimit value %{value}"
|
8668
7986
|
msgstr ""
|
8669
7987
|
|
8670
|
-
#: ../lib/puppet/type/file.rb:
|
7988
|
+
#: ../lib/puppet/type/file.rb:416
|
8671
7989
|
msgid "You cannot specify more than one of %{creators}"
|
8672
7990
|
msgstr ""
|
8673
7991
|
|
8674
|
-
#: ../lib/puppet/type/file.rb:
|
7992
|
+
#: ../lib/puppet/type/file.rb:418
|
8675
7993
|
msgid "You cannot specify a remote recursion without a source"
|
8676
7994
|
msgstr ""
|
8677
7995
|
|
8678
|
-
#: ../lib/puppet/type/file.rb:
|
7996
|
+
#: ../lib/puppet/type/file.rb:420
|
8679
7997
|
msgid "You cannot specify source when using checksum 'none'"
|
8680
7998
|
msgstr ""
|
8681
7999
|
|
8682
|
-
#: ../lib/puppet/type/file.rb:
|
8000
|
+
#: ../lib/puppet/type/file.rb:423
|
8683
8001
|
msgid "You cannot specify content when using checksum '%{checksum_type}'"
|
8684
8002
|
msgstr ""
|
8685
8003
|
|
8686
|
-
#: ../lib/puppet/type/file.rb:
|
8004
|
+
#: ../lib/puppet/type/file.rb:426
|
8687
8005
|
msgid "Possible error: recurselimit is set but not recurse, no recursion will happen"
|
8688
8006
|
msgstr ""
|
8689
8007
|
|
8690
|
-
#: ../lib/puppet/type/file.rb:
|
8008
|
+
#: ../lib/puppet/type/file.rb:434
|
8691
8009
|
msgid "Checksum value '%{value}' is not a valid checksum type %{checksum}"
|
8692
8010
|
msgstr ""
|
8693
8011
|
|
8694
|
-
#: ../lib/puppet/type/file.rb:
|
8012
|
+
#: ../lib/puppet/type/file.rb:437
|
8695
8013
|
msgid "Checksum value is ignored unless content or source are specified"
|
8696
8014
|
msgstr ""
|
8697
8015
|
|
8698
|
-
#: ../lib/puppet/type/file.rb:
|
8016
|
+
#: ../lib/puppet/type/file.rb:475
|
8699
8017
|
msgid "Can not find filebucket for backups without a catalog"
|
8700
8018
|
msgstr ""
|
8701
8019
|
|
8702
|
-
#: ../lib/puppet/type/file.rb:
|
8020
|
+
#: ../lib/puppet/type/file.rb:480
|
8703
8021
|
msgid "Could not find filebucket %{backup} specified in backup"
|
8704
8022
|
msgstr ""
|
8705
8023
|
|
8706
|
-
#: ../lib/puppet/type/file.rb:
|
8024
|
+
#: ../lib/puppet/type/file.rb:778
|
8707
8025
|
msgid "Could not back up file of type %{current_type}"
|
8708
8026
|
msgstr ""
|
8709
8027
|
|
8710
|
-
#: ../lib/puppet/type/file.rb:
|
8028
|
+
#: ../lib/puppet/type/file.rb:793
|
8711
8029
|
msgid "Could not remove files of type %{current_type}"
|
8712
8030
|
msgstr ""
|
8713
8031
|
|
8714
8032
|
#. TRANSLATORS "source_permissions => ignore" should not be translated
|
8715
|
-
#: ../lib/puppet/type/file.rb:
|
8033
|
+
#: ../lib/puppet/type/file.rb:804
|
8716
8034
|
msgid "Copying owner/mode/group from the source file on Windows is not supported; use source_permissions => ignore."
|
8717
8035
|
msgstr ""
|
8718
8036
|
|
8719
8037
|
#. TRANSLATORS "stat" is a program name and should not be translated
|
8720
|
-
#: ../lib/puppet/type/file.rb:
|
8038
|
+
#: ../lib/puppet/type/file.rb:885 ../lib/puppet/type/tidy.rb:352
|
8721
8039
|
msgid "Could not stat; permission denied"
|
8722
8040
|
msgstr ""
|
8723
8041
|
|
8724
|
-
#: ../lib/puppet/type/file.rb:
|
8042
|
+
#: ../lib/puppet/type/file.rb:888
|
8725
8043
|
msgid "Could not stat; invalid pathname"
|
8726
8044
|
msgstr ""
|
8727
8045
|
|
8728
|
-
#: ../lib/puppet/type/file.rb:
|
8046
|
+
#: ../lib/puppet/type/file.rb:1016
|
8729
8047
|
msgid "Not removing directory; use 'force' to override"
|
8730
8048
|
msgstr ""
|
8731
8049
|
|
8732
8050
|
#. TRANSLATORS refers to a file which could not be backed up
|
8733
|
-
#: ../lib/puppet/type/file.rb:
|
8051
|
+
#: ../lib/puppet/type/file.rb:1041
|
8734
8052
|
msgid "Could not back up; will not remove"
|
8735
8053
|
msgstr ""
|
8736
8054
|
|
8737
|
-
#: ../lib/puppet/type/file.rb:
|
8055
|
+
#: ../lib/puppet/type/file.rb:1056
|
8738
8056
|
msgid "File written to disk did not match desired checksum; discarding changes (%{content_checksum} vs %{desired_checksum})"
|
8739
8057
|
msgstr ""
|
8740
8058
|
|
@@ -8800,36 +8118,36 @@ msgstr ""
|
|
8800
8118
|
msgid "Invalid GID %{gid}"
|
8801
8119
|
msgstr ""
|
8802
8120
|
|
8803
|
-
#: ../lib/puppet/type/package.rb:
|
8121
|
+
#: ../lib/puppet/type/package.rb:124 ../lib/puppet/type/package.rb:138
|
8804
8122
|
msgid "Could not update: %{detail}"
|
8805
8123
|
msgstr ""
|
8806
8124
|
|
8807
|
-
#: ../lib/puppet/type/package.rb:
|
8125
|
+
#: ../lib/puppet/type/package.rb:173
|
8808
8126
|
msgid "Could not get latest version: %{detail}"
|
8809
8127
|
msgstr ""
|
8810
8128
|
|
8811
|
-
#: ../lib/puppet/type/package.rb:
|
8129
|
+
#: ../lib/puppet/type/package.rb:273
|
8812
8130
|
msgid "Name must be a String not %{klass}"
|
8813
8131
|
msgstr ""
|
8814
8132
|
|
8815
|
-
#: ../lib/puppet/type/package.rb:
|
8133
|
+
#: ../lib/puppet/type/package.rb:419
|
8816
8134
|
msgid "Cannot have both `ensure => disabled` and `flavor`"
|
8817
8135
|
msgstr ""
|
8818
8136
|
|
8819
|
-
#: ../lib/puppet/type/package.rb:
|
8137
|
+
#: ../lib/puppet/type/package.rb:518
|
8820
8138
|
msgid "Cannot have both `enable_only => true` and `flavor`"
|
8821
8139
|
msgstr ""
|
8822
8140
|
|
8823
|
-
#: ../lib/puppet/type/package.rb:
|
8141
|
+
#: ../lib/puppet/type/package.rb:521
|
8824
8142
|
msgid "Cannot have both `ensure => disabled` and `enable_only => true`"
|
8825
8143
|
msgstr ""
|
8826
8144
|
|
8827
|
-
#: ../lib/puppet/type/package.rb:
|
8145
|
+
#: ../lib/puppet/type/package.rb:682
|
8828
8146
|
msgid "Invalid hold value %{value}. %{doc}"
|
8829
8147
|
msgstr ""
|
8830
8148
|
|
8831
|
-
#: ../lib/puppet/type/package.rb:
|
8832
|
-
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\"]"
|
8833
8151
|
msgstr ""
|
8834
8152
|
|
8835
8153
|
#: ../lib/puppet/type/resources.rb:15
|
@@ -9108,7 +8426,7 @@ msgstr ""
|
|
9108
8426
|
msgid "Could not autoload %{name}: %{detail}"
|
9109
8427
|
msgstr ""
|
9110
8428
|
|
9111
|
-
#: ../lib/puppet/util/autoload.rb:
|
8429
|
+
#: ../lib/puppet/util/autoload.rb:184
|
9112
8430
|
msgid "Autoload paths cannot be fully qualified"
|
9113
8431
|
msgstr ""
|
9114
8432
|
|
@@ -9321,37 +8639,6 @@ msgstr ""
|
|
9321
8639
|
msgid "Trollop::die can only be called after Trollop::options"
|
9322
8640
|
msgstr ""
|
9323
8641
|
|
9324
|
-
#: ../lib/puppet/util/connection.rb:28
|
9325
|
-
msgid "Selected server from the %{setting} setting: %{server}"
|
9326
|
-
msgstr ""
|
9327
|
-
|
9328
|
-
#. TRANSLATORS 'server_list' is the name of a setting and should not be translated
|
9329
|
-
#: ../lib/puppet/util/connection.rb:35
|
9330
|
-
msgid "Dynamically-bound server lookup failed; using first entry from the `server_list` setting: %{server}"
|
9331
|
-
msgstr ""
|
9332
|
-
|
9333
|
-
#: ../lib/puppet/util/connection.rb:39
|
9334
|
-
msgid "Dynamically-bound server lookup failed, falling back to %{setting} setting: %{server}"
|
9335
|
-
msgstr ""
|
9336
|
-
|
9337
|
-
#: ../lib/puppet/util/connection.rb:60
|
9338
|
-
msgid "Selected port from the %{setting} setting: %{port}"
|
9339
|
-
msgstr ""
|
9340
|
-
|
9341
|
-
#. TRANSLATORS 'server_list' is the name of a setting and should not be translated
|
9342
|
-
#: ../lib/puppet/util/connection.rb:71
|
9343
|
-
msgid "Dynamically-bound port lookup failed; using first entry from the `server_list` setting: %{port}"
|
9344
|
-
msgstr ""
|
9345
|
-
|
9346
|
-
#. TRANSLATORS 'serverport' is the name of a setting and should not be translated
|
9347
|
-
#: ../lib/puppet/util/connection.rb:75
|
9348
|
-
msgid "Dynamically-bound port lookup failed; falling back to `serverport` setting: %{port}"
|
9349
|
-
msgstr ""
|
9350
|
-
|
9351
|
-
#: ../lib/puppet/util/connection.rb:80
|
9352
|
-
msgid "Dynamically-bound port lookup failed; falling back to %{setting} setting: %{port}"
|
9353
|
-
msgstr ""
|
9354
|
-
|
9355
8642
|
#: ../lib/puppet/util/diff.rb:30
|
9356
8643
|
msgid "Cannot provide diff without the diff/lcs Ruby library"
|
9357
8644
|
msgstr ""
|
@@ -9384,23 +8671,23 @@ msgstr ""
|
|
9384
8671
|
msgid "%{klass} failed with error %{error_type}: %{detail}"
|
9385
8672
|
msgstr ""
|
9386
8673
|
|
9387
|
-
#: ../lib/puppet/util/execution.rb:
|
8674
|
+
#: ../lib/puppet/util/execution.rb:185
|
9388
8675
|
msgid "Working directory %{cwd} does not exist!"
|
9389
8676
|
msgstr ""
|
9390
8677
|
|
9391
|
-
#: ../lib/puppet/util/execution.rb:
|
8678
|
+
#: ../lib/puppet/util/execution.rb:277
|
9392
8679
|
msgid "Could not get output"
|
9393
8680
|
msgstr ""
|
9394
8681
|
|
9395
|
-
#: ../lib/puppet/util/execution.rb:
|
8682
|
+
#: ../lib/puppet/util/execution.rb:286
|
9396
8683
|
msgid "Execution of '%{str}' returned %{exit_status}: %{output}"
|
9397
8684
|
msgstr ""
|
9398
8685
|
|
9399
|
-
#: ../lib/puppet/util/execution.rb:
|
8686
|
+
#: ../lib/puppet/util/execution.rb:363
|
9400
8687
|
msgid "Could not execute posix command: %{detail}"
|
9401
8688
|
msgstr ""
|
9402
8689
|
|
9403
|
-
#: ../lib/puppet/util/execution.rb:
|
8690
|
+
#: ../lib/puppet/util/execution.rb:411
|
9404
8691
|
msgid "Waiting for output; will sleep %{time_to_sleep} seconds"
|
9405
8692
|
msgstr ""
|
9406
8693
|
|
@@ -9512,10 +8799,6 @@ msgstr ""
|
|
9512
8799
|
msgid "Could not write crontab for %{path}: %{detail}"
|
9513
8800
|
msgstr ""
|
9514
8801
|
|
9515
|
-
#: ../lib/puppet/util/http_proxy.rb:215
|
9516
|
-
msgid "Too many HTTP redirections for %{uri}"
|
9517
|
-
msgstr ""
|
9518
|
-
|
9519
8802
|
#: ../lib/puppet/util/inifile.rb:139
|
9520
8803
|
msgid "Cannot read nonexistent file %{file}"
|
9521
8804
|
msgstr ""
|
@@ -9664,6 +8947,10 @@ msgstr ""
|
|
9664
8947
|
msgid "Duplicate device found at %{file_error_location}, already found at %{device_error_location}"
|
9665
8948
|
msgstr ""
|
9666
8949
|
|
8950
|
+
#: ../lib/puppet/util/network_device/config.rb:71
|
8951
|
+
msgid "Invalid entry at %{error_location}: %{file_text}"
|
8952
|
+
msgstr ""
|
8953
|
+
|
9667
8954
|
#: ../lib/puppet/util/network_device/config.rb:77
|
9668
8955
|
msgid "Configuration error: Cannot read %{file}; cannot serve"
|
9669
8956
|
msgstr ""
|
@@ -9692,19 +8979,19 @@ msgstr ""
|
|
9692
8979
|
msgid "Unable to write the file %{file_path}. %{error}"
|
9693
8980
|
msgstr ""
|
9694
8981
|
|
9695
|
-
#: ../lib/puppet/util/posix.rb:
|
8982
|
+
#: ../lib/puppet/util/posix.rb:22
|
9696
8983
|
msgid "Removing any duplicate group entries"
|
9697
8984
|
msgstr ""
|
9698
8985
|
|
9699
|
-
#: ../lib/puppet/util/posix.rb:
|
8986
|
+
#: ../lib/puppet/util/posix.rb:35
|
9700
8987
|
msgid "Did not get id from caller"
|
9701
8988
|
msgstr ""
|
9702
8989
|
|
9703
|
-
#: ../lib/puppet/util/posix.rb:
|
8990
|
+
#: ../lib/puppet/util/posix.rb:39 ../lib/puppet/util/posix.rb:64
|
9704
8991
|
msgid "Tried to get %{field} field for silly id %{id}"
|
9705
8992
|
msgstr ""
|
9706
8993
|
|
9707
|
-
#: ../lib/puppet/util/posix.rb:
|
8994
|
+
#: ../lib/puppet/util/posix.rb:92 ../lib/puppet/util/posix.rb:102 ../lib/puppet/util/posix.rb:112
|
9708
8995
|
msgid "Can only handle users and groups"
|
9709
8996
|
msgstr ""
|
9710
8997
|
|
@@ -9720,7 +9007,7 @@ msgstr ""
|
|
9720
9007
|
msgid "Could not create feature %{name}: %{detail}"
|
9721
9008
|
msgstr ""
|
9722
9009
|
|
9723
|
-
#: ../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
|
9724
9011
|
msgid "RDOC SUPPORT FOR MANIFEST HAS BEEN REMOVED - See PUP-3638"
|
9725
9012
|
msgstr ""
|
9726
9013
|
|
@@ -9924,14 +9211,6 @@ msgstr ""
|
|
9924
9211
|
msgid "Cannot create group if user '%{name}' exists."
|
9925
9212
|
msgstr ""
|
9926
9213
|
|
9927
|
-
#: ../lib/puppet/util/windows/api_types.rb:85
|
9928
|
-
msgid "Unable to read wide strings with %{null_terminator} terminal nulls"
|
9929
|
-
msgstr ""
|
9930
|
-
|
9931
|
-
#: ../lib/puppet/util/windows/api_types.rb:230
|
9932
|
-
msgid "Bad GUID format."
|
9933
|
-
msgstr ""
|
9934
|
-
|
9935
9214
|
#: ../lib/puppet/util/windows/com.rb:17
|
9936
9215
|
msgid "%{name} failed (hresult %{result})."
|
9937
9216
|
msgstr ""
|
@@ -9944,11 +9223,11 @@ msgstr ""
|
|
9944
9223
|
msgid "CoCreateInstance failed (%{klass})."
|
9945
9224
|
msgstr ""
|
9946
9225
|
|
9947
|
-
#: ../lib/puppet/util/windows/error.rb:
|
9226
|
+
#: ../lib/puppet/util/windows/error.rb:43
|
9948
9227
|
msgid "FormatMessageW could not format code %{code}"
|
9949
9228
|
msgstr ""
|
9950
9229
|
|
9951
|
-
#: ../lib/puppet/util/windows/error.rb:
|
9230
|
+
#: ../lib/puppet/util/windows/error.rb:49
|
9952
9231
|
msgid "FormatMessageW failed to allocate buffer for code %{code}"
|
9953
9232
|
msgstr ""
|
9954
9233
|
|
@@ -9971,15 +9250,15 @@ msgstr ""
|
|
9971
9250
|
msgid "(Win32 error: %{detail})"
|
9972
9251
|
msgstr ""
|
9973
9252
|
|
9974
|
-
#: ../lib/puppet/util/windows/file.rb:
|
9253
|
+
#: ../lib/puppet/util/windows/file.rb:117
|
9975
9254
|
msgid "Failed to set file attributes"
|
9976
9255
|
msgstr ""
|
9977
9256
|
|
9978
|
-
#: ../lib/puppet/util/windows/file.rb:
|
9257
|
+
#: ../lib/puppet/util/windows/file.rb:180
|
9979
9258
|
msgid "out_buffer is required"
|
9980
9259
|
msgstr ""
|
9981
9260
|
|
9982
|
-
#: ../lib/puppet/util/windows/file.rb:
|
9261
|
+
#: ../lib/puppet/util/windows/file.rb:253
|
9983
9262
|
msgid "Failed to call GetLongPathName"
|
9984
9263
|
msgstr ""
|
9985
9264
|
|
@@ -10146,119 +9425,119 @@ msgstr ""
|
|
10146
9425
|
msgid "Failed to set security information"
|
10147
9426
|
msgstr ""
|
10148
9427
|
|
10149
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9428
|
+
#: ../lib/puppet/util/windows/service.rb:44
|
10150
9429
|
msgid "Starting the %{service_name} service. Timeout set to: %{timeout} seconds"
|
10151
9430
|
msgstr ""
|
10152
9431
|
|
10153
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9432
|
+
#: ../lib/puppet/util/windows/service.rb:54
|
10154
9433
|
msgid "Failed to start the service"
|
10155
9434
|
msgstr ""
|
10156
9435
|
|
10157
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9436
|
+
#: ../lib/puppet/util/windows/service.rb:58
|
10158
9437
|
msgid "Successfully started the %{service_name} service"
|
10159
9438
|
msgstr ""
|
10160
9439
|
|
10161
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9440
|
+
#: ../lib/puppet/util/windows/service.rb:67
|
10162
9441
|
msgid "Stopping the %{service_name} service. Timeout set to: %{timeout} seconds"
|
10163
9442
|
msgstr ""
|
10164
9443
|
|
10165
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9444
|
+
#: ../lib/puppet/util/windows/service.rb:75
|
10166
9445
|
msgid "Successfully stopped the %{service_name} service"
|
10167
9446
|
msgstr ""
|
10168
9447
|
|
10169
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9448
|
+
#: ../lib/puppet/util/windows/service.rb:84
|
10170
9449
|
msgid "Resuming the %{service_name} service. Timeout set to: %{timeout} seconds"
|
10171
9450
|
msgstr ""
|
10172
9451
|
|
10173
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9452
|
+
#: ../lib/puppet/util/windows/service.rb:100
|
10174
9453
|
msgid "Successfully resumed the %{service_name} service"
|
10175
9454
|
msgstr ""
|
10176
9455
|
|
10177
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9456
|
+
#: ../lib/puppet/util/windows/service.rb:116
|
10178
9457
|
msgid "Unknown Service state '%{current_state}' for '%{service_name}'"
|
10179
9458
|
msgstr ""
|
10180
9459
|
|
10181
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9460
|
+
#: ../lib/puppet/util/windows/service.rb:143
|
10182
9461
|
msgid "Unknown start type '%{start_type}' for '%{service_name}'"
|
10183
9462
|
msgstr ""
|
10184
9463
|
|
10185
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9464
|
+
#: ../lib/puppet/util/windows/service.rb:193
|
10186
9465
|
msgid "Failed to update service configuration"
|
10187
9466
|
msgstr ""
|
10188
9467
|
|
10189
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9468
|
+
#: ../lib/puppet/util/windows/service.rb:258
|
10190
9469
|
msgid "Failed to fetch services"
|
10191
9470
|
msgstr ""
|
10192
9471
|
|
10193
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9472
|
+
#: ../lib/puppet/util/windows/service.rb:307
|
10194
9473
|
msgid "Failed to open a handle to the service"
|
10195
9474
|
msgstr ""
|
10196
9475
|
|
10197
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9476
|
+
#: ../lib/puppet/util/windows/service.rb:324
|
10198
9477
|
msgid "Failed to open a handle to the service control manager"
|
10199
9478
|
msgstr ""
|
10200
9479
|
|
10201
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9480
|
+
#: ../lib/puppet/util/windows/service.rb:347
|
10202
9481
|
msgid "The service is already in the %{final_state} state. No further work needs to be done."
|
10203
9482
|
msgstr ""
|
10204
9483
|
|
10205
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9484
|
+
#: ../lib/puppet/util/windows/service.rb:359
|
10206
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."
|
10207
9486
|
msgstr ""
|
10208
9487
|
|
10209
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9488
|
+
#: ../lib/puppet/util/windows/service.rb:370
|
10210
9489
|
msgid "There is already a pending transition to the %{final_state} state for the %{service_name} service."
|
10211
9490
|
msgstr ""
|
10212
9491
|
|
10213
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9492
|
+
#: ../lib/puppet/util/windows/service.rb:386
|
10214
9493
|
msgid "The service is in the %{pending_state} state, which is an unsafe pending state."
|
10215
9494
|
msgstr ""
|
10216
9495
|
|
10217
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9496
|
+
#: ../lib/puppet/util/windows/service.rb:391
|
10218
9497
|
msgid "Transitioning the %{service_name} service from %{initial_state} to %{final_state}"
|
10219
9498
|
msgstr ""
|
10220
9499
|
|
10221
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9500
|
+
#: ../lib/puppet/util/windows/service.rb:395
|
10222
9501
|
msgid "Waiting for the transition to finish"
|
10223
9502
|
msgstr ""
|
10224
9503
|
|
10225
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9504
|
+
#: ../lib/puppet/util/windows/service.rb:400
|
10226
9505
|
msgid "Failed to transition the %{service_name} service to the %{final_state} state. Detail: %{detail}"
|
10227
9506
|
msgstr ""
|
10228
9507
|
|
10229
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9508
|
+
#: ../lib/puppet/util/windows/service.rb:439 ../lib/puppet/util/windows/service.rb:475
|
10230
9509
|
msgid "Service query failed"
|
10231
9510
|
msgstr ""
|
10232
9511
|
|
10233
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9512
|
+
#: ../lib/puppet/util/windows/service.rb:518
|
10234
9513
|
msgid "Service query for %{parameter_name} failed"
|
10235
9514
|
msgstr ""
|
10236
9515
|
|
10237
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9516
|
+
#: ../lib/puppet/util/windows/service.rb:541
|
10238
9517
|
msgid "Failed to update service %{change} configuration"
|
10239
9518
|
msgstr ""
|
10240
9519
|
|
10241
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9520
|
+
#: ../lib/puppet/util/windows/service.rb:568
|
10242
9521
|
msgid "Failed to send the %{control_signal} signal to the service. Its current state is %{current_state}. Reason for failure:"
|
10243
9522
|
msgstr ""
|
10244
9523
|
|
10245
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9524
|
+
#: ../lib/puppet/util/windows/service.rb:603
|
10246
9525
|
msgid "The service transitioned to the %{pending_state} state."
|
10247
9526
|
msgstr ""
|
10248
9527
|
|
10249
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9528
|
+
#: ../lib/puppet/util/windows/service.rb:617
|
10250
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}."
|
10251
9530
|
msgstr ""
|
10252
9531
|
|
10253
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9532
|
+
#: ../lib/puppet/util/windows/service.rb:632
|
10254
9533
|
msgid "Waiting for the pending transition to the %{final_state} state to finish."
|
10255
9534
|
msgstr ""
|
10256
9535
|
|
10257
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9536
|
+
#: ../lib/puppet/util/windows/service.rb:646
|
10258
9537
|
msgid "Unexpected transition to the %{current_state} state while waiting for the pending transition from %{pending_state} to %{final_state} to finish."
|
10259
9538
|
msgstr ""
|
10260
9539
|
|
10261
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9540
|
+
#: ../lib/puppet/util/windows/service.rb:660
|
10262
9541
|
msgid "Timed out while waiting for the pending transition from %{pending_state} to %{final_state} to finish. The current state is %{current_state}."
|
10263
9542
|
msgstr ""
|
10264
9543
|
|
@@ -10298,76 +9577,72 @@ msgstr ""
|
|
10298
9577
|
msgid "Failed to unload user profile %{user}"
|
10299
9578
|
msgstr ""
|
10300
9579
|
|
10301
|
-
#: ../lib/puppet/
|
10302
|
-
msgid "Puppet::Util::Yaml.load_file is deprecated. Use safe_load_file instead."
|
10303
|
-
msgstr ""
|
10304
|
-
|
10305
|
-
#: ../lib/puppet/x509/cert_provider.rb:39
|
9580
|
+
#: ../lib/puppet/x509/cert_provider.rb:45
|
10306
9581
|
msgid "Failed to save CA certificates to '%{capath}'"
|
10307
9582
|
msgstr ""
|
10308
9583
|
|
10309
|
-
#: ../lib/puppet/x509/cert_provider.rb:
|
9584
|
+
#: ../lib/puppet/x509/cert_provider.rb:59
|
10310
9585
|
msgid "The CA certificates are missing from '%{path}'"
|
10311
9586
|
msgstr ""
|
10312
9587
|
|
10313
|
-
#: ../lib/puppet/x509/cert_provider.rb:
|
9588
|
+
#: ../lib/puppet/x509/cert_provider.rb:63
|
10314
9589
|
msgid "Failed to load CA certificates from '%{capath}'"
|
10315
9590
|
msgstr ""
|
10316
9591
|
|
10317
9592
|
#. TRANSLATORS 'PEM' is an acronym and shouldn't be translated
|
10318
|
-
#: ../lib/puppet/x509/cert_provider.rb:
|
9593
|
+
#: ../lib/puppet/x509/cert_provider.rb:75
|
10319
9594
|
msgid "Failed to parse CA certificates as PEM"
|
10320
9595
|
msgstr ""
|
10321
9596
|
|
10322
|
-
#: ../lib/puppet/x509/cert_provider.rb:
|
9597
|
+
#: ../lib/puppet/x509/cert_provider.rb:91
|
10323
9598
|
msgid "Failed to save CRLs to '%{crlpath}'"
|
10324
9599
|
msgstr ""
|
10325
9600
|
|
10326
|
-
#: ../lib/puppet/x509/cert_provider.rb:
|
9601
|
+
#: ../lib/puppet/x509/cert_provider.rb:105
|
10327
9602
|
msgid "The CRL is missing from '%{path}'"
|
10328
9603
|
msgstr ""
|
10329
9604
|
|
10330
|
-
#: ../lib/puppet/x509/cert_provider.rb:
|
9605
|
+
#: ../lib/puppet/x509/cert_provider.rb:109
|
10331
9606
|
msgid "Failed to load CRLs from '%{crlpath}'"
|
10332
9607
|
msgstr ""
|
10333
9608
|
|
10334
9609
|
#. TRANSLATORS 'PEM' is an acronym and shouldn't be translated
|
10335
|
-
#: ../lib/puppet/x509/cert_provider.rb:
|
9610
|
+
#: ../lib/puppet/x509/cert_provider.rb:121
|
10336
9611
|
msgid "Failed to parse CRLs as PEM"
|
10337
9612
|
msgstr ""
|
10338
9613
|
|
10339
|
-
#: ../lib/puppet/x509/cert_provider.rb:
|
9614
|
+
#: ../lib/puppet/x509/cert_provider.rb:171
|
10340
9615
|
msgid "Failed to save private key for '%{name}'"
|
10341
9616
|
msgstr ""
|
10342
9617
|
|
10343
|
-
#: ../lib/puppet/x509/cert_provider.rb:
|
9618
|
+
#: ../lib/puppet/x509/cert_provider.rb:191
|
10344
9619
|
msgid "The private key is missing from '%{path}'"
|
10345
9620
|
msgstr ""
|
10346
9621
|
|
10347
|
-
#: ../lib/puppet/x509/cert_provider.rb:
|
9622
|
+
#: ../lib/puppet/x509/cert_provider.rb:195
|
10348
9623
|
msgid "Failed to load private key for '%{name}'"
|
10349
9624
|
msgstr ""
|
10350
9625
|
|
10351
|
-
#: ../lib/puppet/x509/cert_provider.rb:
|
9626
|
+
#: ../lib/puppet/x509/cert_provider.rb:255
|
10352
9627
|
msgid "Failed to save client certificate for '%{name}'"
|
10353
9628
|
msgstr ""
|
10354
9629
|
|
10355
|
-
#: ../lib/puppet/x509/cert_provider.rb:
|
9630
|
+
#: ../lib/puppet/x509/cert_provider.rb:271
|
10356
9631
|
msgid "The client certificate is missing from '%{path}'"
|
10357
9632
|
msgstr ""
|
10358
9633
|
|
10359
|
-
#: ../lib/puppet/x509/cert_provider.rb:
|
9634
|
+
#: ../lib/puppet/x509/cert_provider.rb:275
|
10360
9635
|
msgid "Failed to load client certificate for '%{name}'"
|
10361
9636
|
msgstr ""
|
10362
9637
|
|
10363
|
-
#: ../lib/puppet/x509/cert_provider.rb:
|
9638
|
+
#: ../lib/puppet/x509/cert_provider.rb:324
|
10364
9639
|
msgid "Failed to save certificate request for '%{name}'"
|
10365
9640
|
msgstr ""
|
10366
9641
|
|
10367
|
-
#: ../lib/puppet/x509/cert_provider.rb:
|
9642
|
+
#: ../lib/puppet/x509/cert_provider.rb:340
|
10368
9643
|
msgid "Failed to load certificate request for '%{name}'"
|
10369
9644
|
msgstr ""
|
10370
9645
|
|
10371
|
-
#: ../lib/puppet/x509/cert_provider.rb:
|
9646
|
+
#: ../lib/puppet/x509/cert_provider.rb:353
|
10372
9647
|
msgid "Failed to delete certificate request for '%{name}'"
|
10373
9648
|
msgstr ""
|