puppet 6.15.0-x64-mingw32 → 6.19.1-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 +2 -7
- data/Gemfile +4 -2
- data/Gemfile.lock +29 -27
- data/README.md +3 -4
- data/Rakefile +4 -12
- data/lib/puppet.rb +32 -8
- data/lib/puppet/agent.rb +18 -4
- data/lib/puppet/agent/locker.rb +0 -7
- data/lib/puppet/application/agent.rb +23 -8
- data/lib/puppet/application/apply.rb +18 -20
- data/lib/puppet/application/device.rb +1 -1
- data/lib/puppet/application/doc.rb +1 -1
- data/lib/puppet/application/lookup.rb +16 -4
- data/lib/puppet/application/plugin.rb +1 -0
- data/lib/puppet/application/ssl.rb +1 -1
- data/lib/puppet/configurer.rb +61 -21
- data/lib/puppet/configurer/downloader.rb +31 -10
- data/lib/puppet/confine.rb +2 -2
- data/lib/puppet/confine/any.rb +1 -1
- data/lib/puppet/context/trusted_information.rb +14 -8
- data/lib/puppet/daemon.rb +13 -27
- data/lib/puppet/defaults.rb +119 -39
- data/lib/puppet/environments.rb +51 -10
- data/lib/puppet/face/catalog.rb +1 -1
- data/lib/puppet/face/config.rb +46 -16
- data/lib/puppet/face/facts.rb +1 -1
- data/lib/puppet/face/help.rb +29 -3
- data/lib/puppet/face/module/search.rb +5 -0
- data/lib/puppet/face/node.rb +3 -3
- data/lib/puppet/face/node/clean.rb +2 -2
- data/lib/puppet/face/plugin.rb +1 -1
- data/lib/puppet/face/status.rb +1 -1
- data/lib/puppet/feature/base.rb +1 -1
- data/lib/puppet/file_bucket/dipper.rb +1 -1
- data/lib/puppet/file_serving/http_metadata.rb +14 -2
- data/lib/puppet/file_serving/metadata.rb +4 -1
- data/lib/puppet/file_serving/mount/locales.rb +1 -2
- data/lib/puppet/file_serving/mount/pluginfacts.rb +1 -2
- data/lib/puppet/file_serving/mount/plugins.rb +1 -2
- data/lib/puppet/file_serving/terminus_selector.rb +7 -8
- data/lib/puppet/file_system/file_impl.rb +4 -4
- data/lib/puppet/file_system/uniquefile.rb +12 -16
- data/lib/puppet/forge.rb +1 -1
- data/lib/puppet/forge/cache.rb +1 -1
- data/lib/puppet/forge/repository.rb +4 -7
- data/lib/puppet/functions/filter.rb +1 -0
- data/lib/puppet/functions/lstrip.rb +4 -4
- data/lib/puppet/functions/new.rb +8 -3
- data/lib/puppet/functions/reverse_each.rb +1 -1
- data/lib/puppet/functions/rstrip.rb +4 -4
- data/lib/puppet/functions/step.rb +1 -1
- data/lib/puppet/functions/strip.rb +4 -4
- data/lib/puppet/gettext/config.rb +5 -5
- data/lib/puppet/gettext/module_translations.rb +4 -4
- data/lib/puppet/http.rb +1 -0
- data/lib/puppet/http/client.rb +28 -12
- data/lib/puppet/http/external_client.rb +0 -6
- data/lib/puppet/http/redirector.rb +9 -7
- data/lib/puppet/http/resolver.rb +5 -8
- data/lib/puppet/http/resolver/server_list.rb +18 -36
- data/lib/puppet/http/resolver/settings.rb +4 -4
- data/lib/puppet/http/resolver/srv.rb +5 -5
- data/lib/puppet/http/response.rb +19 -0
- data/lib/puppet/http/service.rb +3 -1
- data/lib/puppet/http/service/compiler.rb +1 -1
- data/lib/puppet/http/service/file_server.rb +1 -1
- data/lib/puppet/http/service/puppetserver.rb +39 -0
- data/lib/puppet/http/session.rb +5 -4
- data/lib/puppet/indirector.rb +1 -1
- data/lib/puppet/indirector/catalog/compiler.rb +1 -1
- data/lib/puppet/indirector/exec.rb +1 -1
- data/lib/puppet/indirector/facts/facter.rb +3 -3
- data/lib/puppet/indirector/facts/yaml.rb +1 -1
- data/lib/puppet/indirector/file_content/http.rb +5 -0
- data/lib/puppet/indirector/file_content/rest.rb +1 -1
- data/lib/puppet/indirector/file_metadata/http.rb +28 -8
- data/lib/puppet/indirector/file_metadata/rest.rb +2 -2
- data/lib/puppet/indirector/hiera.rb +4 -0
- data/lib/puppet/indirector/indirection.rb +1 -1
- data/lib/puppet/indirector/json.rb +1 -1
- data/lib/puppet/indirector/msgpack.rb +1 -1
- data/lib/puppet/indirector/report/processor.rb +2 -2
- data/lib/puppet/indirector/request.rb +5 -5
- data/lib/puppet/indirector/rest.rb +7 -1
- data/lib/puppet/indirector/yaml.rb +1 -1
- data/lib/puppet/module.rb +1 -2
- data/lib/puppet/network/format_support.rb +2 -2
- data/lib/puppet/network/http/api/indirected_routes.rb +1 -1
- data/lib/puppet/network/http/api/master/v3/environment.rb +3 -0
- data/lib/puppet/network/http/api/master/v3/environments.rb +0 -1
- data/lib/puppet/network/http/compression.rb +7 -0
- data/lib/puppet/network/http/connection.rb +2 -0
- data/lib/puppet/network/http/connection_adapter.rb +184 -0
- data/lib/puppet/network/http/nocache_pool.rb +1 -0
- data/lib/puppet/network/http/route.rb +2 -2
- data/lib/puppet/network/http_pool.rb +2 -2
- data/lib/puppet/node/environment.rb +12 -5
- data/lib/puppet/node/facts.rb +17 -0
- data/lib/puppet/pal/catalog_compiler.rb +5 -0
- data/lib/puppet/pal/pal_impl.rb +31 -4
- data/lib/puppet/parameter.rb +1 -1
- data/lib/puppet/parser/ast/leaf.rb +5 -5
- data/lib/puppet/parser/ast/pops_bridge.rb +0 -4
- data/lib/puppet/parser/compiler.rb +29 -26
- data/lib/puppet/parser/compiler/catalog_validator/env_relationship_validator.rb +2 -0
- data/lib/puppet/parser/compiler/catalog_validator/site_validator.rb +2 -0
- data/lib/puppet/parser/environment_compiler.rb +4 -1
- data/lib/puppet/parser/functions.rb +21 -17
- data/lib/puppet/parser/functions/create_resources.rb +11 -7
- data/lib/puppet/parser/functions/filter.rb +1 -0
- data/lib/puppet/parser/resource.rb +3 -2
- data/lib/puppet/parser/resource/param.rb +6 -0
- data/lib/puppet/parser/type_loader.rb +2 -2
- data/lib/puppet/pops/adaptable.rb +7 -13
- data/lib/puppet/pops/adapters.rb +8 -4
- data/lib/puppet/pops/evaluator/collectors/abstract_collector.rb +1 -3
- data/lib/puppet/pops/evaluator/evaluator_impl.rb +5 -5
- data/lib/puppet/pops/evaluator/runtime3_converter.rb +2 -2
- data/lib/puppet/pops/issues.rb +5 -0
- data/lib/puppet/pops/loader/runtime3_type_loader.rb +4 -2
- data/lib/puppet/pops/loaders.rb +18 -11
- data/lib/puppet/pops/lookup/context.rb +1 -1
- data/lib/puppet/pops/lookup/hiera_config.rb +14 -1
- data/lib/puppet/pops/resource/resource_type_impl.rb +2 -0
- data/lib/puppet/pops/types/iterable.rb +34 -8
- data/lib/puppet/pops/types/p_meta_type.rb +1 -1
- data/lib/puppet/pops/types/p_type_set_type.rb +4 -0
- data/lib/puppet/pops/validation/checker4_0.rb +29 -15
- data/lib/puppet/pops/validation/validator_factory_4_0.rb +1 -0
- data/lib/puppet/provider/file/windows.rb +1 -1
- data/lib/puppet/provider/package/aix.rb +17 -2
- data/lib/puppet/provider/package/apt.rb +38 -1
- data/lib/puppet/provider/package/aptitude.rb +1 -1
- data/lib/puppet/provider/package/dnfmodule.rb +24 -4
- data/lib/puppet/provider/package/dpkg.rb +1 -1
- data/lib/puppet/provider/package/gem.rb +4 -2
- data/lib/puppet/provider/package/pip.rb +60 -37
- data/lib/puppet/provider/package/pip2.rb +17 -0
- data/lib/puppet/provider/package/portage.rb +2 -2
- data/lib/puppet/provider/package/puppet_gem.rb +5 -0
- data/lib/puppet/provider/package/puppetserver_gem.rb +180 -0
- data/lib/puppet/provider/package/yum.rb +9 -1
- data/lib/puppet/provider/package/zypper.rb +62 -1
- data/lib/puppet/provider/service/systemd.rb +21 -4
- data/lib/puppet/provider/service/windows.rb +23 -7
- data/lib/puppet/provider/user/aix.rb +1 -1
- data/lib/puppet/provider/user/user_role_add.rb +1 -1
- data/lib/puppet/provider/user/useradd.rb +16 -5
- data/lib/puppet/provider/user/windows_adsi.rb +18 -1
- data/lib/puppet/reports/http.rb +7 -3
- data/lib/puppet/resource.rb +2 -1
- data/lib/puppet/resource/type.rb +10 -1
- data/lib/puppet/rest/route.rb +2 -2
- data/lib/puppet/runtime.rb +25 -2
- data/lib/puppet/settings.rb +43 -6
- data/lib/puppet/ssl/ssl_context.rb +2 -2
- data/lib/puppet/ssl/ssl_provider.rb +20 -1
- data/lib/puppet/ssl/state_machine.rb +33 -8
- data/lib/puppet/ssl/validator/default_validator.rb +1 -1
- data/lib/puppet/ssl/verifier_adapter.rb +9 -1
- data/lib/puppet/test/test_helper.rb +19 -14
- data/lib/puppet/transaction.rb +2 -2
- data/lib/puppet/transaction/persistence.rb +1 -1
- data/lib/puppet/transaction/report.rb +12 -8
- data/lib/puppet/trusted_external.rb +29 -1
- data/lib/puppet/type.rb +15 -7
- data/lib/puppet/type/file.rb +40 -15
- data/lib/puppet/type/file/checksum.rb +4 -4
- data/lib/puppet/type/file/source.rb +33 -13
- data/lib/puppet/type/filebucket.rb +1 -1
- data/lib/puppet/type/notify.rb +2 -2
- data/lib/puppet/type/package.rb +16 -1
- data/lib/puppet/type/service.rb +59 -8
- data/lib/puppet/type/user.rb +19 -10
- data/lib/puppet/util.rb +41 -3
- data/lib/puppet/util/autoload.rb +10 -25
- data/lib/puppet/util/character_encoding.rb +9 -5
- data/lib/puppet/util/checksums.rb +19 -4
- data/lib/puppet/util/connection.rb +8 -8
- data/lib/puppet/util/execution.rb +2 -2
- data/lib/puppet/util/fileparsing.rb +2 -2
- data/lib/puppet/util/log/destinations.rb +1 -10
- data/lib/puppet/util/package/version/range.rb +4 -1
- data/lib/puppet/util/package/version/range/eq.rb +14 -0
- data/lib/puppet/util/provider_features.rb +1 -1
- data/lib/puppet/util/reference.rb +1 -1
- data/lib/puppet/util/run_mode.rb +5 -1
- data/lib/puppet/util/windows.rb +1 -0
- data/lib/puppet/util/windows/api_types.rb +60 -33
- data/lib/puppet/util/windows/eventlog.rb +1 -6
- data/lib/puppet/util/windows/monkey_patches/dir.rb +40 -0
- data/lib/puppet/util/windows/principal.rb +8 -6
- data/lib/puppet/util/windows/registry.rb +11 -11
- data/lib/puppet/util/windows/security.rb +4 -4
- data/lib/puppet/util/windows/service.rb +43 -26
- data/lib/puppet/util/windows/user.rb +242 -8
- data/lib/puppet/version.rb +1 -1
- data/locales/puppet.pot +541 -427
- data/man/man5/puppet.conf.5 +84 -19
- data/man/man8/puppet-agent.8 +7 -4
- data/man/man8/puppet-apply.8 +1 -1
- data/man/man8/puppet-catalog.8 +1 -1
- data/man/man8/puppet-config.8 +6 -6
- data/man/man8/puppet-describe.8 +1 -1
- data/man/man8/puppet-device.8 +1 -1
- data/man/man8/puppet-doc.8 +1 -1
- data/man/man8/puppet-epp.8 +1 -1
- data/man/man8/puppet-facts.8 +1 -1
- data/man/man8/puppet-filebucket.8 +1 -1
- data/man/man8/puppet-generate.8 +1 -1
- data/man/man8/puppet-help.8 +6 -3
- data/man/man8/puppet-key.8 +1 -1
- data/man/man8/puppet-lookup.8 +2 -2
- data/man/man8/puppet-man.8 +1 -1
- data/man/man8/puppet-module.8 +4 -1
- data/man/man8/puppet-node.8 +4 -4
- 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 +1 -1
- data/man/man8/puppet-ssl.8 +1 -1
- data/man/man8/puppet-status.8 +2 -2
- data/man/man8/puppet.8 +2 -2
- data/spec/fixtures/integration/application/apply/environments/spec/modules/amod/lib/puppet/provider/applytest/applytest.rb +2 -0
- data/spec/fixtures/integration/application/apply/environments/spec/modules/amod/lib/puppet/type/applytest.rb +25 -0
- data/spec/fixtures/unit/forge/bacula-releases.json +128 -0
- data/spec/fixtures/unit/forge/bacula.tar.gz +0 -0
- data/spec/fixtures/unit/provider/package/dnfmodule/{dnf-module-list-enabled.txt → dnf-module-list.txt} +6 -0
- data/spec/fixtures/unit/provider/package/puppetserver_gem/gem-list-local-packages +30 -0
- data/spec/fixtures/unit/provider/package/zypper/zypper-search-uninstalled.out +13 -0
- data/spec/integration/application/agent_spec.rb +202 -52
- data/spec/integration/application/apply_spec.rb +149 -149
- data/spec/integration/application/config_spec.rb +74 -0
- data/spec/integration/application/doc_spec.rb +16 -6
- data/spec/integration/application/filebucket_spec.rb +70 -21
- data/spec/integration/application/help_spec.rb +42 -0
- data/spec/integration/application/lookup_spec.rb +13 -0
- data/spec/integration/application/module_spec.rb +68 -0
- data/spec/integration/application/plugin_spec.rb +75 -2
- data/spec/integration/configurer_spec.rb +14 -0
- data/spec/integration/data_binding_spec.rb +82 -0
- data/spec/integration/defaults_spec.rb +27 -3
- data/spec/integration/directory_environments_spec.rb +17 -17
- data/spec/integration/http/client_spec.rb +6 -1
- data/spec/integration/indirector/facts/facter_spec.rb +8 -6
- data/spec/integration/network/http_pool_spec.rb +73 -0
- data/spec/integration/node/environment_spec.rb +1 -1
- data/spec/integration/parser/compiler_spec.rb +11 -0
- data/spec/integration/type/file_spec.rb +1 -1
- data/spec/integration/util/execution_spec.rb +22 -0
- data/spec/integration/util/windows/adsi_spec.rb +7 -2
- data/spec/integration/util/windows/monkey_patches/dir_spec.rb +11 -0
- data/spec/integration/util/windows/process_spec.rb +26 -32
- data/spec/integration/util/windows/registry_spec.rb +7 -7
- data/spec/integration/util/windows/user_spec.rb +47 -5
- data/spec/integration/util_spec.rb +7 -33
- data/spec/lib/puppet_spec/https.rb +6 -0
- data/spec/lib/puppet_spec/matchers.rb +0 -80
- data/spec/lib/puppet_spec/puppetserver.rb +8 -0
- data/spec/shared_contexts/types_setup.rb +2 -0
- data/spec/unit/agent_spec.rb +47 -1
- data/spec/unit/application/agent_spec.rb +7 -8
- data/spec/unit/application/doc_spec.rb +2 -2
- data/spec/unit/application/face_base_spec.rb +6 -4
- data/spec/unit/application/facts_spec.rb +41 -10
- data/spec/unit/application/man_spec.rb +52 -0
- data/spec/unit/application/resource_spec.rb +3 -1
- data/spec/unit/application/ssl_spec.rb +15 -2
- data/spec/unit/application_spec.rb +9 -4
- data/spec/unit/configurer/downloader_spec.rb +10 -0
- data/spec/unit/configurer/fact_handler_spec.rb +4 -4
- data/spec/unit/configurer_spec.rb +86 -37
- data/spec/unit/confine_spec.rb +2 -1
- data/spec/unit/context/trusted_information_spec.rb +25 -2
- data/spec/unit/daemon_spec.rb +5 -64
- data/spec/unit/environments_spec.rb +99 -32
- data/spec/unit/face/config_spec.rb +59 -1
- data/spec/unit/face/module/search_spec.rb +17 -0
- data/spec/unit/face/node_spec.rb +2 -2
- data/spec/unit/file_serving/http_metadata_spec.rb +37 -14
- data/spec/unit/file_serving/mount/locales_spec.rb +2 -2
- data/spec/unit/file_serving/mount/pluginfacts_spec.rb +2 -2
- data/spec/unit/file_serving/mount/plugins_spec.rb +2 -2
- data/spec/unit/file_serving/terminus_selector_spec.rb +45 -26
- data/spec/unit/file_system/uniquefile_spec.rb +29 -0
- data/spec/unit/file_system_spec.rb +1 -2
- data/spec/unit/http/client_spec.rb +74 -19
- data/spec/unit/http/external_client_spec.rb +9 -9
- data/spec/unit/http/resolver_spec.rb +24 -5
- data/spec/unit/http/response_spec.rb +6 -0
- data/spec/unit/http/service/ca_spec.rb +2 -3
- data/spec/unit/http/service/compiler_spec.rb +2 -3
- data/spec/unit/http/service/file_server_spec.rb +2 -3
- data/spec/unit/http/service/puppetserver_spec.rb +82 -0
- data/spec/unit/http/service/report_spec.rb +2 -3
- data/spec/unit/http/service_spec.rb +0 -1
- data/spec/unit/http/session_spec.rb +8 -21
- data/spec/unit/indirector/catalog/compiler_spec.rb +1 -0
- data/spec/unit/indirector/catalog/json_spec.rb +1 -1
- data/spec/unit/indirector/catalog/rest_spec.rb +1 -1
- data/spec/unit/indirector/facts/rest_spec.rb +1 -1
- data/spec/unit/indirector/file_metadata/http_spec.rb +194 -0
- data/spec/unit/indirector/file_metadata/rest_spec.rb +15 -14
- data/spec/unit/indirector/json_spec.rb +8 -8
- data/spec/unit/indirector/msgpack_spec.rb +8 -8
- data/spec/unit/indirector/node/rest_spec.rb +1 -1
- data/spec/unit/indirector/request_spec.rb +5 -5
- data/spec/unit/indirector/rest_spec.rb +14 -1
- data/spec/unit/indirector/status/rest_spec.rb +1 -1
- data/spec/unit/indirector/yaml_spec.rb +7 -7
- data/spec/unit/interface_spec.rb +3 -3
- data/spec/unit/module_tool/tar/mini_spec.rb +20 -0
- data/spec/unit/network/format_support_spec.rb +3 -2
- data/spec/unit/network/http/api/indirected_routes_spec.rb +2 -1
- data/spec/unit/network/http/api/master/v3/environments_spec.rb +12 -23
- data/spec/unit/network/http/connection_spec.rb +552 -190
- data/spec/unit/network/http/nocache_pool_spec.rb +22 -0
- data/spec/unit/network/http_pool_spec.rb +63 -57
- data/spec/unit/network/http_spec.rb +1 -1
- data/spec/unit/node/environment_spec.rb +18 -1
- data/spec/unit/parser/ast/block_expression_spec.rb +1 -1
- data/spec/unit/parser/environment_compiler_spec.rb +7 -0
- data/spec/unit/parser/scope_spec.rb +1 -1
- data/spec/unit/pops/evaluator/evaluating_parser_spec.rb +15 -1
- data/spec/unit/pops/loaders/loaders_spec.rb +71 -1
- data/spec/unit/pops/lookup/lookup_spec.rb +25 -0
- data/spec/unit/pops/types/type_calculator_spec.rb +1 -11
- data/spec/unit/provider/exec_spec.rb +4 -3
- data/spec/unit/provider/package/aix_spec.rb +29 -0
- data/spec/unit/provider/package/apt_spec.rb +77 -0
- data/spec/unit/provider/package/aptitude_spec.rb +1 -0
- data/spec/unit/provider/package/dnfmodule_spec.rb +25 -5
- data/spec/unit/provider/package/dpkg_spec.rb +22 -7
- data/spec/unit/provider/package/openbsd_spec.rb +2 -0
- data/spec/unit/provider/package/pip2_spec.rb +36 -0
- data/spec/unit/provider/package/pip_spec.rb +42 -16
- data/spec/unit/provider/package/portage_spec.rb +5 -0
- data/spec/unit/provider/package/puppet_gem_spec.rb +4 -1
- data/spec/unit/provider/package/puppetserver_gem_spec.rb +137 -0
- data/spec/unit/provider/package/yum_spec.rb +47 -8
- data/spec/unit/provider/package/zypper_spec.rb +98 -0
- data/spec/unit/provider/service/base_spec.rb +2 -4
- data/spec/unit/provider/service/bsd_spec.rb +5 -1
- data/spec/unit/provider/service/daemontools_spec.rb +1 -1
- data/spec/unit/provider/service/debian_spec.rb +3 -5
- data/spec/unit/provider/service/freebsd_spec.rb +1 -1
- data/spec/unit/provider/service/gentoo_spec.rb +4 -5
- data/spec/unit/provider/service/init_spec.rb +46 -5
- data/spec/unit/provider/service/launchd_spec.rb +5 -6
- data/spec/unit/provider/service/openbsd_spec.rb +9 -0
- data/spec/unit/provider/service/openrc_spec.rb +4 -5
- data/spec/unit/provider/service/openwrt_spec.rb +2 -1
- data/spec/unit/provider/service/redhat_spec.rb +10 -1
- data/spec/unit/provider/service/runit_spec.rb +2 -1
- data/spec/unit/provider/service/smf_spec.rb +1 -1
- data/spec/unit/provider/service/src_spec.rb +3 -5
- data/spec/unit/provider/service/systemd_spec.rb +87 -19
- data/spec/unit/provider/service/upstart_spec.rb +4 -5
- data/spec/unit/provider/service/windows_spec.rb +50 -14
- data/spec/unit/provider/user/openbsd_spec.rb +1 -0
- data/spec/unit/provider/user/useradd_spec.rb +30 -16
- data/spec/unit/provider/user/windows_adsi_spec.rb +82 -0
- data/spec/unit/puppet_pal_2pec.rb +40 -0
- data/spec/unit/puppet_pal_catalog_spec.rb +43 -0
- data/spec/unit/puppet_spec.rb +33 -0
- data/spec/unit/reports/http_spec.rb +1 -1
- data/spec/unit/reports/store_spec.rb +17 -13
- data/spec/unit/resource_spec.rb +3 -3
- data/spec/unit/rest/route_spec.rb +4 -4
- data/spec/unit/settings_spec.rb +182 -22
- data/spec/unit/ssl/ssl_provider_spec.rb +69 -43
- data/spec/unit/ssl/state_machine_spec.rb +52 -8
- data/spec/unit/test/test_helper_spec.rb +17 -0
- data/spec/unit/transaction/persistence_spec.rb +15 -0
- data/spec/unit/transaction/report_spec.rb +3 -1
- data/spec/unit/type/file/source_spec.rb +4 -4
- data/spec/unit/type/file_spec.rb +122 -96
- data/spec/unit/type/filebucket_spec.rb +1 -1
- data/spec/unit/type/service_spec.rb +218 -8
- data/spec/unit/type/user_spec.rb +32 -3
- data/spec/unit/type_spec.rb +50 -0
- data/spec/unit/util/autoload_spec.rb +2 -1
- data/spec/unit/util/character_encoding_spec.rb +4 -4
- data/spec/unit/util/checksums_spec.rb +16 -0
- data/spec/unit/util/command_line_spec.rb +11 -6
- data/spec/unit/util/log/destinations_spec.rb +1 -29
- data/spec/unit/util/package/version/range_spec.rb +22 -1
- data/spec/unit/util/run_mode_spec.rb +6 -6
- data/spec/unit/util/windows/api_types_spec.rb +104 -40
- data/spec/unit/util/windows/service_spec.rb +4 -4
- data/spec/unit/util_spec.rb +3 -3
- data/spec/unit/x509/cert_provider_spec.rb +1 -1
- data/tasks/manpages.rake +5 -35
- metadata +43 -49
- data/spec/integration/faces/config_spec.rb +0 -91
- data/spec/integration/faces/documentation_spec.rb +0 -57
- data/spec/integration/file_bucket/file_spec.rb +0 -50
- data/spec/integration/file_serving/content_spec.rb +0 -7
- data/spec/integration/file_serving/fileset_spec.rb +0 -12
- data/spec/integration/file_serving/metadata_spec.rb +0 -8
- data/spec/integration/file_serving/terminus_helper_spec.rb +0 -20
- data/spec/integration/file_system/uniquefile_spec.rb +0 -26
- data/spec/integration/module_tool/forge_spec.rb +0 -51
- data/spec/integration/module_tool/tar/mini_spec.rb +0 -28
- data/spec/integration/provider/service/init_spec.rb +0 -48
- data/spec/integration/provider/service/systemd_spec.rb +0 -25
- data/spec/integration/provider/service/windows_spec.rb +0 -50
- data/spec/integration/reference/providers_spec.rb +0 -21
- data/spec/integration/reports_spec.rb +0 -13
- data/spec/integration/ssl/certificate_request_spec.rb +0 -44
- data/spec/integration/ssl/host_spec.rb +0 -72
- data/spec/integration/ssl/key_spec.rb +0 -99
- data/spec/integration/test/test_helper_spec.rb +0 -31
- data/spec/shared_behaviours/file_serving_model.rb +0 -51
- data/spec/unit/face/man_spec.rb +0 -25
- data/spec/unit/man_spec.rb +0 -31
data/lib/puppet/version.rb
CHANGED
data/locales/puppet.pot
CHANGED
@@ -6,11 +6,11 @@
|
|
6
6
|
#, fuzzy
|
7
7
|
msgid ""
|
8
8
|
msgstr ""
|
9
|
-
"Project-Id-Version: Puppet automation framework 6.
|
9
|
+
"Project-Id-Version: Puppet automation framework 6.18.0-104-g9f65e07e38\n"
|
10
10
|
"\n"
|
11
11
|
"Report-Msgid-Bugs-To: https://tickets.puppetlabs.com\n"
|
12
|
-
"POT-Creation-Date: 2020-
|
13
|
-
"PO-Revision-Date: 2020-
|
12
|
+
"POT-Creation-Date: 2020-10-13 14:34+0000\n"
|
13
|
+
"PO-Revision-Date: 2020-10-13 14:34+0000\n"
|
14
14
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
15
15
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
16
16
|
"Language: \n"
|
@@ -44,25 +44,25 @@ msgstr ""
|
|
44
44
|
msgid "Please supply a parameter to perform a Hiera lookup"
|
45
45
|
msgstr ""
|
46
46
|
|
47
|
-
#: ../lib/hiera_puppet.rb:75 ../lib/puppet/indirector/hiera.rb:
|
47
|
+
#: ../lib/hiera_puppet.rb:75 ../lib/puppet/indirector/hiera.rb:85
|
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:144
|
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:230
|
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:257
|
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:259
|
66
66
|
msgid "Run `puppet agent -t`"
|
67
67
|
msgstr ""
|
68
68
|
|
@@ -72,27 +72,39 @@ msgid ""
|
|
72
72
|
"Use 'puppet agent --enable' to re-enable."
|
73
73
|
msgstr ""
|
74
74
|
|
75
|
-
#: ../lib/puppet/agent.rb:
|
75
|
+
#: ../lib/puppet/agent.rb:68
|
76
76
|
msgid "Run of %{client_class} already in progress; skipping (%{lockfile_path} exists)"
|
77
77
|
msgstr ""
|
78
78
|
|
79
|
-
#: ../lib/puppet/agent.rb:
|
79
|
+
#: ../lib/puppet/agent.rb:71
|
80
|
+
msgid "Exiting now because the maxwaitforlock timeout has been exceeded."
|
81
|
+
msgstr ""
|
82
|
+
|
83
|
+
#: ../lib/puppet/agent.rb:74
|
84
|
+
msgid "Another puppet instance is already running; --waitforlock flag used, waiting for running instance to finish."
|
85
|
+
msgstr ""
|
86
|
+
|
87
|
+
#: ../lib/puppet/agent.rb:75 ../lib/puppet/ssl/state_machine.rb:279 ../lib/puppet/ssl/state_machine.rb:310
|
88
|
+
msgid "Will try again in %{time} seconds."
|
89
|
+
msgstr ""
|
90
|
+
|
91
|
+
#: ../lib/puppet/agent.rb:80
|
80
92
|
msgid "Execution of %{client_class} did not complete within %{runtimeout} seconds and was terminated."
|
81
93
|
msgstr ""
|
82
94
|
|
83
|
-
#: ../lib/puppet/agent.rb:
|
95
|
+
#: ../lib/puppet/agent.rb:85
|
84
96
|
msgid "Could not run %{client_class}: %{detail}"
|
85
97
|
msgstr ""
|
86
98
|
|
87
|
-
#: ../lib/puppet/agent.rb:
|
99
|
+
#: ../lib/puppet/agent.rb:92
|
88
100
|
msgid "Shutdown/restart in progress (%{status}); skipping run"
|
89
101
|
msgstr ""
|
90
102
|
|
91
|
-
#: ../lib/puppet/agent.rb:
|
103
|
+
#: ../lib/puppet/agent.rb:110
|
92
104
|
msgid "puppet agent: applying configuration"
|
93
105
|
msgstr ""
|
94
106
|
|
95
|
-
#: ../lib/puppet/agent.rb:
|
107
|
+
#: ../lib/puppet/agent.rb:133
|
96
108
|
msgid "Could not create instance of %{client_class}: %{detail}"
|
97
109
|
msgstr ""
|
98
110
|
|
@@ -108,16 +120,6 @@ msgstr ""
|
|
108
120
|
msgid "Failed to acquire lock"
|
109
121
|
msgstr ""
|
110
122
|
|
111
|
-
#. TRANSLATORS 'Puppet::Agent::Locker.running?' is a method name and should not be translated
|
112
|
-
#: ../lib/puppet/agent/locker.rb:33
|
113
|
-
msgid "Puppet::Agent::Locker.running? is deprecated as it is inherently unsafe."
|
114
|
-
msgstr ""
|
115
|
-
|
116
|
-
#. TRANSLATORS 'LockError' should not be translated
|
117
|
-
#: ../lib/puppet/agent/locker.rb:35
|
118
|
-
msgid "The only safe way to know if the lock is locked is to try lock and perform some action and then handle the LockError that may result."
|
119
|
-
msgstr ""
|
120
|
-
|
121
123
|
#: ../lib/puppet/application.rb:238
|
122
124
|
msgid "Unable to find application '%{application_name}'. %{error}"
|
123
125
|
msgstr ""
|
@@ -182,19 +184,19 @@ msgstr ""
|
|
182
184
|
msgid "The puppet agent daemon"
|
183
185
|
msgstr ""
|
184
186
|
|
185
|
-
#: ../lib/puppet/application/agent.rb:
|
187
|
+
#: ../lib/puppet/application/agent.rb:414
|
186
188
|
msgid "Fingerprint asked but neither the certificate, nor the certificate request have been issued"
|
187
189
|
msgstr ""
|
188
190
|
|
189
|
-
#: ../lib/puppet/application/agent.rb:
|
191
|
+
#: ../lib/puppet/application/agent.rb:419
|
190
192
|
msgid "Failed to generate fingerprint: %{message}"
|
191
193
|
msgstr ""
|
192
194
|
|
193
|
-
#: ../lib/puppet/application/agent.rb:
|
195
|
+
#: ../lib/puppet/application/agent.rb:442
|
194
196
|
msgid "Starting Puppet client version %{version}"
|
195
197
|
msgstr ""
|
196
198
|
|
197
|
-
#: ../lib/puppet/application/agent.rb:
|
199
|
+
#: ../lib/puppet/application/agent.rb:458
|
198
200
|
msgid "The puppet agent command does not take parameters"
|
199
201
|
msgstr ""
|
200
202
|
|
@@ -204,7 +206,7 @@ msgstr ""
|
|
204
206
|
|
205
207
|
#. TRANSLATORS "puppet apply" is a program command and should not be translated
|
206
208
|
#. TRANSLATORS "puppet apply" is a program command and should not be translated
|
207
|
-
#: ../lib/puppet/application/apply.rb:207 ../lib/puppet/application/apply.rb:
|
209
|
+
#: ../lib/puppet/application/apply.rb:207 ../lib/puppet/application/apply.rb:320
|
208
210
|
msgid "For puppet apply"
|
209
211
|
msgstr ""
|
210
212
|
|
@@ -212,27 +214,27 @@ msgstr ""
|
|
212
214
|
msgid "%{file} is not readable"
|
213
215
|
msgstr ""
|
214
216
|
|
215
|
-
#: ../lib/puppet/application/apply.rb:
|
217
|
+
#: ../lib/puppet/application/apply.rb:286 ../lib/puppet/application/script.rb:239
|
216
218
|
msgid "Exiting"
|
217
219
|
msgstr ""
|
218
220
|
|
219
|
-
#: ../lib/puppet/application/apply.rb:
|
221
|
+
#: ../lib/puppet/application/apply.rb:330
|
220
222
|
msgid "Could not deserialize catalog from %{format}: %{detail}"
|
221
223
|
msgstr ""
|
222
224
|
|
223
|
-
#: ../lib/puppet/application/apply.rb:
|
225
|
+
#: ../lib/puppet/application/apply.rb:351 ../lib/puppet/application/script.rb:144
|
224
226
|
msgid "Could not find facts for %{node}"
|
225
227
|
msgstr ""
|
226
228
|
|
227
|
-
#: ../lib/puppet/application/apply.rb:
|
229
|
+
#: ../lib/puppet/application/apply.rb:363 ../lib/puppet/application/script.rb:152
|
228
230
|
msgid "Could not find node %{node}"
|
229
231
|
msgstr ""
|
230
232
|
|
231
|
-
#: ../lib/puppet/application/apply.rb:
|
233
|
+
#: ../lib/puppet/application/apply.rb:376 ../lib/puppet/application/script.rb:137
|
232
234
|
msgid "Could not find file %{manifest}"
|
233
235
|
msgstr ""
|
234
236
|
|
235
|
-
#: ../lib/puppet/application/apply.rb:
|
237
|
+
#: ../lib/puppet/application/apply.rb:377
|
236
238
|
msgid "Only one file can be applied per run. Skipping %{files}"
|
237
239
|
msgstr ""
|
238
240
|
|
@@ -388,31 +390,31 @@ msgid ""
|
|
388
390
|
"%{run_help}"
|
389
391
|
msgstr ""
|
390
392
|
|
391
|
-
#: ../lib/puppet/application/lookup.rb:
|
393
|
+
#: ../lib/puppet/application/lookup.rb:105
|
392
394
|
msgid "Interactive Hiera lookup"
|
393
395
|
msgstr ""
|
394
396
|
|
395
|
-
#: ../lib/puppet/application/lookup.rb:
|
397
|
+
#: ../lib/puppet/application/lookup.rb:272
|
396
398
|
msgid ""
|
397
399
|
"The options %{deep_merge_opts} are only available with '--merge deep'\n"
|
398
400
|
"%{run_help}"
|
399
401
|
msgstr ""
|
400
402
|
|
401
|
-
#: ../lib/puppet/application/lookup.rb:
|
403
|
+
#: ../lib/puppet/application/lookup.rb:283
|
402
404
|
msgid ""
|
403
405
|
"The --merge option only accepts %{strategies}, or %{last_strategy}\n"
|
404
406
|
"%{run_help}"
|
405
407
|
msgstr ""
|
406
408
|
|
407
|
-
#: ../lib/puppet/application/lookup.rb:
|
409
|
+
#: ../lib/puppet/application/lookup.rb:308
|
408
410
|
msgid "No keys were given to lookup."
|
409
411
|
msgstr ""
|
410
412
|
|
411
|
-
#: ../lib/puppet/application/lookup.rb:
|
413
|
+
#: ../lib/puppet/application/lookup.rb:316
|
412
414
|
msgid "Unknown rendering format '%{format}'"
|
413
415
|
msgstr ""
|
414
416
|
|
415
|
-
#: ../lib/puppet/application/lookup.rb:
|
417
|
+
#: ../lib/puppet/application/lookup.rb:366 ../lib/puppet/face/epp.rb:520
|
416
418
|
msgid "Incorrect formatted data in %{fact_file} given via the --facts flag"
|
417
419
|
msgstr ""
|
418
420
|
|
@@ -524,101 +526,105 @@ msgstr ""
|
|
524
526
|
msgid "Cannot remove %{file}: %{detail}"
|
525
527
|
msgstr ""
|
526
528
|
|
527
|
-
#: ../lib/puppet/configurer.rb:
|
529
|
+
#: ../lib/puppet/configurer.rb:80
|
528
530
|
msgid "Using cached catalog from environment '%{environment}'"
|
529
531
|
msgstr ""
|
530
532
|
|
531
|
-
#: ../lib/puppet/configurer.rb:
|
533
|
+
#: ../lib/puppet/configurer.rb:86
|
532
534
|
msgid "Not using cache on failed catalog"
|
533
535
|
msgstr ""
|
534
536
|
|
535
|
-
#: ../lib/puppet/configurer.rb:
|
537
|
+
#: ../lib/puppet/configurer.rb:95
|
536
538
|
msgid "Not using cached catalog because its environment '%{catalog_env}' does not match '%{local_env}'"
|
537
539
|
msgstr ""
|
538
540
|
|
539
|
-
#: ../lib/puppet/configurer.rb:
|
541
|
+
#: ../lib/puppet/configurer.rb:100 ../lib/puppet/configurer.rb:182
|
540
542
|
msgid "Using cached catalog from environment '%{catalog_env}'"
|
541
543
|
msgstr ""
|
542
544
|
|
543
|
-
#: ../lib/puppet/configurer.rb:
|
545
|
+
#: ../lib/puppet/configurer.rb:175
|
544
546
|
msgid "Could not retrieve catalog; skipping run"
|
545
547
|
msgstr ""
|
546
548
|
|
547
|
-
#: ../lib/puppet/configurer.rb:
|
549
|
+
#: ../lib/puppet/configurer.rb:191
|
548
550
|
msgid "Applied catalog in %{seconds} seconds"
|
549
551
|
msgstr ""
|
550
552
|
|
551
|
-
#: ../lib/puppet/configurer.rb:
|
552
|
-
msgid "Could not select a functional puppet
|
553
|
+
#: ../lib/puppet/configurer.rb:228
|
554
|
+
msgid "Could not select a functional puppet server from server_list: '%{server_list}'"
|
553
555
|
msgstr ""
|
554
556
|
|
555
|
-
|
557
|
+
#. TRANSLATORS 'server_list' is the name of a setting and should not be translated
|
558
|
+
#: ../lib/puppet/configurer.rb:231
|
559
|
+
msgid "Selected puppet server from the `server_list` setting: %{server}:%{port}"
|
560
|
+
msgstr ""
|
561
|
+
|
562
|
+
#: ../lib/puppet/configurer.rb:280
|
556
563
|
msgid "Local environment: '%{local_env}' doesn't match the environment of the cached catalog '%{catalog_env}', switching agent to '%{catalog_env}'."
|
557
564
|
msgstr ""
|
558
565
|
|
559
|
-
#: ../lib/puppet/configurer.rb:
|
566
|
+
#: ../lib/puppet/configurer.rb:325
|
560
567
|
msgid "Local environment: '%{local_env}' doesn't match server specified node environment '%{node_env}', switching agent to '%{node_env}'."
|
561
568
|
msgstr ""
|
562
569
|
|
563
|
-
#: ../lib/puppet/configurer.rb:
|
570
|
+
#: ../lib/puppet/configurer.rb:340
|
564
571
|
msgid "Using configured environment '%{env}'"
|
565
572
|
msgstr ""
|
566
573
|
|
567
|
-
#: ../lib/puppet/configurer.rb:
|
574
|
+
#: ../lib/puppet/configurer.rb:344
|
568
575
|
msgid "Unable to fetch my node definition, but the agent run will continue:"
|
569
576
|
msgstr ""
|
570
577
|
|
571
|
-
#: ../lib/puppet/configurer.rb:
|
578
|
+
#: ../lib/puppet/configurer.rb:372
|
572
579
|
msgid "Not using catalog because its environment '%{catalog_env}' does not match agent specified environment '%{local_env}' and strict_environment_mode is set"
|
573
580
|
msgstr ""
|
574
581
|
|
575
|
-
#: ../lib/puppet/configurer.rb:
|
582
|
+
#: ../lib/puppet/configurer.rb:383
|
576
583
|
msgid "Catalog environment didn't stabilize after %{tries} fetches, aborting run"
|
577
584
|
msgstr ""
|
578
585
|
|
579
|
-
#: ../lib/puppet/configurer.rb:
|
586
|
+
#: ../lib/puppet/configurer.rb:385
|
580
587
|
msgid "Local environment: '%{local_env}' doesn't match server specified environment '%{catalog_env}', restarting agent run with environment '%{catalog_env}'"
|
581
588
|
msgstr ""
|
582
589
|
|
583
|
-
#: ../lib/puppet/configurer.rb:
|
590
|
+
#: ../lib/puppet/configurer.rb:426
|
584
591
|
msgid "Failed to apply catalog: %{detail}"
|
585
592
|
msgstr ""
|
586
593
|
|
587
|
-
#: ../lib/puppet/configurer.rb:
|
594
|
+
#: ../lib/puppet/configurer.rb:455 ../lib/puppet/http/resolver/server_list.rb:67
|
588
595
|
msgid "Puppet server %{host}:%{port} is unavailable: %{code} %{reason}"
|
589
596
|
msgstr ""
|
590
597
|
|
591
598
|
#. TRANSLATORS 'server_list' is the name of a setting and should not be translated
|
592
|
-
|
593
|
-
#: ../lib/puppet/configurer.rb:427 ../lib/puppet/http/resolver/server_list.rb:95
|
599
|
+
#: ../lib/puppet/configurer.rb:459 ../lib/puppet/http/resolver/server_list.rb:70
|
594
600
|
msgid "Unable to connect to server from server_list setting: %{detail}"
|
595
601
|
msgstr ""
|
596
602
|
|
597
|
-
#: ../lib/puppet/configurer.rb:
|
603
|
+
#: ../lib/puppet/configurer.rb:470 ../lib/puppet/face/report.rb:47
|
598
604
|
msgid "Could not send report: %{detail}"
|
599
605
|
msgstr ""
|
600
606
|
|
601
|
-
#: ../lib/puppet/configurer.rb:
|
607
|
+
#: ../lib/puppet/configurer.rb:479
|
602
608
|
msgid "Could not save last run local report: %{detail}"
|
603
609
|
msgstr ""
|
604
610
|
|
605
|
-
#: ../lib/puppet/configurer.rb:
|
611
|
+
#: ../lib/puppet/configurer.rb:498
|
606
612
|
msgid "Uploading facts for %{node} to %{server}"
|
607
613
|
msgstr ""
|
608
614
|
|
609
|
-
#: ../lib/puppet/configurer.rb:
|
615
|
+
#: ../lib/puppet/configurer.rb:506
|
610
616
|
msgid "Failed to submit facts: %{detail}"
|
611
617
|
msgstr ""
|
612
618
|
|
613
|
-
#: ../lib/puppet/configurer.rb:
|
619
|
+
#: ../lib/puppet/configurer.rb:521
|
614
620
|
msgid "Could not run command from %{setting}: %{detail}"
|
615
621
|
msgstr ""
|
616
622
|
|
617
|
-
#: ../lib/puppet/configurer.rb:
|
623
|
+
#: ../lib/puppet/configurer.rb:539
|
618
624
|
msgid "Could not retrieve catalog from cache: %{detail}"
|
619
625
|
msgstr ""
|
620
626
|
|
621
|
-
#: ../lib/puppet/configurer.rb:
|
627
|
+
#: ../lib/puppet/configurer.rb:560
|
622
628
|
msgid "Could not retrieve catalog from remote server: %{detail}"
|
623
629
|
msgstr ""
|
624
630
|
|
@@ -626,7 +632,11 @@ msgstr ""
|
|
626
632
|
msgid "Retrieving %{name}"
|
627
633
|
msgstr ""
|
628
634
|
|
629
|
-
#: ../lib/puppet/configurer/downloader.rb:
|
635
|
+
#: ../lib/puppet/configurer/downloader.rb:21
|
636
|
+
msgid "Failed to retrieve %{name}: %{detail}"
|
637
|
+
msgstr ""
|
638
|
+
|
639
|
+
#: ../lib/puppet/configurer/downloader.rb:32
|
630
640
|
msgid "Could not retrieve %{name}: %{detail}"
|
631
641
|
msgstr ""
|
632
642
|
|
@@ -650,20 +660,20 @@ msgstr ""
|
|
650
660
|
msgid "Attempted to pop, but already at root of the context stack."
|
651
661
|
msgstr ""
|
652
662
|
|
653
|
-
#: ../lib/puppet/context/trusted_information.rb:
|
663
|
+
#: ../lib/puppet/context/trusted_information.rb:53
|
654
664
|
msgid "TrustedInformation expected a certificate, but none was given."
|
655
665
|
msgstr ""
|
656
666
|
|
657
|
-
#: ../lib/puppet/context/trusted_information.rb:
|
667
|
+
#: ../lib/puppet/context/trusted_information.rb:104 ../lib/puppet/parser/scope.rb:835
|
658
668
|
msgid "Unsupported data type: '%{klass}'"
|
659
669
|
msgstr ""
|
660
670
|
|
661
|
-
#: ../lib/puppet/daemon.rb:
|
662
|
-
msgid "
|
671
|
+
#: ../lib/puppet/daemon.rb:26
|
672
|
+
msgid "Daemons must have an agent"
|
663
673
|
msgstr ""
|
664
674
|
|
665
|
-
#: ../lib/puppet/daemon.rb:
|
666
|
-
msgid "
|
675
|
+
#: ../lib/puppet/daemon.rb:81
|
676
|
+
msgid "Cannot reexec unless ARGV arguments are set"
|
667
677
|
msgstr ""
|
668
678
|
|
669
679
|
#: ../lib/puppet/datatypes.rb:133
|
@@ -691,32 +701,37 @@ msgid "Valid values are '%{values}'."
|
|
691
701
|
msgstr ""
|
692
702
|
|
693
703
|
#. TRANSLATORS 'data_binding_terminus' is a setting and should not be translated
|
694
|
-
#: ../lib/puppet/defaults.rb:
|
704
|
+
#: ../lib/puppet/defaults.rb:546
|
695
705
|
msgid "Setting 'data_binding_terminus' is deprecated."
|
696
706
|
msgstr ""
|
697
707
|
|
698
708
|
#. TRANSLATORS 'hiera' should not be translated
|
699
|
-
#: ../lib/puppet/defaults.rb:
|
709
|
+
#: ../lib/puppet/defaults.rb:548
|
700
710
|
msgid "Convert custom terminus to hiera 5 API."
|
701
711
|
msgstr ""
|
702
712
|
|
703
713
|
#. TRANSLATORS 'environment_data_provider' is a setting and should not be translated
|
704
|
-
#: ../lib/puppet/defaults.rb:
|
714
|
+
#: ../lib/puppet/defaults.rb:771
|
705
715
|
msgid "Setting 'environment_data_provider' is deprecated."
|
706
716
|
msgstr ""
|
707
717
|
|
708
|
-
#: ../lib/puppet/defaults.rb:
|
718
|
+
#: ../lib/puppet/defaults.rb:854
|
709
719
|
msgid "Certificate names must be lower case"
|
710
720
|
msgstr ""
|
711
721
|
|
712
|
-
#: ../lib/puppet/defaults.rb:
|
722
|
+
#: ../lib/puppet/defaults.rb:1048
|
713
723
|
msgid "Setting 'ssl_client_ca_auth' is deprecated."
|
714
724
|
msgstr ""
|
715
725
|
|
716
|
-
#: ../lib/puppet/defaults.rb:
|
726
|
+
#: ../lib/puppet/defaults.rb:1127 ../lib/puppet/settings/enum_setting.rb:13 ../lib/puppet/settings/symbolic_enum_setting.rb:14
|
717
727
|
msgid "Invalid value '%{value}' for parameter %{name}. Allowed values are '%{allowed_values}'"
|
718
728
|
msgstr ""
|
719
729
|
|
730
|
+
#. TRANSLATORS 'pluginsync' is a setting and should not be translated
|
731
|
+
#: ../lib/puppet/defaults.rb:2005
|
732
|
+
msgid "Setting 'pluginsync' is deprecated."
|
733
|
+
msgstr ""
|
734
|
+
|
720
735
|
#: ../lib/puppet/error.rb:77
|
721
736
|
msgid "Could not parse for environment %{environment}: %{message}"
|
722
737
|
msgstr ""
|
@@ -815,7 +830,7 @@ msgstr ""
|
|
815
830
|
|
816
831
|
#: ../lib/puppet/face/config.rb:146
|
817
832
|
msgid ""
|
818
|
-
"The environment should be set in either the `[user]`, `[agent]`, or `[
|
833
|
+
"The environment should be set in either the `[user]`, `[agent]`, or `[server]`\n"
|
819
834
|
"section. Variables set in the `[agent]` section are used when running\n"
|
820
835
|
"`puppet agent`. Variables set in the `[user]` section are used when running\n"
|
821
836
|
"various other puppet subcommands, like `puppet apply` and `puppet module`; these\n"
|
@@ -825,25 +840,28 @@ msgid ""
|
|
825
840
|
"https://puppet.com/docs/puppet/latest/configuration.html#environment\n"
|
826
841
|
msgstr ""
|
827
842
|
|
828
|
-
#: ../lib/puppet/face/config.rb:
|
843
|
+
#: ../lib/puppet/face/config.rb:176
|
844
|
+
msgid "Deleted setting from '%{section_name}': '%{setting_string}', and adding it to 'server' section"
|
845
|
+
msgstr ""
|
846
|
+
|
847
|
+
#: ../lib/puppet/face/config.rb:191
|
829
848
|
msgid "Delete a Puppet setting."
|
830
849
|
msgstr ""
|
831
850
|
|
832
|
-
#: ../lib/puppet/face/config.rb:
|
851
|
+
#: ../lib/puppet/face/config.rb:192
|
833
852
|
msgid "<setting>"
|
834
853
|
msgstr ""
|
835
854
|
|
836
|
-
|
837
|
-
#: ../lib/puppet/face/config.rb:212
|
855
|
+
#: ../lib/puppet/face/config.rb:226 ../lib/puppet/face/config.rb:230 ../lib/puppet/face/config.rb:241
|
838
856
|
msgid "Deleted setting from '%{section_name}': '%{setting_string}'"
|
839
857
|
msgstr ""
|
840
858
|
|
841
|
-
#: ../lib/puppet/face/config.rb:
|
859
|
+
#: ../lib/puppet/face/config.rb:244
|
842
860
|
msgid "No setting found in configuration file for section '%{section_name}' setting name '%{name}'"
|
843
861
|
msgstr ""
|
844
862
|
|
845
863
|
#. TRANSLATORS the 'puppet.conf' is a specific file and should not be translated
|
846
|
-
#: ../lib/puppet/face/config.rb:
|
864
|
+
#: ../lib/puppet/face/config.rb:252
|
847
865
|
msgid "The puppet.conf file does not exist %{puppet_conf}"
|
848
866
|
msgstr ""
|
849
867
|
|
@@ -1072,49 +1090,53 @@ msgstr ""
|
|
1072
1090
|
msgid "The version of the subcommand for which to show help."
|
1073
1091
|
msgstr ""
|
1074
1092
|
|
1093
|
+
#: ../lib/puppet/face/help.rb:28
|
1094
|
+
msgid "Whether to render the help text in ronn format."
|
1095
|
+
msgstr ""
|
1096
|
+
|
1075
1097
|
#. TRANSLATORS 'puppet help' is a command line and should not be translated
|
1076
|
-
#: ../lib/puppet/face/help.rb:
|
1098
|
+
#: ../lib/puppet/face/help.rb:44
|
1077
1099
|
msgid "The 'puppet help' command takes two (optional) arguments: a subcommand and an action"
|
1078
1100
|
msgstr ""
|
1079
1101
|
|
1080
1102
|
#. TRANSLATORS '--version' is a command line option and should not be translated
|
1081
|
-
#: ../lib/puppet/face/help.rb:
|
1103
|
+
#: ../lib/puppet/face/help.rb:54
|
1082
1104
|
msgid "Supplying a '--version' only makes sense when a Faces subcommand is given"
|
1083
1105
|
msgstr ""
|
1084
1106
|
|
1085
|
-
#: ../lib/puppet/face/help.rb:
|
1107
|
+
#: ../lib/puppet/face/help.rb:62
|
1086
1108
|
msgid "The legacy subcommand '%{sub_command}' does not support supplying an action"
|
1087
1109
|
msgstr ""
|
1088
1110
|
|
1089
|
-
#: ../lib/puppet/face/help.rb:
|
1111
|
+
#: ../lib/puppet/face/help.rb:102
|
1090
1112
|
msgid "Could not load help for the application %{application_name}."
|
1091
1113
|
msgstr ""
|
1092
1114
|
|
1093
|
-
#: ../lib/puppet/face/help.rb:
|
1115
|
+
#: ../lib/puppet/face/help.rb:103 ../lib/puppet/face/help.rb:115
|
1094
1116
|
msgid "Please check the error logs for more information."
|
1095
1117
|
msgstr ""
|
1096
1118
|
|
1097
|
-
#: ../lib/puppet/face/help.rb:
|
1119
|
+
#: ../lib/puppet/face/help.rb:105 ../lib/puppet/face/help.rb:117
|
1098
1120
|
msgid "Detail: \"%{detail}\""
|
1099
1121
|
msgstr ""
|
1100
1122
|
|
1101
|
-
#: ../lib/puppet/face/help.rb:
|
1123
|
+
#: ../lib/puppet/face/help.rb:114
|
1102
1124
|
msgid "Could not load help for the face %{face_name}."
|
1103
1125
|
msgstr ""
|
1104
1126
|
|
1105
|
-
#: ../lib/puppet/face/help.rb:
|
1127
|
+
#: ../lib/puppet/face/help.rb:126
|
1106
1128
|
msgid "Unable to load action %{actionname} from %{face}"
|
1107
1129
|
msgstr ""
|
1108
1130
|
|
1109
|
-
#: ../lib/puppet/face/help.rb:
|
1131
|
+
#: ../lib/puppet/face/help.rb:170
|
1110
1132
|
msgid "(Deprecated)"
|
1111
1133
|
msgstr ""
|
1112
1134
|
|
1113
|
-
#: ../lib/puppet/face/help.rb:
|
1135
|
+
#: ../lib/puppet/face/help.rb:173 ../lib/puppet/face/help.rb:185
|
1114
1136
|
msgid "!%{sub_command}! Subcommand unavailable due to error."
|
1115
1137
|
msgstr ""
|
1116
1138
|
|
1117
|
-
#: ../lib/puppet/face/help.rb:
|
1139
|
+
#: ../lib/puppet/face/help.rb:174 ../lib/puppet/face/help.rb:186
|
1118
1140
|
msgid "Check error logs."
|
1119
1141
|
msgstr ""
|
1120
1142
|
|
@@ -1271,15 +1293,19 @@ msgstr ""
|
|
1271
1293
|
msgid "Search the Puppet Forge for a module."
|
1272
1294
|
msgstr ""
|
1273
1295
|
|
1274
|
-
#: ../lib/puppet/face/module/search.rb:
|
1296
|
+
#: ../lib/puppet/face/module/search.rb:14
|
1275
1297
|
msgid "Array of module metadata hashes"
|
1276
1298
|
msgstr ""
|
1277
1299
|
|
1278
|
-
#: ../lib/puppet/face/module/search.rb:
|
1300
|
+
#: ../lib/puppet/face/module/search.rb:24
|
1279
1301
|
msgid "<search_term>"
|
1280
1302
|
msgstr ""
|
1281
1303
|
|
1282
|
-
#: ../lib/puppet/face/module/search.rb:
|
1304
|
+
#: ../lib/puppet/face/module/search.rb:27
|
1305
|
+
msgid "This action has been deprecated. Please use the Puppet Forge to search for modules."
|
1306
|
+
msgstr ""
|
1307
|
+
|
1308
|
+
#: ../lib/puppet/face/module/search.rb:37
|
1283
1309
|
msgid "No results found for '%{term}'."
|
1284
1310
|
msgstr ""
|
1285
1311
|
|
@@ -1742,7 +1768,7 @@ msgstr ""
|
|
1742
1768
|
msgid "No task specified"
|
1743
1769
|
msgstr ""
|
1744
1770
|
|
1745
|
-
#: ../lib/puppet/file_serving/terminus_selector.rb:
|
1771
|
+
#: ../lib/puppet/file_serving/terminus_selector.rb:28
|
1746
1772
|
msgid "URI protocol '%{protocol}' is not currently supported for file serving"
|
1747
1773
|
msgstr ""
|
1748
1774
|
|
@@ -1762,7 +1788,7 @@ msgstr ""
|
|
1762
1788
|
msgid "Timeout waiting for exclusive lock on %{path}"
|
1763
1789
|
msgstr ""
|
1764
1790
|
|
1765
|
-
#: ../lib/puppet/file_system/jruby.rb:18 ../lib/puppet/file_system/windows.rb:127 ../lib/puppet/util.rb:
|
1791
|
+
#: ../lib/puppet/file_system/jruby.rb:18 ../lib/puppet/file_system/windows.rb:127 ../lib/puppet/util.rb:706
|
1766
1792
|
msgid "Is a directory: %{directory}"
|
1767
1793
|
msgstr ""
|
1768
1794
|
|
@@ -1798,7 +1824,7 @@ msgstr ""
|
|
1798
1824
|
msgid "unexpected prefix_suffix: %{value}"
|
1799
1825
|
msgstr ""
|
1800
1826
|
|
1801
|
-
#: ../lib/puppet/file_system/uniquefile.rb:
|
1827
|
+
#: ../lib/puppet/file_system/uniquefile.rb:136
|
1802
1828
|
msgid "cannot generate temporary name using `%{basename}' under `%{tmpdir}'"
|
1803
1829
|
msgstr ""
|
1804
1830
|
|
@@ -2226,11 +2252,11 @@ msgstr ""
|
|
2226
2252
|
msgid "Request to %{uri} failed after %{elapsed} seconds: %{message}"
|
2227
2253
|
msgstr ""
|
2228
2254
|
|
2229
|
-
#: ../lib/puppet/http/client.rb:
|
2255
|
+
#: ../lib/puppet/http/client.rb:326
|
2230
2256
|
msgid "Sleeping for %{interval} seconds before retrying the request"
|
2231
2257
|
msgstr ""
|
2232
2258
|
|
2233
|
-
#: ../lib/puppet/http/client.rb:
|
2259
|
+
#: ../lib/puppet/http/client.rb:369 ../lib/puppet/indirector/request.rb:142
|
2234
2260
|
msgid "HTTP REST queries cannot handle values of type '%{klass}'"
|
2235
2261
|
msgstr ""
|
2236
2262
|
|
@@ -2242,11 +2268,11 @@ msgstr ""
|
|
2242
2268
|
msgid "Too many HTTP retries for %{addr}"
|
2243
2269
|
msgstr ""
|
2244
2270
|
|
2245
|
-
#: ../lib/puppet/http/redirector.rb:
|
2271
|
+
#: ../lib/puppet/http/redirector.rb:78
|
2246
2272
|
msgid "Location response header is missing"
|
2247
2273
|
msgstr ""
|
2248
2274
|
|
2249
|
-
#: ../lib/puppet/http/redirector.rb:
|
2275
|
+
#: ../lib/puppet/http/redirector.rb:82
|
2250
2276
|
msgid "Location URI is invalid: %{detail}"
|
2251
2277
|
msgstr ""
|
2252
2278
|
|
@@ -2254,20 +2280,20 @@ msgstr ""
|
|
2254
2280
|
msgid "Failed to parse Retry-After header '%{retry_after}' as an integer or RFC 2822 date"
|
2255
2281
|
msgstr ""
|
2256
2282
|
|
2257
|
-
#: ../lib/puppet/http/service.rb:
|
2283
|
+
#: ../lib/puppet/http/service.rb:121
|
2258
2284
|
msgid "Ignoring extra header \"%{name}\" as it was previously set."
|
2259
2285
|
msgstr ""
|
2260
2286
|
|
2261
|
-
#: ../lib/puppet/http/service.rb:
|
2287
|
+
#: ../lib/puppet/http/service.rb:124
|
2262
2288
|
msgid "Ignoring extra header \"%{name}\" as it has no value."
|
2263
2289
|
msgstr ""
|
2264
2290
|
|
2265
|
-
#: ../lib/puppet/http/service.rb:
|
2291
|
+
#: ../lib/puppet/http/service.rb:147 ../lib/puppet/indirector/rest.rb:288
|
2266
2292
|
msgid "No content type in http response; cannot parse"
|
2267
2293
|
msgstr ""
|
2268
2294
|
|
2269
2295
|
#. TRANSLATORS "pson", "preferred_serialization_format", and "puppetserver" should not be translated
|
2270
|
-
#: ../lib/puppet/http/service/report.rb:
|
2296
|
+
#: ../lib/puppet/http/service/report.rb:61
|
2271
2297
|
msgid "To submit reports to a server running puppetserver %{server_version}, set preferred_serialization_format to pson"
|
2272
2298
|
msgstr ""
|
2273
2299
|
|
@@ -2416,7 +2442,7 @@ msgstr ""
|
|
2416
2442
|
msgid "Unable to serialize catalog to json, retrying with pson"
|
2417
2443
|
msgstr ""
|
2418
2444
|
|
2419
|
-
#: ../lib/puppet/indirector/catalog/rest.rb:34 ../lib/puppet/indirector/facts/rest.rb:22 ../lib/puppet/indirector/file_content/rest.rb:33 ../lib/puppet/indirector/file_metadata/rest.rb:30 ../lib/puppet/indirector/node/rest.rb:25 ../lib/puppet/indirector/rest.rb:
|
2445
|
+
#: ../lib/puppet/indirector/catalog/rest.rb:34 ../lib/puppet/indirector/facts/rest.rb:22 ../lib/puppet/indirector/file_content/rest.rb:33 ../lib/puppet/indirector/file_metadata/rest.rb:30 ../lib/puppet/indirector/node/rest.rb:25 ../lib/puppet/indirector/rest.rb:146 ../lib/puppet/indirector/status/rest.rb:21
|
2420
2446
|
msgid "Find %{uri} resulted in 404 with the message: %{body}"
|
2421
2447
|
msgstr ""
|
2422
2448
|
|
@@ -2520,7 +2546,7 @@ msgstr ""
|
|
2520
2546
|
msgid "You cannot save facts to the code store; it is only used for getting facts from a remote device"
|
2521
2547
|
msgstr ""
|
2522
2548
|
|
2523
|
-
#: ../lib/puppet/indirector/facts/rest.rb:30 ../lib/puppet/indirector/rest.rb:
|
2549
|
+
#: ../lib/puppet/indirector/facts/rest.rb:30 ../lib/puppet/indirector/rest.rb:198
|
2524
2550
|
msgid "PUT does not accept options"
|
2525
2551
|
msgstr ""
|
2526
2552
|
|
@@ -2571,7 +2597,11 @@ msgstr ""
|
|
2571
2597
|
msgid "Invalid checksum %{checksum}"
|
2572
2598
|
msgstr ""
|
2573
2599
|
|
2574
|
-
#: ../lib/puppet/indirector/
|
2600
|
+
#: ../lib/puppet/indirector/file_content/http.rb:14
|
2601
|
+
msgid "Puppet::Indirector::FileContent::Http is deprecated. Use Puppet::HTTP::Client instead."
|
2602
|
+
msgstr ""
|
2603
|
+
|
2604
|
+
#: ../lib/puppet/indirector/file_metadata/http.rb:32
|
2575
2605
|
msgid "cannot lookup multiple files"
|
2576
2606
|
msgstr ""
|
2577
2607
|
|
@@ -2584,12 +2614,12 @@ msgid "Could not find filesystem info for file '%{request}' in environment %{env
|
|
2584
2614
|
msgstr ""
|
2585
2615
|
|
2586
2616
|
#. TRANSLATORS "Hiera" is the name of a code library and should not be translated
|
2587
|
-
#: ../lib/puppet/indirector/hiera.rb:
|
2617
|
+
#: ../lib/puppet/indirector/hiera.rb:12
|
2588
2618
|
msgid "Hiera terminus not supported without hiera library"
|
2589
2619
|
msgstr ""
|
2590
2620
|
|
2591
2621
|
#. TRANSLATORS "merge" is a parameter name and should not be translated
|
2592
|
-
#: ../lib/puppet/indirector/hiera.rb:
|
2622
|
+
#: ../lib/puppet/indirector/hiera.rb:72
|
2593
2623
|
msgid "Unrecognized value for request 'merge' parameter: '%{merge}'"
|
2594
2624
|
msgstr ""
|
2595
2625
|
|
@@ -2782,9 +2812,9 @@ msgstr ""
|
|
2782
2812
|
msgid "Selected port from the first entry of the `server_list` setting: %{port}"
|
2783
2813
|
msgstr ""
|
2784
2814
|
|
2785
|
-
#. TRANSLATORS '
|
2815
|
+
#. TRANSLATORS 'serverport' is the name of a setting and should not be translated
|
2786
2816
|
#: ../lib/puppet/indirector/request.rb:235
|
2787
|
-
msgid "Selected port from the `
|
2817
|
+
msgid "Selected port from the `serverport` setting: %{port}"
|
2788
2818
|
msgstr ""
|
2789
2819
|
|
2790
2820
|
#: ../lib/puppet/indirector/request.rb:266
|
@@ -2799,16 +2829,36 @@ msgstr ""
|
|
2799
2829
|
msgid "Resource instance does not match request key"
|
2800
2830
|
msgstr ""
|
2801
2831
|
|
2802
|
-
#: ../lib/puppet/indirector/rest.rb:
|
2832
|
+
#: ../lib/puppet/indirector/rest.rb:115
|
2833
|
+
msgid "Puppet::Indirector::Rest#find is deprecated. Use Puppet::HTTP::Client instead."
|
2834
|
+
msgstr ""
|
2835
|
+
|
2836
|
+
#: ../lib/puppet/indirector/rest.rb:154
|
2837
|
+
msgid "Puppet::Indirector::Rest#head is deprecated. Use Puppet::HTTP::Client instead."
|
2838
|
+
msgstr ""
|
2839
|
+
|
2840
|
+
#: ../lib/puppet/indirector/rest.rb:167
|
2841
|
+
msgid "Puppet::Indirector::Rest#search is deprecated. Use Puppet::HTTP::Client instead."
|
2842
|
+
msgstr ""
|
2843
|
+
|
2844
|
+
#: ../lib/puppet/indirector/rest.rb:181
|
2845
|
+
msgid "Puppet::Indirector::Rest#destroy is deprecated. Use Puppet::HTTP::Client instead."
|
2846
|
+
msgstr ""
|
2847
|
+
|
2848
|
+
#: ../lib/puppet/indirector/rest.rb:182
|
2803
2849
|
msgid "DELETE does not accept options"
|
2804
2850
|
msgstr ""
|
2805
2851
|
|
2852
|
+
#: ../lib/puppet/indirector/rest.rb:197
|
2853
|
+
msgid "Puppet::Indirector::Rest#save is deprecated. Use Puppet::HTTP::Client instead."
|
2854
|
+
msgstr ""
|
2855
|
+
|
2806
2856
|
#. TRANSLATORS "PSON" should not be translated
|
2807
|
-
#: ../lib/puppet/indirector/rest.rb:
|
2857
|
+
#: ../lib/puppet/indirector/rest.rb:235
|
2808
2858
|
msgid "Downgrading to PSON for future requests"
|
2809
2859
|
msgstr ""
|
2810
2860
|
|
2811
|
-
#: ../lib/puppet/indirector/rest.rb:
|
2861
|
+
#: ../lib/puppet/indirector/rest.rb:277 ../lib/puppet/rest/response.rb:31
|
2812
2862
|
msgid "Error %{code} on SERVER: %{returned_message}"
|
2813
2863
|
msgstr ""
|
2814
2864
|
|
@@ -3163,11 +3213,11 @@ msgid "Loaded puppet/type/%{name} but no class was created"
|
|
3163
3213
|
msgstr ""
|
3164
3214
|
|
3165
3215
|
#. TRANSLATORS 'metadata.json' is a specific file name and should not be translated.
|
3166
|
-
#: ../lib/puppet/module.rb:
|
3216
|
+
#: ../lib/puppet/module.rb:221
|
3167
3217
|
msgid "%{name} has an invalid and unparsable metadata.json file. The parse error: %{error}"
|
3168
3218
|
msgstr ""
|
3169
3219
|
|
3170
|
-
#: ../lib/puppet/module.rb:
|
3220
|
+
#: ../lib/puppet/module.rb:467
|
3171
3221
|
msgid ""
|
3172
3222
|
" Invalid module name '%{name}'; module names must match either:\n"
|
3173
3223
|
" An installed module name (ex. modulename) matching the expression /^[a-z][a-z0-9_]*$/ -or-\n"
|
@@ -3907,26 +3957,50 @@ msgstr ""
|
|
3907
3957
|
msgid "Not a valid indirection type"
|
3908
3958
|
msgstr ""
|
3909
3959
|
|
3910
|
-
#: ../lib/puppet/network/http/api/master/v3/environment.rb:
|
3960
|
+
#: ../lib/puppet/network/http/api/master/v3/environment.rb:14
|
3911
3961
|
msgid "%{env_name} is not a known environment"
|
3912
3962
|
msgstr ""
|
3913
3963
|
|
3914
|
-
#: ../lib/puppet/network/http/api/master/v3/environment.rb:
|
3964
|
+
#: ../lib/puppet/network/http/api/master/v3/environment.rb:43
|
3915
3965
|
msgid "Application %{application} assigns nodes to non-existent components: %{component_list}"
|
3916
3966
|
msgstr ""
|
3917
3967
|
|
3918
|
-
#: ../lib/puppet/network/http/api/master/v3/environment.rb:
|
3968
|
+
#: ../lib/puppet/network/http/api/master/v3/environment.rb:49
|
3919
3969
|
msgid "Application %{application} has components without assigned nodes: %{component_list}"
|
3920
3970
|
msgstr ""
|
3921
3971
|
|
3922
|
-
#: ../lib/puppet/network/http/api/master/v3/environment.rb:
|
3972
|
+
#: ../lib/puppet/network/http/api/master/v3/environment.rb:58
|
3923
3973
|
msgid "Application %{app} assigns multiple nodes to component %{comp}"
|
3924
3974
|
msgstr ""
|
3925
3975
|
|
3926
|
-
#: ../lib/puppet/network/http/compression.rb:
|
3976
|
+
#: ../lib/puppet/network/http/compression.rb:23 ../lib/puppet/network/http/compression.rb:27
|
3977
|
+
msgid "Puppet::Network::HTTP::Compression::Active#uncompress_body is deprecated."
|
3978
|
+
msgstr ""
|
3979
|
+
|
3980
|
+
#: ../lib/puppet/network/http/compression.rb:32 ../lib/puppet/network/http/compression.rb:46
|
3927
3981
|
msgid "Unknown content encoding - %{encoding}"
|
3928
3982
|
msgstr ""
|
3929
3983
|
|
3984
|
+
#: ../lib/puppet/network/http/compression.rb:37
|
3985
|
+
msgid "Puppet::Network::HTTP::Compression::Active#uncompress is deprecated."
|
3986
|
+
msgstr ""
|
3987
|
+
|
3988
|
+
#: ../lib/puppet/network/http/compression.rb:77
|
3989
|
+
msgid "Puppet::Network::HTTP::Compression::ZlibAdapter#uncompress is deprecated."
|
3990
|
+
msgstr ""
|
3991
|
+
|
3992
|
+
#: ../lib/puppet/network/http/compression.rb:104
|
3993
|
+
msgid "Puppet::Network::HTTP::Compression::None#uncompress_body is deprecated."
|
3994
|
+
msgstr ""
|
3995
|
+
|
3996
|
+
#: ../lib/puppet/network/http/compression.rb:113
|
3997
|
+
msgid "Puppet::Network::HTTP::Compression::None#uncompress is deprecated."
|
3998
|
+
msgstr ""
|
3999
|
+
|
4000
|
+
#: ../lib/puppet/network/http/compression.rb:120
|
4001
|
+
msgid "Puppet::Network::HTTP::Compression::IdentityAdapter#uncompress is deprecated."
|
4002
|
+
msgstr ""
|
4003
|
+
|
3930
4004
|
#: ../lib/puppet/network/http/connection.rb:56
|
3931
4005
|
msgid "Unrecognized option(s): %{opts}"
|
3932
4006
|
msgstr ""
|
@@ -3935,7 +4009,7 @@ msgstr ""
|
|
3935
4009
|
msgid "Expected an instance of Puppet::SSL::Verifier but was passed a %{klass}"
|
3936
4010
|
msgstr ""
|
3937
4011
|
|
3938
|
-
#: ../lib/puppet/network/http/connection.rb:229
|
4012
|
+
#: ../lib/puppet/network/http/connection.rb:229 ../lib/puppet/network/http/connection_adapter.rb:174
|
3939
4013
|
msgid "Too many HTTP redirections for %{host}:%{port}"
|
3940
4014
|
msgstr ""
|
3941
4015
|
|
@@ -3965,6 +4039,10 @@ msgstr ""
|
|
3965
4039
|
msgid "request %{uri} failed: %{msg}"
|
3966
4040
|
msgstr ""
|
3967
4041
|
|
4042
|
+
#: ../lib/puppet/network/http/connection.rb:346
|
4043
|
+
msgid "Puppet::Network::HTTP::Connection is deprecated. Please use Puppet::Network::HTTP::ConnectionAdapter instead."
|
4044
|
+
msgstr ""
|
4045
|
+
|
3968
4046
|
#: ../lib/puppet/network/http/error.rb:23
|
3969
4047
|
msgid "Not Acceptable: %{message}"
|
3970
4048
|
msgstr ""
|
@@ -4009,7 +4087,11 @@ msgstr ""
|
|
4009
4087
|
msgid "Could not resolve %{ip}: %{detail}"
|
4010
4088
|
msgstr ""
|
4011
4089
|
|
4012
|
-
#: ../lib/puppet/network/http/
|
4090
|
+
#: ../lib/puppet/network/http/nocache_pool.rb:6
|
4091
|
+
msgid "Puppet::Network::HTTP::NoCachePool is deprecated."
|
4092
|
+
msgstr ""
|
4093
|
+
|
4094
|
+
#: ../lib/puppet/network/http/pool.rb:66
|
4013
4095
|
msgid "Failed to close connection for %{site}: %{detail}"
|
4014
4096
|
msgstr ""
|
4015
4097
|
|
@@ -4087,7 +4169,7 @@ msgstr ""
|
|
4087
4169
|
msgid "The 'disable_per_environment_manifest' setting is true, and the '%{env_name}' environment has an environment.conf manifest that conflicts with the 'default_manifest' setting."
|
4088
4170
|
msgstr ""
|
4089
4171
|
|
4090
|
-
#: ../lib/puppet/node/environment.rb:
|
4172
|
+
#: ../lib/puppet/node/environment.rb:568 ../lib/puppet/pops/loaders.rb:301
|
4091
4173
|
msgid "Could not parse for environment %{env}: %{detail}"
|
4092
4174
|
msgstr ""
|
4093
4175
|
|
@@ -4119,54 +4201,54 @@ msgstr ""
|
|
4119
4201
|
|
4120
4202
|
#. TRANSLATORS: do not translate the variable names in this error message
|
4121
4203
|
#. TRANSLATORS: do not translate the variable names in this error message
|
4122
|
-
#: ../lib/puppet/pal/pal_impl.rb:
|
4204
|
+
#: ../lib/puppet/pal/pal_impl.rb:75 ../lib/puppet/pal/pal_impl.rb:173
|
4123
4205
|
msgid "manifest_file or code_string cannot be given when configured_by_env is true"
|
4124
4206
|
msgstr ""
|
4125
4207
|
|
4126
|
-
#: ../lib/puppet/pal/pal_impl.rb:
|
4208
|
+
#: ../lib/puppet/pal/pal_impl.rb:221
|
4127
4209
|
msgid "temporary environment name"
|
4128
4210
|
msgstr ""
|
4129
4211
|
|
4130
4212
|
#. TRANSLATORS: do not translate variable name string in these assertions
|
4131
|
-
#: ../lib/puppet/pal/pal_impl.rb:
|
4213
|
+
#: ../lib/puppet/pal/pal_impl.rb:226
|
4132
4214
|
msgid "A block must be given to 'in_tmp_environment'"
|
4133
4215
|
msgstr ""
|
4134
4216
|
|
4135
4217
|
#. TRANSLATORS terms in the assertions below are names of terms in code
|
4136
|
-
#: ../lib/puppet/pal/pal_impl.rb:
|
4218
|
+
#: ../lib/puppet/pal/pal_impl.rb:280
|
4137
4219
|
msgid "A block must be given to 'in_environment'"
|
4138
4220
|
msgstr ""
|
4139
4221
|
|
4140
4222
|
#. TRANSLATORS 'in_environment' is a name, do not translate
|
4141
|
-
#: ../lib/puppet/pal/pal_impl.rb:
|
4223
|
+
#: ../lib/puppet/pal/pal_impl.rb:285
|
4142
4224
|
msgid "The environment directory '%{env_dir}' does not exist"
|
4143
4225
|
msgstr ""
|
4144
4226
|
|
4145
|
-
#: ../lib/puppet/pal/pal_impl.rb:
|
4227
|
+
#: ../lib/puppet/pal/pal_impl.rb:308
|
4146
4228
|
msgid "No directory found for the environment '%{env_name}' on the path '%{envpath}'"
|
4147
4229
|
msgstr ""
|
4148
4230
|
|
4149
|
-
#: ../lib/puppet/pal/pal_impl.rb:
|
4231
|
+
#: ../lib/puppet/pal/pal_impl.rb:362
|
4150
4232
|
msgid "Given variables must be a hash, got %{type}"
|
4151
4233
|
msgstr ""
|
4152
4234
|
|
4153
|
-
#: ../lib/puppet/pal/pal_impl.rb:
|
4235
|
+
#: ../lib/puppet/pal/pal_impl.rb:368
|
4154
4236
|
msgid "Given variable '%{varname}' has illegal name"
|
4155
4237
|
msgstr ""
|
4156
4238
|
|
4157
|
-
#: ../lib/puppet/pal/pal_impl.rb:
|
4239
|
+
#: ../lib/puppet/pal/pal_impl.rb:372
|
4158
4240
|
msgid "Given value for '%{varname}' has illegal type - got: %{type}"
|
4159
4241
|
msgstr ""
|
4160
4242
|
|
4161
|
-
#: ../lib/puppet/pal/pal_impl.rb:
|
4243
|
+
#: ../lib/puppet/pal/pal_impl.rb:509
|
4162
4244
|
msgid "Puppet Pal: %{what}"
|
4163
4245
|
msgstr ""
|
4164
4246
|
|
4165
|
-
#: ../lib/puppet/pal/pal_impl.rb:
|
4247
|
+
#: ../lib/puppet/pal/pal_impl.rb:523
|
4166
4248
|
msgid "Cannot use '%{a_term}' and '%{b_term}' at the same time"
|
4167
4249
|
msgstr ""
|
4168
4250
|
|
4169
|
-
#: ../lib/puppet/pal/pal_impl.rb:
|
4251
|
+
#: ../lib/puppet/pal/pal_impl.rb:530
|
4170
4252
|
msgid "A block must be given"
|
4171
4253
|
msgstr ""
|
4172
4254
|
|
@@ -4231,7 +4313,7 @@ msgstr ""
|
|
4231
4313
|
msgid "Node inheritance is removed in Puppet 4.0.0. See http://links.puppet.com/puppet-node-inheritance-deprecation"
|
4232
4314
|
msgstr ""
|
4233
4315
|
|
4234
|
-
#: ../lib/puppet/parser/ast/pops_bridge.rb:
|
4316
|
+
#: ../lib/puppet/parser/ast/pops_bridge.rb:186
|
4235
4317
|
msgid "Instantiating Resource with type checked parameters - scope is missing, skipping type checking."
|
4236
4318
|
msgstr ""
|
4237
4319
|
|
@@ -4256,7 +4338,7 @@ msgid "For more information, see https://puppet.com/docs/puppet/latest/environme
|
|
4256
4338
|
msgstr ""
|
4257
4339
|
|
4258
4340
|
#. TRANSLATORS "stage" is a keyword in Puppet and should not be translated
|
4259
|
-
#: ../lib/puppet/parser/compiler.rb:98 ../lib/puppet/parser/environment_compiler.rb:
|
4341
|
+
#: ../lib/puppet/parser/compiler.rb:98 ../lib/puppet/parser/environment_compiler.rb:137
|
4260
4342
|
msgid "Only classes can set 'stage'; normal resources like %{resource} cannot change run stage"
|
4261
4343
|
msgstr ""
|
4262
4344
|
|
@@ -4342,60 +4424,60 @@ msgstr ""
|
|
4342
4424
|
msgid "Application %{app} maps component %{res} to multiple nodes"
|
4343
4425
|
msgstr ""
|
4344
4426
|
|
4345
|
-
#: ../lib/puppet/parser/compiler.rb:
|
4427
|
+
#: ../lib/puppet/parser/compiler.rb:367
|
4428
|
+
msgid "Could not find node statement with name 'default' or '%{names}'"
|
4429
|
+
msgstr ""
|
4430
|
+
|
4431
|
+
#: ../lib/puppet/parser/compiler.rb:385
|
4346
4432
|
msgid "No source for scope passed to evaluate_classes"
|
4347
4433
|
msgstr ""
|
4348
4434
|
|
4349
|
-
#: ../lib/puppet/parser/compiler.rb:
|
4435
|
+
#: ../lib/puppet/parser/compiler.rb:401
|
4350
4436
|
msgid "Could not find class %{name} for %{node}"
|
4351
4437
|
msgstr ""
|
4352
4438
|
|
4353
|
-
#: ../lib/puppet/parser/compiler.rb:
|
4439
|
+
#: ../lib/puppet/parser/compiler.rb:503
|
4354
4440
|
msgid "Capability mapping error: %{kind} clause references nonexistent %{component_type} %{component_name}"
|
4355
4441
|
msgstr ""
|
4356
4442
|
|
4357
|
-
#: ../lib/puppet/parser/compiler.rb:
|
4358
|
-
msgid "Could not find node statement with name 'default' or '%{names}'"
|
4359
|
-
msgstr ""
|
4360
|
-
|
4361
|
-
#: ../lib/puppet/parser/compiler.rb:523
|
4443
|
+
#: ../lib/puppet/parser/compiler.rb:526
|
4362
4444
|
msgid "Evaluated collections"
|
4363
4445
|
msgstr ""
|
4364
4446
|
|
4365
|
-
#: ../lib/puppet/parser/compiler.rb:
|
4447
|
+
#: ../lib/puppet/parser/compiler.rb:541
|
4366
4448
|
msgid "Evaluated definitions"
|
4367
4449
|
msgstr ""
|
4368
4450
|
|
4369
|
-
#: ../lib/puppet/parser/compiler.rb:
|
4451
|
+
#: ../lib/puppet/parser/compiler.rb:570
|
4370
4452
|
msgid "Iterated (%{count}) on generators"
|
4371
4453
|
msgstr ""
|
4372
4454
|
|
4373
|
-
#: ../lib/puppet/parser/compiler.rb:
|
4455
|
+
#: ../lib/puppet/parser/compiler.rb:581
|
4374
4456
|
msgid "Somehow looped more than 1000 times while evaluating host catalog"
|
4375
4457
|
msgstr ""
|
4376
4458
|
|
4377
|
-
#: ../lib/puppet/parser/compiler.rb:
|
4459
|
+
#: ../lib/puppet/parser/compiler.rb:613
|
4378
4460
|
msgid "Could not find resource(s) %{resources} for overriding"
|
4379
4461
|
msgstr ""
|
4380
4462
|
|
4381
|
-
#: ../lib/puppet/parser/compiler.rb:
|
4463
|
+
#: ../lib/puppet/parser/compiler.rb:624
|
4382
4464
|
msgid "Failed to realize virtual resources %{resources}"
|
4383
4465
|
msgstr ""
|
4384
4466
|
|
4385
4467
|
#. TRANSLATORS "main" is a function name and should not be translated
|
4386
|
-
#: ../lib/puppet/parser/compiler.rb:
|
4468
|
+
#: ../lib/puppet/parser/compiler.rb:657
|
4387
4469
|
msgid "Couldn't find main"
|
4388
4470
|
msgstr ""
|
4389
4471
|
|
4390
|
-
#: ../lib/puppet/parser/compiler.rb:
|
4472
|
+
#: ../lib/puppet/parser/compiler.rb:730
|
4391
4473
|
msgid "For initializing compiler"
|
4392
4474
|
msgstr ""
|
4393
4475
|
|
4394
|
-
#: ../lib/puppet/parser/compiler/catalog_validator/env_relationship_validator.rb:
|
4476
|
+
#: ../lib/puppet/parser/compiler/catalog_validator/env_relationship_validator.rb:19
|
4395
4477
|
msgid "Capability '%{cap}' referenced by '%{param}' is never exported"
|
4396
4478
|
msgstr ""
|
4397
4479
|
|
4398
|
-
#: ../lib/puppet/parser/compiler/catalog_validator/env_relationship_validator.rb:
|
4480
|
+
#: ../lib/puppet/parser/compiler/catalog_validator/env_relationship_validator.rb:58
|
4399
4481
|
msgid "'%{value}' is exported by both '%{hash}' and '%{resource}'"
|
4400
4482
|
msgstr ""
|
4401
4483
|
|
@@ -4407,55 +4489,55 @@ msgstr ""
|
|
4407
4489
|
msgid "Could not find resource '%{res}' in parameter '%{param}'"
|
4408
4490
|
msgstr ""
|
4409
4491
|
|
4410
|
-
#: ../lib/puppet/parser/compiler/catalog_validator/site_validator.rb:
|
4492
|
+
#: ../lib/puppet/parser/compiler/catalog_validator/site_validator.rb:16
|
4411
4493
|
msgid "Only application components can appear inside a site - %{res} is not allowed"
|
4412
4494
|
msgstr ""
|
4413
4495
|
|
4414
|
-
#: ../lib/puppet/parser/environment_compiler.rb:
|
4496
|
+
#: ../lib/puppet/parser/environment_compiler.rb:13
|
4415
4497
|
msgid "%{detail} in environment %{env}"
|
4416
4498
|
msgstr ""
|
4417
4499
|
|
4418
|
-
#: ../lib/puppet/parser/environment_compiler.rb:
|
4500
|
+
#: ../lib/puppet/parser/environment_compiler.rb:62
|
4419
4501
|
msgid "For compiling environment catalog %{env}"
|
4420
4502
|
msgstr ""
|
4421
4503
|
|
4422
|
-
#: ../lib/puppet/parser/environment_compiler.rb:
|
4504
|
+
#: ../lib/puppet/parser/environment_compiler.rb:65
|
4423
4505
|
msgid "Env Compile: Created settings scope"
|
4424
4506
|
msgstr ""
|
4425
4507
|
|
4426
|
-
#: ../lib/puppet/parser/environment_compiler.rb:
|
4508
|
+
#: ../lib/puppet/parser/environment_compiler.rb:67
|
4427
4509
|
msgid "Env Compile: Evaluated main"
|
4428
4510
|
msgstr ""
|
4429
4511
|
|
4430
|
-
#: ../lib/puppet/parser/environment_compiler.rb:
|
4512
|
+
#: ../lib/puppet/parser/environment_compiler.rb:69
|
4431
4513
|
msgid "Env Compile: Evaluated site"
|
4432
4514
|
msgstr ""
|
4433
4515
|
|
4434
|
-
#: ../lib/puppet/parser/environment_compiler.rb:
|
4516
|
+
#: ../lib/puppet/parser/environment_compiler.rb:71
|
4435
4517
|
msgid "Env Compile: Evaluated application instances"
|
4436
4518
|
msgstr ""
|
4437
4519
|
|
4438
|
-
#: ../lib/puppet/parser/environment_compiler.rb:
|
4520
|
+
#: ../lib/puppet/parser/environment_compiler.rb:73
|
4439
4521
|
msgid "Env Compile: Prune"
|
4440
4522
|
msgstr ""
|
4441
4523
|
|
4442
|
-
#: ../lib/puppet/parser/environment_compiler.rb:
|
4524
|
+
#: ../lib/puppet/parser/environment_compiler.rb:75
|
4443
4525
|
msgid "Env Compile: Validate Catalog pre-finish"
|
4444
4526
|
msgstr ""
|
4445
4527
|
|
4446
|
-
#: ../lib/puppet/parser/environment_compiler.rb:
|
4528
|
+
#: ../lib/puppet/parser/environment_compiler.rb:79
|
4447
4529
|
msgid "Env Compile: Finished catalog"
|
4448
4530
|
msgstr ""
|
4449
4531
|
|
4450
|
-
#: ../lib/puppet/parser/environment_compiler.rb:
|
4532
|
+
#: ../lib/puppet/parser/environment_compiler.rb:83
|
4451
4533
|
msgid "Env Compile: Validate Catalog final"
|
4452
4534
|
msgstr ""
|
4453
4535
|
|
4454
|
-
#: ../lib/puppet/parser/environment_compiler.rb:
|
4536
|
+
#: ../lib/puppet/parser/environment_compiler.rb:159
|
4455
4537
|
msgid "Environment Compiler: Could not find a site definition to evaluate"
|
4456
4538
|
msgstr ""
|
4457
4539
|
|
4458
|
-
#: ../lib/puppet/parser/environment_compiler.rb:
|
4540
|
+
#: ../lib/puppet/parser/environment_compiler.rb:165
|
4459
4541
|
msgid "Evaluated application %{resource}"
|
4460
4542
|
msgstr ""
|
4461
4543
|
|
@@ -4471,31 +4553,31 @@ msgstr ""
|
|
4471
4553
|
msgid "The method 'Puppet::Parser::Functions.autoloader#loaded?(\"%{name}\")' is deprecated in favor of using 'Scope#call_function'."
|
4472
4554
|
msgstr ""
|
4473
4555
|
|
4474
|
-
#: ../lib/puppet/parser/functions.rb:
|
4556
|
+
#: ../lib/puppet/parser/functions.rb:190
|
4475
4557
|
msgid "Overwriting previous definition for function %{name}"
|
4476
4558
|
msgstr ""
|
4477
4559
|
|
4478
|
-
#: ../lib/puppet/parser/functions.rb:
|
4560
|
+
#: ../lib/puppet/parser/functions.rb:196
|
4479
4561
|
msgid "Invalid statement type %{type}"
|
4480
4562
|
msgstr ""
|
4481
4563
|
|
4482
|
-
#: ../lib/puppet/parser/functions.rb:
|
4564
|
+
#: ../lib/puppet/parser/functions.rb:208
|
4483
4565
|
msgid "Called %{name}"
|
4484
4566
|
msgstr ""
|
4485
4567
|
|
4486
|
-
#: ../lib/puppet/parser/functions.rb:
|
4568
|
+
#: ../lib/puppet/parser/functions.rb:211
|
4487
4569
|
msgid "%{name}(): Wrong number of arguments given (%{arg_count} for %{arity})"
|
4488
4570
|
msgstr ""
|
4489
4571
|
|
4490
|
-
#: ../lib/puppet/parser/functions.rb:
|
4572
|
+
#: ../lib/puppet/parser/functions.rb:213
|
4491
4573
|
msgid "%{name}(): Wrong number of arguments given (%{arg_count} for minimum %{min_arg_count})"
|
4492
4574
|
msgstr ""
|
4493
4575
|
|
4494
|
-
#: ../lib/puppet/parser/functions.rb:
|
4576
|
+
#: ../lib/puppet/parser/functions.rb:219
|
4495
4577
|
msgid "custom functions must be called with a single array that contains the arguments. For example, function_example([1]) instead of function_example(1)"
|
4496
4578
|
msgstr ""
|
4497
4579
|
|
4498
|
-
#: ../lib/puppet/parser/functions.rb:
|
4580
|
+
#: ../lib/puppet/parser/functions.rb:318
|
4499
4581
|
msgid "%{name}() can only be called using the 4.x function API. See Scope#call_function"
|
4500
4582
|
msgstr ""
|
4501
4583
|
|
@@ -4503,15 +4585,15 @@ msgstr ""
|
|
4503
4585
|
msgid "Calling function_contain via the Scope class is deprecated. Use Scope#call_function instead"
|
4504
4586
|
msgstr ""
|
4505
4587
|
|
4506
|
-
#: ../lib/puppet/parser/functions/create_resources.rb:
|
4588
|
+
#: ../lib/puppet/parser/functions/create_resources.rb:60
|
4507
4589
|
msgid "create_resources(): wrong number of arguments (%{count}; must be 2 or 3)"
|
4508
4590
|
msgstr ""
|
4509
4591
|
|
4510
|
-
#: ../lib/puppet/parser/functions/create_resources.rb:
|
4592
|
+
#: ../lib/puppet/parser/functions/create_resources.rb:61
|
4511
4593
|
msgid "create_resources(): second argument must be a hash"
|
4512
4594
|
msgstr ""
|
4513
4595
|
|
4514
|
-
#: ../lib/puppet/parser/functions/create_resources.rb:
|
4596
|
+
#: ../lib/puppet/parser/functions/create_resources.rb:63
|
4515
4597
|
msgid "create_resources(): third argument, if provided, must be a hash"
|
4516
4598
|
msgstr ""
|
4517
4599
|
|
@@ -4625,23 +4707,23 @@ msgstr ""
|
|
4625
4707
|
msgid "Attempt to reassign attribute '%{name}' in '%{resource}' caused by multiple consumed mappings to the same attribute"
|
4626
4708
|
msgstr ""
|
4627
4709
|
|
4628
|
-
#: ../lib/puppet/parser/resource.rb:
|
4710
|
+
#: ../lib/puppet/parser/resource.rb:365
|
4629
4711
|
msgid "Parameter '%{name}' is already set on %{resource}; cannot redefine"
|
4630
4712
|
msgstr ""
|
4631
4713
|
|
4632
|
-
#: ../lib/puppet/parser/resource.rb:
|
4714
|
+
#: ../lib/puppet/parser/resource.rb:368
|
4633
4715
|
msgid "Parameter '%{name}' is already set on %{resource} at %{error_location}; cannot redefine"
|
4634
4716
|
msgstr ""
|
4635
4717
|
|
4636
|
-
#: ../lib/puppet/parser/resource.rb:
|
4718
|
+
#: ../lib/puppet/parser/resource.rb:373
|
4637
4719
|
msgid "Parameter '%{name}' is already set on %{resource} by %{source}; cannot redefine"
|
4638
4720
|
msgstr ""
|
4639
4721
|
|
4640
|
-
#: ../lib/puppet/parser/resource.rb:
|
4722
|
+
#: ../lib/puppet/parser/resource.rb:376
|
4641
4723
|
msgid "Parameter '%{name}' is already set on %{resource} by %{source} at %{error_location}; cannot redefine"
|
4642
4724
|
msgstr ""
|
4643
4725
|
|
4644
|
-
#: ../lib/puppet/parser/resource.rb:
|
4726
|
+
#: ../lib/puppet/parser/resource.rb:415
|
4645
4727
|
msgid "Duplicate parameter '%{param}' for on %{resource}"
|
4646
4728
|
msgstr ""
|
4647
4729
|
|
@@ -5667,6 +5749,10 @@ msgstr ""
|
|
5667
5749
|
msgid "Failed to load: %{type_name}"
|
5668
5750
|
msgstr ""
|
5669
5751
|
|
5752
|
+
#: ../lib/puppet/pops/issues.rb:925
|
5753
|
+
msgid "Use of the application-orchestration %{expr} is deprecated. See https://puppet.com/docs/puppet/5.5/deprecated_language.html"
|
5754
|
+
msgstr ""
|
5755
|
+
|
5670
5756
|
#: ../lib/puppet/pops/label_provider.rb:76
|
5671
5757
|
msgid "<%{string}> does not appear to contain a word"
|
5672
5758
|
msgstr ""
|
@@ -5838,19 +5924,19 @@ msgstr ""
|
|
5838
5924
|
msgid "Attempt to redefine already initialized loaders for environment"
|
5839
5925
|
msgstr ""
|
5840
5926
|
|
5841
|
-
#: ../lib/puppet/pops/loaders.rb:
|
5927
|
+
#: ../lib/puppet/pops/loaders.rb:177
|
5842
5928
|
msgid "Internal Error: Puppet Context ':loaders' missing"
|
5843
5929
|
msgstr ""
|
5844
5930
|
|
5845
|
-
#: ../lib/puppet/pops/loaders.rb:
|
5931
|
+
#: ../lib/puppet/pops/loaders.rb:191
|
5846
5932
|
msgid "Unable to find loader named '%{loader_name}'"
|
5847
5933
|
msgstr ""
|
5848
5934
|
|
5849
|
-
#: ../lib/puppet/pops/loaders.rb:
|
5935
|
+
#: ../lib/puppet/pops/loaders.rb:212
|
5850
5936
|
msgid "Internal Error: did not find public loader for module: '%{module_name}'"
|
5851
5937
|
msgstr ""
|
5852
5938
|
|
5853
|
-
#: ../lib/puppet/pops/loaders.rb:
|
5939
|
+
#: ../lib/puppet/pops/loaders.rb:258
|
5854
5940
|
msgid "Internal Error: Attempt to redefine loader named '%{name}'"
|
5855
5941
|
msgstr ""
|
5856
5942
|
|
@@ -5869,23 +5955,23 @@ msgstr ""
|
|
5869
5955
|
msgid "Unknown Explain type %{qualifier_type}"
|
5870
5956
|
msgstr ""
|
5871
5957
|
|
5872
|
-
#: ../lib/puppet/pops/lookup/hiera_config.rb:
|
5958
|
+
#: ../lib/puppet/pops/lookup/hiera_config.rb:86
|
5873
5959
|
msgid "Using of legacy data provider function '%{function_name}'. Please convert to a 'data_hash' function"
|
5874
5960
|
msgstr ""
|
5875
5961
|
|
5876
|
-
#: ../lib/puppet/pops/lookup/hiera_config.rb:
|
5962
|
+
#: ../lib/puppet/pops/lookup/hiera_config.rb:143
|
5877
5963
|
msgid "%{config_path}: File exists but does not contain a valid YAML hash. Falling back to Hiera version 3 default config"
|
5878
5964
|
msgstr ""
|
5879
5965
|
|
5880
|
-
#: ../lib/puppet/pops/lookup/hiera_config.rb:
|
5966
|
+
#: ../lib/puppet/pops/lookup/hiera_config.rb:201
|
5881
5967
|
msgid "Hiera configuration recreated due to change of scope variables used in interpolation expressions"
|
5882
5968
|
msgstr ""
|
5883
5969
|
|
5884
|
-
#: ../lib/puppet/pops/lookup/hiera_config.rb:
|
5970
|
+
#: ../lib/puppet/pops/lookup/hiera_config.rb:429
|
5885
5971
|
msgid "%{config_path}: Use of 'hiera.yaml' version 3 is deprecated. It should be converted to version 5"
|
5886
5972
|
msgstr ""
|
5887
5973
|
|
5888
|
-
#: ../lib/puppet/pops/lookup/hiera_config.rb:
|
5974
|
+
#: ../lib/puppet/pops/lookup/hiera_config.rb:529
|
5889
5975
|
msgid "%{config_path}: Use of 'hiera.yaml' version 4 is deprecated. It should be converted to version 5"
|
5890
5976
|
msgstr ""
|
5891
5977
|
|
@@ -6057,7 +6143,7 @@ msgstr ""
|
|
6057
6143
|
msgid "digit expected"
|
6058
6144
|
msgstr ""
|
6059
6145
|
|
6060
|
-
#: ../lib/puppet/pops/resource/resource_type_impl.rb:167 ../lib/puppet/type.rb:
|
6146
|
+
#: ../lib/puppet/pops/resource/resource_type_impl.rb:167 ../lib/puppet/type.rb:444
|
6061
6147
|
msgid "you must specify title patterns when there are two or more key attributes"
|
6062
6148
|
msgstr ""
|
6063
6149
|
|
@@ -6674,27 +6760,31 @@ msgstr ""
|
|
6674
6760
|
msgid "Could not perform network device prefetch: %{detail}"
|
6675
6761
|
msgstr ""
|
6676
6762
|
|
6677
|
-
#: ../lib/puppet/provider/package/aix.rb:
|
6763
|
+
#: ../lib/puppet/provider/package/aix.rb:46
|
6678
6764
|
msgid "The aix provider can only be used by root"
|
6679
6765
|
msgstr ""
|
6680
6766
|
|
6681
|
-
#: ../lib/puppet/provider/package/aix.rb:
|
6767
|
+
#: ../lib/puppet/provider/package/aix.rb:88 ../lib/puppet/provider/package/nim.rb:53
|
6682
6768
|
msgid "Failed to uninstall package '%{name}'"
|
6683
6769
|
msgstr ""
|
6684
6770
|
|
6685
|
-
#: ../lib/puppet/provider/package/aix.rb:
|
6771
|
+
#: ../lib/puppet/provider/package/aix.rb:95
|
6686
6772
|
msgid "A directory is required which will be used to find packages"
|
6687
6773
|
msgstr ""
|
6688
6774
|
|
6689
|
-
#: ../lib/puppet/provider/package/aix.rb:
|
6775
|
+
#: ../lib/puppet/provider/package/aix.rb:107
|
6690
6776
|
msgid "aix package provider is unable to downgrade packages"
|
6691
6777
|
msgstr ""
|
6692
6778
|
|
6693
|
-
#: ../lib/puppet/provider/package/aix.rb:
|
6779
|
+
#: ../lib/puppet/provider/package/aix.rb:112
|
6780
|
+
msgid "Package '%{name}' is in a %{status} state and requires manual intervention"
|
6781
|
+
msgstr ""
|
6782
|
+
|
6783
|
+
#: ../lib/puppet/provider/package/aix.rb:133
|
6694
6784
|
msgid "Could not list installed Packages: %{detail}"
|
6695
6785
|
msgstr ""
|
6696
6786
|
|
6697
|
-
#: ../lib/puppet/provider/package/aix.rb:
|
6787
|
+
#: ../lib/puppet/provider/package/aix.rb:156 ../lib/puppet/provider/package/yum.rb:333
|
6698
6788
|
msgid "Tried to get latest on a missing package"
|
6699
6789
|
msgstr ""
|
6700
6790
|
|
@@ -6710,23 +6800,23 @@ msgstr ""
|
|
6710
6800
|
msgid "Mac OS X packages must specify a package source"
|
6711
6801
|
msgstr ""
|
6712
6802
|
|
6713
|
-
#: ../lib/puppet/provider/package/apt.rb:
|
6803
|
+
#: ../lib/puppet/provider/package/apt.rb:81
|
6714
6804
|
msgid "/etc/apt/sources.list contains a cdrom source; not installing. Use 'allowcdrom' to override this failure."
|
6715
6805
|
msgstr ""
|
6716
6806
|
|
6717
|
-
#: ../lib/puppet/provider/package/apt.rb:
|
6807
|
+
#: ../lib/puppet/provider/package/apt.rb:163 ../lib/puppet/provider/package/fink.rb:55
|
6718
6808
|
msgid "Could not find latest version"
|
6719
6809
|
msgstr ""
|
6720
6810
|
|
6721
|
-
#: ../lib/puppet/provider/package/apt.rb:
|
6811
|
+
#: ../lib/puppet/provider/package/apt.rb:174 ../lib/puppet/provider/package/fink.rb:66
|
6722
6812
|
msgid "Preseeding %{response} to debconf-set-selections"
|
6723
6813
|
msgstr ""
|
6724
6814
|
|
6725
|
-
#: ../lib/puppet/provider/package/apt.rb:
|
6815
|
+
#: ../lib/puppet/provider/package/apt.rb:178 ../lib/puppet/provider/package/fink.rb:70
|
6726
6816
|
msgid "No responsefile specified or non existent, not preseeding anything"
|
6727
6817
|
msgstr ""
|
6728
6818
|
|
6729
|
-
#: ../lib/puppet/provider/package/aptitude.rb:21 ../lib/puppet/provider/package/ports.rb:20 ../lib/puppet/provider/package/portupgrade.rb:94 ../lib/puppet/provider/package/portupgrade.rb:152 ../lib/puppet/provider/package/rug.rb:28 ../lib/puppet/provider/package/up2date.rb:17 ../lib/puppet/provider/package/yum.rb:
|
6819
|
+
#: ../lib/puppet/provider/package/aptitude.rb:21 ../lib/puppet/provider/package/ports.rb:20 ../lib/puppet/provider/package/portupgrade.rb:94 ../lib/puppet/provider/package/portupgrade.rb:152 ../lib/puppet/provider/package/rug.rb:28 ../lib/puppet/provider/package/up2date.rb:17 ../lib/puppet/provider/package/yum.rb:312 ../lib/puppet/provider/package/zypper.rb:146
|
6730
6820
|
msgid "Could not find package %{name}"
|
6731
6821
|
msgstr ""
|
6732
6822
|
|
@@ -6774,27 +6864,27 @@ msgstr ""
|
|
6774
6864
|
msgid "source is defined but does not have trailing slash, ignoring %{source}"
|
6775
6865
|
msgstr ""
|
6776
6866
|
|
6777
|
-
#: ../lib/puppet/provider/package/gem.rb:
|
6867
|
+
#: ../lib/puppet/provider/package/gem.rb:102 ../lib/puppet/provider/package/puppetserver_gem.rb:61
|
6778
6868
|
msgid "Could not list gems: %{detail}"
|
6779
6869
|
msgstr ""
|
6780
6870
|
|
6781
|
-
#: ../lib/puppet/provider/package/gem.rb:
|
6871
|
+
#: ../lib/puppet/provider/package/gem.rb:128
|
6782
6872
|
msgid "Could not match %{desc}"
|
6783
6873
|
msgstr ""
|
6784
6874
|
|
6785
|
-
#: ../lib/puppet/provider/package/gem.rb:
|
6875
|
+
#: ../lib/puppet/provider/package/gem.rb:206 ../lib/puppet/provider/package/puppetserver_gem.rb:93
|
6786
6876
|
msgid "Invalid source '%{uri}': %{detail}"
|
6787
6877
|
msgstr ""
|
6788
6878
|
|
6789
|
-
#: ../lib/puppet/provider/package/gem.rb:
|
6879
|
+
#: ../lib/puppet/provider/package/gem.rb:217 ../lib/puppet/provider/package/puppetserver_gem.rb:104
|
6790
6880
|
msgid "puppet:// URLs are not supported as gem sources"
|
6791
6881
|
msgstr ""
|
6792
6882
|
|
6793
|
-
#: ../lib/puppet/provider/package/gem.rb:
|
6883
|
+
#: ../lib/puppet/provider/package/gem.rb:233 ../lib/puppet/provider/package/puppetserver_gem.rb:115
|
6794
6884
|
msgid "Could not install: %{output}"
|
6795
6885
|
msgstr ""
|
6796
6886
|
|
6797
|
-
#: ../lib/puppet/provider/package/gem.rb:
|
6887
|
+
#: ../lib/puppet/provider/package/gem.rb:259 ../lib/puppet/provider/package/puppetserver_gem.rb:125
|
6798
6888
|
msgid "Could not uninstall: %{output}"
|
6799
6889
|
msgstr ""
|
6800
6890
|
|
@@ -7049,23 +7139,23 @@ msgstr ""
|
|
7049
7139
|
msgid "Don't know how to install '%{source}'"
|
7050
7140
|
msgstr ""
|
7051
7141
|
|
7052
|
-
#: ../lib/puppet/provider/package/yum.rb:
|
7142
|
+
#: ../lib/puppet/provider/package/yum.rb:69
|
7053
7143
|
msgid "The yum provider can only be used as root"
|
7054
7144
|
msgstr ""
|
7055
7145
|
|
7056
|
-
#: ../lib/puppet/provider/package/yum.rb:
|
7146
|
+
#: ../lib/puppet/provider/package/yum.rb:123
|
7057
7147
|
msgid "Could not check for updates, '%{cmd} check-update' exited with %{status}"
|
7058
7148
|
msgstr ""
|
7059
7149
|
|
7060
|
-
#: ../lib/puppet/provider/package/yum.rb:
|
7150
|
+
#: ../lib/puppet/provider/package/yum.rb:158
|
7061
7151
|
msgid "Failed to parse package name and architecture from '%{pkgname}'"
|
7062
7152
|
msgstr ""
|
7063
7153
|
|
7064
|
-
#: ../lib/puppet/provider/package/yum.rb:
|
7154
|
+
#: ../lib/puppet/provider/package/yum.rb:306
|
7065
7155
|
msgid "Could not find package %{wanted}"
|
7066
7156
|
msgstr ""
|
7067
7157
|
|
7068
|
-
#: ../lib/puppet/provider/package/yum.rb:
|
7158
|
+
#: ../lib/puppet/provider/package/yum.rb:317
|
7069
7159
|
msgid "Failed to update to version %{should}, got version %{version} instead"
|
7070
7160
|
msgstr ""
|
7071
7161
|
|
@@ -7139,35 +7229,35 @@ msgstr ""
|
|
7139
7229
|
msgid "The %{service} service is incomplete so its status will be reported as :stopped. See `svcs -xv %{fmri}` for more details."
|
7140
7230
|
msgstr ""
|
7141
7231
|
|
7142
|
-
#: ../lib/puppet/provider/service/windows.rb:
|
7232
|
+
#: ../lib/puppet/provider/service/windows.rb:22
|
7143
7233
|
msgid "Cannot enable %{resource_name}, error was: %{detail}"
|
7144
7234
|
msgstr ""
|
7145
7235
|
|
7146
|
-
#: ../lib/puppet/provider/service/windows.rb:
|
7236
|
+
#: ../lib/puppet/provider/service/windows.rb:28
|
7147
7237
|
msgid "Cannot disable %{resource_name}, error was: %{detail}"
|
7148
7238
|
msgstr ""
|
7149
7239
|
|
7150
|
-
#: ../lib/puppet/provider/service/windows.rb:
|
7240
|
+
#: ../lib/puppet/provider/service/windows.rb:34
|
7151
7241
|
msgid "Cannot enable %{resource_name} for manual start, error was: %{detail}"
|
7152
7242
|
msgstr ""
|
7153
7243
|
|
7154
|
-
#: ../lib/puppet/provider/service/windows.rb:
|
7244
|
+
#: ../lib/puppet/provider/service/windows.rb:40
|
7155
7245
|
msgid "Cannot enable %{resource_name} for delayed start, error was: %{detail}"
|
7156
7246
|
msgstr ""
|
7157
7247
|
|
7158
|
-
#: ../lib/puppet/provider/service/windows.rb:
|
7248
|
+
#: ../lib/puppet/provider/service/windows.rb:60
|
7159
7249
|
msgid "Unknown start type: %{start_type}"
|
7160
7250
|
msgstr ""
|
7161
7251
|
|
7162
|
-
#: ../lib/puppet/provider/service/windows.rb:
|
7252
|
+
#: ../lib/puppet/provider/service/windows.rb:63
|
7163
7253
|
msgid "Cannot get start type %{resource_name}, error was: %{detail}"
|
7164
7254
|
msgstr ""
|
7165
7255
|
|
7166
|
-
#: ../lib/puppet/provider/service/windows.rb:
|
7256
|
+
#: ../lib/puppet/provider/service/windows.rb:77
|
7167
7257
|
msgid "Will not start disabled service %{resource_name} without managing enable. Specify 'enable => false' to override."
|
7168
7258
|
msgstr ""
|
7169
7259
|
|
7170
|
-
#: ../lib/puppet/provider/service/windows.rb:
|
7260
|
+
#: ../lib/puppet/provider/service/windows.rb:109
|
7171
7261
|
msgid "Unknown service state '%{current_state}' for service '%{resource_name}'"
|
7172
7262
|
msgstr ""
|
7173
7263
|
|
@@ -7189,15 +7279,15 @@ msgstr ""
|
|
7189
7279
|
msgid "ruby-shadow doesn't support %{method}"
|
7190
7280
|
msgstr ""
|
7191
7281
|
|
7192
|
-
#: ../lib/puppet/provider/user/windows_adsi.rb:
|
7282
|
+
#: ../lib/puppet/provider/user/windows_adsi.rb:145
|
7193
7283
|
msgid "The user account '%s' is disabled; The password will still be changed"
|
7194
7284
|
msgstr ""
|
7195
7285
|
|
7196
|
-
#: ../lib/puppet/provider/user/windows_adsi.rb:
|
7286
|
+
#: ../lib/puppet/provider/user/windows_adsi.rb:147
|
7197
7287
|
msgid "The user account '%s' is locked out; The password will still be changed"
|
7198
7288
|
msgstr ""
|
7199
7289
|
|
7200
|
-
#: ../lib/puppet/provider/user/windows_adsi.rb:
|
7290
|
+
#: ../lib/puppet/provider/user/windows_adsi.rb:149
|
7201
7291
|
msgid "The user account '%s' is expired; The password will still be changed"
|
7202
7292
|
msgstr ""
|
7203
7293
|
|
@@ -7252,7 +7342,7 @@ msgstr ""
|
|
7252
7342
|
msgid "You must pass a callback for non-NONE events"
|
7253
7343
|
msgstr ""
|
7254
7344
|
|
7255
|
-
#: ../lib/puppet/reports/http.rb:
|
7345
|
+
#: ../lib/puppet/reports/http.rb:40
|
7256
7346
|
msgid "Unable to submit report to %{url} [%{code}] %{message}"
|
7257
7347
|
msgstr ""
|
7258
7348
|
|
@@ -7309,11 +7399,11 @@ msgstr ""
|
|
7309
7399
|
msgid "no parameter named '%{name}'"
|
7310
7400
|
msgstr ""
|
7311
7401
|
|
7312
|
-
#: ../lib/puppet/resource.rb:
|
7402
|
+
#: ../lib/puppet/resource.rb:635
|
7313
7403
|
msgid "No title provided and %{type} is not a valid resource reference"
|
7314
7404
|
msgstr ""
|
7315
7405
|
|
7316
|
-
#: ../lib/puppet/resource.rb:
|
7406
|
+
#: ../lib/puppet/resource.rb:709
|
7317
7407
|
msgid "No set of title patterns matched the title \"%{title}\"."
|
7318
7408
|
msgstr ""
|
7319
7409
|
|
@@ -7403,67 +7493,67 @@ msgstr ""
|
|
7403
7493
|
msgid "Could not evaluate: %{detail}"
|
7404
7494
|
msgstr ""
|
7405
7495
|
|
7406
|
-
#: ../lib/puppet/resource/type.rb:
|
7496
|
+
#: ../lib/puppet/resource/type.rb:82
|
7407
7497
|
msgid "Invalid export in %{reference}: %{ex} is not a resource"
|
7408
7498
|
msgstr ""
|
7409
7499
|
|
7410
|
-
#: ../lib/puppet/resource/type.rb:
|
7500
|
+
#: ../lib/puppet/resource/type.rb:83
|
7411
7501
|
msgid "Invalid export in %{reference}: %{ex} is not a capability resource"
|
7412
7502
|
msgstr ""
|
7413
7503
|
|
7414
|
-
#: ../lib/puppet/resource/type.rb:
|
7504
|
+
#: ../lib/puppet/resource/type.rb:87
|
7415
7505
|
msgid "Resource type %{res_type} does not produce %{ex_type}"
|
7416
7506
|
msgstr ""
|
7417
7507
|
|
7418
|
-
#: ../lib/puppet/resource/type.rb:
|
7508
|
+
#: ../lib/puppet/resource/type.rb:148
|
7419
7509
|
msgid "Invalid resource supertype '%{type}'"
|
7420
7510
|
msgstr ""
|
7421
7511
|
|
7422
|
-
#: ../lib/puppet/resource/type.rb:
|
7512
|
+
#: ../lib/puppet/resource/type.rb:200
|
7423
7513
|
msgid "%{name} is not a class; cannot add code to it"
|
7424
7514
|
msgstr ""
|
7425
7515
|
|
7426
|
-
#: ../lib/puppet/resource/type.rb:
|
7516
|
+
#: ../lib/puppet/resource/type.rb:201
|
7427
7517
|
msgid "%{name} is not a class; cannot add code from it"
|
7428
7518
|
msgstr ""
|
7429
7519
|
|
7430
|
-
#: ../lib/puppet/resource/type.rb:
|
7520
|
+
#: ../lib/puppet/resource/type.rb:205
|
7431
7521
|
msgid "Cannot have code outside of a class/node/define because 'freeze_main' is enabled"
|
7432
7522
|
msgstr ""
|
7433
7523
|
|
7434
|
-
#: ../lib/puppet/resource/type.rb:
|
7524
|
+
#: ../lib/puppet/resource/type.rb:209
|
7435
7525
|
msgid "Cannot merge classes with different parent classes (%{name} => %{parent} vs. %{other_name} => %{other_parent})"
|
7436
7526
|
msgstr ""
|
7437
7527
|
|
7438
|
-
#: ../lib/puppet/resource/type.rb:
|
7528
|
+
#: ../lib/puppet/resource/type.rb:240
|
7439
7529
|
msgid "Cannot create resources for defined resource types"
|
7440
7530
|
msgstr ""
|
7441
7531
|
|
7442
|
-
#: ../lib/puppet/resource/type.rb:
|
7532
|
+
#: ../lib/puppet/resource/type.rb:295
|
7443
7533
|
msgid "The method Puppet::Resource::Type.assign_parameter_values is deprecated and will be removed in the next major release of Puppet."
|
7444
7534
|
msgstr ""
|
7445
7535
|
|
7446
|
-
#: ../lib/puppet/resource/type.rb:
|
7536
|
+
#: ../lib/puppet/resource/type.rb:311
|
7447
7537
|
msgid "Could not find parent resource type '%{parent}' of type %{parent_type} in %{env}"
|
7448
7538
|
msgstr ""
|
7449
7539
|
|
7450
|
-
#: ../lib/puppet/resource/type.rb:
|
7540
|
+
#: ../lib/puppet/resource/type.rb:438
|
7451
7541
|
msgid "Parameter '%{name}' is given a type, but is not a valid parameter."
|
7452
7542
|
msgstr ""
|
7453
7543
|
|
7454
|
-
#: ../lib/puppet/resource/type.rb:
|
7544
|
+
#: ../lib/puppet/resource/type.rb:441
|
7455
7545
|
msgid "Parameter '%{name}' is given a type that is not a Puppet Type, got %{class_name}"
|
7456
7546
|
msgstr ""
|
7457
7547
|
|
7458
|
-
#: ../lib/puppet/resource/type.rb:
|
7548
|
+
#: ../lib/puppet/resource/type.rb:483
|
7459
7549
|
msgid "Could not find scope for %{class_name}"
|
7460
7550
|
msgstr ""
|
7461
7551
|
|
7462
|
-
#: ../lib/puppet/resource/type.rb:
|
7552
|
+
#: ../lib/puppet/resource/type.rb:504
|
7463
7553
|
msgid "%{param} is a metaparam; this value will inherit to all contained resources in the %{name} definition"
|
7464
7554
|
msgstr ""
|
7465
7555
|
|
7466
|
-
#: ../lib/puppet/resource/type.rb:
|
7556
|
+
#: ../lib/puppet/resource/type.rb:506
|
7467
7557
|
msgid "%{param} is a metaparameter; please choose another parameter name in the %{name} definition"
|
7468
7558
|
msgstr ""
|
7469
7559
|
|
@@ -7555,49 +7645,49 @@ msgstr ""
|
|
7555
7645
|
msgid "Invalid setting type '%{type}'"
|
7556
7646
|
msgstr ""
|
7557
7647
|
|
7558
|
-
#: ../lib/puppet/settings.rb:
|
7648
|
+
#: ../lib/puppet/settings.rb:903
|
7559
7649
|
msgid "Unknown searchpath case: %{source_type} for the %{source} settings path element."
|
7560
7650
|
msgstr ""
|
7561
7651
|
|
7562
|
-
#: ../lib/puppet/settings.rb:
|
7652
|
+
#: ../lib/puppet/settings.rb:966
|
7563
7653
|
msgid "setting definition for '%{name}' is not a hash!"
|
7564
7654
|
msgstr ""
|
7565
7655
|
|
7566
|
-
#: ../lib/puppet/settings.rb:
|
7656
|
+
#: ../lib/puppet/settings.rb:971
|
7567
7657
|
msgid "Setting %{name} is already defined"
|
7568
7658
|
msgstr ""
|
7569
7659
|
|
7570
|
-
#: ../lib/puppet/settings.rb:
|
7660
|
+
#: ../lib/puppet/settings.rb:977
|
7571
7661
|
msgid "Setting %{name} is already using short name '%{short}'"
|
7572
7662
|
msgstr ""
|
7573
7663
|
|
7574
|
-
#: ../lib/puppet/settings.rb:
|
7664
|
+
#: ../lib/puppet/settings.rb:1241
|
7575
7665
|
msgid "Setting %{name} is deprecated."
|
7576
7666
|
msgstr ""
|
7577
7667
|
|
7578
7668
|
#. TRANSLATORS 'puppet.conf' is a file name and should not be translated
|
7579
|
-
#: ../lib/puppet/settings.rb:
|
7669
|
+
#: ../lib/puppet/settings.rb:1246
|
7580
7670
|
msgid "Setting %{name} is deprecated in puppet.conf."
|
7581
7671
|
msgstr ""
|
7582
7672
|
|
7583
|
-
#: ../lib/puppet/settings.rb:
|
7673
|
+
#: ../lib/puppet/settings.rb:1417
|
7584
7674
|
msgid "Error converting value for param '%{name}': %{detail}"
|
7585
7675
|
msgstr ""
|
7586
7676
|
|
7587
|
-
#: ../lib/puppet/settings.rb:
|
7677
|
+
#: ../lib/puppet/settings.rb:1441
|
7588
7678
|
msgid "Could not find value for %{expression}"
|
7589
7679
|
msgstr ""
|
7590
7680
|
|
7591
7681
|
#. TRANSLATORS '$environment' is a Puppet specific variable and should not be translated
|
7592
|
-
#: ../lib/puppet/settings.rb:
|
7682
|
+
#: ../lib/puppet/settings.rb:1451
|
7593
7683
|
msgid "You cannot interpolate $environment within '%{setting_name}' when using directory environments."
|
7594
7684
|
msgstr ""
|
7595
7685
|
|
7596
|
-
#: ../lib/puppet/settings.rb:
|
7686
|
+
#: ../lib/puppet/settings.rb:1452
|
7597
7687
|
msgid "Its value will remain %{value}."
|
7598
7688
|
msgstr ""
|
7599
7689
|
|
7600
|
-
#: ../lib/puppet/settings.rb:
|
7690
|
+
#: ../lib/puppet/settings.rb:1483
|
7601
7691
|
msgid "Attempt to assign a value to unknown setting %{name}"
|
7602
7692
|
msgstr ""
|
7603
7693
|
|
@@ -7951,79 +8041,87 @@ msgstr ""
|
|
7951
8041
|
msgid "Error registering ssl custom OIDs mapping from file '%{custom_oid_file}': %{err}"
|
7952
8042
|
msgstr ""
|
7953
8043
|
|
7954
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
8044
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:66
|
8045
|
+
msgid "Failed to add '%{path}' as a trusted CA file: %{detail}"
|
8046
|
+
msgstr ""
|
8047
|
+
|
8048
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:70
|
8049
|
+
msgid "The 'ssl_trust_store' setting does not refer to a file and will be ignored: '%{path}'"
|
8050
|
+
msgstr ""
|
8051
|
+
|
8052
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:104
|
7955
8053
|
msgid "CA certs are missing"
|
7956
8054
|
msgstr ""
|
7957
8055
|
|
7958
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
8056
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:105
|
7959
8057
|
msgid "CRLs are missing"
|
7960
8058
|
msgstr ""
|
7961
8059
|
|
7962
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
8060
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:106
|
7963
8061
|
msgid "Private key is missing"
|
7964
8062
|
msgstr ""
|
7965
8063
|
|
7966
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
8064
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:107
|
7967
8065
|
msgid "Client cert is missing"
|
7968
8066
|
msgstr ""
|
7969
8067
|
|
7970
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
8068
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:113
|
7971
8069
|
msgid "Unsupported key '%{type}'"
|
7972
8070
|
msgstr ""
|
7973
8071
|
|
7974
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
8072
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:117
|
7975
8073
|
msgid "The certificate for '%{name}' does not match its private key"
|
7976
8074
|
msgstr ""
|
7977
8075
|
|
7978
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
8076
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:156
|
7979
8077
|
msgid "Failed to load private key for host '%{name}': %{message}"
|
7980
8078
|
msgstr ""
|
7981
8079
|
|
7982
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
8080
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:170
|
7983
8081
|
msgid "The CSR for host '%{name}' does not match the public key"
|
7984
8082
|
msgstr ""
|
7985
8083
|
|
7986
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
8084
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:234
|
7987
8085
|
msgid "The issuer '%{issuer}' of certificate '%{subject}' cannot be found locally"
|
7988
8086
|
msgstr ""
|
7989
8087
|
|
7990
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
8088
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:250
|
7991
8089
|
msgid "The certificate '%{subject}' is not yet valid, verify time is synchronized"
|
7992
8090
|
msgstr ""
|
7993
8091
|
|
7994
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
8092
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:252
|
7995
8093
|
msgid "The certificate '%{subject}' has expired, verify time is synchronized"
|
7996
8094
|
msgstr ""
|
7997
8095
|
|
7998
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
8096
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:254
|
7999
8097
|
msgid "The CRL issued by '%{issuer}' is not yet valid, verify time is synchronized"
|
8000
8098
|
msgstr ""
|
8001
8099
|
|
8002
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
8100
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:256
|
8003
8101
|
msgid "The CRL issued by '%{issuer}' has expired, verify time is synchronized"
|
8004
8102
|
msgstr ""
|
8005
8103
|
|
8006
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
8104
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:258
|
8007
8105
|
msgid "Invalid signature for certificate '%{subject}'"
|
8008
8106
|
msgstr ""
|
8009
8107
|
|
8010
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
8108
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:260
|
8011
8109
|
msgid "Invalid signature for CRL issued by '%{issuer}'"
|
8012
8110
|
msgstr ""
|
8013
8111
|
|
8014
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
8112
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:262
|
8015
8113
|
msgid "The issuer '%{issuer}' of certificate '%{subject}' is missing"
|
8016
8114
|
msgstr ""
|
8017
8115
|
|
8018
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
8116
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:265
|
8019
8117
|
msgid "The CRL issued by '%{issuer}' is missing"
|
8020
8118
|
msgstr ""
|
8021
8119
|
|
8022
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
8120
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:267
|
8023
8121
|
msgid "Certificate '%{subject}' is revoked"
|
8024
8122
|
msgstr ""
|
8025
8123
|
|
8026
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
8124
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:271
|
8027
8125
|
msgid "Certificate '%{subject}' failed verification (%{err}): %{err_utf8}"
|
8028
8126
|
msgstr ""
|
8029
8127
|
|
@@ -8107,20 +8205,24 @@ msgstr ""
|
|
8107
8205
|
msgid "Couldn't fetch certificate from CA server; you might still need to sign this agent's certificate (%{name}). Exiting now because the maxwaitforcert timeout has been exceeded."
|
8108
8206
|
msgstr ""
|
8109
8207
|
|
8110
|
-
#: ../lib/puppet/ssl/state_machine.rb:
|
8111
|
-
msgid "
|
8208
|
+
#: ../lib/puppet/ssl/state_machine.rb:305
|
8209
|
+
msgid "Another puppet instance is already running and the waitforlock setting is set to 0; exiting"
|
8112
8210
|
msgstr ""
|
8113
8211
|
|
8114
|
-
#: ../lib/puppet/ssl/state_machine.rb:
|
8115
|
-
msgid "
|
8212
|
+
#: ../lib/puppet/ssl/state_machine.rb:307
|
8213
|
+
msgid "Another puppet instance is already running and the maxwaitforlock timeout has been exceeded; exiting"
|
8116
8214
|
msgstr ""
|
8117
8215
|
|
8118
|
-
#: ../lib/puppet/ssl/state_machine.rb:
|
8119
|
-
msgid "
|
8216
|
+
#: ../lib/puppet/ssl/state_machine.rb:309
|
8217
|
+
msgid "Another puppet instance is already running; waiting for it to finish"
|
8120
8218
|
msgstr ""
|
8121
8219
|
|
8122
|
-
#: ../lib/puppet/ssl/state_machine.rb:
|
8123
|
-
msgid "
|
8220
|
+
#: ../lib/puppet/ssl/state_machine.rb:427
|
8221
|
+
msgid "Verified client certificate '%{subject}' fingerprint %{digest}"
|
8222
|
+
msgstr ""
|
8223
|
+
|
8224
|
+
#: ../lib/puppet/ssl/state_machine.rb:429
|
8225
|
+
msgid "Verified CA certificate '%{subject}' fingerprint %{digest}"
|
8124
8226
|
msgstr ""
|
8125
8227
|
|
8126
8228
|
#. 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
|
@@ -8370,77 +8472,89 @@ msgstr ""
|
|
8370
8472
|
msgid "audit change: newly-recorded value %s"
|
8371
8473
|
msgstr ""
|
8372
8474
|
|
8373
|
-
#: ../lib/puppet/
|
8475
|
+
#: ../lib/puppet/trusted_external.rb:6
|
8476
|
+
msgid "Retrieving trusted external data from %{command}"
|
8477
|
+
msgstr ""
|
8478
|
+
|
8479
|
+
#: ../lib/puppet/trusted_external.rb:20
|
8480
|
+
msgid "Skipping non-executable file %{file}"
|
8481
|
+
msgstr ""
|
8482
|
+
|
8483
|
+
#: ../lib/puppet/trusted_external.rb:25
|
8484
|
+
msgid "There is more than one '%{basename}' script in %{dir}"
|
8485
|
+
msgstr ""
|
8486
|
+
|
8487
|
+
#: ../lib/puppet/type.rb:519
|
8374
8488
|
msgid "Options must be a hash, not %{type}"
|
8375
8489
|
msgstr ""
|
8376
8490
|
|
8377
|
-
#: ../lib/puppet/type.rb:
|
8491
|
+
#: ../lib/puppet/type.rb:522
|
8378
8492
|
msgid "Class %{class_name} already has a property named %{property}"
|
8379
8493
|
msgstr ""
|
8380
8494
|
|
8381
|
-
#: ../lib/puppet/type.rb:
|
8495
|
+
#: ../lib/puppet/type.rb:609
|
8382
8496
|
msgid "Class %{class_name} has not defined parameters"
|
8383
8497
|
msgstr ""
|
8384
8498
|
|
8385
|
-
#: ../lib/puppet/type.rb:
|
8499
|
+
#: ../lib/puppet/type.rb:696
|
8386
8500
|
msgid "Parameter %{name} failed on %{ref}: %{detail}"
|
8387
8501
|
msgstr ""
|
8388
8502
|
|
8389
|
-
#: ../lib/puppet/type.rb:
|
8503
|
+
#: ../lib/puppet/type.rb:719
|
8390
8504
|
msgid "Undefined attribute '%{attribute}' in %{name}"
|
8391
8505
|
msgstr ""
|
8392
8506
|
|
8393
8507
|
#. TRANSLATORS 'is' is a variable name and should not be translated
|
8394
8508
|
#. TRANSLATORS 'is' is a variable name and should not be translated
|
8395
|
-
#: ../lib/puppet/type.rb:
|
8509
|
+
#: ../lib/puppet/type.rb:1062 ../lib/puppet/type.rb:1073
|
8396
8510
|
msgid "The 'is' value is not in the 'is' array for '%{name}'"
|
8397
8511
|
msgstr ""
|
8398
8512
|
|
8399
|
-
#: ../lib/puppet/type.rb:
|
8513
|
+
#: ../lib/puppet/type.rb:1204
|
8400
8514
|
msgid "%{name} has no providers and has not overridden 'instances'"
|
8401
8515
|
msgstr ""
|
8402
8516
|
|
8403
|
-
#: ../lib/puppet/type.rb:
|
8517
|
+
#: ../lib/puppet/type.rb:1468
|
8404
8518
|
msgid "Cannot add aliases without a catalog"
|
8405
8519
|
msgstr ""
|
8406
8520
|
|
8407
|
-
#: ../lib/puppet/type.rb:
|
8521
|
+
#: ../lib/puppet/type.rb:1548
|
8408
8522
|
msgid "Could not find %{description} %{ref} for %{resource}"
|
8409
8523
|
msgstr ""
|
8410
8524
|
|
8411
|
-
#: ../lib/puppet/type.rb:
|
8525
|
+
#: ../lib/puppet/type.rb:1825
|
8412
8526
|
msgid "Found multiple default providers for %{name}: %{provider_list}; using %{selected_provider}"
|
8413
8527
|
msgstr ""
|
8414
8528
|
|
8415
|
-
#: ../lib/puppet/type.rb:
|
8529
|
+
#: ../lib/puppet/type.rb:1912
|
8416
8530
|
msgid "Could not find parent provider %{parent} of %{name}"
|
8417
8531
|
msgstr ""
|
8418
8532
|
|
8419
|
-
#: ../lib/puppet/type.rb:
|
8533
|
+
#: ../lib/puppet/type.rb:1986
|
8420
8534
|
msgid "Invalid %{resource} provider '%{provider_class}'"
|
8421
8535
|
msgstr ""
|
8422
8536
|
|
8423
|
-
#: ../lib/puppet/type.rb:
|
8537
|
+
#: ../lib/puppet/type.rb:2071
|
8424
8538
|
msgid "Could not find %{name} provider of %{provider}"
|
8425
8539
|
msgstr ""
|
8426
8540
|
|
8427
|
-
#: ../lib/puppet/type.rb:
|
8541
|
+
#: ../lib/puppet/type.rb:2189
|
8428
8542
|
msgid "You cannot add relationships without a catalog"
|
8429
8543
|
msgstr ""
|
8430
8544
|
|
8431
|
-
#: ../lib/puppet/type.rb:
|
8545
|
+
#: ../lib/puppet/type.rb:2492
|
8432
8546
|
msgid "Unable to mark '%{name}' as sensitive: %{name} is a parameter and not a property, and cannot be automatically redacted."
|
8433
8547
|
msgstr ""
|
8434
8548
|
|
8435
|
-
#: ../lib/puppet/type.rb:
|
8549
|
+
#: ../lib/puppet/type.rb:2495
|
8436
8550
|
msgid "Unable to mark '%{name}' as sensitive: the property itself was not assigned a value."
|
8437
8551
|
msgstr ""
|
8438
8552
|
|
8439
|
-
#: ../lib/puppet/type.rb:
|
8553
|
+
#: ../lib/puppet/type.rb:2497
|
8440
8554
|
msgid "Unable to mark '%{name}' as sensitive: the property itself is not defined on %{type}."
|
8441
8555
|
msgstr ""
|
8442
8556
|
|
8443
|
-
#: ../lib/puppet/type.rb:
|
8557
|
+
#: ../lib/puppet/type.rb:2555
|
8444
8558
|
msgid "Could not set %{attribute} on %{class_name}: %{detail}"
|
8445
8559
|
msgstr ""
|
8446
8560
|
|
@@ -8529,75 +8643,75 @@ msgstr ""
|
|
8529
8643
|
msgid "Invalid recurselimit value %{value}"
|
8530
8644
|
msgstr ""
|
8531
8645
|
|
8532
|
-
#: ../lib/puppet/type/file.rb:
|
8646
|
+
#: ../lib/puppet/type/file.rb:418
|
8533
8647
|
msgid "You cannot specify more than one of %{creators}"
|
8534
8648
|
msgstr ""
|
8535
8649
|
|
8536
|
-
#: ../lib/puppet/type/file.rb:
|
8650
|
+
#: ../lib/puppet/type/file.rb:420
|
8537
8651
|
msgid "You cannot specify a remote recursion without a source"
|
8538
8652
|
msgstr ""
|
8539
8653
|
|
8540
|
-
#: ../lib/puppet/type/file.rb:
|
8654
|
+
#: ../lib/puppet/type/file.rb:422
|
8541
8655
|
msgid "You cannot specify source when using checksum 'none'"
|
8542
8656
|
msgstr ""
|
8543
8657
|
|
8544
|
-
#: ../lib/puppet/type/file.rb:
|
8658
|
+
#: ../lib/puppet/type/file.rb:425
|
8545
8659
|
msgid "You cannot specify content when using checksum '%{checksum_type}'"
|
8546
8660
|
msgstr ""
|
8547
8661
|
|
8548
|
-
#: ../lib/puppet/type/file.rb:
|
8662
|
+
#: ../lib/puppet/type/file.rb:428
|
8549
8663
|
msgid "Possible error: recurselimit is set but not recurse, no recursion will happen"
|
8550
8664
|
msgstr ""
|
8551
8665
|
|
8552
|
-
#: ../lib/puppet/type/file.rb:
|
8666
|
+
#: ../lib/puppet/type/file.rb:436
|
8553
8667
|
msgid "Checksum value '%{value}' is not a valid checksum type %{checksum}"
|
8554
8668
|
msgstr ""
|
8555
8669
|
|
8556
|
-
#: ../lib/puppet/type/file.rb:
|
8670
|
+
#: ../lib/puppet/type/file.rb:439
|
8557
8671
|
msgid "Checksum value is ignored unless content or source are specified"
|
8558
8672
|
msgstr ""
|
8559
8673
|
|
8560
|
-
#: ../lib/puppet/type/file.rb:
|
8674
|
+
#: ../lib/puppet/type/file.rb:477
|
8561
8675
|
msgid "Can not find filebucket for backups without a catalog"
|
8562
8676
|
msgstr ""
|
8563
8677
|
|
8564
|
-
#: ../lib/puppet/type/file.rb:
|
8678
|
+
#: ../lib/puppet/type/file.rb:482
|
8565
8679
|
msgid "Could not find filebucket %{backup} specified in backup"
|
8566
8680
|
msgstr ""
|
8567
8681
|
|
8568
|
-
#: ../lib/puppet/type/file.rb:
|
8682
|
+
#: ../lib/puppet/type/file.rb:780
|
8569
8683
|
msgid "Could not back up file of type %{current_type}"
|
8570
8684
|
msgstr ""
|
8571
8685
|
|
8572
|
-
#: ../lib/puppet/type/file.rb:
|
8686
|
+
#: ../lib/puppet/type/file.rb:795
|
8573
8687
|
msgid "Could not remove files of type %{current_type}"
|
8574
8688
|
msgstr ""
|
8575
8689
|
|
8576
8690
|
#. TRANSLATORS "source_permissions => ignore" should not be translated
|
8577
|
-
#: ../lib/puppet/type/file.rb:
|
8691
|
+
#: ../lib/puppet/type/file.rb:806
|
8578
8692
|
msgid "Copying owner/mode/group from the source file on Windows is not supported; use source_permissions => ignore."
|
8579
8693
|
msgstr ""
|
8580
8694
|
|
8581
8695
|
#. TRANSLATORS "stat" is a program name and should not be translated
|
8582
|
-
#: ../lib/puppet/type/file.rb:
|
8696
|
+
#: ../lib/puppet/type/file.rb:887 ../lib/puppet/type/tidy.rb:352
|
8583
8697
|
msgid "Could not stat; permission denied"
|
8584
8698
|
msgstr ""
|
8585
8699
|
|
8586
|
-
#: ../lib/puppet/type/file.rb:
|
8700
|
+
#: ../lib/puppet/type/file.rb:890
|
8587
8701
|
msgid "Could not stat; invalid pathname"
|
8588
8702
|
msgstr ""
|
8589
8703
|
|
8590
|
-
#: ../lib/puppet/type/file.rb:
|
8704
|
+
#: ../lib/puppet/type/file.rb:1018
|
8591
8705
|
msgid "Not removing directory; use 'force' to override"
|
8592
8706
|
msgstr ""
|
8593
8707
|
|
8594
8708
|
#. TRANSLATORS refers to a file which could not be backed up
|
8595
|
-
#: ../lib/puppet/type/file.rb:
|
8709
|
+
#: ../lib/puppet/type/file.rb:1043
|
8596
8710
|
msgid "Could not back up; will not remove"
|
8597
8711
|
msgstr ""
|
8598
8712
|
|
8599
|
-
#: ../lib/puppet/type/file.rb:
|
8600
|
-
msgid "File written to disk did not match checksum; discarding changes (%{content_checksum} vs %{
|
8713
|
+
#: ../lib/puppet/type/file.rb:1058
|
8714
|
+
msgid "File written to disk did not match desired checksum; discarding changes (%{content_checksum} vs %{desired_checksum})"
|
8601
8715
|
msgstr ""
|
8602
8716
|
|
8603
8717
|
#: ../lib/puppet/type/file/checksum.rb:20
|
@@ -8638,7 +8752,7 @@ msgid "Not managing symlink mode"
|
|
8638
8752
|
msgstr ""
|
8639
8753
|
|
8640
8754
|
#. TRANSLATORS "source_permissions" is a parameter name and should not be translated
|
8641
|
-
#: ../lib/puppet/type/file/source.rb:
|
8755
|
+
#: ../lib/puppet/type/file/source.rb:373
|
8642
8756
|
msgid "The `source_permissions` parameter is deprecated. Explicitly set `owner`, `group`, and `mode`."
|
8643
8757
|
msgstr ""
|
8644
8758
|
|
@@ -8662,27 +8776,35 @@ msgstr ""
|
|
8662
8776
|
msgid "Invalid GID %{gid}"
|
8663
8777
|
msgstr ""
|
8664
8778
|
|
8665
|
-
#: ../lib/puppet/type/package.rb:
|
8779
|
+
#: ../lib/puppet/type/package.rb:128 ../lib/puppet/type/package.rb:142
|
8666
8780
|
msgid "Could not update: %{detail}"
|
8667
8781
|
msgstr ""
|
8668
8782
|
|
8669
|
-
#: ../lib/puppet/type/package.rb:
|
8783
|
+
#: ../lib/puppet/type/package.rb:177
|
8670
8784
|
msgid "Could not get latest version: %{detail}"
|
8671
8785
|
msgstr ""
|
8672
8786
|
|
8673
|
-
#: ../lib/puppet/type/package.rb:
|
8787
|
+
#: ../lib/puppet/type/package.rb:277
|
8674
8788
|
msgid "Name must be a String not %{klass}"
|
8675
8789
|
msgstr ""
|
8676
8790
|
|
8677
|
-
#: ../lib/puppet/type/package.rb:
|
8791
|
+
#: ../lib/puppet/type/package.rb:423
|
8792
|
+
msgid "Cannot have both `ensure => disabled` and `flavor`"
|
8793
|
+
msgstr ""
|
8794
|
+
|
8795
|
+
#: ../lib/puppet/type/package.rb:522
|
8678
8796
|
msgid "Cannot have both `enable_only => true` and `flavor`"
|
8679
8797
|
msgstr ""
|
8680
8798
|
|
8681
|
-
#: ../lib/puppet/type/package.rb:
|
8799
|
+
#: ../lib/puppet/type/package.rb:525
|
8800
|
+
msgid "Cannot have both `ensure => disabled` and `enable_only => true`"
|
8801
|
+
msgstr ""
|
8802
|
+
|
8803
|
+
#: ../lib/puppet/type/package.rb:687
|
8682
8804
|
msgid "Invalid hold value %{value}. %{doc}"
|
8683
8805
|
msgstr ""
|
8684
8806
|
|
8685
|
-
#: ../lib/puppet/type/package.rb:
|
8807
|
+
#: ../lib/puppet/type/package.rb:717
|
8686
8808
|
msgid "You cannot use \"mark\" property while \"ensure\" is one of [\"absent\", \"purged\", \"held\"]"
|
8687
8809
|
msgstr ""
|
8688
8810
|
|
@@ -8742,7 +8864,15 @@ msgstr ""
|
|
8742
8864
|
msgid "Setting enable to %{value} is only supported on Microsoft Windows."
|
8743
8865
|
msgstr ""
|
8744
8866
|
|
8745
|
-
#: ../lib/puppet/type/service.rb:
|
8867
|
+
#: ../lib/puppet/type/service.rb:166
|
8868
|
+
msgid "The 'logonaccount' parameter is mandatory when setting 'logonpassword'."
|
8869
|
+
msgstr ""
|
8870
|
+
|
8871
|
+
#: ../lib/puppet/type/service.rb:167 ../lib/puppet/type/user.rb:271
|
8872
|
+
msgid "Passwords cannot include ':'"
|
8873
|
+
msgstr ""
|
8874
|
+
|
8875
|
+
#: ../lib/puppet/type/service.rb:304
|
8746
8876
|
msgid "\"%{value}\" is not a positive integer: the timeout parameter must be specified as a positive integer"
|
8747
8877
|
msgstr ""
|
8748
8878
|
|
@@ -8777,93 +8907,81 @@ msgstr ""
|
|
8777
8907
|
msgid "File does not exist"
|
8778
8908
|
msgstr ""
|
8779
8909
|
|
8780
|
-
#: ../lib/puppet/type/user.rb:
|
8910
|
+
#: ../lib/puppet/type/user.rb:182
|
8781
8911
|
msgid "Could not find group(s) %{groups}"
|
8782
8912
|
msgstr ""
|
8783
8913
|
|
8784
|
-
#: ../lib/puppet/type/user.rb:
|
8785
|
-
msgid "Passwords cannot include ':'"
|
8786
|
-
msgstr ""
|
8787
|
-
|
8788
|
-
#: ../lib/puppet/type/user.rb:276
|
8914
|
+
#: ../lib/puppet/type/user.rb:291
|
8789
8915
|
msgid "Password minimum age must be provided as a number."
|
8790
8916
|
msgstr ""
|
8791
8917
|
|
8792
|
-
#: ../lib/puppet/type/user.rb:
|
8918
|
+
#: ../lib/puppet/type/user.rb:310
|
8793
8919
|
msgid "Password maximum age must be provided as a number."
|
8794
8920
|
msgstr ""
|
8795
8921
|
|
8796
|
-
#: ../lib/puppet/type/user.rb:
|
8922
|
+
#: ../lib/puppet/type/user.rb:341
|
8797
8923
|
msgid "Group names must be provided, not GID numbers."
|
8798
8924
|
msgstr ""
|
8799
8925
|
|
8800
|
-
#: ../lib/puppet/type/user.rb:
|
8926
|
+
#: ../lib/puppet/type/user.rb:343
|
8801
8927
|
msgid "Group names must be provided as an array, not a comma-separated list."
|
8802
8928
|
msgstr ""
|
8803
8929
|
|
8804
|
-
#: ../lib/puppet/type/user.rb:
|
8930
|
+
#: ../lib/puppet/type/user.rb:344
|
8805
8931
|
msgid "Group names must not be empty. If you want to specify \"no groups\" pass an empty array"
|
8806
8932
|
msgstr ""
|
8807
8933
|
|
8808
|
-
#: ../lib/puppet/type/user.rb:
|
8934
|
+
#: ../lib/puppet/type/user.rb:437
|
8809
8935
|
msgid "User provider %{name} can not manage home directories"
|
8810
8936
|
msgstr ""
|
8811
8937
|
|
8812
8938
|
#. TRANSLATORS YYYY-MM-DD represents a date with a four-digit year, a two-digit month, and a two-digit day,
|
8813
8939
|
#. TRANSLATORS separated by dashes.
|
8814
|
-
#: ../lib/puppet/type/user.rb:
|
8940
|
+
#: ../lib/puppet/type/user.rb:454
|
8815
8941
|
msgid "Expiry dates must be YYYY-MM-DD or the string \"absent\""
|
8816
8942
|
msgstr ""
|
8817
8943
|
|
8818
|
-
#: ../lib/puppet/type/user.rb:
|
8944
|
+
#: ../lib/puppet/type/user.rb:521
|
8819
8945
|
msgid "Role names must be provided, not numbers"
|
8820
8946
|
msgstr ""
|
8821
8947
|
|
8822
|
-
#: ../lib/puppet/type/user.rb:
|
8948
|
+
#: ../lib/puppet/type/user.rb:523
|
8823
8949
|
msgid "Role names must be provided as an array, not a comma-separated list"
|
8824
8950
|
msgstr ""
|
8825
8951
|
|
8826
|
-
#: ../lib/puppet/type/user.rb:
|
8952
|
+
#: ../lib/puppet/type/user.rb:560
|
8827
8953
|
msgid "Auth names must be provided, not numbers"
|
8828
8954
|
msgstr ""
|
8829
8955
|
|
8830
|
-
#: ../lib/puppet/type/user.rb:
|
8956
|
+
#: ../lib/puppet/type/user.rb:562
|
8831
8957
|
msgid "Auth names must be provided as an array, not a comma-separated list"
|
8832
8958
|
msgstr ""
|
8833
8959
|
|
8834
|
-
#: ../lib/puppet/type/user.rb:
|
8960
|
+
#: ../lib/puppet/type/user.rb:586
|
8835
8961
|
msgid "Profile names must be provided, not numbers"
|
8836
8962
|
msgstr ""
|
8837
8963
|
|
8838
|
-
#: ../lib/puppet/type/user.rb:
|
8964
|
+
#: ../lib/puppet/type/user.rb:588
|
8839
8965
|
msgid "Profile names must be provided as an array, not a comma-separated list"
|
8840
8966
|
msgstr ""
|
8841
8967
|
|
8842
|
-
#: ../lib/puppet/type/user.rb:
|
8968
|
+
#: ../lib/puppet/type/user.rb:699
|
8843
8969
|
msgid "Ssh_authorized_key type is not available. Cannot purge SSH keys."
|
8844
8970
|
msgstr ""
|
8845
8971
|
|
8846
|
-
#: ../lib/puppet/type/user.rb:
|
8972
|
+
#: ../lib/puppet/type/user.rb:737
|
8847
8973
|
msgid "Each entry for purge_ssh_keys must be a string, not a %{klass}"
|
8848
8974
|
msgstr ""
|
8849
8975
|
|
8850
|
-
#: ../lib/puppet/type/user.rb:
|
8976
|
+
#: ../lib/puppet/type/user.rb:740
|
8851
8977
|
msgid "Paths to keyfiles must be absolute, not %{entry}"
|
8852
8978
|
msgstr ""
|
8853
8979
|
|
8854
|
-
#: ../lib/puppet/type/user.rb:
|
8980
|
+
#: ../lib/puppet/type/user.rb:744
|
8855
8981
|
msgid "purge_ssh_keys must be true, false, or an array of file names, not %{value}"
|
8856
8982
|
msgstr ""
|
8857
8983
|
|
8858
|
-
#: ../lib/puppet/type/user.rb:
|
8859
|
-
msgid "purge_ssh_keys can only be true for users with a defined home directory"
|
8860
|
-
msgstr ""
|
8861
|
-
|
8862
|
-
#: ../lib/puppet/type/user.rb:748
|
8863
|
-
msgid "purge_ssh_keys value '%{value}' meta character ~ or %{home_placeholder} only allowed for users with a defined home directory"
|
8864
|
-
msgstr ""
|
8865
|
-
|
8866
|
-
#: ../lib/puppet/type/user.rb:763
|
8984
|
+
#: ../lib/puppet/type/user.rb:772
|
8867
8985
|
msgid "Class name must be provided."
|
8868
8986
|
msgstr ""
|
8869
8987
|
|
@@ -8914,23 +9032,23 @@ msgstr ""
|
|
8914
9032
|
msgid "Couldn't expand PATH containing a ~ character; ignoring PATH element '%{dir}'."
|
8915
9033
|
msgstr ""
|
8916
9034
|
|
8917
|
-
#: ../lib/puppet/util.rb:
|
9035
|
+
#: ../lib/puppet/util.rb:318
|
8918
9036
|
msgid "unknown platform %{platform} in absolute_path"
|
8919
9037
|
msgstr ""
|
8920
9038
|
|
8921
|
-
#: ../lib/puppet/util.rb:
|
9039
|
+
#: ../lib/puppet/util.rb:353
|
8922
9040
|
msgid "Failed to convert '%{path}' to URI: %{detail}"
|
8923
9041
|
msgstr ""
|
8924
9042
|
|
8925
|
-
#: ../lib/puppet/util.rb:
|
9043
|
+
#: ../lib/puppet/util.rb:453
|
8926
9044
|
msgid "path may not be nil"
|
8927
9045
|
msgstr ""
|
8928
9046
|
|
8929
|
-
#: ../lib/puppet/util.rb:
|
9047
|
+
#: ../lib/puppet/util.rb:621
|
8930
9048
|
msgid "replace_file requires a block"
|
8931
9049
|
msgstr ""
|
8932
9050
|
|
8933
|
-
#: ../lib/puppet/util.rb:
|
9051
|
+
#: ../lib/puppet/util.rb:625
|
8934
9052
|
msgid "replace_file default_mode: %{default_mode} is invalid"
|
8935
9053
|
msgstr ""
|
8936
9054
|
|
@@ -8962,11 +9080,11 @@ msgstr ""
|
|
8962
9080
|
msgid "Failed to abandon a child process contract"
|
8963
9081
|
msgstr ""
|
8964
9082
|
|
8965
|
-
#: ../lib/puppet/util/autoload.rb:
|
9083
|
+
#: ../lib/puppet/util/autoload.rb:83
|
8966
9084
|
msgid "Could not autoload %{name}: %{detail}"
|
8967
9085
|
msgstr ""
|
8968
9086
|
|
8969
|
-
#: ../lib/puppet/util/autoload.rb:
|
9087
|
+
#: ../lib/puppet/util/autoload.rb:184
|
8970
9088
|
msgid "Autoload paths cannot be fully qualified"
|
8971
9089
|
msgstr ""
|
8972
9090
|
|
@@ -8994,15 +9112,15 @@ msgstr ""
|
|
8994
9112
|
msgid "Filebucketed %{f} to %{filebucket} with sum %{sum}"
|
8995
9113
|
msgstr ""
|
8996
9114
|
|
8997
|
-
#: ../lib/puppet/util/character_encoding.rb:
|
9115
|
+
#: ../lib/puppet/util/character_encoding.rb:23
|
8998
9116
|
msgid "%{value} is already labeled as UTF-8 but this encoding is invalid. It cannot be transcoded by Puppet."
|
8999
9117
|
msgstr ""
|
9000
9118
|
|
9001
|
-
#: ../lib/puppet/util/character_encoding.rb:
|
9119
|
+
#: ../lib/puppet/util/character_encoding.rb:45
|
9002
9120
|
msgid "%{error}: %{value} cannot be transcoded by Puppet."
|
9003
9121
|
msgstr ""
|
9004
9122
|
|
9005
|
-
#: ../lib/puppet/util/character_encoding.rb:
|
9123
|
+
#: ../lib/puppet/util/character_encoding.rb:73
|
9006
9124
|
msgid "%{value} is not valid UTF-8 and result of overriding encoding would be invalid."
|
9007
9125
|
msgstr ""
|
9008
9126
|
|
@@ -9201,9 +9319,9 @@ msgstr ""
|
|
9201
9319
|
msgid "Dynamically-bound port lookup failed; using first entry from the `server_list` setting: %{port}"
|
9202
9320
|
msgstr ""
|
9203
9321
|
|
9204
|
-
#. TRANSLATORS '
|
9322
|
+
#. TRANSLATORS 'serverport' is the name of a setting and should not be translated
|
9205
9323
|
#: ../lib/puppet/util/connection.rb:75
|
9206
|
-
msgid "Dynamically-bound port lookup failed; falling back to `
|
9324
|
+
msgid "Dynamically-bound port lookup failed; falling back to `serverport` setting: %{port}"
|
9207
9325
|
msgstr ""
|
9208
9326
|
|
9209
9327
|
#: ../lib/puppet/util/connection.rb:80
|
@@ -9497,10 +9615,6 @@ msgstr ""
|
|
9497
9615
|
msgid "Creating log directory %{dir}"
|
9498
9616
|
msgstr ""
|
9499
9617
|
|
9500
|
-
#: ../lib/puppet/util/log/destinations.rb:102
|
9501
|
-
msgid "Unable to set ownership to %{user}:%{group} for log file: %{path}"
|
9502
|
-
msgstr ""
|
9503
|
-
|
9504
9618
|
#: ../lib/puppet/util/logging.rb:81 ../lib/puppet/util/logging.rb:105
|
9505
9619
|
msgid "Wrapped exception:"
|
9506
9620
|
msgstr ""
|
@@ -9538,7 +9652,7 @@ msgstr ""
|
|
9538
9652
|
msgid "%{value} is an invalid url"
|
9539
9653
|
msgstr ""
|
9540
9654
|
|
9541
|
-
#: ../lib/puppet/util/package/version/rpm.rb:
|
9655
|
+
#: ../lib/puppet/util/package/version/rpm.rb:40
|
9542
9656
|
msgid "Cannot compare, as %{other} is not a Rpm Version"
|
9543
9657
|
msgstr ""
|
9544
9658
|
|
@@ -9786,11 +9900,11 @@ msgstr ""
|
|
9786
9900
|
msgid "Cannot create group if user '%{name}' exists."
|
9787
9901
|
msgstr ""
|
9788
9902
|
|
9789
|
-
#: ../lib/puppet/util/windows/api_types.rb:
|
9903
|
+
#: ../lib/puppet/util/windows/api_types.rb:85
|
9790
9904
|
msgid "Unable to read wide strings with %{null_terminator} terminal nulls"
|
9791
9905
|
msgstr ""
|
9792
9906
|
|
9793
|
-
#: ../lib/puppet/util/windows/api_types.rb:
|
9907
|
+
#: ../lib/puppet/util/windows/api_types.rb:230
|
9794
9908
|
msgid "Bad GUID format."
|
9795
9909
|
msgstr ""
|
9796
9910
|
|
@@ -9845,16 +9959,20 @@ msgstr ""
|
|
9845
9959
|
msgid "Failed to call GetLongPathName"
|
9846
9960
|
msgstr ""
|
9847
9961
|
|
9848
|
-
#: ../lib/puppet/util/windows/principal.rb:
|
9962
|
+
#: ../lib/puppet/util/windows/principal.rb:67 ../lib/puppet/util/windows/principal.rb:74
|
9849
9963
|
msgid "Failed to call LookupAccountNameW with account: %{account_name}"
|
9850
9964
|
msgstr ""
|
9851
9965
|
|
9852
9966
|
#. TRANSLATORS `lookup_account_sid` is a variable name and should not be translated
|
9853
|
-
#: ../lib/puppet/util/windows/principal.rb:
|
9967
|
+
#: ../lib/puppet/util/windows/principal.rb:97
|
9854
9968
|
msgid "Byte array for lookup_account_sid must not be nil and must be at least 1 byte long"
|
9855
9969
|
msgstr ""
|
9856
9970
|
|
9857
|
-
#: ../lib/puppet/util/windows/principal.rb:
|
9971
|
+
#: ../lib/puppet/util/windows/principal.rb:114
|
9972
|
+
msgid "Byte array for lookup_account_sid is invalid: %{sid_bytes}"
|
9973
|
+
msgstr ""
|
9974
|
+
|
9975
|
+
#: ../lib/puppet/util/windows/principal.rb:122 ../lib/puppet/util/windows/principal.rb:129
|
9858
9976
|
msgid "Failed to call LookupAccountSidW with bytes: %{sid_bytes}"
|
9859
9977
|
msgstr ""
|
9860
9978
|
|
@@ -9890,39 +10008,39 @@ msgstr ""
|
|
9890
10008
|
msgid "Failed to open registry key '%{key}\\%{path}'"
|
9891
10009
|
msgstr ""
|
9892
10010
|
|
9893
|
-
#: ../lib/puppet/util/windows/registry.rb:
|
10011
|
+
#: ../lib/puppet/util/windows/registry.rb:133
|
9894
10012
|
msgid "Failed to enumerate %{key} registry keys at index %{index}"
|
9895
10013
|
msgstr ""
|
9896
10014
|
|
9897
|
-
#: ../lib/puppet/util/windows/registry.rb:
|
10015
|
+
#: ../lib/puppet/util/windows/registry.rb:167
|
9898
10016
|
msgid "Failed to enumerate %{key} registry values at index %{index}"
|
9899
10017
|
msgstr ""
|
9900
10018
|
|
9901
|
-
#: ../lib/puppet/util/windows/registry.rb:
|
10019
|
+
#: ../lib/puppet/util/windows/registry.rb:197
|
9902
10020
|
msgid "Failed to query registry %{key} for sizes"
|
9903
10021
|
msgstr ""
|
9904
10022
|
|
9905
|
-
#: ../lib/puppet/util/windows/registry.rb:
|
10023
|
+
#: ../lib/puppet/util/windows/registry.rb:233
|
9906
10024
|
msgid "Type mismatch (expect %{rtype} but %{type} present)"
|
9907
10025
|
msgstr ""
|
9908
10026
|
|
9909
|
-
#: ../lib/puppet/util/windows/registry.rb:
|
10027
|
+
#: ../lib/puppet/util/windows/registry.rb:255
|
9910
10028
|
msgid "Type %{type} is not supported."
|
9911
10029
|
msgstr ""
|
9912
10030
|
|
9913
|
-
#: ../lib/puppet/util/windows/registry.rb:
|
10031
|
+
#: ../lib/puppet/util/windows/registry.rb:260
|
9914
10032
|
msgid "A value in the registry key %{parent_key_name}%{key} is corrupt or invalid"
|
9915
10033
|
msgstr ""
|
9916
10034
|
|
9917
|
-
#: ../lib/puppet/util/windows/registry.rb:
|
10035
|
+
#: ../lib/puppet/util/windows/registry.rb:282
|
9918
10036
|
msgid "Failed to read registry value %{value} at %{key}"
|
9919
10037
|
msgstr ""
|
9920
10038
|
|
9921
|
-
#: ../lib/puppet/util/windows/registry.rb:
|
10039
|
+
#: ../lib/puppet/util/windows/registry.rb:300
|
9922
10040
|
msgid "Failed to delete registry value %{name} at %{key}"
|
9923
10041
|
msgstr ""
|
9924
10042
|
|
9925
|
-
#: ../lib/puppet/util/windows/registry.rb:
|
10043
|
+
#: ../lib/puppet/util/windows/registry.rb:315
|
9926
10044
|
msgid "Failed to delete registry key %{name} at %{key}"
|
9927
10045
|
msgstr ""
|
9928
10046
|
|
@@ -9964,7 +10082,7 @@ msgstr ""
|
|
9964
10082
|
msgid "An attempt to set mode %{mode} on item %{path} would result in the group, SYSTEM, to have less than Full Control rights. This attempt has been corrected to Full Control"
|
9965
10083
|
msgstr ""
|
9966
10084
|
|
9967
|
-
#: ../lib/puppet/util/windows/security.rb:433 ../lib/puppet/util/windows/security.rb:450 ../lib/puppet/util/windows/sid.rb:155 ../lib/puppet/util/windows/sid.rb:217 ../lib/puppet/util/windows/user.rb:
|
10085
|
+
#: ../lib/puppet/util/windows/security.rb:433 ../lib/puppet/util/windows/security.rb:450 ../lib/puppet/util/windows/sid.rb:155 ../lib/puppet/util/windows/sid.rb:217 ../lib/puppet/util/windows/user.rb:59
|
9968
10086
|
msgid "Invalid SID"
|
9969
10087
|
msgstr ""
|
9970
10088
|
|
@@ -10040,87 +10158,83 @@ msgstr ""
|
|
10040
10158
|
msgid "Unknown start type '%{start_type}' for '%{service_name}'"
|
10041
10159
|
msgstr ""
|
10042
10160
|
|
10043
|
-
#: ../lib/puppet/util/windows/service.rb:
|
10044
|
-
msgid "Unknown start type %{start_type}"
|
10045
|
-
msgstr ""
|
10046
|
-
|
10047
|
-
#: ../lib/puppet/util/windows/service.rb:474
|
10161
|
+
#: ../lib/puppet/util/windows/service.rb:487
|
10048
10162
|
msgid "Failed to update service configuration"
|
10049
10163
|
msgstr ""
|
10050
10164
|
|
10051
|
-
#: ../lib/puppet/util/windows/service.rb:
|
10165
|
+
#: ../lib/puppet/util/windows/service.rb:552
|
10052
10166
|
msgid "Failed to fetch services"
|
10053
10167
|
msgstr ""
|
10054
10168
|
|
10055
|
-
#: ../lib/puppet/util/windows/service.rb:
|
10169
|
+
#: ../lib/puppet/util/windows/service.rb:601
|
10056
10170
|
msgid "Failed to open a handle to the service"
|
10057
10171
|
msgstr ""
|
10058
10172
|
|
10059
|
-
#: ../lib/puppet/util/windows/service.rb:
|
10173
|
+
#: ../lib/puppet/util/windows/service.rb:618
|
10060
10174
|
msgid "Failed to open a handle to the service control manager"
|
10061
10175
|
msgstr ""
|
10062
10176
|
|
10063
|
-
#: ../lib/puppet/util/windows/service.rb:
|
10177
|
+
#: ../lib/puppet/util/windows/service.rb:641
|
10064
10178
|
msgid "The service is already in the %{final_state} state. No further work needs to be done."
|
10065
10179
|
msgstr ""
|
10066
10180
|
|
10067
|
-
#: ../lib/puppet/util/windows/service.rb:
|
10181
|
+
#: ../lib/puppet/util/windows/service.rb:653
|
10068
10182
|
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."
|
10069
10183
|
msgstr ""
|
10070
10184
|
|
10071
|
-
#: ../lib/puppet/util/windows/service.rb:
|
10185
|
+
#: ../lib/puppet/util/windows/service.rb:664
|
10072
10186
|
msgid "There is already a pending transition to the %{final_state} state for the %{service_name} service."
|
10073
10187
|
msgstr ""
|
10074
10188
|
|
10075
|
-
#: ../lib/puppet/util/windows/service.rb:
|
10189
|
+
#: ../lib/puppet/util/windows/service.rb:680
|
10076
10190
|
msgid "The service is in the %{pending_state} state, which is an unsafe pending state."
|
10077
10191
|
msgstr ""
|
10078
10192
|
|
10079
|
-
#: ../lib/puppet/util/windows/service.rb:
|
10193
|
+
#: ../lib/puppet/util/windows/service.rb:685
|
10080
10194
|
msgid "Transitioning the %{service_name} service from %{initial_state} to %{final_state}"
|
10081
10195
|
msgstr ""
|
10082
10196
|
|
10083
|
-
#: ../lib/puppet/util/windows/service.rb:
|
10197
|
+
#: ../lib/puppet/util/windows/service.rb:689
|
10084
10198
|
msgid "Waiting for the transition to finish"
|
10085
10199
|
msgstr ""
|
10086
10200
|
|
10087
|
-
#: ../lib/puppet/util/windows/service.rb:
|
10201
|
+
#: ../lib/puppet/util/windows/service.rb:694
|
10088
10202
|
msgid "Failed to transition the %{service_name} service to the %{final_state} state. Detail: %{detail}"
|
10089
10203
|
msgstr ""
|
10090
10204
|
|
10091
|
-
#: ../lib/puppet/util/windows/service.rb:
|
10205
|
+
#: ../lib/puppet/util/windows/service.rb:733 ../lib/puppet/util/windows/service.rb:769
|
10092
10206
|
msgid "Service query failed"
|
10093
10207
|
msgstr ""
|
10094
10208
|
|
10095
|
-
#: ../lib/puppet/util/windows/service.rb:
|
10209
|
+
#: ../lib/puppet/util/windows/service.rb:812
|
10096
10210
|
msgid "Service query for %{parameter_name} failed"
|
10097
10211
|
msgstr ""
|
10098
10212
|
|
10099
|
-
#: ../lib/puppet/util/windows/service.rb:
|
10213
|
+
#: ../lib/puppet/util/windows/service.rb:835
|
10100
10214
|
msgid "Failed to update service %{change} configuration"
|
10101
10215
|
msgstr ""
|
10102
10216
|
|
10103
|
-
#: ../lib/puppet/util/windows/service.rb:
|
10217
|
+
#: ../lib/puppet/util/windows/service.rb:862
|
10104
10218
|
msgid "Failed to send the %{control_signal} signal to the service. Its current state is %{current_state}. Reason for failure:"
|
10105
10219
|
msgstr ""
|
10106
10220
|
|
10107
|
-
#: ../lib/puppet/util/windows/service.rb:
|
10221
|
+
#: ../lib/puppet/util/windows/service.rb:897
|
10108
10222
|
msgid "The service transitioned to the %{pending_state} state."
|
10109
10223
|
msgstr ""
|
10110
10224
|
|
10111
|
-
#: ../lib/puppet/util/windows/service.rb:
|
10225
|
+
#: ../lib/puppet/util/windows/service.rb:911
|
10112
10226
|
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}."
|
10113
10227
|
msgstr ""
|
10114
10228
|
|
10115
|
-
#: ../lib/puppet/util/windows/service.rb:
|
10229
|
+
#: ../lib/puppet/util/windows/service.rb:926
|
10116
10230
|
msgid "Waiting for the pending transition to the %{final_state} state to finish."
|
10117
10231
|
msgstr ""
|
10118
10232
|
|
10119
|
-
#: ../lib/puppet/util/windows/service.rb:
|
10233
|
+
#: ../lib/puppet/util/windows/service.rb:940
|
10120
10234
|
msgid "Unexpected transition to the %{current_state} state while waiting for the pending transition from %{pending_state} to %{final_state} to finish."
|
10121
10235
|
msgstr ""
|
10122
10236
|
|
10123
|
-
#: ../lib/puppet/util/windows/service.rb:
|
10237
|
+
#: ../lib/puppet/util/windows/service.rb:954
|
10124
10238
|
msgid "Timed out while waiting for the pending transition from %{pending_state} to %{final_state} to finish. The current state is %{current_state}."
|
10125
10239
|
msgstr ""
|
10126
10240
|
|
@@ -10140,23 +10254,23 @@ msgstr ""
|
|
10140
10254
|
msgid "Failed to convert string SID: %{string_sid}"
|
10141
10255
|
msgstr ""
|
10142
10256
|
|
10143
|
-
#: ../lib/puppet/util/windows/user.rb:
|
10257
|
+
#: ../lib/puppet/util/windows/user.rb:54
|
10144
10258
|
msgid "Failed to create administrators SID"
|
10145
10259
|
msgstr ""
|
10146
10260
|
|
10147
|
-
#: ../lib/puppet/util/windows/user.rb:
|
10261
|
+
#: ../lib/puppet/util/windows/user.rb:64
|
10148
10262
|
msgid "Failed to check membership"
|
10149
10263
|
msgstr ""
|
10150
10264
|
|
10151
|
-
#: ../lib/puppet/util/windows/user.rb:
|
10265
|
+
#: ../lib/puppet/util/windows/user.rb:104
|
10152
10266
|
msgid "Failed to logon user %{name}"
|
10153
10267
|
msgstr ""
|
10154
10268
|
|
10155
|
-
#: ../lib/puppet/util/windows/user.rb:
|
10269
|
+
#: ../lib/puppet/util/windows/user.rb:135
|
10156
10270
|
msgid "Failed to load user profile %{user}"
|
10157
10271
|
msgstr ""
|
10158
10272
|
|
10159
|
-
#: ../lib/puppet/util/windows/user.rb:
|
10273
|
+
#: ../lib/puppet/util/windows/user.rb:141
|
10160
10274
|
msgid "Failed to unload user profile %{user}"
|
10161
10275
|
msgstr ""
|
10162
10276
|
|