puppet 6.17.0-x64-mingw32 → 6.21.0-x64-mingw32
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of puppet might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/CODEOWNERS +2 -16
- data/Gemfile +2 -0
- data/Gemfile.lock +38 -34
- data/README.md +1 -2
- data/Rakefile +4 -12
- data/lib/puppet/agent/locker.rb +0 -7
- data/lib/puppet/application.rb +10 -6
- data/lib/puppet/application/agent.rb +9 -3
- data/lib/puppet/application/apply.rb +20 -21
- data/lib/puppet/application/device.rb +1 -0
- data/lib/puppet/application/doc.rb +1 -1
- data/lib/puppet/application/filebucket.rb +2 -2
- data/lib/puppet/application/lookup.rb +16 -4
- data/lib/puppet/application/script.rb +1 -0
- data/lib/puppet/application_support.rb +7 -0
- data/lib/puppet/configurer.rb +50 -8
- data/lib/puppet/configurer/downloader.rb +31 -10
- data/lib/puppet/confine.rb +1 -1
- data/lib/puppet/confine/any.rb +1 -1
- data/lib/puppet/defaults.rb +88 -38
- data/lib/puppet/environments.rb +84 -59
- data/lib/puppet/face/catalog.rb +1 -1
- data/lib/puppet/face/config.rb +56 -16
- data/lib/puppet/face/epp.rb +12 -2
- data/lib/puppet/face/facts.rb +60 -0
- data/lib/puppet/face/node.rb +3 -3
- data/lib/puppet/face/node/clean.rb +2 -2
- data/lib/puppet/face/status.rb +1 -1
- data/lib/puppet/feature/base.rb +1 -1
- data/lib/puppet/ffi/posix.rb +10 -0
- data/lib/puppet/ffi/posix/constants.rb +14 -0
- data/lib/puppet/ffi/posix/functions.rb +24 -0
- data/lib/puppet/file_bucket/dipper.rb +1 -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_system/file_impl.rb +3 -3
- data/lib/puppet/functions/epp.rb +1 -0
- data/lib/puppet/functions/inline_epp.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 +1 -1
- 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/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/catalog/compiler.rb +1 -1
- data/lib/puppet/indirector/exec.rb +1 -1
- data/lib/puppet/indirector/fact_search.rb +60 -0
- data/lib/puppet/indirector/facts/facter.rb +3 -3
- data/lib/puppet/indirector/facts/json.rb +27 -0
- data/lib/puppet/indirector/facts/yaml.rb +4 -59
- data/lib/puppet/indirector/file_metadata/http.rb +1 -0
- data/lib/puppet/indirector/hiera.rb +4 -0
- data/lib/puppet/indirector/indirection.rb +1 -1
- data/lib/puppet/indirector/json.rb +5 -1
- data/lib/puppet/indirector/msgpack.rb +1 -1
- data/lib/puppet/indirector/node/json.rb +8 -0
- data/lib/puppet/indirector/report/json.rb +34 -0
- data/lib/puppet/indirector/report/processor.rb +2 -2
- data/lib/puppet/indirector/request.rb +4 -4
- data/lib/puppet/indirector/yaml.rb +1 -1
- data/lib/puppet/module.rb +1 -2
- data/lib/puppet/module_tool/applications/installer.rb +48 -2
- data/lib/puppet/module_tool/errors/shared.rb +17 -2
- data/lib/puppet/network/format_support.rb +2 -2
- data/lib/puppet/network/formats.rb +2 -1
- data/lib/puppet/network/http/api/master/v3/environments.rb +0 -1
- data/lib/puppet/network/http/route.rb +2 -2
- data/lib/puppet/node/environment.rb +12 -5
- data/lib/puppet/node/facts.rb +17 -0
- data/lib/puppet/pal/pal_impl.rb +90 -13
- data/lib/puppet/parameter.rb +1 -1
- data/lib/puppet/parser/ast/leaf.rb +3 -2
- data/lib/puppet/parser/functions.rb +21 -17
- data/lib/puppet/parser/functions/create_resources.rb +11 -7
- data/lib/puppet/parser/templatewrapper.rb +1 -1
- 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/deferred_resolver.rb +5 -3
- data/lib/puppet/pops/evaluator/evaluator_impl.rb +22 -3
- data/lib/puppet/pops/evaluator/runtime3_converter.rb +2 -2
- 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/model/ast_transformer.rb +1 -1
- 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 +19 -15
- data/lib/puppet/property/list.rb +1 -1
- data/lib/puppet/provider/file/windows.rb +1 -1
- data/lib/puppet/provider/group/groupadd.rb +13 -8
- data/lib/puppet/provider/package/apt.rb +67 -1
- data/lib/puppet/provider/package/aptitude.rb +6 -0
- data/lib/puppet/provider/package/dpkg.rb +1 -1
- data/lib/puppet/provider/package/gem.rb +4 -2
- data/lib/puppet/provider/package/pip2.rb +17 -0
- 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 +1 -0
- data/lib/puppet/provider/package/zypper.rb +3 -0
- data/lib/puppet/provider/service/debian.rb +2 -0
- data/lib/puppet/provider/user/aix.rb +3 -3
- data/lib/puppet/provider/user/user_role_add.rb +1 -1
- data/lib/puppet/provider/user/useradd.rb +55 -8
- data/lib/puppet/provider/user/windows_adsi.rb +18 -1
- data/lib/puppet/reference/configuration.rb +6 -5
- data/lib/puppet/resource/type.rb +2 -1
- data/lib/puppet/rest/route.rb +2 -2
- data/lib/puppet/settings.rb +63 -21
- data/lib/puppet/settings/alias_setting.rb +37 -0
- data/lib/puppet/settings/base_setting.rb +26 -2
- data/lib/puppet/ssl/validator/default_validator.rb +1 -1
- data/lib/puppet/test/test_helper.rb +10 -3
- 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 +2 -2
- data/lib/puppet/type.rb +4 -3
- data/lib/puppet/type/file.rb +2 -2
- data/lib/puppet/type/file/source.rb +28 -8
- data/lib/puppet/type/filebucket.rb +1 -1
- data/lib/puppet/type/notify.rb +2 -2
- data/lib/puppet/type/package.rb +3 -3
- data/lib/puppet/type/service.rb +4 -0
- data/lib/puppet/type/user.rb +18 -3
- data/lib/puppet/util.rb +26 -12
- data/lib/puppet/util/autoload.rb +10 -15
- data/lib/puppet/util/character_encoding.rb +9 -5
- data/lib/puppet/util/connection.rb +8 -8
- data/lib/puppet/util/execution.rb +2 -2
- data/lib/puppet/util/fact_dif.rb +62 -0
- data/lib/puppet/util/posix.rb +54 -5
- data/lib/puppet/util/rubygems.rb +5 -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 +15 -1
- data/lib/puppet/util/windows/monkey_patches/dir.rb +40 -0
- data/lib/puppet/util/windows/security.rb +4 -4
- data/lib/puppet/util/windows/service.rb +1 -1
- data/lib/puppet/util/windows/user.rb +219 -0
- data/lib/puppet/version.rb +1 -1
- data/locales/puppet.pot +342 -312
- data/man/man5/puppet.conf.5 +53 -18
- data/man/man8/puppet-agent.8 +7 -4
- data/man/man8/puppet-apply.8 +2 -2
- 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 +2 -2
- data/man/man8/puppet-doc.8 +1 -1
- data/man/man8/puppet-epp.8 +1 -1
- data/man/man8/puppet-facts.8 +32 -1
- data/man/man8/puppet-filebucket.8 +3 -3
- data/man/man8/puppet-generate.8 +1 -1
- data/man/man8/puppet-help.8 +1 -1
- data/man/man8/puppet-key.8 +1 -1
- data/man/man8/puppet-lookup.8 +2 -2
- data/man/man8/puppet-man.8 +1 -1
- data/man/man8/puppet-module.8 +1 -1
- data/man/man8/puppet-node.8 +7 -4
- data/man/man8/puppet-parser.8 +1 -1
- data/man/man8/puppet-plugin.8 +1 -1
- data/man/man8/puppet-report.8 +4 -1
- data/man/man8/puppet-resource.8 +1 -1
- data/man/man8/puppet-script.8 +2 -2
- 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/agent/cached_deferred_catalog.json +91 -0
- 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/puppetserver_gem/gem-list-local-packages +30 -0
- data/spec/fixtures/unit/provider/user/aix/aix_passwd_file.out +4 -0
- data/spec/integration/application/agent_spec.rb +208 -55
- data/spec/integration/application/apply_spec.rb +168 -149
- 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 +53 -3
- data/spec/integration/configurer_spec.rb +14 -0
- data/spec/integration/data_binding_spec.rb +82 -0
- data/spec/integration/defaults_spec.rb +19 -1
- data/spec/integration/directory_environments_spec.rb +17 -17
- data/spec/integration/environments/setting_hooks_spec.rb +1 -1
- data/spec/integration/indirector/facts/facter_spec.rb +8 -6
- data/spec/integration/node/environment_spec.rb +1 -1
- data/spec/integration/resource/type_collection_spec.rb +2 -6
- data/spec/integration/transaction_spec.rb +4 -9
- data/spec/integration/util/execution_spec.rb +22 -0
- data/spec/integration/util/windows/adsi_spec.rb +5 -3
- 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 +0 -10
- data/spec/integration/util/windows/user_spec.rb +7 -0
- data/spec/integration/util_spec.rb +7 -33
- data/spec/lib/puppet_spec/matchers.rb +0 -80
- data/spec/lib/puppet_spec/puppetserver.rb +8 -0
- data/spec/lib/puppet_spec/settings.rb +6 -1
- data/spec/shared_contexts/types_setup.rb +2 -0
- data/spec/spec_helper.rb +1 -4
- data/spec/unit/agent_spec.rb +8 -6
- data/spec/unit/application/agent_spec.rb +3 -5
- data/spec/unit/application/config_spec.rb +224 -4
- 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/filebucket_spec.rb +0 -2
- 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 +60 -13
- data/spec/unit/configurer/downloader_spec.rb +10 -0
- data/spec/unit/configurer_spec.rb +86 -37
- data/spec/unit/confine/feature_spec.rb +1 -1
- data/spec/unit/confine_spec.rb +10 -3
- data/spec/unit/defaults_spec.rb +20 -1
- data/spec/unit/environments_spec.rb +176 -32
- data/spec/unit/face/config_spec.rb +65 -12
- data/spec/unit/face/node_spec.rb +2 -13
- data/spec/unit/file_serving/configuration/parser_spec.rb +0 -1
- data/spec/unit/file_serving/metadata_spec.rb +3 -3
- 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_helper_spec.rb +11 -4
- data/spec/unit/file_system/uniquefile_spec.rb +18 -0
- data/spec/unit/file_system_spec.rb +1 -2
- data/spec/unit/forge/module_release_spec.rb +2 -7
- data/spec/unit/functions/inline_epp_spec.rb +26 -1
- data/spec/unit/http/client_spec.rb +0 -1
- data/spec/unit/http/resolver_spec.rb +24 -5
- data/spec/unit/http/service/ca_spec.rb +2 -3
- data/spec/unit/http/service/compiler_spec.rb +51 -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 +1 -2
- data/spec/unit/http/session_spec.rb +8 -21
- data/spec/unit/indirector/catalog/json_spec.rb +1 -1
- data/spec/unit/indirector/catalog/rest_spec.rb +1 -1
- data/spec/unit/indirector/face_spec.rb +0 -1
- data/spec/unit/indirector/facts/facter_spec.rb +0 -1
- data/spec/unit/indirector/facts/json_spec.rb +255 -0
- data/spec/unit/indirector/facts/rest_spec.rb +1 -1
- data/spec/unit/indirector/file_bucket_file/selector_spec.rb +26 -8
- data/spec/unit/indirector/indirection_spec.rb +8 -12
- data/spec/unit/indirector/json_spec.rb +8 -8
- data/spec/unit/indirector/key/file_spec.rb +0 -1
- data/spec/unit/indirector/msgpack_spec.rb +8 -8
- data/spec/unit/indirector/node/json_spec.rb +33 -0
- data/spec/unit/indirector/node/rest_spec.rb +1 -1
- data/spec/{integration/indirector/report/yaml.rb → unit/indirector/report/json_spec.rb} +13 -24
- data/spec/unit/indirector/report/yaml_spec.rb +72 -8
- data/spec/unit/indirector/request_spec.rb +4 -4
- data/spec/unit/indirector/rest_spec.rb +1 -1
- data/spec/unit/indirector/status/rest_spec.rb +1 -1
- data/spec/unit/indirector/yaml_spec.rb +7 -7
- data/spec/unit/indirector_spec.rb +2 -2
- data/spec/unit/module_tool/applications/installer_spec.rb +66 -0
- data/spec/unit/module_tool/tar/mini_spec.rb +20 -0
- data/spec/unit/network/authconfig_spec.rb +0 -3
- data/spec/unit/network/format_support_spec.rb +3 -2
- data/spec/unit/network/http/api/indirected_routes_spec.rb +0 -9
- data/spec/unit/network/http/api/master/v3/environments_spec.rb +12 -23
- data/spec/unit/network/http/handler_spec.rb +0 -5
- data/spec/unit/node/environment_spec.rb +18 -1
- data/spec/unit/parser/compiler_spec.rb +3 -19
- data/spec/unit/parser/resource_spec.rb +14 -8
- data/spec/unit/parser/templatewrapper_spec.rb +4 -3
- data/spec/unit/pops/evaluator/deferred_resolver_spec.rb +20 -0
- data/spec/unit/pops/loaders/loaders_spec.rb +70 -0
- data/spec/unit/pops/lookup/lookup_spec.rb +25 -0
- data/spec/unit/property_spec.rb +1 -0
- data/spec/unit/provider/exec_spec.rb +4 -3
- data/spec/unit/provider/group/groupadd_spec.rb +5 -2
- data/spec/unit/provider/nameservice_spec.rb +66 -65
- data/spec/unit/provider/package/apt_spec.rb +85 -3
- data/spec/unit/provider/package/aptitude_spec.rb +1 -0
- data/spec/unit/provider/package/base_spec.rb +6 -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/pacman_spec.rb +18 -12
- data/spec/unit/provider/package/pip2_spec.rb +36 -0
- data/spec/unit/provider/package/pip_spec.rb +6 -11
- data/spec/unit/provider/package/pkgdmg_spec.rb +0 -4
- 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 +31 -0
- data/spec/unit/provider/package/zypper_spec.rb +14 -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 +45 -5
- data/spec/unit/provider/service/launchd_spec.rb +5 -6
- data/spec/unit/provider/service/openrc_spec.rb +4 -5
- data/spec/unit/provider/service/openwrt_spec.rb +1 -1
- data/spec/unit/provider/service/redhat_spec.rb +1 -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 +3 -6
- data/spec/unit/provider/service/upstart_spec.rb +4 -5
- data/spec/unit/provider/service/windows_spec.rb +28 -0
- data/spec/unit/provider/user/aix_spec.rb +5 -0
- data/spec/unit/provider/user/hpux_spec.rb +1 -1
- data/spec/unit/provider/user/pw_spec.rb +2 -0
- data/spec/unit/provider/user/useradd_spec.rb +56 -3
- data/spec/unit/provider/user/windows_adsi_spec.rb +82 -0
- data/spec/unit/provider_spec.rb +8 -10
- data/spec/unit/puppet_pal_2pec.rb +40 -0
- data/spec/unit/puppet_pal_catalog_spec.rb +45 -0
- data/spec/unit/reports/store_spec.rb +17 -13
- data/spec/unit/resource/capability_finder_spec.rb +6 -1
- data/spec/unit/resource/type_spec.rb +1 -1
- data/spec/unit/resource_spec.rb +11 -10
- data/spec/unit/rest/route_spec.rb +4 -4
- data/spec/unit/settings_spec.rb +576 -239
- data/spec/unit/ssl/base_spec.rb +0 -1
- data/spec/unit/ssl/host_spec.rb +0 -5
- data/spec/unit/ssl/ssl_provider_spec.rb +14 -8
- data/spec/unit/transaction/additional_resource_generator_spec.rb +3 -7
- data/spec/unit/transaction/event_manager_spec.rb +14 -11
- data/spec/unit/transaction/persistence_spec.rb +15 -0
- data/spec/unit/transaction/report_spec.rb +2 -0
- data/spec/unit/transaction_spec.rb +13 -4
- data/spec/unit/type/file/content_spec.rb +0 -1
- data/spec/unit/type/file/selinux_spec.rb +0 -2
- data/spec/unit/type/file/source_spec.rb +1 -1
- data/spec/unit/type/file_spec.rb +0 -6
- data/spec/unit/type/filebucket_spec.rb +1 -1
- data/spec/unit/type/group_spec.rb +13 -6
- data/spec/unit/type/resources_spec.rb +7 -7
- data/spec/unit/type/service_spec.rb +36 -3
- data/spec/unit/type/tidy_spec.rb +0 -1
- data/spec/unit/type/user_spec.rb +31 -2
- data/spec/unit/type_spec.rb +2 -2
- data/spec/unit/util/at_fork_spec.rb +2 -2
- data/spec/unit/util/autoload_spec.rb +5 -1
- data/spec/unit/util/backups_spec.rb +1 -2
- data/spec/unit/util/character_encoding_spec.rb +4 -4
- data/spec/unit/util/command_line_spec.rb +11 -6
- data/spec/unit/util/execution_spec.rb +15 -11
- data/spec/unit/util/inifile_spec.rb +6 -14
- data/spec/unit/util/log_spec.rb +8 -7
- data/spec/unit/util/logging_spec.rb +3 -3
- data/spec/unit/util/posix_spec.rb +363 -15
- data/spec/unit/util/rubygems_spec.rb +2 -2
- data/spec/unit/util/run_mode_spec.rb +6 -6
- data/spec/unit/util/selinux_spec.rb +76 -52
- data/spec/unit/util/storage_spec.rb +3 -1
- data/spec/unit/util/suidmanager_spec.rb +44 -41
- data/spec/unit/util_spec.rb +13 -6
- metadata +49 -50
- 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/shared_behaviours/file_serving_model.rb +0 -51
- data/spec/unit/face/catalog_spec.rb +0 -6
- data/spec/unit/face/man_spec.rb +0 -25
- data/spec/unit/face/module_spec.rb +0 -3
- data/spec/unit/man_spec.rb +0 -31
data/lib/puppet/version.rb
CHANGED
data/locales/puppet.pot
CHANGED
@@ -1,16 +1,16 @@
|
|
1
1
|
# SOME DESCRIPTIVE TITLE.
|
2
|
-
# Copyright (C)
|
2
|
+
# Copyright (C) 2021 Puppet, Inc.
|
3
3
|
# This file is distributed under the same license as the Puppet automation framework package.
|
4
|
-
# FIRST AUTHOR <EMAIL@ADDRESS>,
|
4
|
+
# FIRST AUTHOR <EMAIL@ADDRESS>, 2021.
|
5
5
|
#
|
6
6
|
#, fuzzy
|
7
7
|
msgid ""
|
8
8
|
msgstr ""
|
9
|
-
"Project-Id-Version: Puppet automation framework 6.
|
9
|
+
"Project-Id-Version: Puppet automation framework 6.19.1-133-gcc65fe8151\n"
|
10
10
|
"\n"
|
11
11
|
"Report-Msgid-Bugs-To: https://tickets.puppetlabs.com\n"
|
12
|
-
"POT-Creation-Date:
|
13
|
-
"PO-Revision-Date:
|
12
|
+
"POT-Creation-Date: 2021-01-14 12:33+0000\n"
|
13
|
+
"PO-Revision-Date: 2021-01-14 12:33+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,7 +44,7 @@ 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
|
|
@@ -120,16 +120,6 @@ msgstr ""
|
|
120
120
|
msgid "Failed to acquire lock"
|
121
121
|
msgstr ""
|
122
122
|
|
123
|
-
#. TRANSLATORS 'Puppet::Agent::Locker.running?' is a method name and should not be translated
|
124
|
-
#: ../lib/puppet/agent/locker.rb:33
|
125
|
-
msgid "Puppet::Agent::Locker.running? is deprecated as it is inherently unsafe."
|
126
|
-
msgstr ""
|
127
|
-
|
128
|
-
#. TRANSLATORS 'LockError' should not be translated
|
129
|
-
#: ../lib/puppet/agent/locker.rb:35
|
130
|
-
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."
|
131
|
-
msgstr ""
|
132
|
-
|
133
123
|
#: ../lib/puppet/application.rb:238
|
134
124
|
msgid "Unable to find application '%{application_name}'. %{error}"
|
135
125
|
msgstr ""
|
@@ -178,11 +168,11 @@ msgstr ""
|
|
178
168
|
msgid "No valid command or main"
|
179
169
|
msgstr ""
|
180
170
|
|
181
|
-
#: ../lib/puppet/application.rb:
|
171
|
+
#: ../lib/puppet/application.rb:431
|
182
172
|
msgid "Could not set logdest to %{dest}."
|
183
173
|
msgstr ""
|
184
174
|
|
185
|
-
#: ../lib/puppet/application.rb:
|
175
|
+
#: ../lib/puppet/application.rb:508
|
186
176
|
msgid "No help available for puppet %{app_name}"
|
187
177
|
msgstr ""
|
188
178
|
|
@@ -194,19 +184,19 @@ msgstr ""
|
|
194
184
|
msgid "The puppet agent daemon"
|
195
185
|
msgstr ""
|
196
186
|
|
197
|
-
#: ../lib/puppet/application/agent.rb:
|
187
|
+
#: ../lib/puppet/application/agent.rb:415
|
198
188
|
msgid "Fingerprint asked but neither the certificate, nor the certificate request have been issued"
|
199
189
|
msgstr ""
|
200
190
|
|
201
|
-
#: ../lib/puppet/application/agent.rb:
|
191
|
+
#: ../lib/puppet/application/agent.rb:420
|
202
192
|
msgid "Failed to generate fingerprint: %{message}"
|
203
193
|
msgstr ""
|
204
194
|
|
205
|
-
#: ../lib/puppet/application/agent.rb:
|
195
|
+
#: ../lib/puppet/application/agent.rb:443
|
206
196
|
msgid "Starting Puppet client version %{version}"
|
207
197
|
msgstr ""
|
208
198
|
|
209
|
-
#: ../lib/puppet/application/agent.rb:
|
199
|
+
#: ../lib/puppet/application/agent.rb:459
|
210
200
|
msgid "The puppet agent command does not take parameters"
|
211
201
|
msgstr ""
|
212
202
|
|
@@ -216,35 +206,35 @@ msgstr ""
|
|
216
206
|
|
217
207
|
#. TRANSLATORS "puppet apply" is a program command and should not be translated
|
218
208
|
#. TRANSLATORS "puppet apply" is a program command and should not be translated
|
219
|
-
#: ../lib/puppet/application/apply.rb:
|
209
|
+
#: ../lib/puppet/application/apply.rb:208 ../lib/puppet/application/apply.rb:321
|
220
210
|
msgid "For puppet apply"
|
221
211
|
msgstr ""
|
222
212
|
|
223
|
-
#: ../lib/puppet/application/apply.rb:
|
213
|
+
#: ../lib/puppet/application/apply.rb:216
|
224
214
|
msgid "%{file} is not readable"
|
225
215
|
msgstr ""
|
226
216
|
|
227
|
-
#: ../lib/puppet/application/apply.rb:
|
217
|
+
#: ../lib/puppet/application/apply.rb:287 ../lib/puppet/application/script.rb:240
|
228
218
|
msgid "Exiting"
|
229
219
|
msgstr ""
|
230
220
|
|
231
|
-
#: ../lib/puppet/application/apply.rb:
|
221
|
+
#: ../lib/puppet/application/apply.rb:331
|
232
222
|
msgid "Could not deserialize catalog from %{format}: %{detail}"
|
233
223
|
msgstr ""
|
234
224
|
|
235
|
-
#: ../lib/puppet/application/apply.rb:
|
225
|
+
#: ../lib/puppet/application/apply.rb:352 ../lib/puppet/application/script.rb:145
|
236
226
|
msgid "Could not find facts for %{node}"
|
237
227
|
msgstr ""
|
238
228
|
|
239
|
-
#: ../lib/puppet/application/apply.rb:
|
229
|
+
#: ../lib/puppet/application/apply.rb:364 ../lib/puppet/application/script.rb:153
|
240
230
|
msgid "Could not find node %{node}"
|
241
231
|
msgstr ""
|
242
232
|
|
243
|
-
#: ../lib/puppet/application/apply.rb:
|
233
|
+
#: ../lib/puppet/application/apply.rb:377 ../lib/puppet/application/script.rb:138
|
244
234
|
msgid "Could not find file %{manifest}"
|
245
235
|
msgstr ""
|
246
236
|
|
247
|
-
#: ../lib/puppet/application/apply.rb:
|
237
|
+
#: ../lib/puppet/application/apply.rb:378
|
248
238
|
msgid "Only one file can be applied per run. Skipping %{files}"
|
249
239
|
msgstr ""
|
250
240
|
|
@@ -260,47 +250,47 @@ msgstr ""
|
|
260
250
|
msgid "Manage remote network devices"
|
261
251
|
msgstr ""
|
262
252
|
|
263
|
-
#: ../lib/puppet/application/device.rb:
|
253
|
+
#: ../lib/puppet/application/device.rb:231
|
264
254
|
msgid "resource command requires target"
|
265
255
|
msgstr ""
|
266
256
|
|
267
|
-
#: ../lib/puppet/application/device.rb:
|
257
|
+
#: ../lib/puppet/application/device.rb:234
|
268
258
|
msgid "facts command requires target"
|
269
259
|
msgstr ""
|
270
260
|
|
271
|
-
#: ../lib/puppet/application/device.rb:
|
261
|
+
#: ../lib/puppet/application/device.rb:237
|
272
262
|
msgid "missing argument: --target is required when using --apply"
|
273
263
|
msgstr ""
|
274
264
|
|
275
|
-
#: ../lib/puppet/application/device.rb:
|
265
|
+
#: ../lib/puppet/application/device.rb:238
|
276
266
|
msgid "%{file} does not exist, cannot apply"
|
277
267
|
msgstr ""
|
278
268
|
|
279
|
-
#: ../lib/puppet/application/device.rb:
|
269
|
+
#: ../lib/puppet/application/device.rb:256
|
280
270
|
msgid "Target device / certificate '%{target}' not found in %{config}"
|
281
271
|
msgstr ""
|
282
272
|
|
283
|
-
#: ../lib/puppet/application/device.rb:
|
273
|
+
#: ../lib/puppet/application/device.rb:258
|
284
274
|
msgid "No device found in %{config}"
|
285
275
|
msgstr ""
|
286
276
|
|
287
|
-
#: ../lib/puppet/application/device.rb:
|
277
|
+
#: ../lib/puppet/application/device.rb:317
|
288
278
|
msgid "retrieving resource: %{resource} from %{target} at %{scheme}%{url_host}%{port}%{url_path}"
|
289
279
|
msgstr ""
|
290
280
|
|
291
|
-
#: ../lib/puppet/application/device.rb:
|
281
|
+
#: ../lib/puppet/application/device.rb:332
|
292
282
|
msgid "retrieving facts from %{target} at %{scheme}%{url_host}%{port}%{url_path}"
|
293
283
|
msgstr ""
|
294
284
|
|
295
|
-
#: ../lib/puppet/application/device.rb:
|
285
|
+
#: ../lib/puppet/application/device.rb:355
|
296
286
|
msgid "starting applying configuration to %{target} at %{scheme}%{url_host}%{port}%{url_path}"
|
297
287
|
msgstr ""
|
298
288
|
|
299
|
-
#: ../lib/puppet/application/device.rb:
|
289
|
+
#: ../lib/puppet/application/device.rb:393 ../lib/puppet/application/resource.rb:196
|
300
290
|
msgid "You must specify the type to display"
|
301
291
|
msgstr ""
|
302
292
|
|
303
|
-
#: ../lib/puppet/application/device.rb:
|
293
|
+
#: ../lib/puppet/application/device.rb:394 ../lib/puppet/application/resource.rb:197
|
304
294
|
msgid "Could not find type %{type}"
|
305
295
|
msgstr ""
|
306
296
|
|
@@ -400,31 +390,31 @@ msgid ""
|
|
400
390
|
"%{run_help}"
|
401
391
|
msgstr ""
|
402
392
|
|
403
|
-
#: ../lib/puppet/application/lookup.rb:
|
393
|
+
#: ../lib/puppet/application/lookup.rb:105
|
404
394
|
msgid "Interactive Hiera lookup"
|
405
395
|
msgstr ""
|
406
396
|
|
407
|
-
#: ../lib/puppet/application/lookup.rb:
|
397
|
+
#: ../lib/puppet/application/lookup.rb:272
|
408
398
|
msgid ""
|
409
399
|
"The options %{deep_merge_opts} are only available with '--merge deep'\n"
|
410
400
|
"%{run_help}"
|
411
401
|
msgstr ""
|
412
402
|
|
413
|
-
#: ../lib/puppet/application/lookup.rb:
|
403
|
+
#: ../lib/puppet/application/lookup.rb:283
|
414
404
|
msgid ""
|
415
405
|
"The --merge option only accepts %{strategies}, or %{last_strategy}\n"
|
416
406
|
"%{run_help}"
|
417
407
|
msgstr ""
|
418
408
|
|
419
|
-
#: ../lib/puppet/application/lookup.rb:
|
409
|
+
#: ../lib/puppet/application/lookup.rb:308
|
420
410
|
msgid "No keys were given to lookup."
|
421
411
|
msgstr ""
|
422
412
|
|
423
|
-
#: ../lib/puppet/application/lookup.rb:
|
413
|
+
#: ../lib/puppet/application/lookup.rb:316
|
424
414
|
msgid "Unknown rendering format '%{format}'"
|
425
415
|
msgstr ""
|
426
416
|
|
427
|
-
#: ../lib/puppet/application/lookup.rb:
|
417
|
+
#: ../lib/puppet/application/lookup.rb:366 ../lib/puppet/face/epp.rb:530
|
428
418
|
msgid "Incorrect formatted data in %{fact_file} given via the --facts flag"
|
429
419
|
msgstr ""
|
430
420
|
|
@@ -448,11 +438,11 @@ msgstr ""
|
|
448
438
|
msgid "Run a puppet manifests as a script without compiling a catalog"
|
449
439
|
msgstr ""
|
450
440
|
|
451
|
-
#: ../lib/puppet/application/script.rb:
|
441
|
+
#: ../lib/puppet/application/script.rb:125
|
452
442
|
msgid "Bolt must be installed to use the script application"
|
453
443
|
msgstr ""
|
454
444
|
|
455
|
-
#: ../lib/puppet/application/script.rb:
|
445
|
+
#: ../lib/puppet/application/script.rb:139
|
456
446
|
msgid "Only one file can be used per run. Skipping %{files}"
|
457
447
|
msgstr ""
|
458
448
|
|
@@ -536,101 +526,105 @@ msgstr ""
|
|
536
526
|
msgid "Cannot remove %{file}: %{detail}"
|
537
527
|
msgstr ""
|
538
528
|
|
539
|
-
#: ../lib/puppet/configurer.rb:
|
529
|
+
#: ../lib/puppet/configurer.rb:80
|
540
530
|
msgid "Using cached catalog from environment '%{environment}'"
|
541
531
|
msgstr ""
|
542
532
|
|
543
|
-
#: ../lib/puppet/configurer.rb:
|
533
|
+
#: ../lib/puppet/configurer.rb:86
|
544
534
|
msgid "Not using cache on failed catalog"
|
545
535
|
msgstr ""
|
546
536
|
|
547
|
-
#: ../lib/puppet/configurer.rb:
|
537
|
+
#: ../lib/puppet/configurer.rb:95
|
548
538
|
msgid "Not using cached catalog because its environment '%{catalog_env}' does not match '%{local_env}'"
|
549
539
|
msgstr ""
|
550
540
|
|
551
|
-
#: ../lib/puppet/configurer.rb:
|
541
|
+
#: ../lib/puppet/configurer.rb:100 ../lib/puppet/configurer.rb:182
|
552
542
|
msgid "Using cached catalog from environment '%{catalog_env}'"
|
553
543
|
msgstr ""
|
554
544
|
|
555
|
-
#: ../lib/puppet/configurer.rb:
|
545
|
+
#: ../lib/puppet/configurer.rb:175
|
556
546
|
msgid "Could not retrieve catalog; skipping run"
|
557
547
|
msgstr ""
|
558
548
|
|
559
|
-
#: ../lib/puppet/configurer.rb:
|
549
|
+
#: ../lib/puppet/configurer.rb:191
|
560
550
|
msgid "Applied catalog in %{seconds} seconds"
|
561
551
|
msgstr ""
|
562
552
|
|
563
|
-
#: ../lib/puppet/configurer.rb:
|
564
|
-
msgid "Could not select a functional puppet
|
553
|
+
#: ../lib/puppet/configurer.rb:227
|
554
|
+
msgid "Could not select a functional puppet server from server_list: '%{server_list}'"
|
555
|
+
msgstr ""
|
556
|
+
|
557
|
+
#. TRANSLATORS 'server_list' is the name of a setting and should not be translated
|
558
|
+
#: ../lib/puppet/configurer.rb:241
|
559
|
+
msgid "Selected puppet server from the `server_list` setting: %{server}:%{port}"
|
565
560
|
msgstr ""
|
566
561
|
|
567
|
-
#: ../lib/puppet/configurer.rb:
|
562
|
+
#: ../lib/puppet/configurer.rb:277
|
568
563
|
msgid "Local environment: '%{local_env}' doesn't match the environment of the cached catalog '%{catalog_env}', switching agent to '%{catalog_env}'."
|
569
564
|
msgstr ""
|
570
565
|
|
571
|
-
#: ../lib/puppet/configurer.rb:
|
566
|
+
#: ../lib/puppet/configurer.rb:322
|
572
567
|
msgid "Local environment: '%{local_env}' doesn't match server specified node environment '%{node_env}', switching agent to '%{node_env}'."
|
573
568
|
msgstr ""
|
574
569
|
|
575
|
-
#: ../lib/puppet/configurer.rb:
|
570
|
+
#: ../lib/puppet/configurer.rb:337
|
576
571
|
msgid "Using configured environment '%{env}'"
|
577
572
|
msgstr ""
|
578
573
|
|
579
|
-
#: ../lib/puppet/configurer.rb:
|
574
|
+
#: ../lib/puppet/configurer.rb:341
|
580
575
|
msgid "Unable to fetch my node definition, but the agent run will continue:"
|
581
576
|
msgstr ""
|
582
577
|
|
583
|
-
#: ../lib/puppet/configurer.rb:
|
578
|
+
#: ../lib/puppet/configurer.rb:369
|
584
579
|
msgid "Not using catalog because its environment '%{catalog_env}' does not match agent specified environment '%{local_env}' and strict_environment_mode is set"
|
585
580
|
msgstr ""
|
586
581
|
|
587
|
-
#: ../lib/puppet/configurer.rb:
|
582
|
+
#: ../lib/puppet/configurer.rb:380
|
588
583
|
msgid "Catalog environment didn't stabilize after %{tries} fetches, aborting run"
|
589
584
|
msgstr ""
|
590
585
|
|
591
|
-
#: ../lib/puppet/configurer.rb:
|
586
|
+
#: ../lib/puppet/configurer.rb:382
|
592
587
|
msgid "Local environment: '%{local_env}' doesn't match server specified environment '%{catalog_env}', restarting agent run with environment '%{catalog_env}'"
|
593
588
|
msgstr ""
|
594
589
|
|
595
|
-
#: ../lib/puppet/configurer.rb:
|
590
|
+
#: ../lib/puppet/configurer.rb:426
|
596
591
|
msgid "Failed to apply catalog: %{detail}"
|
597
592
|
msgstr ""
|
598
593
|
|
599
|
-
#: ../lib/puppet/configurer.rb:
|
594
|
+
#: ../lib/puppet/configurer.rb:455 ../lib/puppet/http/resolver/server_list.rb:67
|
600
595
|
msgid "Puppet server %{host}:%{port} is unavailable: %{code} %{reason}"
|
601
596
|
msgstr ""
|
602
597
|
|
603
598
|
#. TRANSLATORS 'server_list' is the name of a setting and should not be translated
|
604
|
-
|
605
|
-
#: ../lib/puppet/configurer.rb:435 ../lib/puppet/http/resolver/server_list.rb:95
|
599
|
+
#: ../lib/puppet/configurer.rb:459 ../lib/puppet/http/resolver/server_list.rb:70
|
606
600
|
msgid "Unable to connect to server from server_list setting: %{detail}"
|
607
601
|
msgstr ""
|
608
602
|
|
609
|
-
#: ../lib/puppet/configurer.rb:
|
603
|
+
#: ../lib/puppet/configurer.rb:470 ../lib/puppet/face/report.rb:47
|
610
604
|
msgid "Could not send report: %{detail}"
|
611
605
|
msgstr ""
|
612
606
|
|
613
|
-
#: ../lib/puppet/configurer.rb:
|
607
|
+
#: ../lib/puppet/configurer.rb:479
|
614
608
|
msgid "Could not save last run local report: %{detail}"
|
615
609
|
msgstr ""
|
616
610
|
|
617
|
-
#: ../lib/puppet/configurer.rb:
|
611
|
+
#: ../lib/puppet/configurer.rb:498
|
618
612
|
msgid "Uploading facts for %{node} to %{server}"
|
619
613
|
msgstr ""
|
620
614
|
|
621
|
-
#: ../lib/puppet/configurer.rb:
|
615
|
+
#: ../lib/puppet/configurer.rb:506
|
622
616
|
msgid "Failed to submit facts: %{detail}"
|
623
617
|
msgstr ""
|
624
618
|
|
625
|
-
#: ../lib/puppet/configurer.rb:
|
619
|
+
#: ../lib/puppet/configurer.rb:521
|
626
620
|
msgid "Could not run command from %{setting}: %{detail}"
|
627
621
|
msgstr ""
|
628
622
|
|
629
|
-
#: ../lib/puppet/configurer.rb:
|
623
|
+
#: ../lib/puppet/configurer.rb:539
|
630
624
|
msgid "Could not retrieve catalog from cache: %{detail}"
|
631
625
|
msgstr ""
|
632
626
|
|
633
|
-
#: ../lib/puppet/configurer.rb:
|
627
|
+
#: ../lib/puppet/configurer.rb:560
|
634
628
|
msgid "Could not retrieve catalog from remote server: %{detail}"
|
635
629
|
msgstr ""
|
636
630
|
|
@@ -638,7 +632,11 @@ msgstr ""
|
|
638
632
|
msgid "Retrieving %{name}"
|
639
633
|
msgstr ""
|
640
634
|
|
641
|
-
#: ../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
|
642
640
|
msgid "Could not retrieve %{name}: %{detail}"
|
643
641
|
msgstr ""
|
644
642
|
|
@@ -694,41 +692,50 @@ msgstr ""
|
|
694
692
|
msgid "a data type can only have one implementation"
|
695
693
|
msgstr ""
|
696
694
|
|
697
|
-
#: ../lib/puppet/defaults.rb:
|
695
|
+
#: ../lib/puppet/defaults.rb:179
|
698
696
|
msgid "Cannot disable unrecognized warning types '%{invalid}'."
|
699
697
|
msgstr ""
|
700
698
|
|
701
|
-
#: ../lib/puppet/defaults.rb:
|
699
|
+
#: ../lib/puppet/defaults.rb:180
|
702
700
|
msgid "Valid values are '%{values}'."
|
703
701
|
msgstr ""
|
704
702
|
|
705
703
|
#. TRANSLATORS 'data_binding_terminus' is a setting and should not be translated
|
706
|
-
#: ../lib/puppet/defaults.rb:
|
704
|
+
#: ../lib/puppet/defaults.rb:547
|
707
705
|
msgid "Setting 'data_binding_terminus' is deprecated."
|
708
706
|
msgstr ""
|
709
707
|
|
710
708
|
#. TRANSLATORS 'hiera' should not be translated
|
711
|
-
#: ../lib/puppet/defaults.rb:
|
709
|
+
#: ../lib/puppet/defaults.rb:549
|
712
710
|
msgid "Convert custom terminus to hiera 5 API."
|
713
711
|
msgstr ""
|
714
712
|
|
715
713
|
#. TRANSLATORS 'environment_data_provider' is a setting and should not be translated
|
716
|
-
#: ../lib/puppet/defaults.rb:
|
714
|
+
#: ../lib/puppet/defaults.rb:762
|
717
715
|
msgid "Setting 'environment_data_provider' is deprecated."
|
718
716
|
msgstr ""
|
719
717
|
|
720
|
-
#: ../lib/puppet/defaults.rb:
|
718
|
+
#: ../lib/puppet/defaults.rb:847
|
721
719
|
msgid "Certificate names must be lower case"
|
722
720
|
msgstr ""
|
723
721
|
|
724
|
-
#: ../lib/puppet/defaults.rb:
|
722
|
+
#: ../lib/puppet/defaults.rb:1042
|
725
723
|
msgid "Setting 'ssl_client_ca_auth' is deprecated."
|
726
724
|
msgstr ""
|
727
725
|
|
728
|
-
#: ../lib/puppet/defaults.rb:
|
726
|
+
#: ../lib/puppet/defaults.rb:1121 ../lib/puppet/settings/enum_setting.rb:13 ../lib/puppet/settings/symbolic_enum_setting.rb:14
|
729
727
|
msgid "Invalid value '%{value}' for parameter %{name}. Allowed values are '%{allowed_values}'"
|
730
728
|
msgstr ""
|
731
729
|
|
730
|
+
#. TRANSLATORS 'pluginsync' is a setting and should not be translated
|
731
|
+
#: ../lib/puppet/defaults.rb:1995
|
732
|
+
msgid "Setting 'pluginsync' is deprecated."
|
733
|
+
msgstr ""
|
734
|
+
|
735
|
+
#: ../lib/puppet/defaults.rb:2230
|
736
|
+
msgid "The 'func3x_check' setting is deprecated and will be removed in a future release."
|
737
|
+
msgstr ""
|
738
|
+
|
732
739
|
#: ../lib/puppet/error.rb:77
|
733
740
|
msgid "Could not parse for environment %{environment}: %{message}"
|
734
741
|
msgstr ""
|
@@ -771,7 +778,7 @@ msgstr ""
|
|
771
778
|
msgid "no matching resources found"
|
772
779
|
msgstr ""
|
773
780
|
|
774
|
-
#: ../lib/puppet/face/config.rb:7 ../lib/puppet/face/epp.rb:8 ../lib/puppet/face/facts.rb:
|
781
|
+
#: ../lib/puppet/face/config.rb:7 ../lib/puppet/face/epp.rb:8 ../lib/puppet/face/facts.rb:30 ../lib/puppet/face/generate.rb:7 ../lib/puppet/face/help.rb:9 ../lib/puppet/face/key.rb:5 ../lib/puppet/face/man.rb:8 ../lib/puppet/face/module.rb:9 ../lib/puppet/face/node.rb:4 ../lib/puppet/face/parser.rb:6 ../lib/puppet/face/plugin.rb:6 ../lib/puppet/face/report.rb:5 ../lib/puppet/face/resource.rb:5 ../lib/puppet/face/status.rb:5
|
775
782
|
msgid "Apache 2 license; see COPYING"
|
776
783
|
msgstr ""
|
777
784
|
|
@@ -827,7 +834,7 @@ msgstr ""
|
|
827
834
|
|
828
835
|
#: ../lib/puppet/face/config.rb:146
|
829
836
|
msgid ""
|
830
|
-
"The environment should be set in either the `[user]`, `[agent]`, or `[
|
837
|
+
"The environment should be set in either the `[user]`, `[agent]`, or `[server]`\n"
|
831
838
|
"section. Variables set in the `[agent]` section are used when running\n"
|
832
839
|
"`puppet agent`. Variables set in the `[user]` section are used when running\n"
|
833
840
|
"various other puppet subcommands, like `puppet apply` and `puppet module`; these\n"
|
@@ -837,25 +844,28 @@ msgid ""
|
|
837
844
|
"https://puppet.com/docs/puppet/latest/configuration.html#environment\n"
|
838
845
|
msgstr ""
|
839
846
|
|
840
|
-
#: ../lib/puppet/face/config.rb:
|
847
|
+
#: ../lib/puppet/face/config.rb:186
|
848
|
+
msgid "Deleted setting from '%{section_name}': '%{setting_string}', and adding it to 'server' section"
|
849
|
+
msgstr ""
|
850
|
+
|
851
|
+
#: ../lib/puppet/face/config.rb:201
|
841
852
|
msgid "Delete a Puppet setting."
|
842
853
|
msgstr ""
|
843
854
|
|
844
|
-
#: ../lib/puppet/face/config.rb:
|
855
|
+
#: ../lib/puppet/face/config.rb:202
|
845
856
|
msgid "<setting>"
|
846
857
|
msgstr ""
|
847
858
|
|
848
|
-
|
849
|
-
#: ../lib/puppet/face/config.rb:212
|
859
|
+
#: ../lib/puppet/face/config.rb:236 ../lib/puppet/face/config.rb:240 ../lib/puppet/face/config.rb:251
|
850
860
|
msgid "Deleted setting from '%{section_name}': '%{setting_string}'"
|
851
861
|
msgstr ""
|
852
862
|
|
853
|
-
#: ../lib/puppet/face/config.rb:
|
863
|
+
#: ../lib/puppet/face/config.rb:254
|
854
864
|
msgid "No setting found in configuration file for section '%{section_name}' setting name '%{name}'"
|
855
865
|
msgstr ""
|
856
866
|
|
857
867
|
#. TRANSLATORS the 'puppet.conf' is a specific file and should not be translated
|
858
|
-
#: ../lib/puppet/face/config.rb:
|
868
|
+
#: ../lib/puppet/face/config.rb:262
|
859
869
|
msgid "The puppet.conf file does not exist %{puppet_conf}"
|
860
870
|
msgstr ""
|
861
871
|
|
@@ -1005,26 +1015,34 @@ msgstr ""
|
|
1005
1015
|
msgid "--values option must evaluate to a Hash or undef, got: '%{values_class}'"
|
1006
1016
|
msgstr ""
|
1007
1017
|
|
1008
|
-
#: ../lib/puppet/face/facts.rb:
|
1018
|
+
#: ../lib/puppet/face/facts.rb:32
|
1009
1019
|
msgid "Retrieve and store facts."
|
1010
1020
|
msgstr ""
|
1011
1021
|
|
1012
|
-
#: ../lib/puppet/face/facts.rb:
|
1022
|
+
#: ../lib/puppet/face/facts.rb:40
|
1013
1023
|
msgid "Retrieve a node's facts."
|
1014
1024
|
msgstr ""
|
1015
1025
|
|
1016
|
-
#: ../lib/puppet/face/facts.rb:
|
1026
|
+
#: ../lib/puppet/face/facts.rb:41
|
1017
1027
|
msgid "[<node_certname>]"
|
1018
1028
|
msgstr ""
|
1019
1029
|
|
1020
|
-
#: ../lib/puppet/face/facts.rb:
|
1030
|
+
#: ../lib/puppet/face/facts.rb:64
|
1021
1031
|
msgid "Upload local facts to the puppet master."
|
1022
1032
|
msgstr ""
|
1023
1033
|
|
1024
|
-
#: ../lib/puppet/face/facts.rb:
|
1034
|
+
#: ../lib/puppet/face/facts.rb:106
|
1025
1035
|
msgid "Uploading facts for '%{node}' to '%{server}'"
|
1026
1036
|
msgstr ""
|
1027
1037
|
|
1038
|
+
#: ../lib/puppet/face/facts.rb:116
|
1039
|
+
msgid "Compare Facter 3 output with Facter 4 output"
|
1040
|
+
msgstr ""
|
1041
|
+
|
1042
|
+
#: ../lib/puppet/face/facts.rb:145
|
1043
|
+
msgid "Already using Facter 4. To use `puppet facts diff` remove facterng from the .conf file or run `puppet config set facterng false`."
|
1044
|
+
msgstr ""
|
1045
|
+
|
1028
1046
|
#: ../lib/puppet/face/generate.rb:9
|
1029
1047
|
msgid "Generates Puppet code from Ruby definitions."
|
1030
1048
|
msgstr ""
|
@@ -1782,7 +1800,7 @@ msgstr ""
|
|
1782
1800
|
msgid "Timeout waiting for exclusive lock on %{path}"
|
1783
1801
|
msgstr ""
|
1784
1802
|
|
1785
|
-
#: ../lib/puppet/file_system/jruby.rb:18 ../lib/puppet/file_system/windows.rb:127 ../lib/puppet/util.rb:
|
1803
|
+
#: ../lib/puppet/file_system/jruby.rb:18 ../lib/puppet/file_system/windows.rb:127 ../lib/puppet/util.rb:706
|
1786
1804
|
msgid "Is a directory: %{directory}"
|
1787
1805
|
msgstr ""
|
1788
1806
|
|
@@ -2274,15 +2292,15 @@ msgstr ""
|
|
2274
2292
|
msgid "Failed to parse Retry-After header '%{retry_after}' as an integer or RFC 2822 date"
|
2275
2293
|
msgstr ""
|
2276
2294
|
|
2277
|
-
#: ../lib/puppet/http/service.rb:
|
2295
|
+
#: ../lib/puppet/http/service.rb:121
|
2278
2296
|
msgid "Ignoring extra header \"%{name}\" as it was previously set."
|
2279
2297
|
msgstr ""
|
2280
2298
|
|
2281
|
-
#: ../lib/puppet/http/service.rb:
|
2299
|
+
#: ../lib/puppet/http/service.rb:124
|
2282
2300
|
msgid "Ignoring extra header \"%{name}\" as it has no value."
|
2283
2301
|
msgstr ""
|
2284
2302
|
|
2285
|
-
#: ../lib/puppet/http/service.rb:
|
2303
|
+
#: ../lib/puppet/http/service.rb:147 ../lib/puppet/indirector/rest.rb:288
|
2286
2304
|
msgid "No content type in http response; cannot parse"
|
2287
2305
|
msgstr ""
|
2288
2306
|
|
@@ -2595,7 +2613,7 @@ msgstr ""
|
|
2595
2613
|
msgid "Puppet::Indirector::FileContent::Http is deprecated. Use Puppet::HTTP::Client instead."
|
2596
2614
|
msgstr ""
|
2597
2615
|
|
2598
|
-
#: ../lib/puppet/indirector/file_metadata/http.rb:
|
2616
|
+
#: ../lib/puppet/indirector/file_metadata/http.rb:32
|
2599
2617
|
msgid "cannot lookup multiple files"
|
2600
2618
|
msgstr ""
|
2601
2619
|
|
@@ -2608,12 +2626,12 @@ msgid "Could not find filesystem info for file '%{request}' in environment %{env
|
|
2608
2626
|
msgstr ""
|
2609
2627
|
|
2610
2628
|
#. TRANSLATORS "Hiera" is the name of a code library and should not be translated
|
2611
|
-
#: ../lib/puppet/indirector/hiera.rb:
|
2629
|
+
#: ../lib/puppet/indirector/hiera.rb:12
|
2612
2630
|
msgid "Hiera terminus not supported without hiera library"
|
2613
2631
|
msgstr ""
|
2614
2632
|
|
2615
2633
|
#. TRANSLATORS "merge" is a parameter name and should not be translated
|
2616
|
-
#: ../lib/puppet/indirector/hiera.rb:
|
2634
|
+
#: ../lib/puppet/indirector/hiera.rb:72
|
2617
2635
|
msgid "Unrecognized value for request 'merge' parameter: '%{merge}'"
|
2618
2636
|
msgstr ""
|
2619
2637
|
|
@@ -2702,11 +2720,11 @@ msgstr ""
|
|
2702
2720
|
msgid "invalid key"
|
2703
2721
|
msgstr ""
|
2704
2722
|
|
2705
|
-
#: ../lib/puppet/indirector/json.rb:
|
2723
|
+
#: ../lib/puppet/indirector/json.rb:62
|
2706
2724
|
msgid "Could not read JSON data for %{name} %{key}: %{detail}"
|
2707
2725
|
msgstr ""
|
2708
2726
|
|
2709
|
-
#: ../lib/puppet/indirector/json.rb:
|
2727
|
+
#: ../lib/puppet/indirector/json.rb:68
|
2710
2728
|
msgid "Could not parse JSON data for %{name} %{key}: %{detail}"
|
2711
2729
|
msgstr ""
|
2712
2730
|
|
@@ -2763,6 +2781,14 @@ msgstr ""
|
|
2763
2781
|
msgid "Could not load external node results for %{name}: %{detail}"
|
2764
2782
|
msgstr ""
|
2765
2783
|
|
2784
|
+
#: ../lib/puppet/indirector/report/json.rb:19 ../lib/puppet/indirector/report/yaml.rb:19
|
2785
|
+
msgid "replace_file mode: %{mode} is invalid"
|
2786
|
+
msgstr ""
|
2787
|
+
|
2788
|
+
#: ../lib/puppet/indirector/report/json.rb:31 ../lib/puppet/indirector/report/yaml.rb:31 ../lib/puppet/indirector/yaml.rb:32
|
2789
|
+
msgid "Could not save %{indirection} %{request}: %{detail}"
|
2790
|
+
msgstr ""
|
2791
|
+
|
2766
2792
|
#: ../lib/puppet/indirector/report/processor.rb:39
|
2767
2793
|
msgid "Report %{report} failed: %{detail}"
|
2768
2794
|
msgstr ""
|
@@ -2775,14 +2801,6 @@ msgstr ""
|
|
2775
2801
|
msgid "Server version %{version} does not accept reports in '%{format}', use `preferred_serialization_format=pson`"
|
2776
2802
|
msgstr ""
|
2777
2803
|
|
2778
|
-
#: ../lib/puppet/indirector/report/yaml.rb:19
|
2779
|
-
msgid "replace_file mode: %{mode} is invalid"
|
2780
|
-
msgstr ""
|
2781
|
-
|
2782
|
-
#: ../lib/puppet/indirector/report/yaml.rb:31 ../lib/puppet/indirector/yaml.rb:32
|
2783
|
-
msgid "Could not save %{indirection} %{request}: %{detail}"
|
2784
|
-
msgstr ""
|
2785
|
-
|
2786
2804
|
#: ../lib/puppet/indirector/request.rb:103
|
2787
2805
|
msgid "Could not find indirection '%{indirection}'"
|
2788
2806
|
msgstr ""
|
@@ -2806,9 +2824,9 @@ msgstr ""
|
|
2806
2824
|
msgid "Selected port from the first entry of the `server_list` setting: %{port}"
|
2807
2825
|
msgstr ""
|
2808
2826
|
|
2809
|
-
#. TRANSLATORS '
|
2827
|
+
#. TRANSLATORS 'serverport' is the name of a setting and should not be translated
|
2810
2828
|
#: ../lib/puppet/indirector/request.rb:235
|
2811
|
-
msgid "Selected port from the `
|
2829
|
+
msgid "Selected port from the `serverport` setting: %{port}"
|
2812
2830
|
msgstr ""
|
2813
2831
|
|
2814
2832
|
#: ../lib/puppet/indirector/request.rb:266
|
@@ -2981,8 +2999,8 @@ msgstr ""
|
|
2981
2999
|
msgid "Option %{option} conflicts with existing option %{conflict} on %{face}"
|
2982
3000
|
msgstr ""
|
2983
3001
|
|
2984
|
-
#. TRANSLATORS 'Puppet.settings' should not be translated
|
2985
3002
|
#. TRANSLATORS 'Puppet.settings' references to the Puppet settings options and should not be translated
|
3003
|
+
#. TRANSLATORS 'Puppet.settings' should not be translated
|
2986
3004
|
#: ../lib/puppet/interface/action.rb:315 ../lib/puppet/interface/option_manager.rb:14
|
2987
3005
|
msgid "Global option %{option} does not exist in Puppet.settings"
|
2988
3006
|
msgstr ""
|
@@ -3207,11 +3225,11 @@ msgid "Loaded puppet/type/%{name} but no class was created"
|
|
3207
3225
|
msgstr ""
|
3208
3226
|
|
3209
3227
|
#. TRANSLATORS 'metadata.json' is a specific file name and should not be translated.
|
3210
|
-
#: ../lib/puppet/module.rb:
|
3228
|
+
#: ../lib/puppet/module.rb:221
|
3211
3229
|
msgid "%{name} has an invalid and unparsable metadata.json file. The parse error: %{error}"
|
3212
3230
|
msgstr ""
|
3213
3231
|
|
3214
|
-
#: ../lib/puppet/module.rb:
|
3232
|
+
#: ../lib/puppet/module.rb:467
|
3215
3233
|
msgid ""
|
3216
3234
|
" Invalid module name '%{name}'; module names must match either:\n"
|
3217
3235
|
" An installed module name (ex. modulename) matching the expression /^[a-z][a-z0-9_]*$/ -or-\n"
|
@@ -3338,11 +3356,11 @@ msgstr ""
|
|
3338
3356
|
msgid "Resolving dependencies ..."
|
3339
3357
|
msgstr ""
|
3340
3358
|
|
3341
|
-
#: ../lib/puppet/module_tool/applications/installer.rb:
|
3359
|
+
#: ../lib/puppet/module_tool/applications/installer.rb:208
|
3342
3360
|
msgid "Preparing to install ..."
|
3343
3361
|
msgstr ""
|
3344
3362
|
|
3345
|
-
#: ../lib/puppet/module_tool/applications/installer.rb:
|
3363
|
+
#: ../lib/puppet/module_tool/applications/installer.rb:211
|
3346
3364
|
msgid "Installing -- do not interrupt ..."
|
3347
3365
|
msgstr ""
|
3348
3366
|
|
@@ -3386,7 +3404,7 @@ msgstr ""
|
|
3386
3404
|
msgid "'%{module_name}' (%{version}) requested; '%{module_name}' (%{installed_version}) already installed"
|
3387
3405
|
msgstr ""
|
3388
3406
|
|
3389
|
-
#: ../lib/puppet/module_tool/errors/installer.rb:16 ../lib/puppet/module_tool/errors/installer.rb:54 ../lib/puppet/module_tool/errors/installer.rb:72 ../lib/puppet/module_tool/errors/shared.rb:
|
3407
|
+
#: ../lib/puppet/module_tool/errors/installer.rb:16 ../lib/puppet/module_tool/errors/installer.rb:54 ../lib/puppet/module_tool/errors/installer.rb:72 ../lib/puppet/module_tool/errors/shared.rb:79 ../lib/puppet/module_tool/errors/shared.rb:121
|
3390
3408
|
msgid "Could not install module '%{module_name}' (%{version})"
|
3391
3409
|
msgstr ""
|
3392
3410
|
|
@@ -3416,7 +3434,7 @@ msgstr ""
|
|
3416
3434
|
msgid "Could not install '%{requested_package}'"
|
3417
3435
|
msgstr ""
|
3418
3436
|
|
3419
|
-
#: ../lib/puppet/module_tool/errors/installer.rb:38 ../lib/puppet/module_tool/errors/shared.rb:
|
3437
|
+
#: ../lib/puppet/module_tool/errors/installer.rb:38 ../lib/puppet/module_tool/errors/shared.rb:58
|
3420
3438
|
msgid " No releases are available from %{source}"
|
3421
3439
|
msgstr ""
|
3422
3440
|
|
@@ -3461,150 +3479,162 @@ msgstr ""
|
|
3461
3479
|
msgid " Package attempted to install file into %{path} under %{directory}."
|
3462
3480
|
msgstr ""
|
3463
3481
|
|
3464
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3482
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:12
|
3465
3483
|
msgid "Could not %{action} '%{module_name}' (%{version}); no version satisfies all dependencies"
|
3466
3484
|
msgstr ""
|
3467
3485
|
|
3468
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3486
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:17 ../lib/puppet/module_tool/errors/shared.rb:186 ../lib/puppet/module_tool/errors/upgrader.rb:58
|
3469
3487
|
msgid "Could not %{action} module '%{module_name}' (%{version})"
|
3470
3488
|
msgstr ""
|
3471
3489
|
|
3472
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3473
|
-
msgid "
|
3490
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:20
|
3491
|
+
msgid " The requested version cannot satisfy one or more of the following installed modules:"
|
3492
|
+
msgstr ""
|
3493
|
+
|
3494
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:22
|
3495
|
+
msgid " %{name}, installed: %{current_version}, expected: %{constraints}"
|
3496
|
+
msgstr ""
|
3497
|
+
|
3498
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:25
|
3499
|
+
msgid " %{mod}, expects '%{name}': %{range}"
|
3500
|
+
msgstr ""
|
3501
|
+
|
3502
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:30
|
3503
|
+
msgid " The requested version cannot satisfy all dependencies"
|
3474
3504
|
msgstr ""
|
3475
3505
|
|
3476
3506
|
#. TRANSLATORS `puppet module %{action} --ignore-dependencies` is a command line and should not be translated
|
3477
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3478
|
-
msgid "
|
3507
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:34
|
3508
|
+
msgid " Use `puppet module %{action} '%{module_name}' --ignore-dependencies` to %{action} only this module"
|
3479
3509
|
msgstr ""
|
3480
3510
|
|
3481
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3511
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:48
|
3482
3512
|
msgid "Could not %{action} '%{module_name}'; no releases are available from %{source}"
|
3483
3513
|
msgstr ""
|
3484
3514
|
|
3485
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3515
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:50
|
3486
3516
|
msgid "Could not %{action} '%{module_name}'; no releases matching '%{version}' are available from %{source}"
|
3487
3517
|
msgstr ""
|
3488
3518
|
|
3489
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3519
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:56
|
3490
3520
|
msgid "Could not %{action} '%{module_name}' (%{version})"
|
3491
3521
|
msgstr ""
|
3492
3522
|
|
3493
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3523
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:59
|
3494
3524
|
msgid " Does '%{module_name}' have at least one published release?"
|
3495
3525
|
msgstr ""
|
3496
3526
|
|
3497
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3527
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:61
|
3498
3528
|
msgid " No releases matching '%{requested_version}' are available from %{source}"
|
3499
3529
|
msgstr ""
|
3500
3530
|
|
3501
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3531
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:74
|
3502
3532
|
msgid "'%{module_name}' (%{version}) requested; installation conflict"
|
3503
3533
|
msgstr ""
|
3504
3534
|
|
3505
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3535
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:82
|
3506
3536
|
msgid " Dependency '%{name}' (%{version}) would overwrite %{directory}"
|
3507
3537
|
msgstr ""
|
3508
3538
|
|
3509
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3539
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:84
|
3510
3540
|
msgid " Installation would overwrite %{directory}"
|
3511
3541
|
msgstr ""
|
3512
3542
|
|
3513
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3543
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:88
|
3514
3544
|
msgid " Currently, '%{current_name}' (%{current_version}) is installed to that directory"
|
3515
3545
|
msgstr ""
|
3516
3546
|
|
3517
3547
|
#. TRANSLATORS `puppet module install --ignore-dependencies` is a command line and should not be translated
|
3518
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3548
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:93
|
3519
3549
|
msgid " Use `puppet module install --ignore-dependencies` to install only this module"
|
3520
3550
|
msgstr ""
|
3521
3551
|
|
3522
3552
|
#. TRANSLATORS `puppet module install --force` is a command line and should not be translated
|
3523
3553
|
#. TRANSLATORS `puppet module install --force` is a command line and should not be translated
|
3524
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3554
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:96 ../lib/puppet/module_tool/errors/shared.rb:125
|
3525
3555
|
msgid " Use `puppet module install --force` to install this module anyway"
|
3526
3556
|
msgstr ""
|
3527
3557
|
|
3528
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3558
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:110
|
3529
3559
|
msgid "'%{module_name}' (%{version}) requested; Invalid dependency cycle"
|
3530
3560
|
msgstr ""
|
3531
3561
|
|
3532
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3562
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:115
|
3533
3563
|
msgid "You specified '%{name}' (%{version})"
|
3534
3564
|
msgstr ""
|
3535
3565
|
|
3536
3566
|
#. TRANSLATORS This message repeats as separate lines as a list under the heading "You specified '%{name}' (%{version})\n"
|
3537
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3567
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:118
|
3538
3568
|
msgid "This depends on '%{name}' (%{version})"
|
3539
3569
|
msgstr ""
|
3540
3570
|
|
3541
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3571
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:122
|
3542
3572
|
msgid " No version of '%{module_name}' will satisfy dependencies"
|
3543
3573
|
msgstr ""
|
3544
3574
|
|
3545
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3575
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:135
|
3546
3576
|
msgid "Could not %{action} '%{module_name}'; module is not installed"
|
3547
3577
|
msgstr ""
|
3548
3578
|
|
3549
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3579
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:140 ../lib/puppet/module_tool/errors/shared.rb:163 ../lib/puppet/module_tool/errors/shared.rb:204
|
3550
3580
|
msgid "Could not %{action} module '%{module_name}'"
|
3551
3581
|
msgstr ""
|
3552
3582
|
|
3553
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3583
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:141
|
3554
3584
|
msgid " Module '%{module_name}' is not installed"
|
3555
3585
|
msgstr ""
|
3556
3586
|
|
3557
3587
|
#. TRANSLATORS `puppet module %{action} %{suggestion}` is a command line and should not be translated
|
3558
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3588
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:144
|
3559
3589
|
msgid " You may have meant `puppet module %{action} %{suggestion}`"
|
3560
3590
|
msgstr ""
|
3561
3591
|
|
3562
3592
|
#. TRANSLATORS `puppet module install` is a command line and should not be translated
|
3563
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3593
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:147
|
3564
3594
|
msgid " Use `puppet module install` to install this module"
|
3565
3595
|
msgstr ""
|
3566
3596
|
|
3567
3597
|
#. TRANSLATORS "module path" refers to a set of directories where modules may be installed
|
3568
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3598
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:158
|
3569
3599
|
msgid "Could not %{action} '%{module_name}'; module appears in multiple places in the module path"
|
3570
3600
|
msgstr ""
|
3571
3601
|
|
3572
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3602
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:164
|
3573
3603
|
msgid " Module '%{module_name}' appears multiple places in the module path"
|
3574
3604
|
msgstr ""
|
3575
3605
|
|
3576
3606
|
#. TRANSLATORS This is repeats as separate lines as a list under "Module '%{module_name}' appears multiple places in the module path"
|
3577
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3607
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:167
|
3578
3608
|
msgid " '%{module_name}' (%{version}) was found in %{path}"
|
3579
3609
|
msgstr ""
|
3580
3610
|
|
3581
3611
|
#. TRANSLATORS `--modulepath` is command line option and should not be translated
|
3582
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3612
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:170
|
3583
3613
|
msgid " Use the `--modulepath` option to limit the search to specific directories"
|
3584
3614
|
msgstr ""
|
3585
3615
|
|
3586
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3616
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:181
|
3587
3617
|
msgid "Could not %{action} '%{module_name}'; module has had changes made locally"
|
3588
3618
|
msgstr ""
|
3589
3619
|
|
3590
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3620
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:187
|
3591
3621
|
msgid " Installed module has had changes made locally"
|
3592
3622
|
msgstr ""
|
3593
3623
|
|
3594
3624
|
#. TRANSLATORS `puppet module %{action} --ignore-changes` is a command line and should not be translated
|
3595
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3625
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:189
|
3596
3626
|
msgid " Use `puppet module %{action} --ignore-changes` to %{action} this module anyway"
|
3597
3627
|
msgstr ""
|
3598
3628
|
|
3599
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3629
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:199
|
3600
3630
|
msgid "Could not %{action} '%{module_name}'; %{error}"
|
3601
3631
|
msgstr ""
|
3602
3632
|
|
3603
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3633
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:205
|
3604
3634
|
msgid " Failure trying to parse metadata"
|
3605
3635
|
msgstr ""
|
3606
3636
|
|
3607
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3637
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:206
|
3608
3638
|
msgid " Original message was: %{message}"
|
3609
3639
|
msgstr ""
|
3610
3640
|
|
@@ -4163,7 +4193,7 @@ msgstr ""
|
|
4163
4193
|
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."
|
4164
4194
|
msgstr ""
|
4165
4195
|
|
4166
|
-
#: ../lib/puppet/node/environment.rb:
|
4196
|
+
#: ../lib/puppet/node/environment.rb:568 ../lib/puppet/pops/loaders.rb:301
|
4167
4197
|
msgid "Could not parse for environment %{env}: %{detail}"
|
4168
4198
|
msgstr ""
|
4169
4199
|
|
@@ -4195,54 +4225,54 @@ msgstr ""
|
|
4195
4225
|
|
4196
4226
|
#. TRANSLATORS: do not translate the variable names in this error message
|
4197
4227
|
#. TRANSLATORS: do not translate the variable names in this error message
|
4198
|
-
#: ../lib/puppet/pal/pal_impl.rb:
|
4228
|
+
#: ../lib/puppet/pal/pal_impl.rb:75 ../lib/puppet/pal/pal_impl.rb:181
|
4199
4229
|
msgid "manifest_file or code_string cannot be given when configured_by_env is true"
|
4200
4230
|
msgstr ""
|
4201
4231
|
|
4202
|
-
#: ../lib/puppet/pal/pal_impl.rb:
|
4232
|
+
#: ../lib/puppet/pal/pal_impl.rb:237
|
4203
4233
|
msgid "temporary environment name"
|
4204
4234
|
msgstr ""
|
4205
4235
|
|
4206
4236
|
#. TRANSLATORS: do not translate variable name string in these assertions
|
4207
|
-
#: ../lib/puppet/pal/pal_impl.rb:
|
4237
|
+
#: ../lib/puppet/pal/pal_impl.rb:242
|
4208
4238
|
msgid "A block must be given to 'in_tmp_environment'"
|
4209
4239
|
msgstr ""
|
4210
4240
|
|
4211
4241
|
#. TRANSLATORS terms in the assertions below are names of terms in code
|
4212
|
-
#: ../lib/puppet/pal/pal_impl.rb:
|
4242
|
+
#: ../lib/puppet/pal/pal_impl.rb:296
|
4213
4243
|
msgid "A block must be given to 'in_environment'"
|
4214
4244
|
msgstr ""
|
4215
4245
|
|
4216
4246
|
#. TRANSLATORS 'in_environment' is a name, do not translate
|
4217
|
-
#: ../lib/puppet/pal/pal_impl.rb:
|
4247
|
+
#: ../lib/puppet/pal/pal_impl.rb:301
|
4218
4248
|
msgid "The environment directory '%{env_dir}' does not exist"
|
4219
4249
|
msgstr ""
|
4220
4250
|
|
4221
|
-
#: ../lib/puppet/pal/pal_impl.rb:
|
4251
|
+
#: ../lib/puppet/pal/pal_impl.rb:324
|
4222
4252
|
msgid "No directory found for the environment '%{env_name}' on the path '%{envpath}'"
|
4223
4253
|
msgstr ""
|
4224
4254
|
|
4225
|
-
#: ../lib/puppet/pal/pal_impl.rb:
|
4255
|
+
#: ../lib/puppet/pal/pal_impl.rb:378
|
4226
4256
|
msgid "Given variables must be a hash, got %{type}"
|
4227
4257
|
msgstr ""
|
4228
4258
|
|
4229
|
-
#: ../lib/puppet/pal/pal_impl.rb:
|
4259
|
+
#: ../lib/puppet/pal/pal_impl.rb:384
|
4230
4260
|
msgid "Given variable '%{varname}' has illegal name"
|
4231
4261
|
msgstr ""
|
4232
4262
|
|
4233
|
-
#: ../lib/puppet/pal/pal_impl.rb:
|
4263
|
+
#: ../lib/puppet/pal/pal_impl.rb:388
|
4234
4264
|
msgid "Given value for '%{varname}' has illegal type - got: %{type}"
|
4235
4265
|
msgstr ""
|
4236
4266
|
|
4237
|
-
#: ../lib/puppet/pal/pal_impl.rb:
|
4267
|
+
#: ../lib/puppet/pal/pal_impl.rb:562
|
4238
4268
|
msgid "Puppet Pal: %{what}"
|
4239
4269
|
msgstr ""
|
4240
4270
|
|
4241
|
-
#: ../lib/puppet/pal/pal_impl.rb:
|
4271
|
+
#: ../lib/puppet/pal/pal_impl.rb:576
|
4242
4272
|
msgid "Cannot use '%{a_term}' and '%{b_term}' at the same time"
|
4243
4273
|
msgstr ""
|
4244
4274
|
|
4245
|
-
#: ../lib/puppet/pal/pal_impl.rb:
|
4275
|
+
#: ../lib/puppet/pal/pal_impl.rb:583
|
4246
4276
|
msgid "A block must be given"
|
4247
4277
|
msgstr ""
|
4248
4278
|
|
@@ -4547,31 +4577,31 @@ msgstr ""
|
|
4547
4577
|
msgid "The method 'Puppet::Parser::Functions.autoloader#loaded?(\"%{name}\")' is deprecated in favor of using 'Scope#call_function'."
|
4548
4578
|
msgstr ""
|
4549
4579
|
|
4550
|
-
#: ../lib/puppet/parser/functions.rb:
|
4580
|
+
#: ../lib/puppet/parser/functions.rb:190
|
4551
4581
|
msgid "Overwriting previous definition for function %{name}"
|
4552
4582
|
msgstr ""
|
4553
4583
|
|
4554
|
-
#: ../lib/puppet/parser/functions.rb:
|
4584
|
+
#: ../lib/puppet/parser/functions.rb:196
|
4555
4585
|
msgid "Invalid statement type %{type}"
|
4556
4586
|
msgstr ""
|
4557
4587
|
|
4558
|
-
#: ../lib/puppet/parser/functions.rb:
|
4588
|
+
#: ../lib/puppet/parser/functions.rb:208
|
4559
4589
|
msgid "Called %{name}"
|
4560
4590
|
msgstr ""
|
4561
4591
|
|
4562
|
-
#: ../lib/puppet/parser/functions.rb:
|
4592
|
+
#: ../lib/puppet/parser/functions.rb:211
|
4563
4593
|
msgid "%{name}(): Wrong number of arguments given (%{arg_count} for %{arity})"
|
4564
4594
|
msgstr ""
|
4565
4595
|
|
4566
|
-
#: ../lib/puppet/parser/functions.rb:
|
4596
|
+
#: ../lib/puppet/parser/functions.rb:213
|
4567
4597
|
msgid "%{name}(): Wrong number of arguments given (%{arg_count} for minimum %{min_arg_count})"
|
4568
4598
|
msgstr ""
|
4569
4599
|
|
4570
|
-
#: ../lib/puppet/parser/functions.rb:
|
4600
|
+
#: ../lib/puppet/parser/functions.rb:219
|
4571
4601
|
msgid "custom functions must be called with a single array that contains the arguments. For example, function_example([1]) instead of function_example(1)"
|
4572
4602
|
msgstr ""
|
4573
4603
|
|
4574
|
-
#: ../lib/puppet/parser/functions.rb:
|
4604
|
+
#: ../lib/puppet/parser/functions.rb:318
|
4575
4605
|
msgid "%{name}() can only be called using the 4.x function API. See Scope#call_function"
|
4576
4606
|
msgstr ""
|
4577
4607
|
|
@@ -4579,15 +4609,15 @@ msgstr ""
|
|
4579
4609
|
msgid "Calling function_contain via the Scope class is deprecated. Use Scope#call_function instead"
|
4580
4610
|
msgstr ""
|
4581
4611
|
|
4582
|
-
#: ../lib/puppet/parser/functions/create_resources.rb:
|
4612
|
+
#: ../lib/puppet/parser/functions/create_resources.rb:60
|
4583
4613
|
msgid "create_resources(): wrong number of arguments (%{count}; must be 2 or 3)"
|
4584
4614
|
msgstr ""
|
4585
4615
|
|
4586
|
-
#: ../lib/puppet/parser/functions/create_resources.rb:
|
4616
|
+
#: ../lib/puppet/parser/functions/create_resources.rb:61
|
4587
4617
|
msgid "create_resources(): second argument must be a hash"
|
4588
4618
|
msgstr ""
|
4589
4619
|
|
4590
|
-
#: ../lib/puppet/parser/functions/create_resources.rb:
|
4620
|
+
#: ../lib/puppet/parser/functions/create_resources.rb:63
|
4591
4621
|
msgid "create_resources(): third argument, if provided, must be a hash"
|
4592
4622
|
msgstr ""
|
4593
4623
|
|
@@ -4955,23 +4985,23 @@ msgstr ""
|
|
4955
4985
|
msgid "multi var assignment from class"
|
4956
4986
|
msgstr ""
|
4957
4987
|
|
4958
|
-
#: ../lib/puppet/pops/evaluator/evaluator_impl.rb:
|
4988
|
+
#: ../lib/puppet/pops/evaluator/evaluator_impl.rb:761
|
4959
4989
|
msgid "break() from context where this is illegal"
|
4960
4990
|
msgstr ""
|
4961
4991
|
|
4962
|
-
#: ../lib/puppet/pops/evaluator/evaluator_impl.rb:
|
4992
|
+
#: ../lib/puppet/pops/evaluator/evaluator_impl.rb:1241
|
4963
4993
|
msgid "Can only append Array or Hash to a Hash"
|
4964
4994
|
msgstr ""
|
4965
4995
|
|
4966
|
-
#: ../lib/puppet/pops/evaluator/evaluator_impl.rb:
|
4996
|
+
#: ../lib/puppet/pops/evaluator/evaluator_impl.rb:1245
|
4967
4997
|
msgid "An URI can only be merged with an URI or String"
|
4968
4998
|
msgstr ""
|
4969
4999
|
|
4970
|
-
#: ../lib/puppet/pops/evaluator/evaluator_impl.rb:
|
5000
|
+
#: ../lib/puppet/pops/evaluator/evaluator_impl.rb:1248
|
4971
5001
|
msgid "Can only append Binary to a Binary"
|
4972
5002
|
msgstr ""
|
4973
5003
|
|
4974
|
-
#: ../lib/puppet/pops/evaluator/evaluator_impl.rb:
|
5004
|
+
#: ../lib/puppet/pops/evaluator/evaluator_impl.rb:1281
|
4975
5005
|
msgid "Can only delete from an Array or Hash."
|
4976
5006
|
msgstr ""
|
4977
5007
|
|
@@ -5918,19 +5948,19 @@ msgstr ""
|
|
5918
5948
|
msgid "Attempt to redefine already initialized loaders for environment"
|
5919
5949
|
msgstr ""
|
5920
5950
|
|
5921
|
-
#: ../lib/puppet/pops/loaders.rb:
|
5951
|
+
#: ../lib/puppet/pops/loaders.rb:177
|
5922
5952
|
msgid "Internal Error: Puppet Context ':loaders' missing"
|
5923
5953
|
msgstr ""
|
5924
5954
|
|
5925
|
-
#: ../lib/puppet/pops/loaders.rb:
|
5955
|
+
#: ../lib/puppet/pops/loaders.rb:191
|
5926
5956
|
msgid "Unable to find loader named '%{loader_name}'"
|
5927
5957
|
msgstr ""
|
5928
5958
|
|
5929
|
-
#: ../lib/puppet/pops/loaders.rb:
|
5959
|
+
#: ../lib/puppet/pops/loaders.rb:212
|
5930
5960
|
msgid "Internal Error: did not find public loader for module: '%{module_name}'"
|
5931
5961
|
msgstr ""
|
5932
5962
|
|
5933
|
-
#: ../lib/puppet/pops/loaders.rb:
|
5963
|
+
#: ../lib/puppet/pops/loaders.rb:258
|
5934
5964
|
msgid "Internal Error: Attempt to redefine loader named '%{name}'"
|
5935
5965
|
msgstr ""
|
5936
5966
|
|
@@ -5949,23 +5979,23 @@ msgstr ""
|
|
5949
5979
|
msgid "Unknown Explain type %{qualifier_type}"
|
5950
5980
|
msgstr ""
|
5951
5981
|
|
5952
|
-
#: ../lib/puppet/pops/lookup/hiera_config.rb:
|
5982
|
+
#: ../lib/puppet/pops/lookup/hiera_config.rb:86
|
5953
5983
|
msgid "Using of legacy data provider function '%{function_name}'. Please convert to a 'data_hash' function"
|
5954
5984
|
msgstr ""
|
5955
5985
|
|
5956
|
-
#: ../lib/puppet/pops/lookup/hiera_config.rb:
|
5986
|
+
#: ../lib/puppet/pops/lookup/hiera_config.rb:143
|
5957
5987
|
msgid "%{config_path}: File exists but does not contain a valid YAML hash. Falling back to Hiera version 3 default config"
|
5958
5988
|
msgstr ""
|
5959
5989
|
|
5960
|
-
#: ../lib/puppet/pops/lookup/hiera_config.rb:
|
5990
|
+
#: ../lib/puppet/pops/lookup/hiera_config.rb:201
|
5961
5991
|
msgid "Hiera configuration recreated due to change of scope variables used in interpolation expressions"
|
5962
5992
|
msgstr ""
|
5963
5993
|
|
5964
|
-
#: ../lib/puppet/pops/lookup/hiera_config.rb:
|
5994
|
+
#: ../lib/puppet/pops/lookup/hiera_config.rb:429
|
5965
5995
|
msgid "%{config_path}: Use of 'hiera.yaml' version 3 is deprecated. It should be converted to version 5"
|
5966
5996
|
msgstr ""
|
5967
5997
|
|
5968
|
-
#: ../lib/puppet/pops/lookup/hiera_config.rb:
|
5998
|
+
#: ../lib/puppet/pops/lookup/hiera_config.rb:529
|
5969
5999
|
msgid "%{config_path}: Use of 'hiera.yaml' version 4 is deprecated. It should be converted to version 5"
|
5970
6000
|
msgstr ""
|
5971
6001
|
|
@@ -6778,7 +6808,7 @@ msgstr ""
|
|
6778
6808
|
msgid "Could not list installed Packages: %{detail}"
|
6779
6809
|
msgstr ""
|
6780
6810
|
|
6781
|
-
#: ../lib/puppet/provider/package/aix.rb:156 ../lib/puppet/provider/package/yum.rb:
|
6811
|
+
#: ../lib/puppet/provider/package/aix.rb:156 ../lib/puppet/provider/package/yum.rb:333
|
6782
6812
|
msgid "Tried to get latest on a missing package"
|
6783
6813
|
msgstr ""
|
6784
6814
|
|
@@ -6794,19 +6824,19 @@ msgstr ""
|
|
6794
6824
|
msgid "Mac OS X packages must specify a package source"
|
6795
6825
|
msgstr ""
|
6796
6826
|
|
6797
|
-
#: ../lib/puppet/provider/package/apt.rb:
|
6827
|
+
#: ../lib/puppet/provider/package/apt.rb:85
|
6798
6828
|
msgid "/etc/apt/sources.list contains a cdrom source; not installing. Use 'allowcdrom' to override this failure."
|
6799
6829
|
msgstr ""
|
6800
6830
|
|
6801
|
-
#: ../lib/puppet/provider/package/apt.rb:
|
6831
|
+
#: ../lib/puppet/provider/package/apt.rb:167 ../lib/puppet/provider/package/fink.rb:55
|
6802
6832
|
msgid "Could not find latest version"
|
6803
6833
|
msgstr ""
|
6804
6834
|
|
6805
|
-
#: ../lib/puppet/provider/package/apt.rb:
|
6835
|
+
#: ../lib/puppet/provider/package/apt.rb:178 ../lib/puppet/provider/package/fink.rb:66
|
6806
6836
|
msgid "Preseeding %{response} to debconf-set-selections"
|
6807
6837
|
msgstr ""
|
6808
6838
|
|
6809
|
-
#: ../lib/puppet/provider/package/apt.rb:
|
6839
|
+
#: ../lib/puppet/provider/package/apt.rb:182 ../lib/puppet/provider/package/fink.rb:70
|
6810
6840
|
msgid "No responsefile specified or non existent, not preseeding anything"
|
6811
6841
|
msgstr ""
|
6812
6842
|
|
@@ -6858,27 +6888,27 @@ msgstr ""
|
|
6858
6888
|
msgid "source is defined but does not have trailing slash, ignoring %{source}"
|
6859
6889
|
msgstr ""
|
6860
6890
|
|
6861
|
-
#: ../lib/puppet/provider/package/gem.rb:
|
6891
|
+
#: ../lib/puppet/provider/package/gem.rb:102 ../lib/puppet/provider/package/puppetserver_gem.rb:61
|
6862
6892
|
msgid "Could not list gems: %{detail}"
|
6863
6893
|
msgstr ""
|
6864
6894
|
|
6865
|
-
#: ../lib/puppet/provider/package/gem.rb:
|
6895
|
+
#: ../lib/puppet/provider/package/gem.rb:128
|
6866
6896
|
msgid "Could not match %{desc}"
|
6867
6897
|
msgstr ""
|
6868
6898
|
|
6869
|
-
#: ../lib/puppet/provider/package/gem.rb:
|
6899
|
+
#: ../lib/puppet/provider/package/gem.rb:206 ../lib/puppet/provider/package/puppetserver_gem.rb:93
|
6870
6900
|
msgid "Invalid source '%{uri}': %{detail}"
|
6871
6901
|
msgstr ""
|
6872
6902
|
|
6873
|
-
#: ../lib/puppet/provider/package/gem.rb:
|
6903
|
+
#: ../lib/puppet/provider/package/gem.rb:217 ../lib/puppet/provider/package/puppetserver_gem.rb:104
|
6874
6904
|
msgid "puppet:// URLs are not supported as gem sources"
|
6875
6905
|
msgstr ""
|
6876
6906
|
|
6877
|
-
#: ../lib/puppet/provider/package/gem.rb:
|
6907
|
+
#: ../lib/puppet/provider/package/gem.rb:233 ../lib/puppet/provider/package/puppetserver_gem.rb:115
|
6878
6908
|
msgid "Could not install: %{output}"
|
6879
6909
|
msgstr ""
|
6880
6910
|
|
6881
|
-
#: ../lib/puppet/provider/package/gem.rb:
|
6911
|
+
#: ../lib/puppet/provider/package/gem.rb:259 ../lib/puppet/provider/package/puppetserver_gem.rb:125
|
6882
6912
|
msgid "Could not uninstall: %{output}"
|
6883
6913
|
msgstr ""
|
6884
6914
|
|
@@ -7273,15 +7303,15 @@ msgstr ""
|
|
7273
7303
|
msgid "ruby-shadow doesn't support %{method}"
|
7274
7304
|
msgstr ""
|
7275
7305
|
|
7276
|
-
#: ../lib/puppet/provider/user/windows_adsi.rb:
|
7306
|
+
#: ../lib/puppet/provider/user/windows_adsi.rb:145
|
7277
7307
|
msgid "The user account '%s' is disabled; The password will still be changed"
|
7278
7308
|
msgstr ""
|
7279
7309
|
|
7280
|
-
#: ../lib/puppet/provider/user/windows_adsi.rb:
|
7310
|
+
#: ../lib/puppet/provider/user/windows_adsi.rb:147
|
7281
7311
|
msgid "The user account '%s' is locked out; The password will still be changed"
|
7282
7312
|
msgstr ""
|
7283
7313
|
|
7284
|
-
#: ../lib/puppet/provider/user/windows_adsi.rb:
|
7314
|
+
#: ../lib/puppet/provider/user/windows_adsi.rb:149
|
7285
7315
|
msgid "The user account '%s' is expired; The password will still be changed"
|
7286
7316
|
msgstr ""
|
7287
7317
|
|
@@ -7487,67 +7517,67 @@ msgstr ""
|
|
7487
7517
|
msgid "Could not evaluate: %{detail}"
|
7488
7518
|
msgstr ""
|
7489
7519
|
|
7490
|
-
#: ../lib/puppet/resource/type.rb:
|
7520
|
+
#: ../lib/puppet/resource/type.rb:82
|
7491
7521
|
msgid "Invalid export in %{reference}: %{ex} is not a resource"
|
7492
7522
|
msgstr ""
|
7493
7523
|
|
7494
|
-
#: ../lib/puppet/resource/type.rb:
|
7524
|
+
#: ../lib/puppet/resource/type.rb:83
|
7495
7525
|
msgid "Invalid export in %{reference}: %{ex} is not a capability resource"
|
7496
7526
|
msgstr ""
|
7497
7527
|
|
7498
|
-
#: ../lib/puppet/resource/type.rb:
|
7528
|
+
#: ../lib/puppet/resource/type.rb:87
|
7499
7529
|
msgid "Resource type %{res_type} does not produce %{ex_type}"
|
7500
7530
|
msgstr ""
|
7501
7531
|
|
7502
|
-
#: ../lib/puppet/resource/type.rb:
|
7532
|
+
#: ../lib/puppet/resource/type.rb:148
|
7503
7533
|
msgid "Invalid resource supertype '%{type}'"
|
7504
7534
|
msgstr ""
|
7505
7535
|
|
7506
|
-
#: ../lib/puppet/resource/type.rb:
|
7536
|
+
#: ../lib/puppet/resource/type.rb:200
|
7507
7537
|
msgid "%{name} is not a class; cannot add code to it"
|
7508
7538
|
msgstr ""
|
7509
7539
|
|
7510
|
-
#: ../lib/puppet/resource/type.rb:
|
7540
|
+
#: ../lib/puppet/resource/type.rb:201
|
7511
7541
|
msgid "%{name} is not a class; cannot add code from it"
|
7512
7542
|
msgstr ""
|
7513
7543
|
|
7514
|
-
#: ../lib/puppet/resource/type.rb:
|
7544
|
+
#: ../lib/puppet/resource/type.rb:205
|
7515
7545
|
msgid "Cannot have code outside of a class/node/define because 'freeze_main' is enabled"
|
7516
7546
|
msgstr ""
|
7517
7547
|
|
7518
|
-
#: ../lib/puppet/resource/type.rb:
|
7548
|
+
#: ../lib/puppet/resource/type.rb:209
|
7519
7549
|
msgid "Cannot merge classes with different parent classes (%{name} => %{parent} vs. %{other_name} => %{other_parent})"
|
7520
7550
|
msgstr ""
|
7521
7551
|
|
7522
|
-
#: ../lib/puppet/resource/type.rb:
|
7552
|
+
#: ../lib/puppet/resource/type.rb:240
|
7523
7553
|
msgid "Cannot create resources for defined resource types"
|
7524
7554
|
msgstr ""
|
7525
7555
|
|
7526
|
-
#: ../lib/puppet/resource/type.rb:
|
7556
|
+
#: ../lib/puppet/resource/type.rb:295
|
7527
7557
|
msgid "The method Puppet::Resource::Type.assign_parameter_values is deprecated and will be removed in the next major release of Puppet."
|
7528
7558
|
msgstr ""
|
7529
7559
|
|
7530
|
-
#: ../lib/puppet/resource/type.rb:
|
7560
|
+
#: ../lib/puppet/resource/type.rb:311
|
7531
7561
|
msgid "Could not find parent resource type '%{parent}' of type %{parent_type} in %{env}"
|
7532
7562
|
msgstr ""
|
7533
7563
|
|
7534
|
-
#: ../lib/puppet/resource/type.rb:
|
7564
|
+
#: ../lib/puppet/resource/type.rb:438
|
7535
7565
|
msgid "Parameter '%{name}' is given a type, but is not a valid parameter."
|
7536
7566
|
msgstr ""
|
7537
7567
|
|
7538
|
-
#: ../lib/puppet/resource/type.rb:
|
7568
|
+
#: ../lib/puppet/resource/type.rb:441
|
7539
7569
|
msgid "Parameter '%{name}' is given a type that is not a Puppet Type, got %{class_name}"
|
7540
7570
|
msgstr ""
|
7541
7571
|
|
7542
|
-
#: ../lib/puppet/resource/type.rb:
|
7572
|
+
#: ../lib/puppet/resource/type.rb:483
|
7543
7573
|
msgid "Could not find scope for %{class_name}"
|
7544
7574
|
msgstr ""
|
7545
7575
|
|
7546
|
-
#: ../lib/puppet/resource/type.rb:
|
7576
|
+
#: ../lib/puppet/resource/type.rb:504
|
7547
7577
|
msgid "%{param} is a metaparam; this value will inherit to all contained resources in the %{name} definition"
|
7548
7578
|
msgstr ""
|
7549
7579
|
|
7550
|
-
#: ../lib/puppet/resource/type.rb:
|
7580
|
+
#: ../lib/puppet/resource/type.rb:506
|
7551
7581
|
msgid "%{param} is a metaparameter; please choose another parameter name in the %{name} definition"
|
7552
7582
|
msgstr ""
|
7553
7583
|
|
@@ -7619,69 +7649,69 @@ msgstr ""
|
|
7619
7649
|
msgid "Downloaded existing certificate request for %{name} from %{server}"
|
7620
7650
|
msgstr ""
|
7621
7651
|
|
7622
|
-
#: ../lib/puppet/settings.rb:
|
7652
|
+
#: ../lib/puppet/settings.rb:99
|
7623
7653
|
msgid "New environment loaders generated from the requested section."
|
7624
7654
|
msgstr ""
|
7625
7655
|
|
7626
|
-
#: ../lib/puppet/settings.rb:
|
7656
|
+
#: ../lib/puppet/settings.rb:301
|
7627
7657
|
msgid "Attempting to initialize global default settings more than once!"
|
7628
7658
|
msgstr ""
|
7629
7659
|
|
7630
|
-
#: ../lib/puppet/settings.rb:
|
7660
|
+
#: ../lib/puppet/settings.rb:501
|
7631
7661
|
msgid "Using --configprint is deprecated. Use 'puppet config <subcommand>' instead."
|
7632
7662
|
msgstr ""
|
7633
7663
|
|
7634
|
-
#: ../lib/puppet/settings.rb:
|
7664
|
+
#: ../lib/puppet/settings.rb:643
|
7635
7665
|
msgid "Could not load %{file}: %{detail}"
|
7636
7666
|
msgstr ""
|
7637
7667
|
|
7638
|
-
#: ../lib/puppet/settings.rb:
|
7668
|
+
#: ../lib/puppet/settings.rb:750
|
7639
7669
|
msgid "Invalid setting type '%{type}'"
|
7640
7670
|
msgstr ""
|
7641
7671
|
|
7642
|
-
#: ../lib/puppet/settings.rb:
|
7672
|
+
#: ../lib/puppet/settings.rb:905
|
7643
7673
|
msgid "Unknown searchpath case: %{source_type} for the %{source} settings path element."
|
7644
7674
|
msgstr ""
|
7645
7675
|
|
7646
|
-
#: ../lib/puppet/settings.rb:
|
7676
|
+
#: ../lib/puppet/settings.rb:978
|
7647
7677
|
msgid "setting definition for '%{name}' is not a hash!"
|
7648
7678
|
msgstr ""
|
7649
7679
|
|
7650
|
-
#: ../lib/puppet/settings.rb:
|
7680
|
+
#: ../lib/puppet/settings.rb:983
|
7651
7681
|
msgid "Setting %{name} is already defined"
|
7652
7682
|
msgstr ""
|
7653
7683
|
|
7654
|
-
#: ../lib/puppet/settings.rb:
|
7684
|
+
#: ../lib/puppet/settings.rb:989
|
7655
7685
|
msgid "Setting %{name} is already using short name '%{short}'"
|
7656
7686
|
msgstr ""
|
7657
7687
|
|
7658
|
-
#: ../lib/puppet/settings.rb:
|
7688
|
+
#: ../lib/puppet/settings.rb:1253
|
7659
7689
|
msgid "Setting %{name} is deprecated."
|
7660
7690
|
msgstr ""
|
7661
7691
|
|
7662
7692
|
#. TRANSLATORS 'puppet.conf' is a file name and should not be translated
|
7663
|
-
#: ../lib/puppet/settings.rb:
|
7693
|
+
#: ../lib/puppet/settings.rb:1258
|
7664
7694
|
msgid "Setting %{name} is deprecated in puppet.conf."
|
7665
7695
|
msgstr ""
|
7666
7696
|
|
7667
|
-
#: ../lib/puppet/settings.rb:
|
7697
|
+
#: ../lib/puppet/settings.rb:1435
|
7668
7698
|
msgid "Error converting value for param '%{name}': %{detail}"
|
7669
7699
|
msgstr ""
|
7670
7700
|
|
7671
|
-
#: ../lib/puppet/settings.rb:
|
7701
|
+
#: ../lib/puppet/settings.rb:1459
|
7672
7702
|
msgid "Could not find value for %{expression}"
|
7673
7703
|
msgstr ""
|
7674
7704
|
|
7675
7705
|
#. TRANSLATORS '$environment' is a Puppet specific variable and should not be translated
|
7676
|
-
#: ../lib/puppet/settings.rb:
|
7706
|
+
#: ../lib/puppet/settings.rb:1469
|
7677
7707
|
msgid "You cannot interpolate $environment within '%{setting_name}' when using directory environments."
|
7678
7708
|
msgstr ""
|
7679
7709
|
|
7680
|
-
#: ../lib/puppet/settings.rb:
|
7710
|
+
#: ../lib/puppet/settings.rb:1470
|
7681
7711
|
msgid "Its value will remain %{value}."
|
7682
7712
|
msgstr ""
|
7683
7713
|
|
7684
|
-
#: ../lib/puppet/settings.rb:
|
7714
|
+
#: ../lib/puppet/settings.rb:1501
|
7685
7715
|
msgid "Attempt to assign a value to unknown setting %{name}"
|
7686
7716
|
msgstr ""
|
7687
7717
|
|
@@ -7694,38 +7724,38 @@ msgid "Invalid autosign value %{value}: must be 'true'/'false' or an absolute pa
|
|
7694
7724
|
msgstr ""
|
7695
7725
|
|
7696
7726
|
#. TRANSLATORS ':%{name}', ':call_hook', and ':on_write_only' should not be translated
|
7697
|
-
#: ../lib/puppet/settings/base_setting.rb:
|
7727
|
+
#: ../lib/puppet/settings/base_setting.rb:37
|
7698
7728
|
msgid "Setting :%{name} :call_hook is nil, defaulting to :on_write_only"
|
7699
7729
|
msgstr ""
|
7700
7730
|
|
7701
7731
|
#. TRANSLATORS 'call_hook' is a Puppet option name and should not be translated
|
7702
|
-
#: ../lib/puppet/settings/base_setting.rb:
|
7732
|
+
#: ../lib/puppet/settings/base_setting.rb:42
|
7703
7733
|
msgid "Invalid option %{value} for call_hook"
|
7704
7734
|
msgstr ""
|
7705
7735
|
|
7706
7736
|
#. TRANSLATORS ':call_hook' and ':hook' are specific setting names and should not be translated
|
7707
|
-
#: ../lib/puppet/settings/base_setting.rb:
|
7737
|
+
#: ../lib/puppet/settings/base_setting.rb:101
|
7708
7738
|
msgid "Cannot reference :call_hook for :%{name} if no :hook is defined"
|
7709
7739
|
msgstr ""
|
7710
7740
|
|
7711
|
-
#: ../lib/puppet/settings/base_setting.rb:
|
7741
|
+
#: ../lib/puppet/settings/base_setting.rb:107
|
7712
7742
|
msgid "%{class_name} (setting '%{setting}') does not accept %{parameter}"
|
7713
7743
|
msgstr ""
|
7714
7744
|
|
7715
|
-
#: ../lib/puppet/settings/base_setting.rb:
|
7745
|
+
#: ../lib/puppet/settings/base_setting.rb:114
|
7716
7746
|
msgid "You must provide a description for the %{class_name} config option"
|
7717
7747
|
msgstr ""
|
7718
7748
|
|
7719
|
-
#: ../lib/puppet/settings/base_setting.rb:
|
7749
|
+
#: ../lib/puppet/settings/base_setting.rb:128
|
7720
7750
|
msgid "Short names can only be one character."
|
7721
7751
|
msgstr ""
|
7722
7752
|
|
7723
7753
|
#. TRANSLATORS 'deprecated' is a Puppet setting and ':completely' and ':allowed_on_commandline' are possible values and should not be translated
|
7724
|
-
#: ../lib/puppet/settings/base_setting.rb:
|
7754
|
+
#: ../lib/puppet/settings/base_setting.rb:197
|
7725
7755
|
msgid "Unsupported deprecated value '%{deprecation}'."
|
7726
7756
|
msgstr ""
|
7727
7757
|
|
7728
|
-
#: ../lib/puppet/settings/base_setting.rb:
|
7758
|
+
#: ../lib/puppet/settings/base_setting.rb:198
|
7729
7759
|
msgid "Supported values for deprecated are ':completely' or ':allowed_on_commandline'"
|
7730
7760
|
msgstr ""
|
7731
7761
|
|
@@ -8508,47 +8538,47 @@ msgstr ""
|
|
8508
8538
|
msgid "%{name} has no providers and has not overridden 'instances'"
|
8509
8539
|
msgstr ""
|
8510
8540
|
|
8511
|
-
#: ../lib/puppet/type.rb:
|
8541
|
+
#: ../lib/puppet/type.rb:1468
|
8512
8542
|
msgid "Cannot add aliases without a catalog"
|
8513
8543
|
msgstr ""
|
8514
8544
|
|
8515
|
-
#: ../lib/puppet/type.rb:
|
8545
|
+
#: ../lib/puppet/type.rb:1548
|
8516
8546
|
msgid "Could not find %{description} %{ref} for %{resource}"
|
8517
8547
|
msgstr ""
|
8518
8548
|
|
8519
|
-
#: ../lib/puppet/type.rb:
|
8549
|
+
#: ../lib/puppet/type.rb:1825
|
8520
8550
|
msgid "Found multiple default providers for %{name}: %{provider_list}; using %{selected_provider}"
|
8521
8551
|
msgstr ""
|
8522
8552
|
|
8523
|
-
#: ../lib/puppet/type.rb:
|
8553
|
+
#: ../lib/puppet/type.rb:1912
|
8524
8554
|
msgid "Could not find parent provider %{parent} of %{name}"
|
8525
8555
|
msgstr ""
|
8526
8556
|
|
8527
|
-
#: ../lib/puppet/type.rb:
|
8557
|
+
#: ../lib/puppet/type.rb:1986
|
8528
8558
|
msgid "Invalid %{resource} provider '%{provider_class}'"
|
8529
8559
|
msgstr ""
|
8530
8560
|
|
8531
|
-
#: ../lib/puppet/type.rb:
|
8561
|
+
#: ../lib/puppet/type.rb:2071
|
8532
8562
|
msgid "Could not find %{name} provider of %{provider}"
|
8533
8563
|
msgstr ""
|
8534
8564
|
|
8535
|
-
#: ../lib/puppet/type.rb:
|
8565
|
+
#: ../lib/puppet/type.rb:2189
|
8536
8566
|
msgid "You cannot add relationships without a catalog"
|
8537
8567
|
msgstr ""
|
8538
8568
|
|
8539
|
-
#: ../lib/puppet/type.rb:
|
8569
|
+
#: ../lib/puppet/type.rb:2492
|
8540
8570
|
msgid "Unable to mark '%{name}' as sensitive: %{name} is a parameter and not a property, and cannot be automatically redacted."
|
8541
8571
|
msgstr ""
|
8542
8572
|
|
8543
|
-
#: ../lib/puppet/type.rb:
|
8573
|
+
#: ../lib/puppet/type.rb:2495
|
8544
8574
|
msgid "Unable to mark '%{name}' as sensitive: the property itself was not assigned a value."
|
8545
8575
|
msgstr ""
|
8546
8576
|
|
8547
|
-
#: ../lib/puppet/type.rb:
|
8577
|
+
#: ../lib/puppet/type.rb:2497
|
8548
8578
|
msgid "Unable to mark '%{name}' as sensitive: the property itself is not defined on %{type}."
|
8549
8579
|
msgstr ""
|
8550
8580
|
|
8551
|
-
#: ../lib/puppet/type.rb:
|
8581
|
+
#: ../lib/puppet/type.rb:2555
|
8552
8582
|
msgid "Could not set %{attribute} on %{class_name}: %{detail}"
|
8553
8583
|
msgstr ""
|
8554
8584
|
|
@@ -8746,7 +8776,7 @@ msgid "Not managing symlink mode"
|
|
8746
8776
|
msgstr ""
|
8747
8777
|
|
8748
8778
|
#. TRANSLATORS "source_permissions" is a parameter name and should not be translated
|
8749
|
-
#: ../lib/puppet/type/file/source.rb:
|
8779
|
+
#: ../lib/puppet/type/file/source.rb:373
|
8750
8780
|
msgid "The `source_permissions` parameter is deprecated. Explicitly set `owner`, `group`, and `mode`."
|
8751
8781
|
msgstr ""
|
8752
8782
|
|
@@ -8858,15 +8888,15 @@ msgstr ""
|
|
8858
8888
|
msgid "Setting enable to %{value} is only supported on Microsoft Windows."
|
8859
8889
|
msgstr ""
|
8860
8890
|
|
8861
|
-
#: ../lib/puppet/type/service.rb:
|
8891
|
+
#: ../lib/puppet/type/service.rb:166
|
8862
8892
|
msgid "The 'logonaccount' parameter is mandatory when setting 'logonpassword'."
|
8863
8893
|
msgstr ""
|
8864
8894
|
|
8865
|
-
#: ../lib/puppet/type/service.rb:
|
8895
|
+
#: ../lib/puppet/type/service.rb:167 ../lib/puppet/type/user.rb:271
|
8866
8896
|
msgid "Passwords cannot include ':'"
|
8867
8897
|
msgstr ""
|
8868
8898
|
|
8869
|
-
#: ../lib/puppet/type/service.rb:
|
8899
|
+
#: ../lib/puppet/type/service.rb:304
|
8870
8900
|
msgid "\"%{value}\" is not a positive integer: the timeout parameter must be specified as a positive integer"
|
8871
8901
|
msgstr ""
|
8872
8902
|
|
@@ -8901,148 +8931,148 @@ msgstr ""
|
|
8901
8931
|
msgid "File does not exist"
|
8902
8932
|
msgstr ""
|
8903
8933
|
|
8904
|
-
#: ../lib/puppet/type/user.rb:
|
8934
|
+
#: ../lib/puppet/type/user.rb:182
|
8905
8935
|
msgid "Could not find group(s) %{groups}"
|
8906
8936
|
msgstr ""
|
8907
8937
|
|
8908
|
-
#: ../lib/puppet/type/user.rb:
|
8938
|
+
#: ../lib/puppet/type/user.rb:291
|
8909
8939
|
msgid "Password minimum age must be provided as a number."
|
8910
8940
|
msgstr ""
|
8911
8941
|
|
8912
|
-
#: ../lib/puppet/type/user.rb:
|
8942
|
+
#: ../lib/puppet/type/user.rb:310
|
8913
8943
|
msgid "Password maximum age must be provided as a number."
|
8914
8944
|
msgstr ""
|
8915
8945
|
|
8916
|
-
#: ../lib/puppet/type/user.rb:
|
8946
|
+
#: ../lib/puppet/type/user.rb:341
|
8917
8947
|
msgid "Group names must be provided, not GID numbers."
|
8918
8948
|
msgstr ""
|
8919
8949
|
|
8920
|
-
#: ../lib/puppet/type/user.rb:
|
8950
|
+
#: ../lib/puppet/type/user.rb:343
|
8921
8951
|
msgid "Group names must be provided as an array, not a comma-separated list."
|
8922
8952
|
msgstr ""
|
8923
8953
|
|
8924
|
-
#: ../lib/puppet/type/user.rb:
|
8954
|
+
#: ../lib/puppet/type/user.rb:344
|
8925
8955
|
msgid "Group names must not be empty. If you want to specify \"no groups\" pass an empty array"
|
8926
8956
|
msgstr ""
|
8927
8957
|
|
8928
|
-
#: ../lib/puppet/type/user.rb:
|
8958
|
+
#: ../lib/puppet/type/user.rb:437
|
8929
8959
|
msgid "User provider %{name} can not manage home directories"
|
8930
8960
|
msgstr ""
|
8931
8961
|
|
8932
8962
|
#. TRANSLATORS YYYY-MM-DD represents a date with a four-digit year, a two-digit month, and a two-digit day,
|
8933
8963
|
#. TRANSLATORS separated by dashes.
|
8934
|
-
#: ../lib/puppet/type/user.rb:
|
8964
|
+
#: ../lib/puppet/type/user.rb:454
|
8935
8965
|
msgid "Expiry dates must be YYYY-MM-DD or the string \"absent\""
|
8936
8966
|
msgstr ""
|
8937
8967
|
|
8938
|
-
#: ../lib/puppet/type/user.rb:
|
8968
|
+
#: ../lib/puppet/type/user.rb:521
|
8939
8969
|
msgid "Role names must be provided, not numbers"
|
8940
8970
|
msgstr ""
|
8941
8971
|
|
8942
|
-
#: ../lib/puppet/type/user.rb:
|
8972
|
+
#: ../lib/puppet/type/user.rb:523
|
8943
8973
|
msgid "Role names must be provided as an array, not a comma-separated list"
|
8944
8974
|
msgstr ""
|
8945
8975
|
|
8946
|
-
#: ../lib/puppet/type/user.rb:
|
8976
|
+
#: ../lib/puppet/type/user.rb:560
|
8947
8977
|
msgid "Auth names must be provided, not numbers"
|
8948
8978
|
msgstr ""
|
8949
8979
|
|
8950
|
-
#: ../lib/puppet/type/user.rb:
|
8980
|
+
#: ../lib/puppet/type/user.rb:562
|
8951
8981
|
msgid "Auth names must be provided as an array, not a comma-separated list"
|
8952
8982
|
msgstr ""
|
8953
8983
|
|
8954
|
-
#: ../lib/puppet/type/user.rb:
|
8984
|
+
#: ../lib/puppet/type/user.rb:586
|
8955
8985
|
msgid "Profile names must be provided, not numbers"
|
8956
8986
|
msgstr ""
|
8957
8987
|
|
8958
|
-
#: ../lib/puppet/type/user.rb:
|
8988
|
+
#: ../lib/puppet/type/user.rb:588
|
8959
8989
|
msgid "Profile names must be provided as an array, not a comma-separated list"
|
8960
8990
|
msgstr ""
|
8961
8991
|
|
8962
|
-
#: ../lib/puppet/type/user.rb:
|
8992
|
+
#: ../lib/puppet/type/user.rb:699
|
8963
8993
|
msgid "Ssh_authorized_key type is not available. Cannot purge SSH keys."
|
8964
8994
|
msgstr ""
|
8965
8995
|
|
8966
|
-
#: ../lib/puppet/type/user.rb:
|
8996
|
+
#: ../lib/puppet/type/user.rb:737
|
8967
8997
|
msgid "Each entry for purge_ssh_keys must be a string, not a %{klass}"
|
8968
8998
|
msgstr ""
|
8969
8999
|
|
8970
|
-
#: ../lib/puppet/type/user.rb:
|
9000
|
+
#: ../lib/puppet/type/user.rb:740
|
8971
9001
|
msgid "Paths to keyfiles must be absolute, not %{entry}"
|
8972
9002
|
msgstr ""
|
8973
9003
|
|
8974
|
-
#: ../lib/puppet/type/user.rb:
|
9004
|
+
#: ../lib/puppet/type/user.rb:744
|
8975
9005
|
msgid "purge_ssh_keys must be true, false, or an array of file names, not %{value}"
|
8976
9006
|
msgstr ""
|
8977
9007
|
|
8978
|
-
#: ../lib/puppet/type/user.rb:
|
9008
|
+
#: ../lib/puppet/type/user.rb:772
|
8979
9009
|
msgid "Class name must be provided."
|
8980
9010
|
msgstr ""
|
8981
9011
|
|
8982
|
-
#: ../lib/puppet/util.rb:
|
9012
|
+
#: ../lib/puppet/util.rb:64
|
8983
9013
|
msgid "Unable to retrieve the environment for mode %{mode}"
|
8984
9014
|
msgstr ""
|
8985
9015
|
|
8986
|
-
#: ../lib/puppet/util.rb:
|
9016
|
+
#: ../lib/puppet/util.rb:81
|
8987
9017
|
msgid "Unable to clear the environment for mode %{mode}"
|
8988
9018
|
msgstr ""
|
8989
9019
|
|
8990
|
-
#: ../lib/puppet/util.rb:
|
9020
|
+
#: ../lib/puppet/util.rb:97
|
8991
9021
|
msgid "Unable to set the environment variable %{name} for mode %{mode}"
|
8992
9022
|
msgstr ""
|
8993
9023
|
|
8994
|
-
#: ../lib/puppet/util.rb:
|
9024
|
+
#: ../lib/puppet/util.rb:114
|
8995
9025
|
msgid "Unable to merge given values into the current environment for mode %{mode}"
|
8996
9026
|
msgstr ""
|
8997
9027
|
|
8998
|
-
#: ../lib/puppet/util.rb:
|
9028
|
+
#: ../lib/puppet/util.rb:156
|
8999
9029
|
msgid "could not change to group %{group}: %{detail}"
|
9000
9030
|
msgstr ""
|
9001
9031
|
|
9002
|
-
#: ../lib/puppet/util.rb:
|
9032
|
+
#: ../lib/puppet/util.rb:157
|
9003
9033
|
msgid "could not change to group %{group}"
|
9004
9034
|
msgstr ""
|
9005
9035
|
|
9006
|
-
#: ../lib/puppet/util.rb:
|
9036
|
+
#: ../lib/puppet/util.rb:170
|
9007
9037
|
msgid "Could not change to user %{user}: %{detail}"
|
9008
9038
|
msgstr ""
|
9009
9039
|
|
9010
9040
|
#. TRANSLATORS 'benchmark' is a method name and should not be translated
|
9011
|
-
#: ../lib/puppet/util.rb:
|
9041
|
+
#: ../lib/puppet/util.rb:224
|
9012
9042
|
msgid "Failed to provide level to benchmark"
|
9013
9043
|
msgstr ""
|
9014
9044
|
|
9015
|
-
#: ../lib/puppet/util.rb:
|
9045
|
+
#: ../lib/puppet/util.rb:227
|
9016
9046
|
msgid "Benchmarked object does not respond to %{value}"
|
9017
9047
|
msgstr ""
|
9018
9048
|
|
9019
9049
|
#. TRANSLATORS PATH and HOME are environment variables and should not be translated
|
9020
|
-
#: ../lib/puppet/util.rb:
|
9050
|
+
#: ../lib/puppet/util.rb:267
|
9021
9051
|
msgid "PATH contains a ~ character, and HOME is not set; ignoring PATH element '%{dir}'."
|
9022
9052
|
msgstr ""
|
9023
9053
|
|
9024
9054
|
#. TRANSLATORS PATH is an environment variable and should not be translated
|
9025
|
-
#: ../lib/puppet/util.rb:
|
9055
|
+
#: ../lib/puppet/util.rb:271
|
9026
9056
|
msgid "Couldn't expand PATH containing a ~ character; ignoring PATH element '%{dir}'."
|
9027
9057
|
msgstr ""
|
9028
9058
|
|
9029
|
-
#: ../lib/puppet/util.rb:
|
9059
|
+
#: ../lib/puppet/util.rb:318
|
9030
9060
|
msgid "unknown platform %{platform} in absolute_path"
|
9031
9061
|
msgstr ""
|
9032
9062
|
|
9033
|
-
#: ../lib/puppet/util.rb:
|
9063
|
+
#: ../lib/puppet/util.rb:353
|
9034
9064
|
msgid "Failed to convert '%{path}' to URI: %{detail}"
|
9035
9065
|
msgstr ""
|
9036
9066
|
|
9037
|
-
#: ../lib/puppet/util.rb:
|
9067
|
+
#: ../lib/puppet/util.rb:453
|
9038
9068
|
msgid "path may not be nil"
|
9039
9069
|
msgstr ""
|
9040
9070
|
|
9041
|
-
#: ../lib/puppet/util.rb:
|
9071
|
+
#: ../lib/puppet/util.rb:621
|
9042
9072
|
msgid "replace_file requires a block"
|
9043
9073
|
msgstr ""
|
9044
9074
|
|
9045
|
-
#: ../lib/puppet/util.rb:
|
9075
|
+
#: ../lib/puppet/util.rb:625
|
9046
9076
|
msgid "replace_file default_mode: %{default_mode} is invalid"
|
9047
9077
|
msgstr ""
|
9048
9078
|
|
@@ -9074,11 +9104,11 @@ msgstr ""
|
|
9074
9104
|
msgid "Failed to abandon a child process contract"
|
9075
9105
|
msgstr ""
|
9076
9106
|
|
9077
|
-
#: ../lib/puppet/util/autoload.rb:
|
9107
|
+
#: ../lib/puppet/util/autoload.rb:83
|
9078
9108
|
msgid "Could not autoload %{name}: %{detail}"
|
9079
9109
|
msgstr ""
|
9080
9110
|
|
9081
|
-
#: ../lib/puppet/util/autoload.rb:
|
9111
|
+
#: ../lib/puppet/util/autoload.rb:177
|
9082
9112
|
msgid "Autoload paths cannot be fully qualified"
|
9083
9113
|
msgstr ""
|
9084
9114
|
|
@@ -9106,15 +9136,15 @@ msgstr ""
|
|
9106
9136
|
msgid "Filebucketed %{f} to %{filebucket} with sum %{sum}"
|
9107
9137
|
msgstr ""
|
9108
9138
|
|
9109
|
-
#: ../lib/puppet/util/character_encoding.rb:
|
9139
|
+
#: ../lib/puppet/util/character_encoding.rb:23
|
9110
9140
|
msgid "%{value} is already labeled as UTF-8 but this encoding is invalid. It cannot be transcoded by Puppet."
|
9111
9141
|
msgstr ""
|
9112
9142
|
|
9113
|
-
#: ../lib/puppet/util/character_encoding.rb:
|
9143
|
+
#: ../lib/puppet/util/character_encoding.rb:45
|
9114
9144
|
msgid "%{error}: %{value} cannot be transcoded by Puppet."
|
9115
9145
|
msgstr ""
|
9116
9146
|
|
9117
|
-
#: ../lib/puppet/util/character_encoding.rb:
|
9147
|
+
#: ../lib/puppet/util/character_encoding.rb:73
|
9118
9148
|
msgid "%{value} is not valid UTF-8 and result of overriding encoding would be invalid."
|
9119
9149
|
msgstr ""
|
9120
9150
|
|
@@ -9313,9 +9343,9 @@ msgstr ""
|
|
9313
9343
|
msgid "Dynamically-bound port lookup failed; using first entry from the `server_list` setting: %{port}"
|
9314
9344
|
msgstr ""
|
9315
9345
|
|
9316
|
-
#. TRANSLATORS '
|
9346
|
+
#. TRANSLATORS 'serverport' is the name of a setting and should not be translated
|
9317
9347
|
#: ../lib/puppet/util/connection.rb:75
|
9318
|
-
msgid "Dynamically-bound port lookup failed; falling back to `
|
9348
|
+
msgid "Dynamically-bound port lookup failed; falling back to `serverport` setting: %{port}"
|
9319
9349
|
msgstr ""
|
9320
9350
|
|
9321
9351
|
#: ../lib/puppet/util/connection.rb:80
|
@@ -9662,19 +9692,19 @@ msgstr ""
|
|
9662
9692
|
msgid "Unable to write the file %{file_path}. %{error}"
|
9663
9693
|
msgstr ""
|
9664
9694
|
|
9665
|
-
#: ../lib/puppet/util/posix.rb:
|
9695
|
+
#: ../lib/puppet/util/posix.rb:29
|
9666
9696
|
msgid "Removing any duplicate group entries"
|
9667
9697
|
msgstr ""
|
9668
9698
|
|
9669
|
-
#: ../lib/puppet/util/posix.rb:
|
9699
|
+
#: ../lib/puppet/util/posix.rb:75
|
9670
9700
|
msgid "Did not get id from caller"
|
9671
9701
|
msgstr ""
|
9672
9702
|
|
9673
|
-
#: ../lib/puppet/util/posix.rb:
|
9703
|
+
#: ../lib/puppet/util/posix.rb:79 ../lib/puppet/util/posix.rb:104
|
9674
9704
|
msgid "Tried to get %{field} field for silly id %{id}"
|
9675
9705
|
msgstr ""
|
9676
9706
|
|
9677
|
-
#: ../lib/puppet/util/posix.rb:
|
9707
|
+
#: ../lib/puppet/util/posix.rb:132 ../lib/puppet/util/posix.rb:142 ../lib/puppet/util/posix.rb:152
|
9678
9708
|
msgid "Can only handle users and groups"
|
9679
9709
|
msgstr ""
|
9680
9710
|
|
@@ -9898,7 +9928,7 @@ msgstr ""
|
|
9898
9928
|
msgid "Unable to read wide strings with %{null_terminator} terminal nulls"
|
9899
9929
|
msgstr ""
|
9900
9930
|
|
9901
|
-
#: ../lib/puppet/util/windows/api_types.rb:
|
9931
|
+
#: ../lib/puppet/util/windows/api_types.rb:230
|
9902
9932
|
msgid "Bad GUID format."
|
9903
9933
|
msgstr ""
|
9904
9934
|
|