puppet 6.12.0-x86-mingw32 → 6.17.0-x86-mingw32
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of puppet might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/CODEOWNERS +2 -7
- data/CONTRIBUTING.md +7 -13
- data/Gemfile +4 -2
- data/Gemfile.lock +39 -36
- data/README.md +18 -25
- data/ext/project_data.yaml +1 -1
- data/ext/windows/service/daemon.rb +3 -3
- data/lib/puppet.rb +52 -13
- data/lib/puppet/agent.rb +20 -14
- data/lib/puppet/application/agent.rb +26 -17
- data/lib/puppet/application/describe.rb +7 -5
- data/lib/puppet/application/device.rb +2 -2
- data/lib/puppet/application/filebucket.rb +19 -15
- data/lib/puppet/application/plugin.rb +1 -0
- data/lib/puppet/application/resource.rb +1 -1
- data/lib/puppet/application/ssl.rb +4 -4
- data/lib/puppet/configurer.rb +65 -69
- data/lib/puppet/configurer/plugin_handler.rb +10 -1
- data/lib/puppet/confine.rb +1 -1
- data/lib/puppet/context/trusted_information.rb +14 -8
- data/lib/puppet/daemon.rb +13 -27
- data/lib/puppet/defaults.rb +154 -58
- data/lib/puppet/environments.rb +27 -20
- data/lib/puppet/face/facts.rb +8 -5
- data/lib/puppet/face/help.rb +29 -3
- data/lib/puppet/face/module/search.rb +5 -0
- data/lib/puppet/face/plugin.rb +2 -2
- data/lib/puppet/file_serving/http_metadata.rb +14 -2
- data/lib/puppet/file_serving/metadata.rb +4 -1
- data/lib/puppet/file_serving/terminus_selector.rb +7 -8
- data/lib/puppet/file_system/file_impl.rb +14 -10
- data/lib/puppet/file_system/memory_file.rb +6 -0
- data/lib/puppet/file_system/memory_impl.rb +13 -0
- data/lib/puppet/file_system/uniquefile.rb +12 -16
- data/lib/puppet/file_system/windows.rb +7 -10
- data/lib/puppet/forge.rb +1 -1
- data/lib/puppet/forge/cache.rb +1 -1
- data/lib/puppet/forge/repository.rb +4 -7
- data/lib/puppet/functions/call.rb +1 -1
- data/lib/puppet/functions/eyaml_lookup_key.rb +13 -8
- data/lib/puppet/functions/filter.rb +1 -0
- data/lib/puppet/functions/reduce.rb +2 -4
- data/lib/puppet/http.rb +5 -0
- data/lib/puppet/http/client.rb +293 -73
- data/lib/puppet/http/errors.rb +2 -0
- data/lib/puppet/http/external_client.rb +90 -0
- data/lib/puppet/http/redirector.rb +43 -7
- data/lib/puppet/http/resolver.rb +46 -3
- data/lib/puppet/http/resolver/server_list.rb +76 -16
- data/lib/puppet/http/resolver/settings.rb +23 -3
- data/lib/puppet/http/resolver/srv.rb +29 -3
- data/lib/puppet/http/response.rb +87 -1
- data/lib/puppet/http/retry_after_handler.rb +39 -0
- data/lib/puppet/http/service.rb +151 -7
- data/lib/puppet/http/service/ca.rb +76 -14
- data/lib/puppet/http/service/compiler.rb +319 -0
- data/lib/puppet/http/service/file_server.rb +206 -0
- data/lib/puppet/http/service/report.rb +49 -23
- data/lib/puppet/http/session.rb +103 -7
- data/lib/puppet/indirector.rb +1 -1
- data/lib/puppet/indirector/catalog/compiler.rb +10 -0
- data/lib/puppet/indirector/catalog/rest.rb +34 -0
- data/lib/puppet/indirector/facts/rest.rb +42 -0
- data/lib/puppet/indirector/file_bucket_file/file.rb +1 -1
- data/lib/puppet/indirector/file_bucket_file/rest.rb +48 -0
- data/lib/puppet/indirector/file_content/http.rb +5 -0
- data/lib/puppet/indirector/file_content/rest.rb +30 -0
- data/lib/puppet/indirector/file_metadata/http.rb +27 -8
- data/lib/puppet/indirector/file_metadata/rest.rb +52 -0
- data/lib/puppet/indirector/json.rb +1 -1
- data/lib/puppet/indirector/msgpack.rb +1 -1
- data/lib/puppet/indirector/node/rest.rb +24 -0
- data/lib/puppet/indirector/report/rest.rb +19 -0
- data/lib/puppet/indirector/report/yaml.rb +23 -0
- data/lib/puppet/indirector/request.rb +1 -1
- data/lib/puppet/indirector/rest.rb +12 -0
- data/lib/puppet/indirector/status/rest.rb +18 -0
- data/lib/puppet/loaders.rb +6 -0
- data/lib/puppet/metatype/manager.rb +80 -80
- data/lib/puppet/network/http/api/indirected_routes.rb +1 -1
- data/lib/puppet/network/http/api/master/v3/environment.rb +3 -0
- data/lib/puppet/network/http/base_pool.rb +7 -2
- data/lib/puppet/network/http/compression.rb +7 -0
- data/lib/puppet/network/http/connection.rb +6 -0
- data/lib/puppet/network/http/connection_adapter.rb +184 -0
- data/lib/puppet/network/http/nocache_pool.rb +2 -0
- data/lib/puppet/network/http/pool.rb +13 -6
- data/lib/puppet/network/http_pool.rb +2 -1
- data/lib/puppet/node/environment.rb +11 -1
- data/lib/puppet/pal/catalog_compiler.rb +5 -0
- data/lib/puppet/pal/pal_impl.rb +4 -29
- data/lib/puppet/parser/ast/leaf.rb +5 -5
- data/lib/puppet/parser/ast/pops_bridge.rb +6 -15
- data/lib/puppet/parser/compiler.rb +43 -33
- data/lib/puppet/parser/compiler/catalog_validator/env_relationship_validator.rb +2 -0
- data/lib/puppet/parser/compiler/catalog_validator/site_validator.rb +2 -0
- data/lib/puppet/parser/environment_compiler.rb +4 -1
- data/lib/puppet/parser/functions.rb +18 -13
- data/lib/puppet/parser/functions/filter.rb +1 -0
- data/lib/puppet/parser/resource.rb +3 -2
- data/lib/puppet/parser/resource/param.rb +6 -0
- data/lib/puppet/pops/evaluator/access_operator.rb +2 -2
- data/lib/puppet/pops/evaluator/evaluator_impl.rb +6 -6
- data/lib/puppet/pops/issues.rb +5 -0
- data/lib/puppet/pops/loader/puppet_plan_instantiator.rb +12 -3
- data/lib/puppet/pops/loaders.rb +7 -5
- data/lib/puppet/pops/parser/evaluating_parser.rb +5 -7
- data/lib/puppet/pops/resource/resource_type_impl.rb +2 -0
- data/lib/puppet/pops/types/p_object_type_extension.rb +10 -0
- data/lib/puppet/pops/types/type_calculator.rb +24 -0
- data/lib/puppet/pops/validation/checker4_0.rb +11 -1
- data/lib/puppet/pops/validation/tasks_checker.rb +5 -1
- data/lib/puppet/pops/validation/validator_factory_4_0.rb +1 -0
- data/lib/puppet/provider/aix_object.rb +4 -2
- data/lib/puppet/provider/group/aix.rb +1 -0
- data/lib/puppet/provider/group/groupadd.rb +57 -24
- data/lib/puppet/provider/group/windows_adsi.rb +3 -3
- data/lib/puppet/provider/package/aix.rb +17 -2
- data/lib/puppet/provider/package/apt.rb +78 -4
- data/lib/puppet/provider/package/aptitude.rb +1 -1
- data/lib/puppet/provider/package/dnfmodule.rb +69 -15
- data/lib/puppet/provider/package/dpkg.rb +14 -7
- data/lib/puppet/provider/package/fink.rb +20 -3
- data/lib/puppet/provider/package/gem.rb +41 -7
- data/lib/puppet/provider/package/openbsd.rb +13 -1
- data/lib/puppet/provider/package/pacman.rb +2 -5
- data/lib/puppet/provider/package/pip.rb +143 -48
- data/lib/puppet/provider/package/pip3.rb +0 -2
- data/lib/puppet/provider/package/pkg.rb +18 -5
- data/lib/puppet/provider/package/pkgdmg.rb +1 -1
- data/lib/puppet/provider/package/pkgng.rb +16 -4
- data/lib/puppet/provider/package/portage.rb +2 -2
- data/lib/puppet/provider/package/puppet_gem.rb +6 -2
- data/lib/puppet/provider/package/rpm.rb +6 -213
- data/lib/puppet/provider/package/yum.rb +109 -25
- data/lib/puppet/provider/package/zypper.rb +59 -1
- data/lib/puppet/provider/service/systemd.rb +22 -4
- data/lib/puppet/provider/service/windows.rb +23 -7
- data/lib/puppet/provider/user/aix.rb +1 -0
- data/lib/puppet/provider/user/directoryservice.rb +30 -5
- data/lib/puppet/provider/user/useradd.rb +22 -12
- data/lib/puppet/reports/http.rb +15 -9
- data/lib/puppet/reports/store.rb +1 -1
- data/lib/puppet/resource.rb +2 -1
- data/lib/puppet/resource/type.rb +8 -0
- data/lib/puppet/resource/type_collection.rb +20 -16
- data/lib/puppet/runtime.rb +31 -1
- data/lib/puppet/settings.rb +4 -0
- data/lib/puppet/settings/http_extra_headers_setting.rb +25 -0
- data/lib/puppet/ssl.rb +1 -0
- data/lib/puppet/ssl/certificate.rb +2 -1
- data/lib/puppet/ssl/host.rb +4 -4
- data/lib/puppet/ssl/oids.rb +1 -0
- data/lib/puppet/ssl/ssl_context.rb +2 -2
- data/lib/puppet/ssl/ssl_provider.rb +20 -1
- data/lib/puppet/ssl/state_machine.rb +81 -35
- data/lib/puppet/ssl/verifier_adapter.rb +9 -1
- data/lib/puppet/test/test_helper.rb +15 -11
- data/lib/puppet/transaction/report.rb +2 -2
- data/lib/puppet/transaction/resource_harness.rb +1 -1
- data/lib/puppet/trusted_external.rb +29 -1
- data/lib/puppet/type.rb +18 -6
- data/lib/puppet/type/file.rb +51 -13
- data/lib/puppet/type/file/checksum.rb +4 -4
- data/lib/puppet/type/file/source.rb +51 -60
- data/lib/puppet/type/group.rb +2 -2
- data/lib/puppet/type/package.rb +102 -10
- data/lib/puppet/type/service.rb +55 -8
- data/lib/puppet/type/user.rb +3 -28
- data/lib/puppet/util.rb +39 -15
- data/lib/puppet/util/at_fork.rb +1 -1
- data/lib/puppet/util/autoload.rb +4 -18
- data/lib/puppet/util/checksums.rb +19 -4
- data/lib/puppet/util/fileparsing.rb +2 -2
- data/lib/puppet/util/instance_loader.rb +14 -10
- data/lib/puppet/util/log/destinations.rb +2 -11
- data/lib/puppet/util/package/version/debian.rb +175 -0
- data/lib/puppet/util/package/version/gem.rb +15 -0
- data/lib/puppet/util/package/version/pip.rb +167 -0
- data/lib/puppet/util/package/version/range.rb +53 -0
- data/lib/puppet/util/package/version/range/eq.rb +14 -0
- data/lib/puppet/util/package/version/range/gt.rb +14 -0
- data/lib/puppet/util/package/version/range/gt_eq.rb +14 -0
- data/lib/puppet/util/package/version/range/lt.rb +14 -0
- data/lib/puppet/util/package/version/range/lt_eq.rb +14 -0
- data/lib/puppet/util/package/version/range/min_max.rb +21 -0
- data/lib/puppet/util/package/version/range/simple.rb +11 -0
- data/lib/puppet/util/package/version/rpm.rb +73 -0
- data/lib/puppet/util/pidlock.rb +36 -10
- data/lib/puppet/util/platform.rb +5 -0
- data/lib/puppet/util/plist.rb +6 -0
- data/lib/puppet/util/provider_features.rb +1 -1
- data/lib/puppet/util/reference.rb +1 -1
- data/lib/puppet/util/rpm_compare.rb +193 -0
- data/lib/puppet/util/storage.rb +0 -1
- data/lib/puppet/util/windows/adsi.rb +2 -2
- data/lib/puppet/util/windows/api_types.rb +45 -32
- data/lib/puppet/util/windows/eventlog.rb +1 -6
- data/lib/puppet/util/windows/principal.rb +8 -6
- data/lib/puppet/util/windows/process.rb +15 -14
- data/lib/puppet/util/windows/registry.rb +11 -11
- data/lib/puppet/util/windows/security.rb +1 -0
- data/lib/puppet/util/windows/service.rb +43 -26
- data/lib/puppet/util/windows/sid.rb +3 -3
- data/lib/puppet/util/windows/user.rb +23 -8
- data/lib/puppet/util/yaml.rb +1 -1
- data/lib/puppet/version.rb +1 -1
- data/locales/puppet.pot +707 -574
- data/man/man5/puppet.conf.5 +74 -14
- data/man/man8/puppet-agent.8 +7 -7
- data/man/man8/puppet-apply.8 +1 -1
- data/man/man8/puppet-catalog.8 +1 -1
- data/man/man8/puppet-config.8 +1 -1
- data/man/man8/puppet-describe.8 +1 -1
- data/man/man8/puppet-device.8 +2 -2
- data/man/man8/puppet-doc.8 +1 -1
- data/man/man8/puppet-epp.8 +1 -1
- data/man/man8/puppet-facts.8 +1 -1
- data/man/man8/puppet-filebucket.8 +17 -2
- data/man/man8/puppet-generate.8 +1 -1
- data/man/man8/puppet-help.8 +6 -3
- data/man/man8/puppet-key.8 +1 -1
- data/man/man8/puppet-lookup.8 +1 -1
- data/man/man8/puppet-man.8 +1 -1
- data/man/man8/puppet-module.8 +4 -1
- data/man/man8/puppet-node.8 +1 -1
- data/man/man8/puppet-parser.8 +1 -1
- data/man/man8/puppet-plugin.8 +1 -1
- data/man/man8/puppet-report.8 +1 -1
- data/man/man8/puppet-resource.8 +1 -1
- data/man/man8/puppet-script.8 +1 -1
- data/man/man8/puppet-ssl.8 +2 -2
- data/man/man8/puppet-status.8 +1 -1
- data/man/man8/puppet.8 +2 -2
- data/spec/fixtures/ssl/unknown-127.0.0.1-key.pem +67 -0
- data/spec/fixtures/ssl/unknown-127.0.0.1.pem +48 -0
- data/spec/fixtures/ssl/unknown-ca-key.pem +67 -0
- data/spec/fixtures/ssl/unknown-ca.pem +59 -0
- data/spec/fixtures/unit/provider/package/dnfmodule/{dnf-module-list-installed.txt → dnf-module-list.txt} +8 -0
- data/spec/fixtures/unit/provider/package/pkgng/pkg.version +2 -0
- data/spec/fixtures/unit/provider/package/yum/yum-check-update-subscription-manager.txt +9 -0
- data/spec/fixtures/unit/provider/package/zypper/zypper-search-uninstalled.out +13 -0
- data/spec/fixtures/unit/provider/service/systemd/list_unit_files_services +9 -0
- data/spec/fixtures/vcr/cassettes/Puppet_Type_File/when_sourcing/from_http/using_md5/should_fetch_if_not_on_the_local_disk.yml +1 -102
- data/spec/fixtures/vcr/cassettes/Puppet_Type_File/when_sourcing/from_http/using_md5/should_not_update_if_content_on_disk_is_up-to-date.yml +1 -106
- data/spec/fixtures/vcr/cassettes/Puppet_Type_File/when_sourcing/from_http/using_md5/should_update_if_content_differs_on_disk.yml +1 -106
- data/spec/fixtures/vcr/cassettes/Puppet_Type_File/when_sourcing/from_http/using_mtime/should_fetch_if_mtime_is_older_on_disk.yml +1 -102
- data/spec/fixtures/vcr/cassettes/Puppet_Type_File/when_sourcing/from_http/using_mtime/should_fetch_if_no_header_specified.yml +1 -98
- data/spec/fixtures/vcr/cassettes/Puppet_Type_File/when_sourcing/from_http/using_mtime/should_fetch_if_not_on_the_local_disk.yml +1 -102
- data/spec/fixtures/vcr/cassettes/Puppet_Type_File/when_sourcing/from_http/using_mtime/should_not_update_if_mtime_is_newer_on_disk.yml +1 -102
- data/spec/integration/application/agent_spec.rb +483 -0
- data/spec/integration/application/apply_spec.rb +132 -3
- data/spec/integration/application/filebucket_spec.rb +190 -0
- data/spec/integration/application/plugin_spec.rb +73 -0
- data/spec/integration/configurer_spec.rb +26 -7
- data/spec/integration/defaults_spec.rb +1 -2
- data/spec/integration/http/client_spec.rb +47 -37
- data/spec/integration/indirector/facts/facter_spec.rb +4 -0
- data/spec/integration/indirector/report/yaml.rb +83 -0
- data/spec/integration/module_tool/forge_spec.rb +2 -15
- data/spec/integration/network/http_pool_spec.rb +93 -20
- data/spec/integration/node/environment_spec.rb +15 -0
- data/spec/integration/parser/compiler_spec.rb +11 -0
- data/spec/integration/type/file_spec.rb +1 -1
- data/spec/integration/util/windows/adsi_spec.rb +6 -1
- data/spec/integration/util/windows/registry_spec.rb +7 -7
- data/spec/integration/util/windows/user_spec.rb +40 -5
- data/spec/lib/puppet/test_ca.rb +2 -2
- data/spec/lib/puppet_spec/https.rb +16 -7
- data/spec/lib/puppet_spec/puppetserver.rb +119 -0
- data/spec/shared_contexts/https.rb +29 -0
- data/spec/unit/agent_spec.rb +80 -26
- data/spec/unit/application/agent_spec.rb +9 -5
- data/spec/unit/application/apply_spec.rb +2 -12
- data/spec/unit/application/describe_spec.rb +88 -50
- data/spec/unit/application/device_spec.rb +2 -2
- data/spec/unit/application/filebucket_spec.rb +22 -2
- data/spec/unit/application/resource_spec.rb +2 -2
- data/spec/unit/configurer/fact_handler_spec.rb +4 -8
- data/spec/unit/configurer/plugin_handler_spec.rb +36 -19
- data/spec/unit/configurer_spec.rb +17 -18
- data/spec/unit/context/trusted_information_spec.rb +25 -2
- data/spec/unit/daemon_spec.rb +5 -64
- data/spec/unit/defaults_spec.rb +25 -2
- data/spec/unit/environments_spec.rb +65 -28
- data/spec/unit/face/facts_spec.rb +24 -20
- data/spec/unit/face/module/search_spec.rb +17 -0
- data/spec/unit/face/plugin_spec.rb +12 -10
- data/spec/unit/file_serving/http_metadata_spec.rb +37 -14
- data/spec/unit/file_serving/terminus_selector_spec.rb +45 -26
- data/spec/unit/file_system/uniquefile_spec.rb +11 -0
- data/spec/unit/file_system_spec.rb +26 -2
- data/spec/unit/functions/lookup_spec.rb +13 -0
- data/spec/unit/http/client_spec.rb +327 -35
- data/spec/unit/http/external_client_spec.rb +201 -0
- data/spec/unit/http/resolver_spec.rb +34 -2
- data/spec/unit/http/response_spec.rb +75 -0
- data/spec/unit/http/service/ca_spec.rb +53 -11
- data/spec/unit/http/service/compiler_spec.rb +627 -0
- data/spec/unit/http/service/file_server_spec.rb +308 -0
- data/spec/unit/http/service/report_spec.rb +27 -9
- data/spec/unit/http/service_spec.rb +98 -5
- data/spec/unit/http/session_spec.rb +190 -7
- data/spec/unit/indirector/catalog/compiler_spec.rb +47 -29
- data/spec/unit/indirector/catalog/rest_spec.rb +59 -2
- data/spec/unit/indirector/facts/rest_spec.rb +79 -24
- data/spec/unit/indirector/file_bucket_file/rest_spec.rb +82 -2
- data/spec/unit/indirector/file_content/rest_spec.rb +53 -2
- data/spec/unit/indirector/file_metadata/http_spec.rb +194 -0
- data/spec/unit/indirector/file_metadata/rest_spec.rb +110 -2
- data/spec/unit/indirector/node/rest_spec.rb +57 -2
- data/spec/unit/indirector/report/rest_spec.rb +58 -51
- data/spec/unit/indirector/request_spec.rb +1 -1
- data/spec/unit/indirector/resource/ral_spec.rb +7 -8
- data/spec/unit/indirector/rest_spec.rb +13 -0
- data/spec/unit/indirector/status/rest_spec.rb +43 -2
- data/spec/unit/interface_spec.rb +3 -3
- data/spec/unit/network/http/api/indirected_routes_spec.rb +2 -1
- data/spec/unit/network/http/connection_spec.rb +559 -175
- data/spec/unit/network/http/nocache_pool_spec.rb +25 -3
- data/spec/unit/network/http/pool_spec.rb +89 -11
- data/spec/unit/network/http_pool_spec.rb +63 -57
- data/spec/unit/network/http_spec.rb +1 -1
- data/spec/unit/node/environment_spec.rb +16 -0
- data/spec/unit/node/facts_spec.rb +2 -1
- data/spec/unit/node_spec.rb +7 -4
- data/spec/unit/parser/ast/block_expression_spec.rb +1 -1
- data/spec/unit/parser/environment_compiler_spec.rb +7 -0
- data/spec/unit/parser/scope_spec.rb +1 -1
- data/spec/unit/pops/evaluator/evaluating_parser_spec.rb +15 -1
- data/spec/unit/pops/loaders/loaders_spec.rb +1 -1
- data/spec/unit/pops/serialization/to_from_hr_spec.rb +6 -1
- data/spec/unit/pops/types/type_calculator_spec.rb +1 -11
- data/spec/unit/pops/validator/validator_spec.rb +7 -2
- data/spec/unit/provider/aix_object_spec.rb +16 -2
- data/spec/unit/provider/group/groupadd_spec.rb +181 -56
- data/spec/unit/provider/group/windows_adsi_spec.rb +43 -10
- data/spec/unit/provider/package/aix_spec.rb +29 -0
- data/spec/unit/provider/package/apt_spec.rb +43 -2
- data/spec/unit/provider/package/aptitude_spec.rb +1 -0
- data/spec/unit/provider/package/dnfmodule_spec.rb +76 -15
- data/spec/unit/provider/package/dpkg_spec.rb +28 -6
- data/spec/unit/provider/package/gem_spec.rb +40 -0
- data/spec/unit/provider/package/openbsd_spec.rb +17 -0
- data/spec/unit/provider/package/pacman_spec.rb +6 -21
- data/spec/unit/provider/package/pip_spec.rb +68 -19
- data/spec/unit/provider/package/pkg_spec.rb +15 -1
- data/spec/unit/provider/package/pkgdmg_spec.rb +1 -1
- data/spec/unit/provider/package/pkgng_spec.rb +38 -0
- data/spec/unit/provider/package/portage_spec.rb +5 -0
- data/spec/unit/provider/package/puppet_gem_spec.rb +8 -0
- data/spec/unit/provider/package/rpm_spec.rb +0 -212
- data/spec/unit/provider/package/yum_spec.rb +292 -0
- data/spec/unit/provider/package/zypper_spec.rb +84 -0
- data/spec/unit/provider/service/init_spec.rb +1 -0
- data/spec/unit/provider/service/openbsd_spec.rb +9 -0
- data/spec/unit/provider/service/openwrt_spec.rb +1 -0
- data/spec/unit/provider/service/redhat_spec.rb +9 -0
- data/spec/unit/provider/service/systemd_spec.rb +92 -12
- data/spec/unit/provider/service/windows_spec.rb +22 -14
- data/spec/unit/provider/user/directoryservice_spec.rb +41 -0
- data/spec/unit/provider/user/openbsd_spec.rb +1 -0
- data/spec/unit/provider/user/useradd_spec.rb +43 -24
- data/spec/unit/provider/user/windows_adsi_spec.rb +3 -3
- data/spec/unit/puppet_pal_2pec.rb +0 -26
- data/spec/unit/puppet_pal_catalog_spec.rb +46 -0
- data/spec/unit/puppet_spec.rb +47 -0
- data/spec/unit/reports/http_spec.rb +70 -52
- data/spec/unit/resource_spec.rb +3 -3
- data/spec/unit/settings/autosign_setting_spec.rb +1 -1
- data/spec/unit/settings/http_extra_headers_spec.rb +64 -0
- data/spec/unit/ssl/certificate_spec.rb +7 -0
- data/spec/unit/ssl/host_spec.rb +4 -2
- data/spec/unit/ssl/oids_spec.rb +1 -0
- data/spec/unit/ssl/ssl_provider_spec.rb +69 -43
- data/spec/unit/ssl/state_machine_spec.rb +99 -13
- data/spec/unit/test/test_helper_spec.rb +17 -0
- data/spec/unit/transaction/persistence_spec.rb +1 -10
- data/spec/unit/transaction/report_spec.rb +5 -1
- data/spec/unit/transaction_spec.rb +0 -2
- data/spec/unit/type/file/ensure_spec.rb +1 -2
- data/spec/unit/type/file/source_spec.rb +89 -38
- data/spec/unit/type/file_spec.rb +122 -96
- data/spec/unit/type/package_spec.rb +8 -0
- data/spec/unit/type/service_spec.rb +185 -8
- data/spec/unit/type/user_spec.rb +1 -2
- data/spec/unit/type_spec.rb +50 -0
- data/spec/unit/util/at_fork_spec.rb +3 -2
- data/spec/unit/util/autoload_spec.rb +2 -1
- data/spec/unit/util/checksums_spec.rb +16 -0
- data/spec/unit/util/log/destinations_spec.rb +1 -29
- data/spec/unit/util/package/version/debian_spec.rb +83 -0
- data/spec/unit/util/package/version/pip_spec.rb +464 -0
- data/spec/unit/util/package/version/range_spec.rb +175 -0
- data/spec/unit/util/package/version/rpm_spec.rb +121 -0
- data/spec/unit/util/pidlock_spec.rb +112 -42
- data/spec/unit/util/plist_spec.rb +20 -0
- data/spec/unit/util/rpm_compare_spec.rb +196 -0
- data/spec/unit/util/storage_spec.rb +1 -8
- data/spec/unit/util/windows/adsi_spec.rb +4 -4
- data/spec/unit/util/windows/api_types_spec.rb +104 -40
- data/spec/unit/util/windows/service_spec.rb +4 -4
- data/spec/unit/util/windows/sid_spec.rb +2 -2
- data/spec/unit/util_spec.rb +3 -3
- data/spec/unit/x509/cert_provider_spec.rb +1 -1
- data/tasks/generate_cert_fixtures.rake +15 -1
- data/tasks/manpages.rake +5 -35
- metadata +73 -12
- data/COMMITTERS.md +0 -244
- data/spec/integration/faces/plugin_spec.rb +0 -61
- data/spec/integration/test/test_helper_spec.rb +0 -31
data/lib/puppet/util/yaml.rb
CHANGED
data/lib/puppet/version.rb
CHANGED
data/locales/puppet.pot
CHANGED
@@ -6,11 +6,11 @@
|
|
6
6
|
#, fuzzy
|
7
7
|
msgid ""
|
8
8
|
msgstr ""
|
9
|
-
"Project-Id-Version: Puppet automation framework 6.
|
9
|
+
"Project-Id-Version: Puppet automation framework 6.16.0-141-g9bc4af5078\n"
|
10
10
|
"\n"
|
11
11
|
"Report-Msgid-Bugs-To: https://tickets.puppetlabs.com\n"
|
12
|
-
"POT-Creation-Date: 2020-
|
13
|
-
"PO-Revision-Date: 2020-
|
12
|
+
"POT-Creation-Date: 2020-07-08 11:31+0000\n"
|
13
|
+
"PO-Revision-Date: 2020-07-08 11:31+0000\n"
|
14
14
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
15
15
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
16
16
|
"Language: \n"
|
@@ -48,21 +48,21 @@ msgstr ""
|
|
48
48
|
msgid "Config file %{hiera_config} not found, using Hiera defaults"
|
49
49
|
msgstr ""
|
50
50
|
|
51
|
-
#: ../lib/puppet.rb:
|
51
|
+
#: ../lib/puppet.rb:144
|
52
52
|
msgid "Support for ruby version %{version} is deprecated and will be removed in a future release. See https://puppet.com/docs/puppet/latest/system_requirements.html for a list of supported ruby versions."
|
53
53
|
msgstr ""
|
54
54
|
|
55
|
-
#: ../lib/puppet.rb:
|
55
|
+
#: ../lib/puppet.rb:230
|
56
56
|
msgid "The environmentpath setting cannot be empty or nil."
|
57
57
|
msgstr ""
|
58
58
|
|
59
59
|
#. TRANSLATORS: `message` is an already translated string of why SSL failed to initialize
|
60
|
-
#: ../lib/puppet.rb:
|
60
|
+
#: ../lib/puppet.rb:257
|
61
61
|
msgid "Failed to initialize SSL: %{message}"
|
62
62
|
msgstr ""
|
63
63
|
|
64
64
|
#. TRANSLATORS: `puppet agent -t` is a command and should not be translated
|
65
|
-
#: ../lib/puppet.rb:
|
65
|
+
#: ../lib/puppet.rb:259
|
66
66
|
msgid "Run `puppet agent -t`"
|
67
67
|
msgstr ""
|
68
68
|
|
@@ -72,27 +72,39 @@ msgid ""
|
|
72
72
|
"Use 'puppet agent --enable' to re-enable."
|
73
73
|
msgstr ""
|
74
74
|
|
75
|
-
#: ../lib/puppet/agent.rb:
|
75
|
+
#: ../lib/puppet/agent.rb:68
|
76
76
|
msgid "Run of %{client_class} already in progress; skipping (%{lockfile_path} exists)"
|
77
77
|
msgstr ""
|
78
78
|
|
79
|
-
#: ../lib/puppet/agent.rb:
|
79
|
+
#: ../lib/puppet/agent.rb:71
|
80
|
+
msgid "Exiting now because the maxwaitforlock timeout has been exceeded."
|
81
|
+
msgstr ""
|
82
|
+
|
83
|
+
#: ../lib/puppet/agent.rb:74
|
84
|
+
msgid "Another puppet instance is already running; --waitforlock flag used, waiting for running instance to finish."
|
85
|
+
msgstr ""
|
86
|
+
|
87
|
+
#: ../lib/puppet/agent.rb:75 ../lib/puppet/ssl/state_machine.rb:279 ../lib/puppet/ssl/state_machine.rb:310
|
88
|
+
msgid "Will try again in %{time} seconds."
|
89
|
+
msgstr ""
|
90
|
+
|
91
|
+
#: ../lib/puppet/agent.rb:80
|
80
92
|
msgid "Execution of %{client_class} did not complete within %{runtimeout} seconds and was terminated."
|
81
93
|
msgstr ""
|
82
94
|
|
83
|
-
#: ../lib/puppet/agent.rb:
|
95
|
+
#: ../lib/puppet/agent.rb:85
|
84
96
|
msgid "Could not run %{client_class}: %{detail}"
|
85
97
|
msgstr ""
|
86
98
|
|
87
|
-
#: ../lib/puppet/agent.rb:
|
99
|
+
#: ../lib/puppet/agent.rb:92
|
88
100
|
msgid "Shutdown/restart in progress (%{status}); skipping run"
|
89
101
|
msgstr ""
|
90
102
|
|
91
|
-
#: ../lib/puppet/agent.rb:
|
103
|
+
#: ../lib/puppet/agent.rb:110
|
92
104
|
msgid "puppet agent: applying configuration"
|
93
105
|
msgstr ""
|
94
106
|
|
95
|
-
#: ../lib/puppet/agent.rb:
|
107
|
+
#: ../lib/puppet/agent.rb:133
|
96
108
|
msgid "Could not create instance of %{client_class}: %{detail}"
|
97
109
|
msgstr ""
|
98
110
|
|
@@ -178,23 +190,23 @@ msgstr ""
|
|
178
190
|
msgid "Cancelling startup"
|
179
191
|
msgstr ""
|
180
192
|
|
181
|
-
#: ../lib/puppet/application/agent.rb:
|
193
|
+
#: ../lib/puppet/application/agent.rb:83
|
182
194
|
msgid "The puppet agent daemon"
|
183
195
|
msgstr ""
|
184
196
|
|
185
|
-
#: ../lib/puppet/application/agent.rb:
|
197
|
+
#: ../lib/puppet/application/agent.rb:409
|
186
198
|
msgid "Fingerprint asked but neither the certificate, nor the certificate request have been issued"
|
187
199
|
msgstr ""
|
188
200
|
|
189
|
-
#: ../lib/puppet/application/agent.rb:
|
201
|
+
#: ../lib/puppet/application/agent.rb:414
|
190
202
|
msgid "Failed to generate fingerprint: %{message}"
|
191
203
|
msgstr ""
|
192
204
|
|
193
|
-
#: ../lib/puppet/application/agent.rb:
|
205
|
+
#: ../lib/puppet/application/agent.rb:437
|
194
206
|
msgid "Starting Puppet client version %{version}"
|
195
207
|
msgstr ""
|
196
208
|
|
197
|
-
#: ../lib/puppet/application/agent.rb:
|
209
|
+
#: ../lib/puppet/application/agent.rb:453
|
198
210
|
msgid "The puppet agent command does not take parameters"
|
199
211
|
msgstr ""
|
200
212
|
|
@@ -240,7 +252,7 @@ msgstr ""
|
|
240
252
|
msgid "Manage certificates and requests (Disabled)"
|
241
253
|
msgstr ""
|
242
254
|
|
243
|
-
#: ../lib/puppet/application/describe.rb:
|
255
|
+
#: ../lib/puppet/application/describe.rb:177
|
244
256
|
msgid "Display help about resource types"
|
245
257
|
msgstr ""
|
246
258
|
|
@@ -354,41 +366,30 @@ msgstr ""
|
|
354
366
|
msgid "Store and retrieve files in a filebucket"
|
355
367
|
msgstr ""
|
356
368
|
|
357
|
-
#: ../lib/puppet/application/filebucket.rb:
|
369
|
+
#: ../lib/puppet/application/filebucket.rb:221
|
358
370
|
msgid "You must specify a file to back up"
|
359
371
|
msgstr ""
|
360
372
|
|
361
|
-
#: ../lib/puppet/application/filebucket.rb:
|
373
|
+
#: ../lib/puppet/application/filebucket.rb:225
|
362
374
|
msgid "%{file}: no such file"
|
363
375
|
msgstr ""
|
364
376
|
|
365
|
-
#: ../lib/puppet/application/filebucket.rb:
|
377
|
+
#: ../lib/puppet/application/filebucket.rb:229
|
366
378
|
msgid "%{file}: cannot read file"
|
367
379
|
msgstr ""
|
368
380
|
|
369
|
-
#: ../lib/puppet/application/filebucket.rb:
|
381
|
+
#: ../lib/puppet/application/filebucket.rb:251 ../lib/puppet/application/filebucket.rb:274
|
370
382
|
msgid "Need exactly two arguments: filebucket diff <file_a> <file_b>"
|
371
383
|
msgstr ""
|
372
384
|
|
373
|
-
#: ../lib/puppet/application/filebucket.rb:
|
385
|
+
#: ../lib/puppet/application/filebucket.rb:271
|
374
386
|
msgid "Comparing %{checksum_a} %{checksum_b} %{file_a} %{file_b}"
|
375
387
|
msgstr ""
|
376
388
|
|
377
|
-
#: ../lib/puppet/application/filebucket.rb:
|
389
|
+
#: ../lib/puppet/application/filebucket.rb:285
|
378
390
|
msgid "Cancelling"
|
379
391
|
msgstr ""
|
380
392
|
|
381
|
-
#. TRANSLATORS 'server_list' is the name of a setting and should not be translated
|
382
|
-
#: ../lib/puppet/application/filebucket.rb:293
|
383
|
-
msgid "Selected server from first entry of the `server_list` setting: %{server}:%{port}"
|
384
|
-
msgstr ""
|
385
|
-
|
386
|
-
#. TRANSLATORS 'server' is the name of a setting and should not be translated
|
387
|
-
#. TRANSLATORS 'server' is the name of a setting and should not be translated
|
388
|
-
#: ../lib/puppet/application/filebucket.rb:300 ../lib/puppet/indirector/request.rb:218
|
389
|
-
msgid "Selected server from the `server` setting: %{server}"
|
390
|
-
msgstr ""
|
391
|
-
|
392
393
|
#: ../lib/puppet/application/lookup.rb:8
|
393
394
|
msgid "Run 'puppet lookup --help' for more details"
|
394
395
|
msgstr ""
|
@@ -523,118 +524,113 @@ msgstr ""
|
|
523
524
|
msgid "Removed %{label} %{path}"
|
524
525
|
msgstr ""
|
525
526
|
|
526
|
-
#: ../lib/puppet/configurer.rb:
|
527
|
+
#: ../lib/puppet/configurer.rb:21
|
527
528
|
msgid "Puppet configuration client"
|
528
529
|
msgstr ""
|
529
530
|
|
530
|
-
#: ../lib/puppet/configurer.rb:
|
531
|
+
#: ../lib/puppet/configurer.rb:44
|
531
532
|
msgid "Removing corrupt state file %{file}: %{detail}"
|
532
533
|
msgstr ""
|
533
534
|
|
534
|
-
#: ../lib/puppet/configurer.rb:
|
535
|
+
#: ../lib/puppet/configurer.rb:49
|
535
536
|
msgid "Cannot remove %{file}: %{detail}"
|
536
537
|
msgstr ""
|
537
538
|
|
538
|
-
#: ../lib/puppet/configurer.rb:
|
539
|
+
#: ../lib/puppet/configurer.rb:72
|
539
540
|
msgid "Using cached catalog from environment '%{environment}'"
|
540
541
|
msgstr ""
|
541
542
|
|
542
|
-
#: ../lib/puppet/configurer.rb:
|
543
|
+
#: ../lib/puppet/configurer.rb:78
|
543
544
|
msgid "Not using cache on failed catalog"
|
544
545
|
msgstr ""
|
545
546
|
|
546
|
-
#: ../lib/puppet/configurer.rb:
|
547
|
+
#: ../lib/puppet/configurer.rb:87
|
547
548
|
msgid "Not using cached catalog because its environment '%{catalog_env}' does not match '%{local_env}'"
|
548
549
|
msgstr ""
|
549
550
|
|
550
|
-
#: ../lib/puppet/configurer.rb:
|
551
|
+
#: ../lib/puppet/configurer.rb:92 ../lib/puppet/configurer.rb:174
|
551
552
|
msgid "Using cached catalog from environment '%{catalog_env}'"
|
552
553
|
msgstr ""
|
553
554
|
|
554
|
-
#: ../lib/puppet/configurer.rb:
|
555
|
+
#: ../lib/puppet/configurer.rb:167
|
555
556
|
msgid "Could not retrieve catalog; skipping run"
|
556
557
|
msgstr ""
|
557
558
|
|
558
|
-
#: ../lib/puppet/configurer.rb:
|
559
|
+
#: ../lib/puppet/configurer.rb:183
|
559
560
|
msgid "Applied catalog in %{seconds} seconds"
|
560
561
|
msgstr ""
|
561
562
|
|
562
|
-
#: ../lib/puppet/configurer.rb:
|
563
|
+
#: ../lib/puppet/configurer.rb:219 ../lib/puppet/http/resolver/server_list.rb:68
|
563
564
|
msgid "Could not select a functional puppet master from server_list: '%{server_list}'"
|
564
565
|
msgstr ""
|
565
566
|
|
566
|
-
|
567
|
-
#: ../lib/puppet/configurer.rb:229
|
568
|
-
msgid "Selected puppet server from the `server_list` setting: %{server}:%{port}"
|
569
|
-
msgstr ""
|
570
|
-
|
571
|
-
#: ../lib/puppet/configurer.rb:261
|
567
|
+
#: ../lib/puppet/configurer.rb:256
|
572
568
|
msgid "Local environment: '%{local_env}' doesn't match the environment of the cached catalog '%{catalog_env}', switching agent to '%{catalog_env}'."
|
573
569
|
msgstr ""
|
574
570
|
|
575
|
-
#: ../lib/puppet/configurer.rb:
|
571
|
+
#: ../lib/puppet/configurer.rb:301
|
576
572
|
msgid "Local environment: '%{local_env}' doesn't match server specified node environment '%{node_env}', switching agent to '%{node_env}'."
|
577
573
|
msgstr ""
|
578
574
|
|
579
|
-
#: ../lib/puppet/configurer.rb:
|
575
|
+
#: ../lib/puppet/configurer.rb:316
|
580
576
|
msgid "Using configured environment '%{env}'"
|
581
577
|
msgstr ""
|
582
578
|
|
583
|
-
#: ../lib/puppet/configurer.rb:
|
579
|
+
#: ../lib/puppet/configurer.rb:320
|
584
580
|
msgid "Unable to fetch my node definition, but the agent run will continue:"
|
585
581
|
msgstr ""
|
586
582
|
|
587
|
-
#: ../lib/puppet/configurer.rb:
|
583
|
+
#: ../lib/puppet/configurer.rb:348
|
588
584
|
msgid "Not using catalog because its environment '%{catalog_env}' does not match agent specified environment '%{local_env}' and strict_environment_mode is set"
|
589
585
|
msgstr ""
|
590
586
|
|
591
|
-
#: ../lib/puppet/configurer.rb:
|
587
|
+
#: ../lib/puppet/configurer.rb:359
|
592
588
|
msgid "Catalog environment didn't stabilize after %{tries} fetches, aborting run"
|
593
589
|
msgstr ""
|
594
590
|
|
595
|
-
#: ../lib/puppet/configurer.rb:
|
591
|
+
#: ../lib/puppet/configurer.rb:361
|
596
592
|
msgid "Local environment: '%{local_env}' doesn't match server specified environment '%{catalog_env}', restarting agent run with environment '%{catalog_env}'"
|
597
593
|
msgstr ""
|
598
594
|
|
599
|
-
#: ../lib/puppet/configurer.rb:
|
595
|
+
#: ../lib/puppet/configurer.rb:402
|
600
596
|
msgid "Failed to apply catalog: %{detail}"
|
601
597
|
msgstr ""
|
602
598
|
|
603
|
-
#: ../lib/puppet/configurer.rb:431 ../lib/puppet/http/resolver/server_list.rb:
|
599
|
+
#: ../lib/puppet/configurer.rb:431 ../lib/puppet/http/resolver/server_list.rb:89
|
604
600
|
msgid "Puppet server %{host}:%{port} is unavailable: %{code} %{reason}"
|
605
601
|
msgstr ""
|
606
602
|
|
607
603
|
#. TRANSLATORS 'server_list' is the name of a setting and should not be translated
|
608
604
|
#. TRANSLATORS 'server_list' is the name of a setting and should not be translated
|
609
|
-
#: ../lib/puppet/configurer.rb:435 ../lib/puppet/http/resolver/server_list.rb:
|
605
|
+
#: ../lib/puppet/configurer.rb:435 ../lib/puppet/http/resolver/server_list.rb:95
|
610
606
|
msgid "Unable to connect to server from server_list setting: %{detail}"
|
611
607
|
msgstr ""
|
612
608
|
|
613
|
-
#: ../lib/puppet/configurer.rb:
|
609
|
+
#: ../lib/puppet/configurer.rb:446 ../lib/puppet/face/report.rb:47
|
614
610
|
msgid "Could not send report: %{detail}"
|
615
611
|
msgstr ""
|
616
612
|
|
617
|
-
#: ../lib/puppet/configurer.rb:
|
613
|
+
#: ../lib/puppet/configurer.rb:455
|
618
614
|
msgid "Could not save last run local report: %{detail}"
|
619
615
|
msgstr ""
|
620
616
|
|
621
|
-
#: ../lib/puppet/configurer.rb:
|
617
|
+
#: ../lib/puppet/configurer.rb:474
|
622
618
|
msgid "Uploading facts for %{node} to %{server}"
|
623
619
|
msgstr ""
|
624
620
|
|
625
|
-
#: ../lib/puppet/configurer.rb:
|
621
|
+
#: ../lib/puppet/configurer.rb:482
|
626
622
|
msgid "Failed to submit facts: %{detail}"
|
627
623
|
msgstr ""
|
628
624
|
|
629
|
-
#: ../lib/puppet/configurer.rb:
|
625
|
+
#: ../lib/puppet/configurer.rb:497
|
630
626
|
msgid "Could not run command from %{setting}: %{detail}"
|
631
627
|
msgstr ""
|
632
628
|
|
633
|
-
#: ../lib/puppet/configurer.rb:
|
629
|
+
#: ../lib/puppet/configurer.rb:515
|
634
630
|
msgid "Could not retrieve catalog from cache: %{detail}"
|
635
631
|
msgstr ""
|
636
632
|
|
637
|
-
#: ../lib/puppet/configurer.rb:
|
633
|
+
#: ../lib/puppet/configurer.rb:536
|
638
634
|
msgid "Could not retrieve catalog from remote server: %{detail}"
|
639
635
|
msgstr ""
|
640
636
|
|
@@ -666,20 +662,20 @@ msgstr ""
|
|
666
662
|
msgid "Attempted to pop, but already at root of the context stack."
|
667
663
|
msgstr ""
|
668
664
|
|
669
|
-
#: ../lib/puppet/context/trusted_information.rb:
|
665
|
+
#: ../lib/puppet/context/trusted_information.rb:53
|
670
666
|
msgid "TrustedInformation expected a certificate, but none was given."
|
671
667
|
msgstr ""
|
672
668
|
|
673
|
-
#: ../lib/puppet/context/trusted_information.rb:
|
669
|
+
#: ../lib/puppet/context/trusted_information.rb:104 ../lib/puppet/parser/scope.rb:835
|
674
670
|
msgid "Unsupported data type: '%{klass}'"
|
675
671
|
msgstr ""
|
676
672
|
|
677
|
-
#: ../lib/puppet/daemon.rb:
|
678
|
-
msgid "
|
673
|
+
#: ../lib/puppet/daemon.rb:26
|
674
|
+
msgid "Daemons must have an agent"
|
679
675
|
msgstr ""
|
680
676
|
|
681
|
-
#: ../lib/puppet/daemon.rb:
|
682
|
-
msgid "
|
677
|
+
#: ../lib/puppet/daemon.rb:81
|
678
|
+
msgid "Cannot reexec unless ARGV arguments are set"
|
683
679
|
msgstr ""
|
684
680
|
|
685
681
|
#: ../lib/puppet/datatypes.rb:133
|
@@ -698,46 +694,46 @@ msgstr ""
|
|
698
694
|
msgid "a data type can only have one implementation"
|
699
695
|
msgstr ""
|
700
696
|
|
701
|
-
#: ../lib/puppet/defaults.rb:
|
702
|
-
msgid "Cannot disable unrecognized warning types %{invalid}."
|
697
|
+
#: ../lib/puppet/defaults.rb:178
|
698
|
+
msgid "Cannot disable unrecognized warning types '%{invalid}'."
|
703
699
|
msgstr ""
|
704
700
|
|
705
|
-
#: ../lib/puppet/defaults.rb:
|
706
|
-
msgid "Valid values are %{values}."
|
701
|
+
#: ../lib/puppet/defaults.rb:179
|
702
|
+
msgid "Valid values are '%{values}'."
|
707
703
|
msgstr ""
|
708
704
|
|
709
705
|
#. TRANSLATORS 'data_binding_terminus' is a setting and should not be translated
|
710
|
-
#: ../lib/puppet/defaults.rb:
|
706
|
+
#: ../lib/puppet/defaults.rb:546
|
711
707
|
msgid "Setting 'data_binding_terminus' is deprecated."
|
712
708
|
msgstr ""
|
713
709
|
|
714
710
|
#. TRANSLATORS 'hiera' should not be translated
|
715
|
-
#: ../lib/puppet/defaults.rb:
|
711
|
+
#: ../lib/puppet/defaults.rb:548
|
716
712
|
msgid "Convert custom terminus to hiera 5 API."
|
717
713
|
msgstr ""
|
718
714
|
|
719
715
|
#. TRANSLATORS 'environment_data_provider' is a setting and should not be translated
|
720
|
-
#: ../lib/puppet/defaults.rb:
|
716
|
+
#: ../lib/puppet/defaults.rb:747
|
721
717
|
msgid "Setting 'environment_data_provider' is deprecated."
|
722
718
|
msgstr ""
|
723
719
|
|
724
|
-
#: ../lib/puppet/defaults.rb:
|
720
|
+
#: ../lib/puppet/defaults.rb:828
|
725
721
|
msgid "Certificate names must be lower case"
|
726
722
|
msgstr ""
|
727
723
|
|
728
|
-
#: ../lib/puppet/defaults.rb:
|
724
|
+
#: ../lib/puppet/defaults.rb:1022
|
729
725
|
msgid "Setting 'ssl_client_ca_auth' is deprecated."
|
730
726
|
msgstr ""
|
731
727
|
|
732
|
-
#: ../lib/puppet/defaults.rb:
|
728
|
+
#: ../lib/puppet/defaults.rb:1101 ../lib/puppet/settings/enum_setting.rb:13 ../lib/puppet/settings/symbolic_enum_setting.rb:14
|
733
729
|
msgid "Invalid value '%{value}' for parameter %{name}. Allowed values are '%{allowed_values}'"
|
734
730
|
msgstr ""
|
735
731
|
|
736
|
-
#: ../lib/puppet/error.rb:
|
732
|
+
#: ../lib/puppet/error.rb:77
|
737
733
|
msgid "Could not parse for environment %{environment}: %{message}"
|
738
734
|
msgstr ""
|
739
735
|
|
740
|
-
#: ../lib/puppet/error.rb:
|
736
|
+
#: ../lib/puppet/error.rb:78 ../lib/puppet/parser/compiler.rb:40
|
741
737
|
msgid "%{message} on node %{node}"
|
742
738
|
msgstr ""
|
743
739
|
|
@@ -1025,8 +1021,8 @@ msgstr ""
|
|
1025
1021
|
msgid "Upload local facts to the puppet master."
|
1026
1022
|
msgstr ""
|
1027
1023
|
|
1028
|
-
#: ../lib/puppet/face/facts.rb:
|
1029
|
-
msgid "Uploading facts for '%{node}' to
|
1024
|
+
#: ../lib/puppet/face/facts.rb:82
|
1025
|
+
msgid "Uploading facts for '%{node}' to '%{server}'"
|
1030
1026
|
msgstr ""
|
1031
1027
|
|
1032
1028
|
#: ../lib/puppet/face/generate.rb:9
|
@@ -1088,49 +1084,53 @@ msgstr ""
|
|
1088
1084
|
msgid "The version of the subcommand for which to show help."
|
1089
1085
|
msgstr ""
|
1090
1086
|
|
1087
|
+
#: ../lib/puppet/face/help.rb:28
|
1088
|
+
msgid "Whether to render the help text in ronn format."
|
1089
|
+
msgstr ""
|
1090
|
+
|
1091
1091
|
#. TRANSLATORS 'puppet help' is a command line and should not be translated
|
1092
|
-
#: ../lib/puppet/face/help.rb:
|
1092
|
+
#: ../lib/puppet/face/help.rb:44
|
1093
1093
|
msgid "The 'puppet help' command takes two (optional) arguments: a subcommand and an action"
|
1094
1094
|
msgstr ""
|
1095
1095
|
|
1096
1096
|
#. TRANSLATORS '--version' is a command line option and should not be translated
|
1097
|
-
#: ../lib/puppet/face/help.rb:
|
1097
|
+
#: ../lib/puppet/face/help.rb:54
|
1098
1098
|
msgid "Supplying a '--version' only makes sense when a Faces subcommand is given"
|
1099
1099
|
msgstr ""
|
1100
1100
|
|
1101
|
-
#: ../lib/puppet/face/help.rb:
|
1101
|
+
#: ../lib/puppet/face/help.rb:62
|
1102
1102
|
msgid "The legacy subcommand '%{sub_command}' does not support supplying an action"
|
1103
1103
|
msgstr ""
|
1104
1104
|
|
1105
|
-
#: ../lib/puppet/face/help.rb:
|
1105
|
+
#: ../lib/puppet/face/help.rb:102
|
1106
1106
|
msgid "Could not load help for the application %{application_name}."
|
1107
1107
|
msgstr ""
|
1108
1108
|
|
1109
|
-
#: ../lib/puppet/face/help.rb:
|
1109
|
+
#: ../lib/puppet/face/help.rb:103 ../lib/puppet/face/help.rb:115
|
1110
1110
|
msgid "Please check the error logs for more information."
|
1111
1111
|
msgstr ""
|
1112
1112
|
|
1113
|
-
#: ../lib/puppet/face/help.rb:
|
1113
|
+
#: ../lib/puppet/face/help.rb:105 ../lib/puppet/face/help.rb:117
|
1114
1114
|
msgid "Detail: \"%{detail}\""
|
1115
1115
|
msgstr ""
|
1116
1116
|
|
1117
|
-
#: ../lib/puppet/face/help.rb:
|
1117
|
+
#: ../lib/puppet/face/help.rb:114
|
1118
1118
|
msgid "Could not load help for the face %{face_name}."
|
1119
1119
|
msgstr ""
|
1120
1120
|
|
1121
|
-
#: ../lib/puppet/face/help.rb:
|
1121
|
+
#: ../lib/puppet/face/help.rb:126
|
1122
1122
|
msgid "Unable to load action %{actionname} from %{face}"
|
1123
1123
|
msgstr ""
|
1124
1124
|
|
1125
|
-
#: ../lib/puppet/face/help.rb:
|
1125
|
+
#: ../lib/puppet/face/help.rb:170
|
1126
1126
|
msgid "(Deprecated)"
|
1127
1127
|
msgstr ""
|
1128
1128
|
|
1129
|
-
#: ../lib/puppet/face/help.rb:
|
1129
|
+
#: ../lib/puppet/face/help.rb:173 ../lib/puppet/face/help.rb:185
|
1130
1130
|
msgid "!%{sub_command}! Subcommand unavailable due to error."
|
1131
1131
|
msgstr ""
|
1132
1132
|
|
1133
|
-
#: ../lib/puppet/face/help.rb:
|
1133
|
+
#: ../lib/puppet/face/help.rb:174 ../lib/puppet/face/help.rb:186
|
1134
1134
|
msgid "Check error logs."
|
1135
1135
|
msgstr ""
|
1136
1136
|
|
@@ -1287,15 +1287,19 @@ msgstr ""
|
|
1287
1287
|
msgid "Search the Puppet Forge for a module."
|
1288
1288
|
msgstr ""
|
1289
1289
|
|
1290
|
-
#: ../lib/puppet/face/module/search.rb:
|
1290
|
+
#: ../lib/puppet/face/module/search.rb:14
|
1291
1291
|
msgid "Array of module metadata hashes"
|
1292
1292
|
msgstr ""
|
1293
1293
|
|
1294
|
-
#: ../lib/puppet/face/module/search.rb:
|
1294
|
+
#: ../lib/puppet/face/module/search.rb:24
|
1295
1295
|
msgid "<search_term>"
|
1296
1296
|
msgstr ""
|
1297
1297
|
|
1298
|
-
#: ../lib/puppet/face/module/search.rb:
|
1298
|
+
#: ../lib/puppet/face/module/search.rb:27
|
1299
|
+
msgid "This action has been deprecated. Please use the Puppet Forge to search for modules."
|
1300
|
+
msgstr ""
|
1301
|
+
|
1302
|
+
#: ../lib/puppet/face/module/search.rb:37
|
1299
1303
|
msgid "No results found for '%{term}'."
|
1300
1304
|
msgstr ""
|
1301
1305
|
|
@@ -1758,7 +1762,7 @@ msgstr ""
|
|
1758
1762
|
msgid "No task specified"
|
1759
1763
|
msgstr ""
|
1760
1764
|
|
1761
|
-
#: ../lib/puppet/file_serving/terminus_selector.rb:
|
1765
|
+
#: ../lib/puppet/file_serving/terminus_selector.rb:28
|
1762
1766
|
msgid "URI protocol '%{protocol}' is not currently supported for file serving"
|
1763
1767
|
msgstr ""
|
1764
1768
|
|
@@ -1778,11 +1782,11 @@ msgstr ""
|
|
1778
1782
|
msgid "Timeout waiting for exclusive lock on %{path}"
|
1779
1783
|
msgstr ""
|
1780
1784
|
|
1781
|
-
#: ../lib/puppet/file_system/jruby.rb:18 ../lib/puppet/file_system/windows.rb:
|
1785
|
+
#: ../lib/puppet/file_system/jruby.rb:18 ../lib/puppet/file_system/windows.rb:127 ../lib/puppet/util.rb:705
|
1782
1786
|
msgid "Is a directory: %{directory}"
|
1783
1787
|
msgstr ""
|
1784
1788
|
|
1785
|
-
#: ../lib/puppet/file_system/memory_impl.rb:
|
1789
|
+
#: ../lib/puppet/file_system/memory_impl.rb:81
|
1786
1790
|
msgid "Unable to find registered object for %{path}"
|
1787
1791
|
msgstr ""
|
1788
1792
|
|
@@ -1814,7 +1818,7 @@ msgstr ""
|
|
1814
1818
|
msgid "unexpected prefix_suffix: %{value}"
|
1815
1819
|
msgstr ""
|
1816
1820
|
|
1817
|
-
#: ../lib/puppet/file_system/uniquefile.rb:
|
1821
|
+
#: ../lib/puppet/file_system/uniquefile.rb:136
|
1818
1822
|
msgid "cannot generate temporary name using `%{basename}' under `%{tmpdir}'"
|
1819
1823
|
msgstr ""
|
1820
1824
|
|
@@ -1822,11 +1826,11 @@ msgstr ""
|
|
1822
1826
|
msgid "%{dest} already exists and the :force option was not specified"
|
1823
1827
|
msgstr ""
|
1824
1828
|
|
1825
|
-
#: ../lib/puppet/file_system/windows.rb:
|
1829
|
+
#: ../lib/puppet/file_system/windows.rb:202
|
1826
1830
|
msgid "This version of Windows does not support symlinks. Windows Vista / 2008 or higher is required."
|
1827
1831
|
msgstr ""
|
1828
1832
|
|
1829
|
-
#: ../lib/puppet/file_system/windows.rb:
|
1833
|
+
#: ../lib/puppet/file_system/windows.rb:207
|
1830
1834
|
msgid "The current user does not have the necessary permission to manage symlinks."
|
1831
1835
|
msgstr ""
|
1832
1836
|
|
@@ -2075,6 +2079,10 @@ msgstr ""
|
|
2075
2079
|
msgid "Unable to parse %{message}"
|
2076
2080
|
msgstr ""
|
2077
2081
|
|
2082
|
+
#: ../lib/puppet/functions/eyaml_lookup_key.rb:93
|
2083
|
+
msgid "hiera-eyaml backend error decrypting %{data} when looking up %{key} in %{path}. Error was %{message}"
|
2084
|
+
msgstr ""
|
2085
|
+
|
2078
2086
|
#: ../lib/puppet/functions/floor.rb:27
|
2079
2087
|
msgid "The floor() function's auto conversion of String to Float is deprecated - change to convert input before calling"
|
2080
2088
|
msgstr ""
|
@@ -2222,48 +2230,64 @@ msgstr ""
|
|
2222
2230
|
msgid "Try the '--graph' option and opening the resulting '.dot' file in OmniGraffle or GraphViz"
|
2223
2231
|
msgstr ""
|
2224
2232
|
|
2225
|
-
#: ../lib/puppet/http/client.rb:
|
2233
|
+
#: ../lib/puppet/http/client.rb:90
|
2226
2234
|
msgid "Request to %{uri} timed out connect operation after %{elapsed} seconds"
|
2227
2235
|
msgstr ""
|
2228
2236
|
|
2229
|
-
#: ../lib/puppet/http/client.rb:
|
2237
|
+
#: ../lib/puppet/http/client.rb:92
|
2230
2238
|
msgid "Request to %{uri} timed out read operation after %{elapsed} seconds"
|
2231
2239
|
msgstr ""
|
2232
2240
|
|
2233
|
-
#: ../lib/puppet/http/client.rb:
|
2241
|
+
#: ../lib/puppet/http/client.rb:94
|
2234
2242
|
msgid "Request to %{uri} interrupted after %{elapsed} seconds"
|
2235
2243
|
msgstr ""
|
2236
2244
|
|
2237
|
-
#: ../lib/puppet/http/client.rb:
|
2245
|
+
#: ../lib/puppet/http/client.rb:100
|
2238
2246
|
msgid "Request to %{uri} failed after %{elapsed} seconds: %{message}"
|
2239
2247
|
msgstr ""
|
2240
2248
|
|
2241
|
-
#: ../lib/puppet/http/client.rb:
|
2249
|
+
#: ../lib/puppet/http/client.rb:326
|
2242
2250
|
msgid "Sleeping for %{interval} seconds before retrying the request"
|
2243
2251
|
msgstr ""
|
2244
2252
|
|
2245
|
-
#: ../lib/puppet/http/
|
2253
|
+
#: ../lib/puppet/http/client.rb:369 ../lib/puppet/indirector/request.rb:142
|
2254
|
+
msgid "HTTP REST queries cannot handle values of type '%{klass}'"
|
2255
|
+
msgstr ""
|
2256
|
+
|
2257
|
+
#: ../lib/puppet/http/errors.rb:23
|
2246
2258
|
msgid "Too many HTTP redirections for %{addr}"
|
2247
2259
|
msgstr ""
|
2248
2260
|
|
2249
|
-
#: ../lib/puppet/http/errors.rb:
|
2261
|
+
#: ../lib/puppet/http/errors.rb:29
|
2250
2262
|
msgid "Too many HTTP retries for %{addr}"
|
2251
2263
|
msgstr ""
|
2252
2264
|
|
2253
|
-
#: ../lib/puppet/http/redirector.rb:
|
2265
|
+
#: ../lib/puppet/http/redirector.rb:78
|
2254
2266
|
msgid "Location response header is missing"
|
2255
2267
|
msgstr ""
|
2256
2268
|
|
2257
|
-
#: ../lib/puppet/http/redirector.rb:
|
2269
|
+
#: ../lib/puppet/http/redirector.rb:82
|
2258
2270
|
msgid "Location URI is invalid: %{detail}"
|
2259
2271
|
msgstr ""
|
2260
2272
|
|
2261
|
-
#: ../lib/puppet/http/retry_after_handler.rb:
|
2273
|
+
#: ../lib/puppet/http/retry_after_handler.rb:83
|
2262
2274
|
msgid "Failed to parse Retry-After header '%{retry_after}' as an integer or RFC 2822 date"
|
2263
2275
|
msgstr ""
|
2264
2276
|
|
2265
|
-
|
2266
|
-
|
2277
|
+
#: ../lib/puppet/http/service.rb:119
|
2278
|
+
msgid "Ignoring extra header \"%{name}\" as it was previously set."
|
2279
|
+
msgstr ""
|
2280
|
+
|
2281
|
+
#: ../lib/puppet/http/service.rb:122
|
2282
|
+
msgid "Ignoring extra header \"%{name}\" as it has no value."
|
2283
|
+
msgstr ""
|
2284
|
+
|
2285
|
+
#: ../lib/puppet/http/service.rb:145 ../lib/puppet/indirector/rest.rb:288
|
2286
|
+
msgid "No content type in http response; cannot parse"
|
2287
|
+
msgstr ""
|
2288
|
+
|
2289
|
+
#. TRANSLATORS "pson", "preferred_serialization_format", and "puppetserver" should not be translated
|
2290
|
+
#: ../lib/puppet/http/service/report.rb:61
|
2267
2291
|
msgid "To submit reports to a server running puppetserver %{server_version}, set preferred_serialization_format to pson"
|
2268
2292
|
msgstr ""
|
2269
2293
|
|
@@ -2275,132 +2299,132 @@ msgstr ""
|
|
2275
2299
|
msgid "Already handling indirection for %{current}; cannot also handle %{next}"
|
2276
2300
|
msgstr ""
|
2277
2301
|
|
2278
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2302
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:26
|
2279
2303
|
msgid "Facts but no fact format provided for %{request}"
|
2280
2304
|
msgstr ""
|
2281
2305
|
|
2282
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2306
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:29
|
2283
2307
|
msgid "Found facts"
|
2284
2308
|
msgstr ""
|
2285
2309
|
|
2286
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2310
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:34
|
2287
2311
|
msgid "Catalog for %{request} was requested with fact definition for the wrong node (%{fact_name})."
|
2288
2312
|
msgstr ""
|
2289
2313
|
|
2290
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2314
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:71
|
2291
2315
|
msgid "Setup server facts for compiling"
|
2292
2316
|
msgstr ""
|
2293
2317
|
|
2294
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2318
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:95
|
2295
2319
|
msgid "Unsupported facts format"
|
2296
2320
|
msgstr ""
|
2297
2321
|
|
2298
2322
|
#. TRANSLATORS Inlining refers to adding additional metadata (in this case we are not inlining)
|
2299
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2323
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:136
|
2300
2324
|
msgid "Not inlining absent resource"
|
2301
2325
|
msgstr ""
|
2302
2326
|
|
2303
2327
|
#. TRANSLATORS Inlining refers to adding additional metadata (in this case we are not inlining)
|
2304
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2328
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:139
|
2305
2329
|
msgid "Not inlining resource without sources"
|
2306
2330
|
msgstr ""
|
2307
2331
|
|
2308
2332
|
#. TRANSLATORS Inlining refers to adding additional metadata (in this case we are not inlining)
|
2309
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2333
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:142
|
2310
2334
|
msgid "Not inlining unsupported source scheme"
|
2311
2335
|
msgstr ""
|
2312
2336
|
|
2313
2337
|
#. TRANSLATORS Inlining refers to adding additional metadata (in this case we are not inlining)
|
2314
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2338
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:164
|
2315
2339
|
msgid "Not inlining file outside environment"
|
2316
2340
|
msgstr ""
|
2317
2341
|
|
2318
2342
|
#. TRANSLATORS Inlining refers to adding additional metadata
|
2319
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2343
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:170
|
2320
2344
|
msgid "Inlining file metadata"
|
2321
2345
|
msgstr ""
|
2322
2346
|
|
2323
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2347
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:259
|
2324
2348
|
msgid "Could not get metadata for %{resource}"
|
2325
2349
|
msgstr ""
|
2326
2350
|
|
2327
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2351
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:280
|
2328
2352
|
msgid "Unable to find a common checksum type between agent '%{agent_type}' and master '%{master_type}'."
|
2329
2353
|
msgstr ""
|
2330
2354
|
|
2331
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2355
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:287
|
2332
2356
|
msgid "Compiled static catalog for %{node} in environment %{environment} in %%{seconds} seconds"
|
2333
2357
|
msgstr ""
|
2334
2358
|
|
2335
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2359
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:288
|
2336
2360
|
msgid "Compiled static catalog for %{node} in environment %{environment}"
|
2337
2361
|
msgstr ""
|
2338
2362
|
|
2339
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2363
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:290
|
2340
2364
|
msgid "Compiled static catalog for %{node} in %%{seconds} seconds"
|
2341
2365
|
msgstr ""
|
2342
2366
|
|
2343
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2367
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:291
|
2344
2368
|
msgid "Compiled static catalog for %{node}"
|
2345
2369
|
msgstr ""
|
2346
2370
|
|
2347
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2371
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:296
|
2348
2372
|
msgid "Compiled catalog for %{node} in environment %{environment} in %%{seconds} seconds"
|
2349
2373
|
msgstr ""
|
2350
2374
|
|
2351
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2375
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:297
|
2352
2376
|
msgid "Compiled catalog for %{node} in environment %{environment}"
|
2353
2377
|
msgstr ""
|
2354
2378
|
|
2355
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2379
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:299
|
2356
2380
|
msgid "Compiled catalog for %{node} in %%{seconds} seconds"
|
2357
2381
|
msgstr ""
|
2358
2382
|
|
2359
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2383
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:300
|
2360
2384
|
msgid "Compiled catalog for %{node}"
|
2361
2385
|
msgstr ""
|
2362
2386
|
|
2363
2387
|
#. TRANSLATORS Inlined refers to adding additional metadata
|
2364
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2388
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:322
|
2365
2389
|
msgid "Inlined resource metadata into static catalog for %{node} in environment %{environment} in %%{seconds} seconds"
|
2366
2390
|
msgstr ""
|
2367
2391
|
|
2368
2392
|
#. TRANSLATORS Inlined refers to adding additional metadata
|
2369
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2393
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:324
|
2370
2394
|
msgid "Inlined resource metadata into static catalog for %{node} in environment %{environment}"
|
2371
2395
|
msgstr ""
|
2372
2396
|
|
2373
2397
|
#. TRANSLATORS Inlined refers to adding additional metadata
|
2374
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2398
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:327
|
2375
2399
|
msgid "Inlined resource metadata into static catalog for %{node} in %%{seconds} seconds"
|
2376
2400
|
msgstr ""
|
2377
2401
|
|
2378
2402
|
#. TRANSLATORS Inlined refers to adding additional metadata
|
2379
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2403
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:329
|
2380
2404
|
msgid "Inlined resource metadata into static catalog for %{node}"
|
2381
2405
|
msgstr ""
|
2382
2406
|
|
2383
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2407
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:346
|
2384
2408
|
msgid "Found node information"
|
2385
2409
|
msgstr ""
|
2386
2410
|
|
2387
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2411
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:354
|
2388
2412
|
msgid "Failed when searching for node %{name}: %{detail}"
|
2389
2413
|
msgstr ""
|
2390
2414
|
|
2391
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2415
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:374
|
2392
2416
|
msgid "Invalid option use_node for a remote request"
|
2393
2417
|
msgstr ""
|
2394
2418
|
|
2395
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2419
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:393
|
2396
2420
|
msgid "Could not find node '%{name}'; cannot compile"
|
2397
2421
|
msgstr ""
|
2398
2422
|
|
2399
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2423
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:426
|
2400
2424
|
msgid "Could not retrieve fact servername"
|
2401
2425
|
msgstr ""
|
2402
2426
|
|
2403
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2427
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:435
|
2404
2428
|
msgid "Could not retrieve either serverip or serverip6 fact"
|
2405
2429
|
msgstr ""
|
2406
2430
|
|
@@ -2412,6 +2436,10 @@ msgstr ""
|
|
2412
2436
|
msgid "Unable to serialize catalog to json, retrying with pson"
|
2413
2437
|
msgstr ""
|
2414
2438
|
|
2439
|
+
#: ../lib/puppet/indirector/catalog/rest.rb:34 ../lib/puppet/indirector/facts/rest.rb:22 ../lib/puppet/indirector/file_content/rest.rb:33 ../lib/puppet/indirector/file_metadata/rest.rb:30 ../lib/puppet/indirector/node/rest.rb:25 ../lib/puppet/indirector/rest.rb:146 ../lib/puppet/indirector/status/rest.rb:21
|
2440
|
+
msgid "Find %{uri} resulted in 404 with the message: %{body}"
|
2441
|
+
msgstr ""
|
2442
|
+
|
2415
2443
|
#: ../lib/puppet/indirector/exec.rb:11
|
2416
2444
|
msgid "Exec commands must be an array"
|
2417
2445
|
msgstr ""
|
@@ -2512,7 +2540,7 @@ msgstr ""
|
|
2512
2540
|
msgid "You cannot save facts to the code store; it is only used for getting facts from a remote device"
|
2513
2541
|
msgstr ""
|
2514
2542
|
|
2515
|
-
#: ../lib/puppet/indirector/facts/rest.rb:
|
2543
|
+
#: ../lib/puppet/indirector/facts/rest.rb:30 ../lib/puppet/indirector/rest.rb:198
|
2516
2544
|
msgid "PUT does not accept options"
|
2517
2545
|
msgstr ""
|
2518
2546
|
|
@@ -2563,7 +2591,11 @@ msgstr ""
|
|
2563
2591
|
msgid "Invalid checksum %{checksum}"
|
2564
2592
|
msgstr ""
|
2565
2593
|
|
2566
|
-
#: ../lib/puppet/indirector/
|
2594
|
+
#: ../lib/puppet/indirector/file_content/http.rb:14
|
2595
|
+
msgid "Puppet::Indirector::FileContent::Http is deprecated. Use Puppet::HTTP::Client instead."
|
2596
|
+
msgstr ""
|
2597
|
+
|
2598
|
+
#: ../lib/puppet/indirector/file_metadata/http.rb:31
|
2567
2599
|
msgid "cannot lookup multiple files"
|
2568
2600
|
msgstr ""
|
2569
2601
|
|
@@ -2739,16 +2771,20 @@ msgstr ""
|
|
2739
2771
|
msgid "No report named '%{name}'"
|
2740
2772
|
msgstr ""
|
2741
2773
|
|
2742
|
-
#: ../lib/puppet/indirector/report/rest.rb:
|
2774
|
+
#: ../lib/puppet/indirector/report/rest.rb:36
|
2743
2775
|
msgid "Server version %{version} does not accept reports in '%{format}', use `preferred_serialization_format=pson`"
|
2744
2776
|
msgstr ""
|
2745
2777
|
|
2746
|
-
#: ../lib/puppet/indirector/
|
2747
|
-
msgid "
|
2778
|
+
#: ../lib/puppet/indirector/report/yaml.rb:19
|
2779
|
+
msgid "replace_file mode: %{mode} is invalid"
|
2748
2780
|
msgstr ""
|
2749
2781
|
|
2750
|
-
#: ../lib/puppet/indirector/
|
2751
|
-
msgid "
|
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
|
+
#: ../lib/puppet/indirector/request.rb:103
|
2787
|
+
msgid "Could not find indirection '%{indirection}'"
|
2752
2788
|
msgstr ""
|
2753
2789
|
|
2754
2790
|
#: ../lib/puppet/indirector/request.rb:202
|
@@ -2760,6 +2796,11 @@ msgstr ""
|
|
2760
2796
|
msgid "Selected server from first entry of the `server_list` setting: %{server}"
|
2761
2797
|
msgstr ""
|
2762
2798
|
|
2799
|
+
#. TRANSLATORS 'server' is the name of a setting and should not be translated
|
2800
|
+
#: ../lib/puppet/indirector/request.rb:218
|
2801
|
+
msgid "Selected server from the `server` setting: %{server}"
|
2802
|
+
msgstr ""
|
2803
|
+
|
2763
2804
|
#. TRANSLATORS 'server_list' is the name of a setting and should not be translated
|
2764
2805
|
#: ../lib/puppet/indirector/request.rb:231
|
2765
2806
|
msgid "Selected port from the first entry of the `server_list` setting: %{port}"
|
@@ -2782,27 +2823,39 @@ msgstr ""
|
|
2782
2823
|
msgid "Resource instance does not match request key"
|
2783
2824
|
msgstr ""
|
2784
2825
|
|
2785
|
-
#: ../lib/puppet/indirector/rest.rb:
|
2786
|
-
msgid "
|
2826
|
+
#: ../lib/puppet/indirector/rest.rb:115
|
2827
|
+
msgid "Puppet::Indirector::Rest#find is deprecated. Use Puppet::HTTP::Client instead."
|
2828
|
+
msgstr ""
|
2829
|
+
|
2830
|
+
#: ../lib/puppet/indirector/rest.rb:154
|
2831
|
+
msgid "Puppet::Indirector::Rest#head is deprecated. Use Puppet::HTTP::Client instead."
|
2832
|
+
msgstr ""
|
2833
|
+
|
2834
|
+
#: ../lib/puppet/indirector/rest.rb:167
|
2835
|
+
msgid "Puppet::Indirector::Rest#search is deprecated. Use Puppet::HTTP::Client instead."
|
2836
|
+
msgstr ""
|
2837
|
+
|
2838
|
+
#: ../lib/puppet/indirector/rest.rb:181
|
2839
|
+
msgid "Puppet::Indirector::Rest#destroy is deprecated. Use Puppet::HTTP::Client instead."
|
2787
2840
|
msgstr ""
|
2788
2841
|
|
2789
|
-
#: ../lib/puppet/indirector/rest.rb:
|
2842
|
+
#: ../lib/puppet/indirector/rest.rb:182
|
2790
2843
|
msgid "DELETE does not accept options"
|
2791
2844
|
msgstr ""
|
2792
2845
|
|
2846
|
+
#: ../lib/puppet/indirector/rest.rb:197
|
2847
|
+
msgid "Puppet::Indirector::Rest#save is deprecated. Use Puppet::HTTP::Client instead."
|
2848
|
+
msgstr ""
|
2849
|
+
|
2793
2850
|
#. TRANSLATORS "PSON" should not be translated
|
2794
|
-
#: ../lib/puppet/indirector/rest.rb:
|
2851
|
+
#: ../lib/puppet/indirector/rest.rb:235
|
2795
2852
|
msgid "Downgrading to PSON for future requests"
|
2796
2853
|
msgstr ""
|
2797
2854
|
|
2798
|
-
#: ../lib/puppet/indirector/rest.rb:
|
2855
|
+
#: ../lib/puppet/indirector/rest.rb:277 ../lib/puppet/rest/response.rb:31
|
2799
2856
|
msgid "Error %{code} on SERVER: %{returned_message}"
|
2800
2857
|
msgstr ""
|
2801
2858
|
|
2802
|
-
#: ../lib/puppet/indirector/rest.rb:276
|
2803
|
-
msgid "No content type in http response; cannot parse"
|
2804
|
-
msgstr ""
|
2805
|
-
|
2806
2859
|
#: ../lib/puppet/indirector/ssl_file.rb:34
|
2807
2860
|
msgid "No file or directory setting provided; terminus %{class_name} cannot function"
|
2808
2861
|
msgstr ""
|
@@ -2871,10 +2924,6 @@ msgstr ""
|
|
2871
2924
|
msgid "You can only save objects that respond to :name"
|
2872
2925
|
msgstr ""
|
2873
2926
|
|
2874
|
-
#: ../lib/puppet/indirector/yaml.rb:32
|
2875
|
-
msgid "Could not save %{indirection} %{request}: %{detail}"
|
2876
|
-
msgstr ""
|
2877
|
-
|
2878
2927
|
#: ../lib/puppet/info_service/class_information_service.rb:18
|
2879
2928
|
msgid "Given argument must be a Hash"
|
2880
2929
|
msgstr ""
|
@@ -3143,17 +3192,17 @@ msgid "Option %{option} conflicts with existing option %{conflict} on %{action}"
|
|
3143
3192
|
msgstr ""
|
3144
3193
|
|
3145
3194
|
#. TRANSLATORS 'Puppet::Type.newtype' should not be translated
|
3146
|
-
#: ../lib/puppet/metatype/manager.rb:
|
3195
|
+
#: ../lib/puppet/metatype/manager.rb:77
|
3147
3196
|
msgid "Puppet::Type.newtype(%{name}) now expects a hash as the second argument, not %{argument}"
|
3148
3197
|
msgstr ""
|
3149
3198
|
|
3150
3199
|
#. TRANSLATORS 'new%{method}' will become a method name, do not translate this string
|
3151
|
-
#: ../lib/puppet/metatype/manager.rb:
|
3200
|
+
#: ../lib/puppet/metatype/manager.rb:110
|
3152
3201
|
msgid "'new%{method}' method already exists; skipping"
|
3153
3202
|
msgstr ""
|
3154
3203
|
|
3155
3204
|
#. TRANSLATORS 'puppet/type/%{name}' should not be translated
|
3156
|
-
#: ../lib/puppet/metatype/manager.rb:
|
3205
|
+
#: ../lib/puppet/metatype/manager.rb:173
|
3157
3206
|
msgid "Loaded puppet/type/%{name} but no class was created"
|
3158
3207
|
msgstr ""
|
3159
3208
|
|
@@ -3902,26 +3951,50 @@ msgstr ""
|
|
3902
3951
|
msgid "Not a valid indirection type"
|
3903
3952
|
msgstr ""
|
3904
3953
|
|
3905
|
-
#: ../lib/puppet/network/http/api/master/v3/environment.rb:
|
3954
|
+
#: ../lib/puppet/network/http/api/master/v3/environment.rb:14
|
3906
3955
|
msgid "%{env_name} is not a known environment"
|
3907
3956
|
msgstr ""
|
3908
3957
|
|
3909
|
-
#: ../lib/puppet/network/http/api/master/v3/environment.rb:
|
3958
|
+
#: ../lib/puppet/network/http/api/master/v3/environment.rb:43
|
3910
3959
|
msgid "Application %{application} assigns nodes to non-existent components: %{component_list}"
|
3911
3960
|
msgstr ""
|
3912
3961
|
|
3913
|
-
#: ../lib/puppet/network/http/api/master/v3/environment.rb:
|
3962
|
+
#: ../lib/puppet/network/http/api/master/v3/environment.rb:49
|
3914
3963
|
msgid "Application %{application} has components without assigned nodes: %{component_list}"
|
3915
3964
|
msgstr ""
|
3916
3965
|
|
3917
|
-
#: ../lib/puppet/network/http/api/master/v3/environment.rb:
|
3966
|
+
#: ../lib/puppet/network/http/api/master/v3/environment.rb:58
|
3918
3967
|
msgid "Application %{app} assigns multiple nodes to component %{comp}"
|
3919
3968
|
msgstr ""
|
3920
3969
|
|
3921
|
-
#: ../lib/puppet/network/http/compression.rb:
|
3970
|
+
#: ../lib/puppet/network/http/compression.rb:23 ../lib/puppet/network/http/compression.rb:27
|
3971
|
+
msgid "Puppet::Network::HTTP::Compression::Active#uncompress_body is deprecated."
|
3972
|
+
msgstr ""
|
3973
|
+
|
3974
|
+
#: ../lib/puppet/network/http/compression.rb:32 ../lib/puppet/network/http/compression.rb:46
|
3922
3975
|
msgid "Unknown content encoding - %{encoding}"
|
3923
3976
|
msgstr ""
|
3924
3977
|
|
3978
|
+
#: ../lib/puppet/network/http/compression.rb:37
|
3979
|
+
msgid "Puppet::Network::HTTP::Compression::Active#uncompress is deprecated."
|
3980
|
+
msgstr ""
|
3981
|
+
|
3982
|
+
#: ../lib/puppet/network/http/compression.rb:77
|
3983
|
+
msgid "Puppet::Network::HTTP::Compression::ZlibAdapter#uncompress is deprecated."
|
3984
|
+
msgstr ""
|
3985
|
+
|
3986
|
+
#: ../lib/puppet/network/http/compression.rb:104
|
3987
|
+
msgid "Puppet::Network::HTTP::Compression::None#uncompress_body is deprecated."
|
3988
|
+
msgstr ""
|
3989
|
+
|
3990
|
+
#: ../lib/puppet/network/http/compression.rb:113
|
3991
|
+
msgid "Puppet::Network::HTTP::Compression::None#uncompress is deprecated."
|
3992
|
+
msgstr ""
|
3993
|
+
|
3994
|
+
#: ../lib/puppet/network/http/compression.rb:120
|
3995
|
+
msgid "Puppet::Network::HTTP::Compression::IdentityAdapter#uncompress is deprecated."
|
3996
|
+
msgstr ""
|
3997
|
+
|
3925
3998
|
#: ../lib/puppet/network/http/connection.rb:56
|
3926
3999
|
msgid "Unrecognized option(s): %{opts}"
|
3927
4000
|
msgstr ""
|
@@ -3930,36 +4003,40 @@ msgstr ""
|
|
3930
4003
|
msgid "Expected an instance of Puppet::SSL::Verifier but was passed a %{klass}"
|
3931
4004
|
msgstr ""
|
3932
4005
|
|
3933
|
-
#: ../lib/puppet/network/http/connection.rb:
|
4006
|
+
#: ../lib/puppet/network/http/connection.rb:229 ../lib/puppet/network/http/connection_adapter.rb:174
|
3934
4007
|
msgid "Too many HTTP redirections for %{host}:%{port}"
|
3935
4008
|
msgstr ""
|
3936
4009
|
|
3937
4010
|
#. TRANSLATORS: Used in the phrase:
|
3938
4011
|
#. "Received a response from the remote server."
|
3939
|
-
#: ../lib/puppet/network/http/connection.rb:
|
4012
|
+
#: ../lib/puppet/network/http/connection.rb:259
|
3940
4013
|
msgid "the remote server"
|
3941
4014
|
msgstr ""
|
3942
4015
|
|
3943
|
-
#: ../lib/puppet/network/http/connection.rb:
|
4016
|
+
#: ../lib/puppet/network/http/connection.rb:263
|
3944
4017
|
msgid "Received a %{status_code} response from %{server_hostname}, but the Retry-After header value of \"%{retry_after}\" could not be converted to an integer or RFC 2822 date."
|
3945
4018
|
msgstr ""
|
3946
4019
|
|
3947
|
-
#: ../lib/puppet/network/http/connection.rb:
|
4020
|
+
#: ../lib/puppet/network/http/connection.rb:274
|
3948
4021
|
msgid "Received a %{status_code} response from %{server_hostname}. Sleeping for %{retry_sleep} seconds before retrying the request."
|
3949
4022
|
msgstr ""
|
3950
4023
|
|
3951
|
-
#: ../lib/puppet/network/http/connection.rb:
|
4024
|
+
#: ../lib/puppet/network/http/connection.rb:335
|
3952
4025
|
msgid "request %{uri} interrupted after %{elapsed} seconds"
|
3953
4026
|
msgstr ""
|
3954
4027
|
|
3955
|
-
#: ../lib/puppet/network/http/connection.rb:
|
4028
|
+
#: ../lib/puppet/network/http/connection.rb:337
|
3956
4029
|
msgid "request %{uri} timed out after %{elapsed} seconds"
|
3957
4030
|
msgstr ""
|
3958
4031
|
|
3959
|
-
#: ../lib/puppet/network/http/connection.rb:
|
4032
|
+
#: ../lib/puppet/network/http/connection.rb:339
|
3960
4033
|
msgid "request %{uri} failed: %{msg}"
|
3961
4034
|
msgstr ""
|
3962
4035
|
|
4036
|
+
#: ../lib/puppet/network/http/connection.rb:346
|
4037
|
+
msgid "Puppet::Network::HTTP::Connection is deprecated. Please use Puppet::Network::HTTP::ConnectionAdapter instead."
|
4038
|
+
msgstr ""
|
4039
|
+
|
3963
4040
|
#: ../lib/puppet/network/http/error.rb:23
|
3964
4041
|
msgid "Not Acceptable: %{message}"
|
3965
4042
|
msgstr ""
|
@@ -4004,7 +4081,11 @@ msgstr ""
|
|
4004
4081
|
msgid "Could not resolve %{ip}: %{detail}"
|
4005
4082
|
msgstr ""
|
4006
4083
|
|
4007
|
-
#: ../lib/puppet/network/http/
|
4084
|
+
#: ../lib/puppet/network/http/nocache_pool.rb:6
|
4085
|
+
msgid "Puppet::Network::HTTP::NoCachePool is deprecated."
|
4086
|
+
msgstr ""
|
4087
|
+
|
4088
|
+
#: ../lib/puppet/network/http/pool.rb:66
|
4008
4089
|
msgid "Failed to close connection for %{site}: %{detail}"
|
4009
4090
|
msgstr ""
|
4010
4091
|
|
@@ -4021,12 +4102,12 @@ msgid "Missing required Accept header"
|
|
4021
4102
|
msgstr ""
|
4022
4103
|
|
4023
4104
|
#. TRANSLATORS 'ssl_context' is an argument and should not be translated
|
4024
|
-
#: ../lib/puppet/network/http_pool.rb:
|
4105
|
+
#: ../lib/puppet/network/http_pool.rb:81
|
4025
4106
|
msgid "An ssl_context is required when connecting to 'https://%{host}:%{port}'"
|
4026
4107
|
msgstr ""
|
4027
4108
|
|
4028
4109
|
#. TRANSLATORS 'ssl_context' is an argument and should not be translated
|
4029
|
-
#: ../lib/puppet/network/http_pool.rb:
|
4110
|
+
#: ../lib/puppet/network/http_pool.rb:89
|
4030
4111
|
msgid "An ssl_context is unnecessary when connecting to 'http://%{host}:%{port}' and will be ignored"
|
4031
4112
|
msgstr ""
|
4032
4113
|
|
@@ -4078,11 +4159,11 @@ msgstr ""
|
|
4078
4159
|
msgid "Trusted node data modified for node %{name}"
|
4079
4160
|
msgstr ""
|
4080
4161
|
|
4081
|
-
#: ../lib/puppet/node/environment.rb:
|
4162
|
+
#: ../lib/puppet/node/environment.rb:212
|
4082
4163
|
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."
|
4083
4164
|
msgstr ""
|
4084
4165
|
|
4085
|
-
#: ../lib/puppet/node/environment.rb:
|
4166
|
+
#: ../lib/puppet/node/environment.rb:561 ../lib/puppet/pops/loaders.rb:300
|
4086
4167
|
msgid "Could not parse for environment %{env}: %{detail}"
|
4087
4168
|
msgstr ""
|
4088
4169
|
|
@@ -4153,15 +4234,15 @@ msgstr ""
|
|
4153
4234
|
msgid "Given value for '%{varname}' has illegal type - got: %{type}"
|
4154
4235
|
msgstr ""
|
4155
4236
|
|
4156
|
-
#: ../lib/puppet/pal/pal_impl.rb:
|
4237
|
+
#: ../lib/puppet/pal/pal_impl.rb:485
|
4157
4238
|
msgid "Puppet Pal: %{what}"
|
4158
4239
|
msgstr ""
|
4159
4240
|
|
4160
|
-
#: ../lib/puppet/pal/pal_impl.rb:
|
4241
|
+
#: ../lib/puppet/pal/pal_impl.rb:499
|
4161
4242
|
msgid "Cannot use '%{a_term}' and '%{b_term}' at the same time"
|
4162
4243
|
msgstr ""
|
4163
4244
|
|
4164
|
-
#: ../lib/puppet/pal/pal_impl.rb:
|
4245
|
+
#: ../lib/puppet/pal/pal_impl.rb:506
|
4165
4246
|
msgid "A block must be given"
|
4166
4247
|
msgstr ""
|
4167
4248
|
|
@@ -4226,7 +4307,7 @@ msgstr ""
|
|
4226
4307
|
msgid "Node inheritance is removed in Puppet 4.0.0. See http://links.puppet.com/puppet-node-inheritance-deprecation"
|
4227
4308
|
msgstr ""
|
4228
4309
|
|
4229
|
-
#: ../lib/puppet/parser/ast/pops_bridge.rb:
|
4310
|
+
#: ../lib/puppet/parser/ast/pops_bridge.rb:186
|
4230
4311
|
msgid "Instantiating Resource with type checked parameters - scope is missing, skipping type checking."
|
4231
4312
|
msgstr ""
|
4232
4313
|
|
@@ -4251,7 +4332,7 @@ msgid "For more information, see https://puppet.com/docs/puppet/latest/environme
|
|
4251
4332
|
msgstr ""
|
4252
4333
|
|
4253
4334
|
#. TRANSLATORS "stage" is a keyword in Puppet and should not be translated
|
4254
|
-
#: ../lib/puppet/parser/compiler.rb:98 ../lib/puppet/parser/environment_compiler.rb:
|
4335
|
+
#: ../lib/puppet/parser/compiler.rb:98 ../lib/puppet/parser/environment_compiler.rb:137
|
4255
4336
|
msgid "Only classes can set 'stage'; normal resources like %{resource} cannot change run stage"
|
4256
4337
|
msgstr ""
|
4257
4338
|
|
@@ -4337,60 +4418,60 @@ msgstr ""
|
|
4337
4418
|
msgid "Application %{app} maps component %{res} to multiple nodes"
|
4338
4419
|
msgstr ""
|
4339
4420
|
|
4340
|
-
#: ../lib/puppet/parser/compiler.rb:
|
4421
|
+
#: ../lib/puppet/parser/compiler.rb:367
|
4422
|
+
msgid "Could not find node statement with name 'default' or '%{names}'"
|
4423
|
+
msgstr ""
|
4424
|
+
|
4425
|
+
#: ../lib/puppet/parser/compiler.rb:385
|
4341
4426
|
msgid "No source for scope passed to evaluate_classes"
|
4342
4427
|
msgstr ""
|
4343
4428
|
|
4344
|
-
#: ../lib/puppet/parser/compiler.rb:
|
4429
|
+
#: ../lib/puppet/parser/compiler.rb:401
|
4345
4430
|
msgid "Could not find class %{name} for %{node}"
|
4346
4431
|
msgstr ""
|
4347
4432
|
|
4348
|
-
#: ../lib/puppet/parser/compiler.rb:
|
4433
|
+
#: ../lib/puppet/parser/compiler.rb:503
|
4349
4434
|
msgid "Capability mapping error: %{kind} clause references nonexistent %{component_type} %{component_name}"
|
4350
4435
|
msgstr ""
|
4351
4436
|
|
4352
|
-
#: ../lib/puppet/parser/compiler.rb:
|
4353
|
-
msgid "Could not find node statement with name 'default' or '%{names}'"
|
4354
|
-
msgstr ""
|
4355
|
-
|
4356
|
-
#: ../lib/puppet/parser/compiler.rb:523
|
4437
|
+
#: ../lib/puppet/parser/compiler.rb:526
|
4357
4438
|
msgid "Evaluated collections"
|
4358
4439
|
msgstr ""
|
4359
4440
|
|
4360
|
-
#: ../lib/puppet/parser/compiler.rb:
|
4441
|
+
#: ../lib/puppet/parser/compiler.rb:541
|
4361
4442
|
msgid "Evaluated definitions"
|
4362
4443
|
msgstr ""
|
4363
4444
|
|
4364
|
-
#: ../lib/puppet/parser/compiler.rb:
|
4445
|
+
#: ../lib/puppet/parser/compiler.rb:570
|
4365
4446
|
msgid "Iterated (%{count}) on generators"
|
4366
4447
|
msgstr ""
|
4367
4448
|
|
4368
|
-
#: ../lib/puppet/parser/compiler.rb:
|
4449
|
+
#: ../lib/puppet/parser/compiler.rb:581
|
4369
4450
|
msgid "Somehow looped more than 1000 times while evaluating host catalog"
|
4370
4451
|
msgstr ""
|
4371
4452
|
|
4372
|
-
#: ../lib/puppet/parser/compiler.rb:
|
4453
|
+
#: ../lib/puppet/parser/compiler.rb:613
|
4373
4454
|
msgid "Could not find resource(s) %{resources} for overriding"
|
4374
4455
|
msgstr ""
|
4375
4456
|
|
4376
|
-
#: ../lib/puppet/parser/compiler.rb:
|
4457
|
+
#: ../lib/puppet/parser/compiler.rb:624
|
4377
4458
|
msgid "Failed to realize virtual resources %{resources}"
|
4378
4459
|
msgstr ""
|
4379
4460
|
|
4380
4461
|
#. TRANSLATORS "main" is a function name and should not be translated
|
4381
|
-
#: ../lib/puppet/parser/compiler.rb:
|
4462
|
+
#: ../lib/puppet/parser/compiler.rb:657
|
4382
4463
|
msgid "Couldn't find main"
|
4383
4464
|
msgstr ""
|
4384
4465
|
|
4385
|
-
#: ../lib/puppet/parser/compiler.rb:
|
4466
|
+
#: ../lib/puppet/parser/compiler.rb:730
|
4386
4467
|
msgid "For initializing compiler"
|
4387
4468
|
msgstr ""
|
4388
4469
|
|
4389
|
-
#: ../lib/puppet/parser/compiler/catalog_validator/env_relationship_validator.rb:
|
4470
|
+
#: ../lib/puppet/parser/compiler/catalog_validator/env_relationship_validator.rb:19
|
4390
4471
|
msgid "Capability '%{cap}' referenced by '%{param}' is never exported"
|
4391
4472
|
msgstr ""
|
4392
4473
|
|
4393
|
-
#: ../lib/puppet/parser/compiler/catalog_validator/env_relationship_validator.rb:
|
4474
|
+
#: ../lib/puppet/parser/compiler/catalog_validator/env_relationship_validator.rb:58
|
4394
4475
|
msgid "'%{value}' is exported by both '%{hash}' and '%{resource}'"
|
4395
4476
|
msgstr ""
|
4396
4477
|
|
@@ -4402,95 +4483,95 @@ msgstr ""
|
|
4402
4483
|
msgid "Could not find resource '%{res}' in parameter '%{param}'"
|
4403
4484
|
msgstr ""
|
4404
4485
|
|
4405
|
-
#: ../lib/puppet/parser/compiler/catalog_validator/site_validator.rb:
|
4486
|
+
#: ../lib/puppet/parser/compiler/catalog_validator/site_validator.rb:16
|
4406
4487
|
msgid "Only application components can appear inside a site - %{res} is not allowed"
|
4407
4488
|
msgstr ""
|
4408
4489
|
|
4409
|
-
#: ../lib/puppet/parser/environment_compiler.rb:
|
4490
|
+
#: ../lib/puppet/parser/environment_compiler.rb:13
|
4410
4491
|
msgid "%{detail} in environment %{env}"
|
4411
4492
|
msgstr ""
|
4412
4493
|
|
4413
|
-
#: ../lib/puppet/parser/environment_compiler.rb:
|
4494
|
+
#: ../lib/puppet/parser/environment_compiler.rb:62
|
4414
4495
|
msgid "For compiling environment catalog %{env}"
|
4415
4496
|
msgstr ""
|
4416
4497
|
|
4417
|
-
#: ../lib/puppet/parser/environment_compiler.rb:
|
4498
|
+
#: ../lib/puppet/parser/environment_compiler.rb:65
|
4418
4499
|
msgid "Env Compile: Created settings scope"
|
4419
4500
|
msgstr ""
|
4420
4501
|
|
4421
|
-
#: ../lib/puppet/parser/environment_compiler.rb:
|
4502
|
+
#: ../lib/puppet/parser/environment_compiler.rb:67
|
4422
4503
|
msgid "Env Compile: Evaluated main"
|
4423
4504
|
msgstr ""
|
4424
4505
|
|
4425
|
-
#: ../lib/puppet/parser/environment_compiler.rb:
|
4506
|
+
#: ../lib/puppet/parser/environment_compiler.rb:69
|
4426
4507
|
msgid "Env Compile: Evaluated site"
|
4427
4508
|
msgstr ""
|
4428
4509
|
|
4429
|
-
#: ../lib/puppet/parser/environment_compiler.rb:
|
4510
|
+
#: ../lib/puppet/parser/environment_compiler.rb:71
|
4430
4511
|
msgid "Env Compile: Evaluated application instances"
|
4431
4512
|
msgstr ""
|
4432
4513
|
|
4433
|
-
#: ../lib/puppet/parser/environment_compiler.rb:
|
4514
|
+
#: ../lib/puppet/parser/environment_compiler.rb:73
|
4434
4515
|
msgid "Env Compile: Prune"
|
4435
4516
|
msgstr ""
|
4436
4517
|
|
4437
|
-
#: ../lib/puppet/parser/environment_compiler.rb:
|
4518
|
+
#: ../lib/puppet/parser/environment_compiler.rb:75
|
4438
4519
|
msgid "Env Compile: Validate Catalog pre-finish"
|
4439
4520
|
msgstr ""
|
4440
4521
|
|
4441
|
-
#: ../lib/puppet/parser/environment_compiler.rb:
|
4522
|
+
#: ../lib/puppet/parser/environment_compiler.rb:79
|
4442
4523
|
msgid "Env Compile: Finished catalog"
|
4443
4524
|
msgstr ""
|
4444
4525
|
|
4445
|
-
#: ../lib/puppet/parser/environment_compiler.rb:
|
4526
|
+
#: ../lib/puppet/parser/environment_compiler.rb:83
|
4446
4527
|
msgid "Env Compile: Validate Catalog final"
|
4447
4528
|
msgstr ""
|
4448
4529
|
|
4449
|
-
#: ../lib/puppet/parser/environment_compiler.rb:
|
4530
|
+
#: ../lib/puppet/parser/environment_compiler.rb:159
|
4450
4531
|
msgid "Environment Compiler: Could not find a site definition to evaluate"
|
4451
4532
|
msgstr ""
|
4452
4533
|
|
4453
|
-
#: ../lib/puppet/parser/environment_compiler.rb:
|
4534
|
+
#: ../lib/puppet/parser/environment_compiler.rb:165
|
4454
4535
|
msgid "Evaluated application %{resource}"
|
4455
4536
|
msgstr ""
|
4456
4537
|
|
4457
|
-
#: ../lib/puppet/parser/functions.rb:
|
4538
|
+
#: ../lib/puppet/parser/functions.rb:43
|
4458
4539
|
msgid "The method 'Puppet::Parser::Functions.autoloader#loadall' is deprecated in favor of using 'Scope#call_function'."
|
4459
4540
|
msgstr ""
|
4460
4541
|
|
4461
|
-
#: ../lib/puppet/parser/functions.rb:
|
4542
|
+
#: ../lib/puppet/parser/functions.rb:51
|
4462
4543
|
msgid "The method 'Puppet::Parser::Functions.autoloader#load(\"%{name}\")' is deprecated in favor of using 'Scope#call_function'."
|
4463
4544
|
msgstr ""
|
4464
4545
|
|
4465
|
-
#: ../lib/puppet/parser/functions.rb:
|
4546
|
+
#: ../lib/puppet/parser/functions.rb:59
|
4466
4547
|
msgid "The method 'Puppet::Parser::Functions.autoloader#loaded?(\"%{name}\")' is deprecated in favor of using 'Scope#call_function'."
|
4467
4548
|
msgstr ""
|
4468
4549
|
|
4469
|
-
#: ../lib/puppet/parser/functions.rb:
|
4550
|
+
#: ../lib/puppet/parser/functions.rb:186
|
4470
4551
|
msgid "Overwriting previous definition for function %{name}"
|
4471
4552
|
msgstr ""
|
4472
4553
|
|
4473
|
-
#: ../lib/puppet/parser/functions.rb:
|
4554
|
+
#: ../lib/puppet/parser/functions.rb:192
|
4474
4555
|
msgid "Invalid statement type %{type}"
|
4475
4556
|
msgstr ""
|
4476
4557
|
|
4477
|
-
#: ../lib/puppet/parser/functions.rb:
|
4558
|
+
#: ../lib/puppet/parser/functions.rb:204
|
4478
4559
|
msgid "Called %{name}"
|
4479
4560
|
msgstr ""
|
4480
4561
|
|
4481
|
-
#: ../lib/puppet/parser/functions.rb:
|
4562
|
+
#: ../lib/puppet/parser/functions.rb:207
|
4482
4563
|
msgid "%{name}(): Wrong number of arguments given (%{arg_count} for %{arity})"
|
4483
4564
|
msgstr ""
|
4484
4565
|
|
4485
|
-
#: ../lib/puppet/parser/functions.rb:
|
4566
|
+
#: ../lib/puppet/parser/functions.rb:209
|
4486
4567
|
msgid "%{name}(): Wrong number of arguments given (%{arg_count} for minimum %{min_arg_count})"
|
4487
4568
|
msgstr ""
|
4488
4569
|
|
4489
|
-
#: ../lib/puppet/parser/functions.rb:
|
4570
|
+
#: ../lib/puppet/parser/functions.rb:215
|
4490
4571
|
msgid "custom functions must be called with a single array that contains the arguments. For example, function_example([1]) instead of function_example(1)"
|
4491
4572
|
msgstr ""
|
4492
4573
|
|
4493
|
-
#: ../lib/puppet/parser/functions.rb:
|
4574
|
+
#: ../lib/puppet/parser/functions.rb:314
|
4494
4575
|
msgid "%{name}() can only be called using the 4.x function API. See Scope#call_function"
|
4495
4576
|
msgstr ""
|
4496
4577
|
|
@@ -4620,23 +4701,23 @@ msgstr ""
|
|
4620
4701
|
msgid "Attempt to reassign attribute '%{name}' in '%{resource}' caused by multiple consumed mappings to the same attribute"
|
4621
4702
|
msgstr ""
|
4622
4703
|
|
4623
|
-
#: ../lib/puppet/parser/resource.rb:
|
4704
|
+
#: ../lib/puppet/parser/resource.rb:365
|
4624
4705
|
msgid "Parameter '%{name}' is already set on %{resource}; cannot redefine"
|
4625
4706
|
msgstr ""
|
4626
4707
|
|
4627
|
-
#: ../lib/puppet/parser/resource.rb:
|
4708
|
+
#: ../lib/puppet/parser/resource.rb:368
|
4628
4709
|
msgid "Parameter '%{name}' is already set on %{resource} at %{error_location}; cannot redefine"
|
4629
4710
|
msgstr ""
|
4630
4711
|
|
4631
|
-
#: ../lib/puppet/parser/resource.rb:
|
4712
|
+
#: ../lib/puppet/parser/resource.rb:373
|
4632
4713
|
msgid "Parameter '%{name}' is already set on %{resource} by %{source}; cannot redefine"
|
4633
4714
|
msgstr ""
|
4634
4715
|
|
4635
|
-
#: ../lib/puppet/parser/resource.rb:
|
4716
|
+
#: ../lib/puppet/parser/resource.rb:376
|
4636
4717
|
msgid "Parameter '%{name}' is already set on %{resource} by %{source} at %{error_location}; cannot redefine"
|
4637
4718
|
msgstr ""
|
4638
4719
|
|
4639
|
-
#: ../lib/puppet/parser/resource.rb:
|
4720
|
+
#: ../lib/puppet/parser/resource.rb:415
|
4640
4721
|
msgid "Duplicate parameter '%{param}' for on %{resource}"
|
4641
4722
|
msgstr ""
|
4642
4723
|
|
@@ -5662,6 +5743,10 @@ msgstr ""
|
|
5662
5743
|
msgid "Failed to load: %{type_name}"
|
5663
5744
|
msgstr ""
|
5664
5745
|
|
5746
|
+
#: ../lib/puppet/pops/issues.rb:925
|
5747
|
+
msgid "Use of the application-orchestration %{expr} is deprecated. See https://puppet.com/docs/puppet/5.5/deprecated_language.html"
|
5748
|
+
msgstr ""
|
5749
|
+
|
5665
5750
|
#: ../lib/puppet/pops/label_provider.rb:76
|
5666
5751
|
msgid "<%{string}> does not appear to contain a word"
|
5667
5752
|
msgstr ""
|
@@ -5724,23 +5809,23 @@ msgstr ""
|
|
5724
5809
|
msgid "The code loaded from %{source} contains additional logic - can only contain the function %{name}"
|
5725
5810
|
msgstr ""
|
5726
5811
|
|
5727
|
-
#: ../lib/puppet/pops/loader/puppet_plan_instantiator.rb:
|
5812
|
+
#: ../lib/puppet/pops/loader/puppet_plan_instantiator.rb:34
|
5728
5813
|
msgid "The code loaded from %{source_ref} does not define the plan '%{plan_name}' - it is empty."
|
5729
5814
|
msgstr ""
|
5730
5815
|
|
5731
|
-
#: ../lib/puppet/pops/loader/puppet_plan_instantiator.rb:
|
5816
|
+
#: ../lib/puppet/pops/loader/puppet_plan_instantiator.rb:38
|
5732
5817
|
msgid "The code loaded from %{source_ref} must contain only the plan '%{plan_name}' - it has additional definitions."
|
5733
5818
|
msgstr ""
|
5734
5819
|
|
5735
|
-
#: ../lib/puppet/pops/loader/puppet_plan_instantiator.rb:
|
5820
|
+
#: ../lib/puppet/pops/loader/puppet_plan_instantiator.rb:43
|
5736
5821
|
msgid "The code loaded from %{source_ref} does not define the plan '%{plan_name}' - no plan found."
|
5737
5822
|
msgstr ""
|
5738
5823
|
|
5739
|
-
#: ../lib/puppet/pops/loader/puppet_plan_instantiator.rb:
|
5824
|
+
#: ../lib/puppet/pops/loader/puppet_plan_instantiator.rb:48
|
5740
5825
|
msgid "The code loaded from %{source_ref} produced plan with the wrong name, expected %{expected}, actual %{actual}"
|
5741
5826
|
msgstr ""
|
5742
5827
|
|
5743
|
-
#: ../lib/puppet/pops/loader/puppet_plan_instantiator.rb:
|
5828
|
+
#: ../lib/puppet/pops/loader/puppet_plan_instantiator.rb:51
|
5744
5829
|
msgid "The code loaded from %{source} contains additional logic - can only contain the plan %{plan_name}"
|
5745
5830
|
msgstr ""
|
5746
5831
|
|
@@ -5829,23 +5914,23 @@ msgstr ""
|
|
5829
5914
|
msgid "The code loaded from %{source_ref} contains additional logic - can only contain the type '%{name}'"
|
5830
5915
|
msgstr ""
|
5831
5916
|
|
5832
|
-
#: ../lib/puppet/pops/loaders.rb:
|
5917
|
+
#: ../lib/puppet/pops/loaders.rb:34
|
5833
5918
|
msgid "Attempt to redefine already initialized loaders for environment"
|
5834
5919
|
msgstr ""
|
5835
5920
|
|
5836
|
-
#: ../lib/puppet/pops/loaders.rb:
|
5921
|
+
#: ../lib/puppet/pops/loaders.rb:176
|
5837
5922
|
msgid "Internal Error: Puppet Context ':loaders' missing"
|
5838
5923
|
msgstr ""
|
5839
5924
|
|
5840
|
-
#: ../lib/puppet/pops/loaders.rb:
|
5925
|
+
#: ../lib/puppet/pops/loaders.rb:190
|
5841
5926
|
msgid "Unable to find loader named '%{loader_name}'"
|
5842
5927
|
msgstr ""
|
5843
5928
|
|
5844
|
-
#: ../lib/puppet/pops/loaders.rb:
|
5929
|
+
#: ../lib/puppet/pops/loaders.rb:211
|
5845
5930
|
msgid "Internal Error: did not find public loader for module: '%{module_name}'"
|
5846
5931
|
msgstr ""
|
5847
5932
|
|
5848
|
-
#: ../lib/puppet/pops/loaders.rb:
|
5933
|
+
#: ../lib/puppet/pops/loaders.rb:257
|
5849
5934
|
msgid "Internal Error: Attempt to redefine loader named '%{name}'"
|
5850
5935
|
msgstr ""
|
5851
5936
|
|
@@ -5884,7 +5969,7 @@ msgstr ""
|
|
5884
5969
|
msgid "%{config_path}: Use of 'hiera.yaml' version 4 is deprecated. It should be converted to version 5"
|
5885
5970
|
msgstr ""
|
5886
5971
|
|
5887
|
-
#: ../lib/puppet/pops/lookup/invocation.rb:
|
5972
|
+
#: ../lib/puppet/pops/lookup/invocation.rb:91
|
5888
5973
|
msgid "Recursive lookup detected in [%{name_stack}]"
|
5889
5974
|
msgstr ""
|
5890
5975
|
|
@@ -6052,7 +6137,7 @@ msgstr ""
|
|
6052
6137
|
msgid "digit expected"
|
6053
6138
|
msgstr ""
|
6054
6139
|
|
6055
|
-
#: ../lib/puppet/pops/resource/resource_type_impl.rb:167 ../lib/puppet/type.rb:
|
6140
|
+
#: ../lib/puppet/pops/resource/resource_type_impl.rb:167 ../lib/puppet/type.rb:444
|
6056
6141
|
msgid "you must specify title patterns when there are two or more key attributes"
|
6057
6142
|
msgstr ""
|
6058
6143
|
|
@@ -6294,7 +6379,7 @@ msgstr ""
|
|
6294
6379
|
msgid "Options 'include_containers' and 'include_values' cannot both be false"
|
6295
6380
|
msgstr ""
|
6296
6381
|
|
6297
|
-
#: ../lib/puppet/pops/types/type_calculator.rb:
|
6382
|
+
#: ../lib/puppet/pops/types/type_calculator.rb:187
|
6298
6383
|
msgid "TypeCalculator.enumerable is deprecated. Use iterable"
|
6299
6384
|
msgstr ""
|
6300
6385
|
|
@@ -6489,27 +6574,31 @@ msgstr ""
|
|
6489
6574
|
msgid "Invalid value %{value}: %{property} must be an Integer!"
|
6490
6575
|
msgstr ""
|
6491
6576
|
|
6492
|
-
#: ../lib/puppet/provider/aix_object.rb:
|
6577
|
+
#: ../lib/puppet/provider/aix_object.rb:333
|
6578
|
+
msgid "Cannot have both 'forcelocal' and 'ia_load_module' at the same time!"
|
6579
|
+
msgstr ""
|
6580
|
+
|
6581
|
+
#: ../lib/puppet/provider/aix_object.rb:376
|
6493
6582
|
msgid "Could not set %{property} on %{resource}[%{name}]: %{detail}"
|
6494
6583
|
msgstr ""
|
6495
6584
|
|
6496
|
-
#: ../lib/puppet/provider/aix_object.rb:
|
6585
|
+
#: ../lib/puppet/provider/aix_object.rb:402
|
6497
6586
|
msgid "attributes is setting the %{properties} properties via. the %{attributes} attributes, respectively! Please specify these property values in the resource declaration instead."
|
6498
6587
|
msgstr ""
|
6499
6588
|
|
6500
|
-
#: ../lib/puppet/provider/aix_object.rb:
|
6589
|
+
#: ../lib/puppet/provider/aix_object.rb:404 ../lib/puppet/provider/aix_object.rb:413
|
6501
6590
|
msgid "Could not set attributes on %{resource}[%{name}]: %{detail}"
|
6502
6591
|
msgstr ""
|
6503
6592
|
|
6504
|
-
#: ../lib/puppet/provider/aix_object.rb:
|
6593
|
+
#: ../lib/puppet/provider/aix_object.rb:425
|
6505
6594
|
msgid "aix.object_info(): Could not find %{resource}[%{name}]"
|
6506
6595
|
msgstr ""
|
6507
6596
|
|
6508
|
-
#: ../lib/puppet/provider/aix_object.rb:
|
6597
|
+
#: ../lib/puppet/provider/aix_object.rb:471 ../lib/puppet/provider/nameservice.rb:182 ../lib/puppet/provider/nameservice/directoryservice.rb:425
|
6509
6598
|
msgid "Could not create %{resource} %{name}: %{detail}"
|
6510
6599
|
msgstr ""
|
6511
6600
|
|
6512
|
-
#: ../lib/puppet/provider/aix_object.rb:
|
6601
|
+
#: ../lib/puppet/provider/aix_object.rb:483 ../lib/puppet/provider/nameservice.rb:196
|
6513
6602
|
msgid "Could not delete %{resource} %{name}: %{detail}"
|
6514
6603
|
msgstr ""
|
6515
6604
|
|
@@ -6574,15 +6663,15 @@ msgstr ""
|
|
6574
6663
|
msgid "%{resource_name}: %{mode_part_type} set to SYSTEM. SYSTEM permissions cannot be set below FullControl ('7')"
|
6575
6664
|
msgstr ""
|
6576
6665
|
|
6577
|
-
#: ../lib/puppet/provider/group/aix.rb:
|
6666
|
+
#: ../lib/puppet/provider/group/aix.rb:48
|
6578
6667
|
msgid "No AIX group exists with a group name or gid of %{group}!"
|
6579
6668
|
msgstr ""
|
6580
6669
|
|
6581
|
-
#: ../lib/puppet/provider/group/groupadd.rb:
|
6670
|
+
#: ../lib/puppet/provider/group/groupadd.rb:11 ../lib/puppet/provider/group/pw.rb:14
|
6582
6671
|
msgid "GID must be an integer"
|
6583
6672
|
msgstr ""
|
6584
6673
|
|
6585
|
-
#: ../lib/puppet/provider/group/groupadd.rb:
|
6674
|
+
#: ../lib/puppet/provider/group/groupadd.rb:44
|
6586
6675
|
msgid "GID %{resource} already exists, use allowdupe to force group creation"
|
6587
6676
|
msgstr ""
|
6588
6677
|
|
@@ -6665,27 +6754,31 @@ msgstr ""
|
|
6665
6754
|
msgid "Could not perform network device prefetch: %{detail}"
|
6666
6755
|
msgstr ""
|
6667
6756
|
|
6668
|
-
#: ../lib/puppet/provider/package/aix.rb:
|
6757
|
+
#: ../lib/puppet/provider/package/aix.rb:46
|
6669
6758
|
msgid "The aix provider can only be used by root"
|
6670
6759
|
msgstr ""
|
6671
6760
|
|
6672
|
-
#: ../lib/puppet/provider/package/aix.rb:
|
6761
|
+
#: ../lib/puppet/provider/package/aix.rb:88 ../lib/puppet/provider/package/nim.rb:53
|
6673
6762
|
msgid "Failed to uninstall package '%{name}'"
|
6674
6763
|
msgstr ""
|
6675
6764
|
|
6676
|
-
#: ../lib/puppet/provider/package/aix.rb:
|
6765
|
+
#: ../lib/puppet/provider/package/aix.rb:95
|
6677
6766
|
msgid "A directory is required which will be used to find packages"
|
6678
6767
|
msgstr ""
|
6679
6768
|
|
6680
|
-
#: ../lib/puppet/provider/package/aix.rb:
|
6769
|
+
#: ../lib/puppet/provider/package/aix.rb:107
|
6681
6770
|
msgid "aix package provider is unable to downgrade packages"
|
6682
6771
|
msgstr ""
|
6683
6772
|
|
6684
|
-
#: ../lib/puppet/provider/package/aix.rb:
|
6773
|
+
#: ../lib/puppet/provider/package/aix.rb:112
|
6774
|
+
msgid "Package '%{name}' is in a %{status} state and requires manual intervention"
|
6775
|
+
msgstr ""
|
6776
|
+
|
6777
|
+
#: ../lib/puppet/provider/package/aix.rb:133
|
6685
6778
|
msgid "Could not list installed Packages: %{detail}"
|
6686
6779
|
msgstr ""
|
6687
6780
|
|
6688
|
-
#: ../lib/puppet/provider/package/aix.rb:
|
6781
|
+
#: ../lib/puppet/provider/package/aix.rb:156 ../lib/puppet/provider/package/yum.rb:332
|
6689
6782
|
msgid "Tried to get latest on a missing package"
|
6690
6783
|
msgstr ""
|
6691
6784
|
|
@@ -6701,23 +6794,23 @@ msgstr ""
|
|
6701
6794
|
msgid "Mac OS X packages must specify a package source"
|
6702
6795
|
msgstr ""
|
6703
6796
|
|
6704
|
-
#: ../lib/puppet/provider/package/apt.rb:
|
6797
|
+
#: ../lib/puppet/provider/package/apt.rb:47
|
6705
6798
|
msgid "/etc/apt/sources.list contains a cdrom source; not installing. Use 'allowcdrom' to override this failure."
|
6706
6799
|
msgstr ""
|
6707
6800
|
|
6708
|
-
#: ../lib/puppet/provider/package/apt.rb:
|
6801
|
+
#: ../lib/puppet/provider/package/apt.rb:129 ../lib/puppet/provider/package/fink.rb:55
|
6709
6802
|
msgid "Could not find latest version"
|
6710
6803
|
msgstr ""
|
6711
6804
|
|
6712
|
-
#: ../lib/puppet/provider/package/apt.rb:
|
6805
|
+
#: ../lib/puppet/provider/package/apt.rb:140 ../lib/puppet/provider/package/fink.rb:66
|
6713
6806
|
msgid "Preseeding %{response} to debconf-set-selections"
|
6714
6807
|
msgstr ""
|
6715
6808
|
|
6716
|
-
#: ../lib/puppet/provider/package/apt.rb:
|
6809
|
+
#: ../lib/puppet/provider/package/apt.rb:144 ../lib/puppet/provider/package/fink.rb:70
|
6717
6810
|
msgid "No responsefile specified or non existent, not preseeding anything"
|
6718
6811
|
msgstr ""
|
6719
6812
|
|
6720
|
-
#: ../lib/puppet/provider/package/aptitude.rb:21 ../lib/puppet/provider/package/ports.rb:20 ../lib/puppet/provider/package/portupgrade.rb:94 ../lib/puppet/provider/package/portupgrade.rb:152 ../lib/puppet/provider/package/rug.rb:28 ../lib/puppet/provider/package/up2date.rb:17 ../lib/puppet/provider/package/yum.rb:
|
6813
|
+
#: ../lib/puppet/provider/package/aptitude.rb:21 ../lib/puppet/provider/package/ports.rb:20 ../lib/puppet/provider/package/portupgrade.rb:94 ../lib/puppet/provider/package/portupgrade.rb:152 ../lib/puppet/provider/package/rug.rb:28 ../lib/puppet/provider/package/up2date.rb:17 ../lib/puppet/provider/package/yum.rb:312 ../lib/puppet/provider/package/zypper.rb:146
|
6721
6814
|
msgid "Could not find package %{name}"
|
6722
6815
|
msgstr ""
|
6723
6816
|
|
@@ -6753,11 +6846,11 @@ msgstr ""
|
|
6753
6846
|
msgid "You cannot install dpkg packages without a source"
|
6754
6847
|
msgstr ""
|
6755
6848
|
|
6756
|
-
#: ../lib/puppet/provider/package/dpkg.rb:
|
6849
|
+
#: ../lib/puppet/provider/package/dpkg.rb:118
|
6757
6850
|
msgid "Could not update: You cannot install dpkg packages without a source"
|
6758
6851
|
msgstr ""
|
6759
6852
|
|
6760
|
-
#: ../lib/puppet/provider/package/dpkg.rb:
|
6853
|
+
#: ../lib/puppet/provider/package/dpkg.rb:122
|
6761
6854
|
msgid "source doesn't contain named package, but %{name}"
|
6762
6855
|
msgstr ""
|
6763
6856
|
|
@@ -6765,27 +6858,27 @@ msgstr ""
|
|
6765
6858
|
msgid "source is defined but does not have trailing slash, ignoring %{source}"
|
6766
6859
|
msgstr ""
|
6767
6860
|
|
6768
|
-
#: ../lib/puppet/provider/package/gem.rb:
|
6861
|
+
#: ../lib/puppet/provider/package/gem.rb:100
|
6769
6862
|
msgid "Could not list gems: %{detail}"
|
6770
6863
|
msgstr ""
|
6771
6864
|
|
6772
|
-
#: ../lib/puppet/provider/package/gem.rb:
|
6865
|
+
#: ../lib/puppet/provider/package/gem.rb:126
|
6773
6866
|
msgid "Could not match %{desc}"
|
6774
6867
|
msgstr ""
|
6775
6868
|
|
6776
|
-
#: ../lib/puppet/provider/package/gem.rb:
|
6869
|
+
#: ../lib/puppet/provider/package/gem.rb:204
|
6777
6870
|
msgid "Invalid source '%{uri}': %{detail}"
|
6778
6871
|
msgstr ""
|
6779
6872
|
|
6780
|
-
#: ../lib/puppet/provider/package/gem.rb:
|
6873
|
+
#: ../lib/puppet/provider/package/gem.rb:215
|
6781
6874
|
msgid "puppet:// URLs are not supported as gem sources"
|
6782
6875
|
msgstr ""
|
6783
6876
|
|
6784
|
-
#: ../lib/puppet/provider/package/gem.rb:
|
6877
|
+
#: ../lib/puppet/provider/package/gem.rb:231
|
6785
6878
|
msgid "Could not install: %{output}"
|
6786
6879
|
msgstr ""
|
6787
6880
|
|
6788
|
-
#: ../lib/puppet/provider/package/gem.rb:
|
6881
|
+
#: ../lib/puppet/provider/package/gem.rb:257
|
6789
6882
|
msgid "Could not uninstall: %{output}"
|
6790
6883
|
msgstr ""
|
6791
6884
|
|
@@ -6843,19 +6936,19 @@ msgid ""
|
|
6843
6936
|
"'%{line}'"
|
6844
6937
|
msgstr ""
|
6845
6938
|
|
6846
|
-
#: ../lib/puppet/provider/package/openbsd.rb:
|
6939
|
+
#: ../lib/puppet/provider/package/openbsd.rb:51 ../lib/puppet/provider/package/opkg.rb:26
|
6847
6940
|
msgid "Failed to match line %{line}"
|
6848
6941
|
msgstr ""
|
6849
6942
|
|
6850
|
-
#: ../lib/puppet/provider/package/openbsd.rb:
|
6943
|
+
#: ../lib/puppet/provider/package/openbsd.rb:142
|
6851
6944
|
msgid "No valid installpath found in /etc/pkg.conf and no source was set"
|
6852
6945
|
msgstr ""
|
6853
6946
|
|
6854
|
-
#: ../lib/puppet/provider/package/openbsd.rb:
|
6947
|
+
#: ../lib/puppet/provider/package/openbsd.rb:146
|
6855
6948
|
msgid "You must specify a package source or configure an installpath in /etc/pkg.conf"
|
6856
6949
|
msgstr ""
|
6857
6950
|
|
6858
|
-
#: ../lib/puppet/provider/package/openbsd.rb:
|
6951
|
+
#: ../lib/puppet/provider/package/openbsd.rb:219
|
6859
6952
|
msgid "%{version} is not available for this package"
|
6860
6953
|
msgstr ""
|
6861
6954
|
|
@@ -6871,31 +6964,31 @@ msgstr ""
|
|
6871
6964
|
msgid "Error getting installed packages"
|
6872
6965
|
msgstr ""
|
6873
6966
|
|
6874
|
-
#: ../lib/puppet/provider/package/pacman.rb:
|
6967
|
+
#: ../lib/puppet/provider/package/pacman.rb:173
|
6875
6968
|
msgid "%{resource_name} is a group, but allow_virtual is false."
|
6876
6969
|
msgstr ""
|
6877
6970
|
|
6878
|
-
#: ../lib/puppet/provider/package/pacman.rb:
|
6971
|
+
#: ../lib/puppet/provider/package/pacman.rb:200
|
6879
6972
|
msgid "Refusing to uninstall package group %{resource_name}, because allow_virtual is false."
|
6880
6973
|
msgstr ""
|
6881
6974
|
|
6882
|
-
#: ../lib/puppet/provider/package/pacman.rb:
|
6975
|
+
#: ../lib/puppet/provider/package/pacman.rb:230
|
6883
6976
|
msgid "Invalid source '%{source}': %{detail}"
|
6884
6977
|
msgstr ""
|
6885
6978
|
|
6886
|
-
#: ../lib/puppet/provider/package/pacman.rb:
|
6979
|
+
#: ../lib/puppet/provider/package/pacman.rb:239
|
6887
6980
|
msgid "puppet:// URL is not supported by pacman"
|
6888
6981
|
msgstr ""
|
6889
6982
|
|
6890
|
-
#: ../lib/puppet/provider/package/pacman.rb:
|
6983
|
+
#: ../lib/puppet/provider/package/pacman.rb:241
|
6891
6984
|
msgid "Source %{source} is not supported by pacman"
|
6892
6985
|
msgstr ""
|
6893
6986
|
|
6894
|
-
#: ../lib/puppet/provider/package/pacman.rb:
|
6987
|
+
#: ../lib/puppet/provider/package/pacman.rb:251
|
6895
6988
|
msgid "Refusing to install package group %{resource_name}, because allow_virtual is false."
|
6896
6989
|
msgstr ""
|
6897
6990
|
|
6898
|
-
#: ../lib/puppet/provider/package/pip.rb:
|
6991
|
+
#: ../lib/puppet/provider/package/pip.rb:58
|
6899
6992
|
msgid "Cannot resolve pip version"
|
6900
6993
|
msgstr ""
|
6901
6994
|
|
@@ -6911,27 +7004,27 @@ msgstr ""
|
|
6911
7004
|
msgid "Unknown line format %{resource_name}: %{parse_line}"
|
6912
7005
|
msgstr ""
|
6913
7006
|
|
6914
|
-
#: ../lib/puppet/provider/package/pkg.rb:
|
7007
|
+
#: ../lib/puppet/provider/package/pkg.rb:127
|
6915
7008
|
msgid "Unable to unfreeze %{package}"
|
6916
7009
|
msgstr ""
|
6917
7010
|
|
6918
|
-
#: ../lib/puppet/provider/package/pkg.rb:
|
7011
|
+
#: ../lib/puppet/provider/package/pkg.rb:162
|
6919
7012
|
msgid "Implicit version %{should} has %{n} possible matches"
|
6920
7013
|
msgstr ""
|
6921
7014
|
|
6922
|
-
#: ../lib/puppet/provider/package/pkg.rb:
|
7015
|
+
#: ../lib/puppet/provider/package/pkg.rb:174
|
6923
7016
|
msgid "Selecting version '%{version}' for implicit '%{should}'"
|
6924
7017
|
msgstr ""
|
6925
7018
|
|
6926
|
-
#: ../lib/puppet/provider/package/pkg.rb:
|
7019
|
+
#: ../lib/puppet/provider/package/pkg.rb:179
|
6927
7020
|
msgid "No version of %{name} matching %{should} is installable, even though the package is currently installed"
|
6928
7021
|
msgstr ""
|
6929
7022
|
|
6930
|
-
#: ../lib/puppet/provider/package/pkg.rb:
|
7023
|
+
#: ../lib/puppet/provider/package/pkg.rb:198
|
6931
7024
|
msgid "pkg warning: %{warnings}"
|
6932
7025
|
msgstr ""
|
6933
7026
|
|
6934
|
-
#: ../lib/puppet/provider/package/pkg.rb:
|
7027
|
+
#: ../lib/puppet/provider/package/pkg.rb:242 ../lib/puppet/provider/package/pkg.rb:268
|
6935
7028
|
msgid "Unable to update %{package}"
|
6936
7029
|
msgstr ""
|
6937
7030
|
|
@@ -6991,11 +7084,11 @@ msgstr ""
|
|
6991
7084
|
msgid "portversion.latest() - fatal error with portversion: %{output}"
|
6992
7085
|
msgstr ""
|
6993
7086
|
|
6994
|
-
#: ../lib/puppet/provider/package/rpm.rb:
|
7087
|
+
#: ../lib/puppet/provider/package/rpm.rb:68
|
6995
7088
|
msgid "Failed to list packages"
|
6996
7089
|
msgstr ""
|
6997
7090
|
|
6998
|
-
#: ../lib/puppet/provider/package/rpm.rb:
|
7091
|
+
#: ../lib/puppet/provider/package/rpm.rb:107 ../lib/puppet/provider/package/rpm.rb:120
|
6999
7092
|
msgid "RPMs must specify a package source"
|
7000
7093
|
msgstr ""
|
7001
7094
|
|
@@ -7040,23 +7133,23 @@ msgstr ""
|
|
7040
7133
|
msgid "Don't know how to install '%{source}'"
|
7041
7134
|
msgstr ""
|
7042
7135
|
|
7043
|
-
#: ../lib/puppet/provider/package/yum.rb:
|
7136
|
+
#: ../lib/puppet/provider/package/yum.rb:69
|
7044
7137
|
msgid "The yum provider can only be used as root"
|
7045
7138
|
msgstr ""
|
7046
7139
|
|
7047
|
-
#: ../lib/puppet/provider/package/yum.rb:
|
7140
|
+
#: ../lib/puppet/provider/package/yum.rb:123
|
7048
7141
|
msgid "Could not check for updates, '%{cmd} check-update' exited with %{status}"
|
7049
7142
|
msgstr ""
|
7050
7143
|
|
7051
|
-
#: ../lib/puppet/provider/package/yum.rb:
|
7144
|
+
#: ../lib/puppet/provider/package/yum.rb:158
|
7052
7145
|
msgid "Failed to parse package name and architecture from '%{pkgname}'"
|
7053
7146
|
msgstr ""
|
7054
7147
|
|
7055
|
-
#: ../lib/puppet/provider/package/yum.rb:
|
7148
|
+
#: ../lib/puppet/provider/package/yum.rb:306
|
7056
7149
|
msgid "Could not find package %{wanted}"
|
7057
7150
|
msgstr ""
|
7058
7151
|
|
7059
|
-
#: ../lib/puppet/provider/package/yum.rb:
|
7152
|
+
#: ../lib/puppet/provider/package/yum.rb:317
|
7060
7153
|
msgid "Failed to update to version %{should}, got version %{version} instead"
|
7061
7154
|
msgstr ""
|
7062
7155
|
|
@@ -7130,48 +7223,48 @@ msgstr ""
|
|
7130
7223
|
msgid "The %{service} service is incomplete so its status will be reported as :stopped. See `svcs -xv %{fmri}` for more details."
|
7131
7224
|
msgstr ""
|
7132
7225
|
|
7133
|
-
#: ../lib/puppet/provider/service/windows.rb:
|
7226
|
+
#: ../lib/puppet/provider/service/windows.rb:22
|
7134
7227
|
msgid "Cannot enable %{resource_name}, error was: %{detail}"
|
7135
7228
|
msgstr ""
|
7136
7229
|
|
7137
|
-
#: ../lib/puppet/provider/service/windows.rb:
|
7230
|
+
#: ../lib/puppet/provider/service/windows.rb:28
|
7138
7231
|
msgid "Cannot disable %{resource_name}, error was: %{detail}"
|
7139
7232
|
msgstr ""
|
7140
7233
|
|
7141
|
-
#: ../lib/puppet/provider/service/windows.rb:
|
7234
|
+
#: ../lib/puppet/provider/service/windows.rb:34
|
7142
7235
|
msgid "Cannot enable %{resource_name} for manual start, error was: %{detail}"
|
7143
7236
|
msgstr ""
|
7144
7237
|
|
7145
|
-
#: ../lib/puppet/provider/service/windows.rb:
|
7238
|
+
#: ../lib/puppet/provider/service/windows.rb:40
|
7146
7239
|
msgid "Cannot enable %{resource_name} for delayed start, error was: %{detail}"
|
7147
7240
|
msgstr ""
|
7148
7241
|
|
7149
|
-
#: ../lib/puppet/provider/service/windows.rb:
|
7242
|
+
#: ../lib/puppet/provider/service/windows.rb:60
|
7150
7243
|
msgid "Unknown start type: %{start_type}"
|
7151
7244
|
msgstr ""
|
7152
7245
|
|
7153
|
-
#: ../lib/puppet/provider/service/windows.rb:
|
7246
|
+
#: ../lib/puppet/provider/service/windows.rb:63
|
7154
7247
|
msgid "Cannot get start type %{resource_name}, error was: %{detail}"
|
7155
7248
|
msgstr ""
|
7156
7249
|
|
7157
|
-
#: ../lib/puppet/provider/service/windows.rb:
|
7250
|
+
#: ../lib/puppet/provider/service/windows.rb:77
|
7158
7251
|
msgid "Will not start disabled service %{resource_name} without managing enable. Specify 'enable => false' to override."
|
7159
7252
|
msgstr ""
|
7160
7253
|
|
7161
|
-
#: ../lib/puppet/provider/service/windows.rb:
|
7254
|
+
#: ../lib/puppet/provider/service/windows.rb:109
|
7162
7255
|
msgid "Unknown service state '%{current_state}' for service '%{resource_name}'"
|
7163
7256
|
msgstr ""
|
7164
7257
|
|
7165
7258
|
#. TRANSLATORS 'AIX' is the name of an operating system and should not be translated
|
7166
|
-
#: ../lib/puppet/provider/user/aix.rb:
|
7259
|
+
#: ../lib/puppet/provider/user/aix.rb:69
|
7167
7260
|
msgid "Could not convert AIX expires date '%{expires}' on %{class_name}[%{resource_name}]"
|
7168
7261
|
msgstr ""
|
7169
7262
|
|
7170
|
-
#: ../lib/puppet/provider/user/aix.rb:
|
7263
|
+
#: ../lib/puppet/provider/user/aix.rb:83
|
7171
7264
|
msgid "Invalid value %{groups}: Groups must be comma separated!"
|
7172
7265
|
msgstr ""
|
7173
7266
|
|
7174
|
-
#: ../lib/puppet/provider/user/aix.rb:
|
7267
|
+
#: ../lib/puppet/provider/user/aix.rb:151
|
7175
7268
|
msgid "Could not reset the groups property back to %{cur_groups} after setting the primary group on %{resource}[%{name}]. This means that the previous primary group of %{old_pgrp} and the new primary group of %{new_pgrp} have been added to %{cur_groups}. You will need to manually reset the groups property if this is undesirable behavior. Detail: %{detail}"
|
7176
7269
|
msgstr ""
|
7177
7270
|
|
@@ -7243,7 +7336,7 @@ msgstr ""
|
|
7243
7336
|
msgid "You must pass a callback for non-NONE events"
|
7244
7337
|
msgstr ""
|
7245
7338
|
|
7246
|
-
#: ../lib/puppet/reports/http.rb:
|
7339
|
+
#: ../lib/puppet/reports/http.rb:40
|
7247
7340
|
msgid "Unable to submit report to %{url} [%{code}] %{message}"
|
7248
7341
|
msgstr ""
|
7249
7342
|
|
@@ -7300,11 +7393,11 @@ msgstr ""
|
|
7300
7393
|
msgid "no parameter named '%{name}'"
|
7301
7394
|
msgstr ""
|
7302
7395
|
|
7303
|
-
#: ../lib/puppet/resource.rb:
|
7396
|
+
#: ../lib/puppet/resource.rb:635
|
7304
7397
|
msgid "No title provided and %{type} is not a valid resource reference"
|
7305
7398
|
msgstr ""
|
7306
7399
|
|
7307
|
-
#: ../lib/puppet/resource.rb:
|
7400
|
+
#: ../lib/puppet/resource.rb:709
|
7308
7401
|
msgid "No set of title patterns matched the title \"%{title}\"."
|
7309
7402
|
msgstr ""
|
7310
7403
|
|
@@ -7394,119 +7487,119 @@ msgstr ""
|
|
7394
7487
|
msgid "Could not evaluate: %{detail}"
|
7395
7488
|
msgstr ""
|
7396
7489
|
|
7397
|
-
#: ../lib/puppet/resource/type.rb:
|
7490
|
+
#: ../lib/puppet/resource/type.rb:81
|
7398
7491
|
msgid "Invalid export in %{reference}: %{ex} is not a resource"
|
7399
7492
|
msgstr ""
|
7400
7493
|
|
7401
|
-
#: ../lib/puppet/resource/type.rb:
|
7494
|
+
#: ../lib/puppet/resource/type.rb:82
|
7402
7495
|
msgid "Invalid export in %{reference}: %{ex} is not a capability resource"
|
7403
7496
|
msgstr ""
|
7404
7497
|
|
7405
|
-
#: ../lib/puppet/resource/type.rb:
|
7498
|
+
#: ../lib/puppet/resource/type.rb:86
|
7406
7499
|
msgid "Resource type %{res_type} does not produce %{ex_type}"
|
7407
7500
|
msgstr ""
|
7408
7501
|
|
7409
|
-
#: ../lib/puppet/resource/type.rb:
|
7502
|
+
#: ../lib/puppet/resource/type.rb:147
|
7410
7503
|
msgid "Invalid resource supertype '%{type}'"
|
7411
7504
|
msgstr ""
|
7412
7505
|
|
7413
|
-
#: ../lib/puppet/resource/type.rb:
|
7506
|
+
#: ../lib/puppet/resource/type.rb:199
|
7414
7507
|
msgid "%{name} is not a class; cannot add code to it"
|
7415
7508
|
msgstr ""
|
7416
7509
|
|
7417
|
-
#: ../lib/puppet/resource/type.rb:
|
7510
|
+
#: ../lib/puppet/resource/type.rb:200
|
7418
7511
|
msgid "%{name} is not a class; cannot add code from it"
|
7419
7512
|
msgstr ""
|
7420
7513
|
|
7421
|
-
#: ../lib/puppet/resource/type.rb:
|
7514
|
+
#: ../lib/puppet/resource/type.rb:204
|
7422
7515
|
msgid "Cannot have code outside of a class/node/define because 'freeze_main' is enabled"
|
7423
7516
|
msgstr ""
|
7424
7517
|
|
7425
|
-
#: ../lib/puppet/resource/type.rb:
|
7518
|
+
#: ../lib/puppet/resource/type.rb:208
|
7426
7519
|
msgid "Cannot merge classes with different parent classes (%{name} => %{parent} vs. %{other_name} => %{other_parent})"
|
7427
7520
|
msgstr ""
|
7428
7521
|
|
7429
|
-
#: ../lib/puppet/resource/type.rb:
|
7522
|
+
#: ../lib/puppet/resource/type.rb:239
|
7430
7523
|
msgid "Cannot create resources for defined resource types"
|
7431
7524
|
msgstr ""
|
7432
7525
|
|
7433
|
-
#: ../lib/puppet/resource/type.rb:
|
7526
|
+
#: ../lib/puppet/resource/type.rb:294
|
7434
7527
|
msgid "The method Puppet::Resource::Type.assign_parameter_values is deprecated and will be removed in the next major release of Puppet."
|
7435
7528
|
msgstr ""
|
7436
7529
|
|
7437
|
-
#: ../lib/puppet/resource/type.rb:
|
7530
|
+
#: ../lib/puppet/resource/type.rb:310
|
7438
7531
|
msgid "Could not find parent resource type '%{parent}' of type %{parent_type} in %{env}"
|
7439
7532
|
msgstr ""
|
7440
7533
|
|
7441
|
-
#: ../lib/puppet/resource/type.rb:
|
7534
|
+
#: ../lib/puppet/resource/type.rb:437
|
7442
7535
|
msgid "Parameter '%{name}' is given a type, but is not a valid parameter."
|
7443
7536
|
msgstr ""
|
7444
7537
|
|
7445
|
-
#: ../lib/puppet/resource/type.rb:
|
7538
|
+
#: ../lib/puppet/resource/type.rb:440
|
7446
7539
|
msgid "Parameter '%{name}' is given a type that is not a Puppet Type, got %{class_name}"
|
7447
7540
|
msgstr ""
|
7448
7541
|
|
7449
|
-
#: ../lib/puppet/resource/type.rb:
|
7542
|
+
#: ../lib/puppet/resource/type.rb:482
|
7450
7543
|
msgid "Could not find scope for %{class_name}"
|
7451
7544
|
msgstr ""
|
7452
7545
|
|
7453
|
-
#: ../lib/puppet/resource/type.rb:
|
7546
|
+
#: ../lib/puppet/resource/type.rb:503
|
7454
7547
|
msgid "%{param} is a metaparam; this value will inherit to all contained resources in the %{name} definition"
|
7455
7548
|
msgstr ""
|
7456
7549
|
|
7457
|
-
#: ../lib/puppet/resource/type.rb:
|
7550
|
+
#: ../lib/puppet/resource/type.rb:505
|
7458
7551
|
msgid "%{param} is a metaparameter; please choose another parameter name in the %{name} definition"
|
7459
7552
|
msgstr ""
|
7460
7553
|
|
7461
|
-
#: ../lib/puppet/resource/type_collection.rb:
|
7554
|
+
#: ../lib/puppet/resource/type_collection.rb:72
|
7462
7555
|
msgid "Class '%{klass}' is already defined%{error}; cannot redefine"
|
7463
7556
|
msgstr ""
|
7464
7557
|
|
7465
|
-
#: ../lib/puppet/resource/type_collection.rb:
|
7558
|
+
#: ../lib/puppet/resource/type_collection.rb:73
|
7466
7559
|
msgid "Definition '%{klass}' is already defined%{error}; cannot be redefined as a class"
|
7467
7560
|
msgstr ""
|
7468
7561
|
|
7469
|
-
#: ../lib/puppet/resource/type_collection.rb:
|
7562
|
+
#: ../lib/puppet/resource/type_collection.rb:74
|
7470
7563
|
msgid "Application '%{klass}' is already defined%{error}; cannot be redefined as a class"
|
7471
7564
|
msgstr ""
|
7472
7565
|
|
7473
|
-
#: ../lib/puppet/resource/type_collection.rb:
|
7566
|
+
#: ../lib/puppet/resource/type_collection.rb:105
|
7474
7567
|
msgid "Node '%{name}' is already defined%{error}; cannot redefine"
|
7475
7568
|
msgstr ""
|
7476
7569
|
|
7477
|
-
#: ../lib/puppet/resource/type_collection.rb:
|
7570
|
+
#: ../lib/puppet/resource/type_collection.rb:113
|
7478
7571
|
msgid "Site is already defined%{error}; cannot redefine"
|
7479
7572
|
msgstr ""
|
7480
7573
|
|
7481
|
-
#: ../lib/puppet/resource/type_collection.rb:
|
7574
|
+
#: ../lib/puppet/resource/type_collection.rb:150
|
7482
7575
|
msgid "'%{name}' is already defined%{error} as a class; cannot redefine as a definition"
|
7483
7576
|
msgstr ""
|
7484
7577
|
|
7485
|
-
#: ../lib/puppet/resource/type_collection.rb:
|
7578
|
+
#: ../lib/puppet/resource/type_collection.rb:151
|
7486
7579
|
msgid "Definition '%{name}' is already defined%{error}; cannot be redefined"
|
7487
7580
|
msgstr ""
|
7488
7581
|
|
7489
|
-
#: ../lib/puppet/resource/type_collection.rb:
|
7582
|
+
#: ../lib/puppet/resource/type_collection.rb:152 ../lib/puppet/resource/type_collection.rb:168
|
7490
7583
|
msgid "'%{name}' is already defined%{error} as an application; cannot be redefined"
|
7491
7584
|
msgstr ""
|
7492
7585
|
|
7493
|
-
#: ../lib/puppet/resource/type_collection.rb:
|
7586
|
+
#: ../lib/puppet/resource/type_collection.rb:157
|
7494
7587
|
msgid "'%{name}' is already defined%{error} as a class; cannot redefine as a mapping"
|
7495
7588
|
msgstr ""
|
7496
7589
|
|
7497
|
-
#: ../lib/puppet/resource/type_collection.rb:
|
7590
|
+
#: ../lib/puppet/resource/type_collection.rb:166
|
7498
7591
|
msgid "'%{name}' is already defined%{error} as a class; cannot redefine as an application"
|
7499
7592
|
msgstr ""
|
7500
7593
|
|
7501
|
-
#: ../lib/puppet/resource/type_collection.rb:
|
7594
|
+
#: ../lib/puppet/resource/type_collection.rb:167
|
7502
7595
|
msgid "'%{name}' is already defined%{error} as a definition; cannot redefine as an application"
|
7503
7596
|
msgstr ""
|
7504
7597
|
|
7505
|
-
#: ../lib/puppet/resource/type_collection.rb:
|
7598
|
+
#: ../lib/puppet/resource/type_collection.rb:220
|
7506
7599
|
msgid "Execution of config_version command `%{cmd}` failed: %{message}"
|
7507
7600
|
msgstr ""
|
7508
7601
|
|
7509
|
-
#: ../lib/puppet/resource/type_collection.rb:
|
7602
|
+
#: ../lib/puppet/resource/type_collection.rb:241
|
7510
7603
|
msgid "Not attempting to load %{type} %{fqname} as this object was missing during a prior compilation"
|
7511
7604
|
msgstr ""
|
7512
7605
|
|
@@ -7526,73 +7619,73 @@ msgstr ""
|
|
7526
7619
|
msgid "Downloaded existing certificate request for %{name} from %{server}"
|
7527
7620
|
msgstr ""
|
7528
7621
|
|
7529
|
-
#: ../lib/puppet/settings.rb:
|
7622
|
+
#: ../lib/puppet/settings.rb:98
|
7530
7623
|
msgid "New environment loaders generated from the requested section."
|
7531
7624
|
msgstr ""
|
7532
7625
|
|
7533
|
-
#: ../lib/puppet/settings.rb:
|
7626
|
+
#: ../lib/puppet/settings.rb:300
|
7534
7627
|
msgid "Attempting to initialize global default settings more than once!"
|
7535
7628
|
msgstr ""
|
7536
7629
|
|
7537
|
-
#: ../lib/puppet/settings.rb:
|
7630
|
+
#: ../lib/puppet/settings.rb:500
|
7538
7631
|
msgid "Using --configprint is deprecated. Use 'puppet config <subcommand>' instead."
|
7539
7632
|
msgstr ""
|
7540
7633
|
|
7541
|
-
#: ../lib/puppet/settings.rb:
|
7634
|
+
#: ../lib/puppet/settings.rb:642
|
7542
7635
|
msgid "Could not load %{file}: %{detail}"
|
7543
7636
|
msgstr ""
|
7544
7637
|
|
7545
|
-
#: ../lib/puppet/settings.rb:
|
7638
|
+
#: ../lib/puppet/settings.rb:748
|
7546
7639
|
msgid "Invalid setting type '%{type}'"
|
7547
7640
|
msgstr ""
|
7548
7641
|
|
7549
|
-
#: ../lib/puppet/settings.rb:
|
7642
|
+
#: ../lib/puppet/settings.rb:894
|
7550
7643
|
msgid "Unknown searchpath case: %{source_type} for the %{source} settings path element."
|
7551
7644
|
msgstr ""
|
7552
7645
|
|
7553
|
-
#: ../lib/puppet/settings.rb:
|
7646
|
+
#: ../lib/puppet/settings.rb:957
|
7554
7647
|
msgid "setting definition for '%{name}' is not a hash!"
|
7555
7648
|
msgstr ""
|
7556
7649
|
|
7557
|
-
#: ../lib/puppet/settings.rb:
|
7650
|
+
#: ../lib/puppet/settings.rb:962
|
7558
7651
|
msgid "Setting %{name} is already defined"
|
7559
7652
|
msgstr ""
|
7560
7653
|
|
7561
|
-
#: ../lib/puppet/settings.rb:
|
7654
|
+
#: ../lib/puppet/settings.rb:968
|
7562
7655
|
msgid "Setting %{name} is already using short name '%{short}'"
|
7563
7656
|
msgstr ""
|
7564
7657
|
|
7565
|
-
#: ../lib/puppet/settings.rb:
|
7658
|
+
#: ../lib/puppet/settings.rb:1227
|
7566
7659
|
msgid "Setting %{name} is deprecated."
|
7567
7660
|
msgstr ""
|
7568
7661
|
|
7569
7662
|
#. TRANSLATORS 'puppet.conf' is a file name and should not be translated
|
7570
|
-
#: ../lib/puppet/settings.rb:
|
7663
|
+
#: ../lib/puppet/settings.rb:1232
|
7571
7664
|
msgid "Setting %{name} is deprecated in puppet.conf."
|
7572
7665
|
msgstr ""
|
7573
7666
|
|
7574
|
-
#: ../lib/puppet/settings.rb:
|
7667
|
+
#: ../lib/puppet/settings.rb:1403
|
7575
7668
|
msgid "Error converting value for param '%{name}': %{detail}"
|
7576
7669
|
msgstr ""
|
7577
7670
|
|
7578
|
-
#: ../lib/puppet/settings.rb:
|
7671
|
+
#: ../lib/puppet/settings.rb:1427
|
7579
7672
|
msgid "Could not find value for %{expression}"
|
7580
7673
|
msgstr ""
|
7581
7674
|
|
7582
7675
|
#. TRANSLATORS '$environment' is a Puppet specific variable and should not be translated
|
7583
|
-
#: ../lib/puppet/settings.rb:
|
7676
|
+
#: ../lib/puppet/settings.rb:1437
|
7584
7677
|
msgid "You cannot interpolate $environment within '%{setting_name}' when using directory environments."
|
7585
7678
|
msgstr ""
|
7586
7679
|
|
7587
|
-
#: ../lib/puppet/settings.rb:
|
7680
|
+
#: ../lib/puppet/settings.rb:1438
|
7588
7681
|
msgid "Its value will remain %{value}."
|
7589
7682
|
msgstr ""
|
7590
7683
|
|
7591
|
-
#: ../lib/puppet/settings.rb:
|
7684
|
+
#: ../lib/puppet/settings.rb:1469
|
7592
7685
|
msgid "Attempt to assign a value to unknown setting %{name}"
|
7593
7686
|
msgstr ""
|
7594
7687
|
|
7595
|
-
#: ../lib/puppet/settings/array_setting.rb:14
|
7688
|
+
#: ../lib/puppet/settings/array_setting.rb:14 ../lib/puppet/settings/http_extra_headers_setting.rb:21
|
7596
7689
|
msgid "Expected an Array or String, got a %{klass}"
|
7597
7690
|
msgstr ""
|
7598
7691
|
|
@@ -7706,6 +7799,10 @@ msgstr ""
|
|
7706
7799
|
msgid "The %{parameter} parameter for the setting '%{name}' must be either 'root' or 'service', not '%{value}'"
|
7707
7800
|
msgstr ""
|
7708
7801
|
|
7802
|
+
#: ../lib/puppet/settings/http_extra_headers_setting.rb:12
|
7803
|
+
msgid "Expected an Array, String, or Hash, got a %{klass}"
|
7804
|
+
msgstr ""
|
7805
|
+
|
7709
7806
|
#: ../lib/puppet/settings/priority_setting.rb:39
|
7710
7807
|
msgid "Invalid priority format '%{value}' for parameter: %{name}"
|
7711
7808
|
msgstr ""
|
@@ -7918,99 +8015,107 @@ msgstr ""
|
|
7918
8015
|
msgid "Could not download host certificate: %{message}"
|
7919
8016
|
msgstr ""
|
7920
8017
|
|
7921
|
-
#: ../lib/puppet/ssl/oids.rb:
|
8018
|
+
#: ../lib/puppet/ssl/oids.rb:110
|
7922
8019
|
msgid "Error loading ssl custom OIDs mapping file from '%{custom_oid_file}': %{err}"
|
7923
8020
|
msgstr ""
|
7924
8021
|
|
7925
|
-
#: ../lib/puppet/ssl/oids.rb:
|
8022
|
+
#: ../lib/puppet/ssl/oids.rb:114
|
7926
8023
|
msgid "Error loading ssl custom OIDs mapping file from '%{custom_oid_file}': no such index '%{map_key}'"
|
7927
8024
|
msgstr ""
|
7928
8025
|
|
7929
|
-
#: ../lib/puppet/ssl/oids.rb:
|
8026
|
+
#: ../lib/puppet/ssl/oids.rb:118
|
7930
8027
|
msgid "Error loading ssl custom OIDs mapping file from '%{custom_oid_file}': data under index '%{map_key}' must be a Hash"
|
7931
8028
|
msgstr ""
|
7932
8029
|
|
7933
|
-
#: ../lib/puppet/ssl/oids.rb:
|
8030
|
+
#: ../lib/puppet/ssl/oids.rb:125
|
7934
8031
|
msgid "Error loading ssl custom OIDs mapping file from '%{custom_oid_file}': incomplete definition of oid '%{oid}'"
|
7935
8032
|
msgstr ""
|
7936
8033
|
|
7937
|
-
#: ../lib/puppet/ssl/oids.rb:
|
8034
|
+
#: ../lib/puppet/ssl/oids.rb:157
|
7938
8035
|
msgid "Error registering ssl custom OIDs mapping from file '%{custom_oid_file}': %{err}"
|
7939
8036
|
msgstr ""
|
7940
8037
|
|
7941
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
8038
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:66
|
8039
|
+
msgid "Failed to add '%{path}' as a trusted CA file: %{detail}"
|
8040
|
+
msgstr ""
|
8041
|
+
|
8042
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:70
|
8043
|
+
msgid "The 'ssl_trust_store' setting does not refer to a file and will be ignored: '%{path}'"
|
8044
|
+
msgstr ""
|
8045
|
+
|
8046
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:104
|
7942
8047
|
msgid "CA certs are missing"
|
7943
8048
|
msgstr ""
|
7944
8049
|
|
7945
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
8050
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:105
|
7946
8051
|
msgid "CRLs are missing"
|
7947
8052
|
msgstr ""
|
7948
8053
|
|
7949
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
8054
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:106
|
7950
8055
|
msgid "Private key is missing"
|
7951
8056
|
msgstr ""
|
7952
8057
|
|
7953
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
8058
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:107
|
7954
8059
|
msgid "Client cert is missing"
|
7955
8060
|
msgstr ""
|
7956
8061
|
|
7957
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
8062
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:113
|
7958
8063
|
msgid "Unsupported key '%{type}'"
|
7959
8064
|
msgstr ""
|
7960
8065
|
|
7961
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
8066
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:117
|
7962
8067
|
msgid "The certificate for '%{name}' does not match its private key"
|
7963
8068
|
msgstr ""
|
7964
8069
|
|
7965
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
8070
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:156
|
7966
8071
|
msgid "Failed to load private key for host '%{name}': %{message}"
|
7967
8072
|
msgstr ""
|
7968
8073
|
|
7969
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
8074
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:170
|
7970
8075
|
msgid "The CSR for host '%{name}' does not match the public key"
|
7971
8076
|
msgstr ""
|
7972
8077
|
|
7973
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
8078
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:234
|
7974
8079
|
msgid "The issuer '%{issuer}' of certificate '%{subject}' cannot be found locally"
|
7975
8080
|
msgstr ""
|
7976
8081
|
|
7977
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
8082
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:250
|
7978
8083
|
msgid "The certificate '%{subject}' is not yet valid, verify time is synchronized"
|
7979
8084
|
msgstr ""
|
7980
8085
|
|
7981
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
8086
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:252
|
7982
8087
|
msgid "The certificate '%{subject}' has expired, verify time is synchronized"
|
7983
8088
|
msgstr ""
|
7984
8089
|
|
7985
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
8090
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:254
|
7986
8091
|
msgid "The CRL issued by '%{issuer}' is not yet valid, verify time is synchronized"
|
7987
8092
|
msgstr ""
|
7988
8093
|
|
7989
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
8094
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:256
|
7990
8095
|
msgid "The CRL issued by '%{issuer}' has expired, verify time is synchronized"
|
7991
8096
|
msgstr ""
|
7992
8097
|
|
7993
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
8098
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:258
|
7994
8099
|
msgid "Invalid signature for certificate '%{subject}'"
|
7995
8100
|
msgstr ""
|
7996
8101
|
|
7997
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
8102
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:260
|
7998
8103
|
msgid "Invalid signature for CRL issued by '%{issuer}'"
|
7999
8104
|
msgstr ""
|
8000
8105
|
|
8001
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
8106
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:262
|
8002
8107
|
msgid "The issuer '%{issuer}' of certificate '%{subject}' is missing"
|
8003
8108
|
msgstr ""
|
8004
8109
|
|
8005
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
8110
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:265
|
8006
8111
|
msgid "The CRL issued by '%{issuer}' is missing"
|
8007
8112
|
msgstr ""
|
8008
8113
|
|
8009
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
8114
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:267
|
8010
8115
|
msgid "Certificate '%{subject}' is revoked"
|
8011
8116
|
msgstr ""
|
8012
8117
|
|
8013
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
8118
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:271
|
8014
8119
|
msgid "Certificate '%{subject}' failed verification (%{err}): %{err_utf8}"
|
8015
8120
|
msgstr ""
|
8016
8121
|
|
@@ -8094,20 +8199,24 @@ msgstr ""
|
|
8094
8199
|
msgid "Couldn't fetch certificate from CA server; you might still need to sign this agent's certificate (%{name}). Exiting now because the maxwaitforcert timeout has been exceeded."
|
8095
8200
|
msgstr ""
|
8096
8201
|
|
8097
|
-
#: ../lib/puppet/ssl/state_machine.rb:
|
8098
|
-
msgid "
|
8202
|
+
#: ../lib/puppet/ssl/state_machine.rb:305
|
8203
|
+
msgid "Another puppet instance is already running and the waitforlock setting is set to 0; exiting"
|
8099
8204
|
msgstr ""
|
8100
8205
|
|
8101
|
-
#: ../lib/puppet/ssl/state_machine.rb:
|
8102
|
-
msgid "
|
8206
|
+
#: ../lib/puppet/ssl/state_machine.rb:307
|
8207
|
+
msgid "Another puppet instance is already running and the maxwaitforlock timeout has been exceeded; exiting"
|
8103
8208
|
msgstr ""
|
8104
8209
|
|
8105
|
-
#: ../lib/puppet/ssl/state_machine.rb:
|
8106
|
-
msgid "
|
8210
|
+
#: ../lib/puppet/ssl/state_machine.rb:309
|
8211
|
+
msgid "Another puppet instance is already running; waiting for it to finish"
|
8107
8212
|
msgstr ""
|
8108
8213
|
|
8109
|
-
#: ../lib/puppet/ssl/state_machine.rb:
|
8110
|
-
msgid "
|
8214
|
+
#: ../lib/puppet/ssl/state_machine.rb:427
|
8215
|
+
msgid "Verified client certificate '%{subject}' fingerprint %{digest}"
|
8216
|
+
msgstr ""
|
8217
|
+
|
8218
|
+
#: ../lib/puppet/ssl/state_machine.rb:429
|
8219
|
+
msgid "Verified CA certificate '%{subject}' fingerprint %{digest}"
|
8111
8220
|
msgstr ""
|
8112
8221
|
|
8113
8222
|
#. TRANSLATORS: `error` is an untranslated message from openssl describing why a certificate in the server's chain is invalid, and `subject` is the identity/name of the failed certificate
|
@@ -8357,77 +8466,89 @@ msgstr ""
|
|
8357
8466
|
msgid "audit change: newly-recorded value %s"
|
8358
8467
|
msgstr ""
|
8359
8468
|
|
8360
|
-
#: ../lib/puppet/
|
8469
|
+
#: ../lib/puppet/trusted_external.rb:6
|
8470
|
+
msgid "Retrieving trusted external data from %{command}"
|
8471
|
+
msgstr ""
|
8472
|
+
|
8473
|
+
#: ../lib/puppet/trusted_external.rb:20
|
8474
|
+
msgid "Skipping non-executable file %{file}"
|
8475
|
+
msgstr ""
|
8476
|
+
|
8477
|
+
#: ../lib/puppet/trusted_external.rb:25
|
8478
|
+
msgid "There is more than one '%{basename}' script in %{dir}"
|
8479
|
+
msgstr ""
|
8480
|
+
|
8481
|
+
#: ../lib/puppet/type.rb:519
|
8361
8482
|
msgid "Options must be a hash, not %{type}"
|
8362
8483
|
msgstr ""
|
8363
8484
|
|
8364
|
-
#: ../lib/puppet/type.rb:
|
8485
|
+
#: ../lib/puppet/type.rb:522
|
8365
8486
|
msgid "Class %{class_name} already has a property named %{property}"
|
8366
8487
|
msgstr ""
|
8367
8488
|
|
8368
|
-
#: ../lib/puppet/type.rb:
|
8489
|
+
#: ../lib/puppet/type.rb:609
|
8369
8490
|
msgid "Class %{class_name} has not defined parameters"
|
8370
8491
|
msgstr ""
|
8371
8492
|
|
8372
|
-
#: ../lib/puppet/type.rb:
|
8493
|
+
#: ../lib/puppet/type.rb:696
|
8373
8494
|
msgid "Parameter %{name} failed on %{ref}: %{detail}"
|
8374
8495
|
msgstr ""
|
8375
8496
|
|
8376
|
-
#: ../lib/puppet/type.rb:
|
8497
|
+
#: ../lib/puppet/type.rb:719
|
8377
8498
|
msgid "Undefined attribute '%{attribute}' in %{name}"
|
8378
8499
|
msgstr ""
|
8379
8500
|
|
8380
8501
|
#. TRANSLATORS 'is' is a variable name and should not be translated
|
8381
8502
|
#. TRANSLATORS 'is' is a variable name and should not be translated
|
8382
|
-
#: ../lib/puppet/type.rb:
|
8503
|
+
#: ../lib/puppet/type.rb:1062 ../lib/puppet/type.rb:1073
|
8383
8504
|
msgid "The 'is' value is not in the 'is' array for '%{name}'"
|
8384
8505
|
msgstr ""
|
8385
8506
|
|
8386
|
-
#: ../lib/puppet/type.rb:
|
8507
|
+
#: ../lib/puppet/type.rb:1204
|
8387
8508
|
msgid "%{name} has no providers and has not overridden 'instances'"
|
8388
8509
|
msgstr ""
|
8389
8510
|
|
8390
|
-
#: ../lib/puppet/type.rb:
|
8511
|
+
#: ../lib/puppet/type.rb:1467
|
8391
8512
|
msgid "Cannot add aliases without a catalog"
|
8392
8513
|
msgstr ""
|
8393
8514
|
|
8394
|
-
#: ../lib/puppet/type.rb:
|
8515
|
+
#: ../lib/puppet/type.rb:1547
|
8395
8516
|
msgid "Could not find %{description} %{ref} for %{resource}"
|
8396
8517
|
msgstr ""
|
8397
8518
|
|
8398
|
-
#: ../lib/puppet/type.rb:
|
8519
|
+
#: ../lib/puppet/type.rb:1824
|
8399
8520
|
msgid "Found multiple default providers for %{name}: %{provider_list}; using %{selected_provider}"
|
8400
8521
|
msgstr ""
|
8401
8522
|
|
8402
|
-
#: ../lib/puppet/type.rb:
|
8523
|
+
#: ../lib/puppet/type.rb:1911
|
8403
8524
|
msgid "Could not find parent provider %{parent} of %{name}"
|
8404
8525
|
msgstr ""
|
8405
8526
|
|
8406
|
-
#: ../lib/puppet/type.rb:
|
8527
|
+
#: ../lib/puppet/type.rb:1985
|
8407
8528
|
msgid "Invalid %{resource} provider '%{provider_class}'"
|
8408
8529
|
msgstr ""
|
8409
8530
|
|
8410
|
-
#: ../lib/puppet/type.rb:
|
8531
|
+
#: ../lib/puppet/type.rb:2070
|
8411
8532
|
msgid "Could not find %{name} provider of %{provider}"
|
8412
8533
|
msgstr ""
|
8413
8534
|
|
8414
|
-
#: ../lib/puppet/type.rb:
|
8535
|
+
#: ../lib/puppet/type.rb:2188
|
8415
8536
|
msgid "You cannot add relationships without a catalog"
|
8416
8537
|
msgstr ""
|
8417
8538
|
|
8418
|
-
#: ../lib/puppet/type.rb:
|
8539
|
+
#: ../lib/puppet/type.rb:2491
|
8419
8540
|
msgid "Unable to mark '%{name}' as sensitive: %{name} is a parameter and not a property, and cannot be automatically redacted."
|
8420
8541
|
msgstr ""
|
8421
8542
|
|
8422
|
-
#: ../lib/puppet/type.rb:
|
8543
|
+
#: ../lib/puppet/type.rb:2494
|
8423
8544
|
msgid "Unable to mark '%{name}' as sensitive: the property itself was not assigned a value."
|
8424
8545
|
msgstr ""
|
8425
8546
|
|
8426
|
-
#: ../lib/puppet/type.rb:
|
8547
|
+
#: ../lib/puppet/type.rb:2496
|
8427
8548
|
msgid "Unable to mark '%{name}' as sensitive: the property itself is not defined on %{type}."
|
8428
8549
|
msgstr ""
|
8429
8550
|
|
8430
|
-
#: ../lib/puppet/type.rb:
|
8551
|
+
#: ../lib/puppet/type.rb:2554
|
8431
8552
|
msgid "Could not set %{attribute} on %{class_name}: %{detail}"
|
8432
8553
|
msgstr ""
|
8433
8554
|
|
@@ -8504,87 +8625,87 @@ msgstr ""
|
|
8504
8625
|
msgid "File paths must be fully qualified, not '%{path}'"
|
8505
8626
|
msgstr ""
|
8506
8627
|
|
8507
|
-
#: ../lib/puppet/type/file.rb:
|
8628
|
+
#: ../lib/puppet/type/file.rb:142
|
8508
8629
|
msgid "Invalid backup type %{value}"
|
8509
8630
|
msgstr ""
|
8510
8631
|
|
8511
|
-
#: ../lib/puppet/type/file.rb:
|
8632
|
+
#: ../lib/puppet/type/file.rb:186 ../lib/puppet/type/tidy.rb:48
|
8512
8633
|
msgid "Invalid recurse value %{value}"
|
8513
8634
|
msgstr ""
|
8514
8635
|
|
8515
|
-
#: ../lib/puppet/type/file.rb:
|
8636
|
+
#: ../lib/puppet/type/file.rb:218
|
8516
8637
|
msgid "Invalid recurselimit value %{value}"
|
8517
8638
|
msgstr ""
|
8518
8639
|
|
8519
|
-
#: ../lib/puppet/type/file.rb:
|
8640
|
+
#: ../lib/puppet/type/file.rb:418
|
8520
8641
|
msgid "You cannot specify more than one of %{creators}"
|
8521
8642
|
msgstr ""
|
8522
8643
|
|
8523
|
-
#: ../lib/puppet/type/file.rb:
|
8644
|
+
#: ../lib/puppet/type/file.rb:420
|
8524
8645
|
msgid "You cannot specify a remote recursion without a source"
|
8525
8646
|
msgstr ""
|
8526
8647
|
|
8527
|
-
#: ../lib/puppet/type/file.rb:
|
8648
|
+
#: ../lib/puppet/type/file.rb:422
|
8528
8649
|
msgid "You cannot specify source when using checksum 'none'"
|
8529
8650
|
msgstr ""
|
8530
8651
|
|
8531
|
-
#: ../lib/puppet/type/file.rb:
|
8652
|
+
#: ../lib/puppet/type/file.rb:425
|
8532
8653
|
msgid "You cannot specify content when using checksum '%{checksum_type}'"
|
8533
8654
|
msgstr ""
|
8534
8655
|
|
8535
|
-
#: ../lib/puppet/type/file.rb:
|
8656
|
+
#: ../lib/puppet/type/file.rb:428
|
8536
8657
|
msgid "Possible error: recurselimit is set but not recurse, no recursion will happen"
|
8537
8658
|
msgstr ""
|
8538
8659
|
|
8539
|
-
#: ../lib/puppet/type/file.rb:
|
8660
|
+
#: ../lib/puppet/type/file.rb:436
|
8540
8661
|
msgid "Checksum value '%{value}' is not a valid checksum type %{checksum}"
|
8541
8662
|
msgstr ""
|
8542
8663
|
|
8543
|
-
#: ../lib/puppet/type/file.rb:
|
8664
|
+
#: ../lib/puppet/type/file.rb:439
|
8544
8665
|
msgid "Checksum value is ignored unless content or source are specified"
|
8545
8666
|
msgstr ""
|
8546
8667
|
|
8547
|
-
#: ../lib/puppet/type/file.rb:
|
8668
|
+
#: ../lib/puppet/type/file.rb:477
|
8548
8669
|
msgid "Can not find filebucket for backups without a catalog"
|
8549
8670
|
msgstr ""
|
8550
8671
|
|
8551
|
-
#: ../lib/puppet/type/file.rb:
|
8672
|
+
#: ../lib/puppet/type/file.rb:482
|
8552
8673
|
msgid "Could not find filebucket %{backup} specified in backup"
|
8553
8674
|
msgstr ""
|
8554
8675
|
|
8555
|
-
#: ../lib/puppet/type/file.rb:
|
8676
|
+
#: ../lib/puppet/type/file.rb:780
|
8556
8677
|
msgid "Could not back up file of type %{current_type}"
|
8557
8678
|
msgstr ""
|
8558
8679
|
|
8559
|
-
#: ../lib/puppet/type/file.rb:
|
8680
|
+
#: ../lib/puppet/type/file.rb:795
|
8560
8681
|
msgid "Could not remove files of type %{current_type}"
|
8561
8682
|
msgstr ""
|
8562
8683
|
|
8563
8684
|
#. TRANSLATORS "source_permissions => ignore" should not be translated
|
8564
|
-
#: ../lib/puppet/type/file.rb:
|
8685
|
+
#: ../lib/puppet/type/file.rb:806
|
8565
8686
|
msgid "Copying owner/mode/group from the source file on Windows is not supported; use source_permissions => ignore."
|
8566
8687
|
msgstr ""
|
8567
8688
|
|
8568
8689
|
#. TRANSLATORS "stat" is a program name and should not be translated
|
8569
|
-
#: ../lib/puppet/type/file.rb:
|
8690
|
+
#: ../lib/puppet/type/file.rb:887 ../lib/puppet/type/tidy.rb:352
|
8570
8691
|
msgid "Could not stat; permission denied"
|
8571
8692
|
msgstr ""
|
8572
8693
|
|
8573
|
-
#: ../lib/puppet/type/file.rb:
|
8694
|
+
#: ../lib/puppet/type/file.rb:890
|
8574
8695
|
msgid "Could not stat; invalid pathname"
|
8575
8696
|
msgstr ""
|
8576
8697
|
|
8577
|
-
#: ../lib/puppet/type/file.rb:
|
8698
|
+
#: ../lib/puppet/type/file.rb:1018
|
8578
8699
|
msgid "Not removing directory; use 'force' to override"
|
8579
8700
|
msgstr ""
|
8580
8701
|
|
8581
8702
|
#. TRANSLATORS refers to a file which could not be backed up
|
8582
|
-
#: ../lib/puppet/type/file.rb:
|
8703
|
+
#: ../lib/puppet/type/file.rb:1043
|
8583
8704
|
msgid "Could not back up; will not remove"
|
8584
8705
|
msgstr ""
|
8585
8706
|
|
8586
|
-
#: ../lib/puppet/type/file.rb:
|
8587
|
-
msgid "File written to disk did not match checksum; discarding changes (%{content_checksum} vs %{
|
8707
|
+
#: ../lib/puppet/type/file.rb:1058
|
8708
|
+
msgid "File written to disk did not match desired checksum; discarding changes (%{content_checksum} vs %{desired_checksum})"
|
8588
8709
|
msgstr ""
|
8589
8710
|
|
8590
8711
|
#: ../lib/puppet/type/file/checksum.rb:20
|
@@ -8624,12 +8745,8 @@ msgstr ""
|
|
8624
8745
|
msgid "Not managing symlink mode"
|
8625
8746
|
msgstr ""
|
8626
8747
|
|
8627
|
-
#: ../lib/puppet/type/file/source.rb:135
|
8628
|
-
msgid "No source for content was stored with the metadata"
|
8629
|
-
msgstr ""
|
8630
|
-
|
8631
8748
|
#. TRANSLATORS "source_permissions" is a parameter name and should not be translated
|
8632
|
-
#: ../lib/puppet/type/file/source.rb:
|
8749
|
+
#: ../lib/puppet/type/file/source.rb:353
|
8633
8750
|
msgid "The `source_permissions` parameter is deprecated. Explicitly set `owner`, `group`, and `mode`."
|
8634
8751
|
msgstr ""
|
8635
8752
|
|
@@ -8653,18 +8770,38 @@ msgstr ""
|
|
8653
8770
|
msgid "Invalid GID %{gid}"
|
8654
8771
|
msgstr ""
|
8655
8772
|
|
8656
|
-
#: ../lib/puppet/type/package.rb:
|
8773
|
+
#: ../lib/puppet/type/package.rb:128 ../lib/puppet/type/package.rb:142
|
8657
8774
|
msgid "Could not update: %{detail}"
|
8658
8775
|
msgstr ""
|
8659
8776
|
|
8660
|
-
#: ../lib/puppet/type/package.rb:
|
8777
|
+
#: ../lib/puppet/type/package.rb:177
|
8661
8778
|
msgid "Could not get latest version: %{detail}"
|
8662
8779
|
msgstr ""
|
8663
8780
|
|
8664
|
-
#: ../lib/puppet/type/package.rb:
|
8781
|
+
#: ../lib/puppet/type/package.rb:277
|
8665
8782
|
msgid "Name must be a String not %{klass}"
|
8666
8783
|
msgstr ""
|
8667
8784
|
|
8785
|
+
#: ../lib/puppet/type/package.rb:423
|
8786
|
+
msgid "Cannot have both `ensure => disabled` and `flavor`"
|
8787
|
+
msgstr ""
|
8788
|
+
|
8789
|
+
#: ../lib/puppet/type/package.rb:522
|
8790
|
+
msgid "Cannot have both `enable_only => true` and `flavor`"
|
8791
|
+
msgstr ""
|
8792
|
+
|
8793
|
+
#: ../lib/puppet/type/package.rb:525
|
8794
|
+
msgid "Cannot have both `ensure => disabled` and `enable_only => true`"
|
8795
|
+
msgstr ""
|
8796
|
+
|
8797
|
+
#: ../lib/puppet/type/package.rb:687
|
8798
|
+
msgid "Invalid hold value %{value}. %{doc}"
|
8799
|
+
msgstr ""
|
8800
|
+
|
8801
|
+
#: ../lib/puppet/type/package.rb:717
|
8802
|
+
msgid "You cannot use \"mark\" property while \"ensure\" is one of [\"absent\", \"purged\", \"held\"]"
|
8803
|
+
msgstr ""
|
8804
|
+
|
8668
8805
|
#: ../lib/puppet/type/resources.rb:15
|
8669
8806
|
msgid "Could not find resource type '%{name}'"
|
8670
8807
|
msgstr ""
|
@@ -8721,7 +8858,15 @@ msgstr ""
|
|
8721
8858
|
msgid "Setting enable to %{value} is only supported on Microsoft Windows."
|
8722
8859
|
msgstr ""
|
8723
8860
|
|
8724
|
-
#: ../lib/puppet/type/service.rb:
|
8861
|
+
#: ../lib/puppet/type/service.rb:162
|
8862
|
+
msgid "The 'logonaccount' parameter is mandatory when setting 'logonpassword'."
|
8863
|
+
msgstr ""
|
8864
|
+
|
8865
|
+
#: ../lib/puppet/type/service.rb:163 ../lib/puppet/type/user.rb:256
|
8866
|
+
msgid "Passwords cannot include ':'"
|
8867
|
+
msgstr ""
|
8868
|
+
|
8869
|
+
#: ../lib/puppet/type/service.rb:300
|
8725
8870
|
msgid "\"%{value}\" is not a positive integer: the timeout parameter must be specified as a positive integer"
|
8726
8871
|
msgstr ""
|
8727
8872
|
|
@@ -8760,10 +8905,6 @@ msgstr ""
|
|
8760
8905
|
msgid "Could not find group(s) %{groups}"
|
8761
8906
|
msgstr ""
|
8762
8907
|
|
8763
|
-
#: ../lib/puppet/type/user.rb:256
|
8764
|
-
msgid "Passwords cannot include ':'"
|
8765
|
-
msgstr ""
|
8766
|
-
|
8767
8908
|
#: ../lib/puppet/type/user.rb:276
|
8768
8909
|
msgid "Password minimum age must be provided as a number."
|
8769
8910
|
msgstr ""
|
@@ -8794,122 +8935,114 @@ msgstr ""
|
|
8794
8935
|
msgid "Expiry dates must be YYYY-MM-DD or the string \"absent\""
|
8795
8936
|
msgstr ""
|
8796
8937
|
|
8797
|
-
#: ../lib/puppet/type/user.rb:
|
8938
|
+
#: ../lib/puppet/type/user.rb:506
|
8798
8939
|
msgid "Role names must be provided, not numbers"
|
8799
8940
|
msgstr ""
|
8800
8941
|
|
8801
|
-
#: ../lib/puppet/type/user.rb:
|
8942
|
+
#: ../lib/puppet/type/user.rb:508
|
8802
8943
|
msgid "Role names must be provided as an array, not a comma-separated list"
|
8803
8944
|
msgstr ""
|
8804
8945
|
|
8805
|
-
#: ../lib/puppet/type/user.rb:
|
8946
|
+
#: ../lib/puppet/type/user.rb:545
|
8806
8947
|
msgid "Auth names must be provided, not numbers"
|
8807
8948
|
msgstr ""
|
8808
8949
|
|
8809
|
-
#: ../lib/puppet/type/user.rb:
|
8950
|
+
#: ../lib/puppet/type/user.rb:547
|
8810
8951
|
msgid "Auth names must be provided as an array, not a comma-separated list"
|
8811
8952
|
msgstr ""
|
8812
8953
|
|
8813
|
-
#: ../lib/puppet/type/user.rb:
|
8954
|
+
#: ../lib/puppet/type/user.rb:571
|
8814
8955
|
msgid "Profile names must be provided, not numbers"
|
8815
8956
|
msgstr ""
|
8816
8957
|
|
8817
|
-
#: ../lib/puppet/type/user.rb:
|
8958
|
+
#: ../lib/puppet/type/user.rb:573
|
8818
8959
|
msgid "Profile names must be provided as an array, not a comma-separated list"
|
8819
8960
|
msgstr ""
|
8820
8961
|
|
8821
|
-
#: ../lib/puppet/type/user.rb:
|
8962
|
+
#: ../lib/puppet/type/user.rb:684
|
8822
8963
|
msgid "Ssh_authorized_key type is not available. Cannot purge SSH keys."
|
8823
8964
|
msgstr ""
|
8824
8965
|
|
8825
|
-
#: ../lib/puppet/type/user.rb:
|
8966
|
+
#: ../lib/puppet/type/user.rb:722
|
8826
8967
|
msgid "Each entry for purge_ssh_keys must be a string, not a %{klass}"
|
8827
8968
|
msgstr ""
|
8828
8969
|
|
8829
|
-
#: ../lib/puppet/type/user.rb:
|
8970
|
+
#: ../lib/puppet/type/user.rb:725
|
8830
8971
|
msgid "Paths to keyfiles must be absolute, not %{entry}"
|
8831
8972
|
msgstr ""
|
8832
8973
|
|
8833
|
-
#: ../lib/puppet/type/user.rb:
|
8974
|
+
#: ../lib/puppet/type/user.rb:729
|
8834
8975
|
msgid "purge_ssh_keys must be true, false, or an array of file names, not %{value}"
|
8835
8976
|
msgstr ""
|
8836
8977
|
|
8837
|
-
#: ../lib/puppet/type/user.rb:
|
8838
|
-
msgid "purge_ssh_keys can only be true for users with a defined home directory"
|
8839
|
-
msgstr ""
|
8840
|
-
|
8841
|
-
#: ../lib/puppet/type/user.rb:767
|
8842
|
-
msgid "purge_ssh_keys value '%{value}' meta character ~ or %{home_placeholder} only allowed for users with a defined home directory"
|
8843
|
-
msgstr ""
|
8844
|
-
|
8845
|
-
#: ../lib/puppet/type/user.rb:782
|
8978
|
+
#: ../lib/puppet/type/user.rb:757
|
8846
8979
|
msgid "Class name must be provided."
|
8847
8980
|
msgstr ""
|
8848
8981
|
|
8849
|
-
#: ../lib/puppet/util.rb:
|
8982
|
+
#: ../lib/puppet/util.rb:63
|
8850
8983
|
msgid "Unable to retrieve the environment for mode %{mode}"
|
8851
8984
|
msgstr ""
|
8852
8985
|
|
8853
|
-
#: ../lib/puppet/util.rb:
|
8986
|
+
#: ../lib/puppet/util.rb:80
|
8854
8987
|
msgid "Unable to clear the environment for mode %{mode}"
|
8855
8988
|
msgstr ""
|
8856
8989
|
|
8857
|
-
#: ../lib/puppet/util.rb:
|
8990
|
+
#: ../lib/puppet/util.rb:96
|
8858
8991
|
msgid "Unable to set the environment variable %{name} for mode %{mode}"
|
8859
8992
|
msgstr ""
|
8860
8993
|
|
8861
|
-
#: ../lib/puppet/util.rb:
|
8994
|
+
#: ../lib/puppet/util.rb:113
|
8862
8995
|
msgid "Unable to merge given values into the current environment for mode %{mode}"
|
8863
8996
|
msgstr ""
|
8864
8997
|
|
8865
|
-
#: ../lib/puppet/util.rb:
|
8998
|
+
#: ../lib/puppet/util.rb:155
|
8866
8999
|
msgid "could not change to group %{group}: %{detail}"
|
8867
9000
|
msgstr ""
|
8868
9001
|
|
8869
|
-
#: ../lib/puppet/util.rb:
|
9002
|
+
#: ../lib/puppet/util.rb:156
|
8870
9003
|
msgid "could not change to group %{group}"
|
8871
9004
|
msgstr ""
|
8872
9005
|
|
8873
|
-
#: ../lib/puppet/util.rb:
|
9006
|
+
#: ../lib/puppet/util.rb:169
|
8874
9007
|
msgid "Could not change to user %{user}: %{detail}"
|
8875
9008
|
msgstr ""
|
8876
9009
|
|
8877
9010
|
#. TRANSLATORS 'benchmark' is a method name and should not be translated
|
8878
|
-
#: ../lib/puppet/util.rb:
|
9011
|
+
#: ../lib/puppet/util.rb:223
|
8879
9012
|
msgid "Failed to provide level to benchmark"
|
8880
9013
|
msgstr ""
|
8881
9014
|
|
8882
|
-
#: ../lib/puppet/util.rb:
|
9015
|
+
#: ../lib/puppet/util.rb:226
|
8883
9016
|
msgid "Benchmarked object does not respond to %{value}"
|
8884
9017
|
msgstr ""
|
8885
9018
|
|
8886
9019
|
#. TRANSLATORS PATH and HOME are environment variables and should not be translated
|
8887
|
-
#: ../lib/puppet/util.rb:
|
9020
|
+
#: ../lib/puppet/util.rb:266
|
8888
9021
|
msgid "PATH contains a ~ character, and HOME is not set; ignoring PATH element '%{dir}'."
|
8889
9022
|
msgstr ""
|
8890
9023
|
|
8891
9024
|
#. TRANSLATORS PATH is an environment variable and should not be translated
|
8892
|
-
#: ../lib/puppet/util.rb:
|
9025
|
+
#: ../lib/puppet/util.rb:270
|
8893
9026
|
msgid "Couldn't expand PATH containing a ~ character; ignoring PATH element '%{dir}'."
|
8894
9027
|
msgstr ""
|
8895
9028
|
|
8896
|
-
#: ../lib/puppet/util.rb:
|
9029
|
+
#: ../lib/puppet/util.rb:317
|
8897
9030
|
msgid "unknown platform %{platform} in absolute_path"
|
8898
9031
|
msgstr ""
|
8899
9032
|
|
8900
|
-
#: ../lib/puppet/util.rb:
|
9033
|
+
#: ../lib/puppet/util.rb:352
|
8901
9034
|
msgid "Failed to convert '%{path}' to URI: %{detail}"
|
8902
9035
|
msgstr ""
|
8903
9036
|
|
8904
|
-
#: ../lib/puppet/util.rb:
|
9037
|
+
#: ../lib/puppet/util.rb:452
|
8905
9038
|
msgid "path may not be nil"
|
8906
9039
|
msgstr ""
|
8907
9040
|
|
8908
|
-
#: ../lib/puppet/util.rb:
|
9041
|
+
#: ../lib/puppet/util.rb:620
|
8909
9042
|
msgid "replace_file requires a block"
|
8910
9043
|
msgstr ""
|
8911
9044
|
|
8912
|
-
#: ../lib/puppet/util.rb:
|
9045
|
+
#: ../lib/puppet/util.rb:624
|
8913
9046
|
msgid "replace_file default_mode: %{default_mode} is invalid"
|
8914
9047
|
msgstr ""
|
8915
9048
|
|
@@ -8941,11 +9074,11 @@ msgstr ""
|
|
8941
9074
|
msgid "Failed to abandon a child process contract"
|
8942
9075
|
msgstr ""
|
8943
9076
|
|
8944
|
-
#: ../lib/puppet/util/autoload.rb:
|
9077
|
+
#: ../lib/puppet/util/autoload.rb:75
|
8945
9078
|
msgid "Could not autoload %{name}: %{detail}"
|
8946
9079
|
msgstr ""
|
8947
9080
|
|
8948
|
-
#: ../lib/puppet/util/autoload.rb:
|
9081
|
+
#: ../lib/puppet/util/autoload.rb:182
|
8949
9082
|
msgid "Autoload paths cannot be fully qualified"
|
8950
9083
|
msgstr ""
|
8951
9084
|
|
@@ -9369,7 +9502,7 @@ msgstr ""
|
|
9369
9502
|
msgid "Section %{name} is already defined, cannot redefine"
|
9370
9503
|
msgstr ""
|
9371
9504
|
|
9372
|
-
#: ../lib/puppet/util/instance_loader.rb:
|
9505
|
+
#: ../lib/puppet/util/instance_loader.rb:56
|
9373
9506
|
msgid "Loaded %{type} file for %{name} but %{type} was not defined"
|
9374
9507
|
msgstr ""
|
9375
9508
|
|
@@ -9476,24 +9609,20 @@ msgstr ""
|
|
9476
9609
|
msgid "Creating log directory %{dir}"
|
9477
9610
|
msgstr ""
|
9478
9611
|
|
9479
|
-
#: ../lib/puppet/util/
|
9480
|
-
msgid "Unable to set ownership to %{user}:%{group} for log file: %{path}"
|
9481
|
-
msgstr ""
|
9482
|
-
|
9483
|
-
#: ../lib/puppet/util/logging.rb:83 ../lib/puppet/util/logging.rb:106
|
9612
|
+
#: ../lib/puppet/util/logging.rb:81 ../lib/puppet/util/logging.rb:105
|
9484
9613
|
msgid "Wrapped exception:"
|
9485
9614
|
msgstr ""
|
9486
9615
|
|
9487
9616
|
#. TRANSLATORS the literals ":file", ":line", and ":key" should not be translated
|
9488
|
-
#: ../lib/puppet/util/logging.rb:
|
9617
|
+
#: ../lib/puppet/util/logging.rb:162
|
9489
9618
|
msgid "Need either :file and :line, or :key"
|
9490
9619
|
msgstr ""
|
9491
9620
|
|
9492
|
-
#: ../lib/puppet/util/logging.rb:
|
9621
|
+
#: ../lib/puppet/util/logging.rb:192
|
9493
9622
|
msgid "(file & line not available)"
|
9494
9623
|
msgstr ""
|
9495
9624
|
|
9496
|
-
#: ../lib/puppet/util/logging.rb:
|
9625
|
+
#: ../lib/puppet/util/logging.rb:294
|
9497
9626
|
msgid "(location: %{location})"
|
9498
9627
|
msgstr ""
|
9499
9628
|
|
@@ -9517,6 +9646,10 @@ msgstr ""
|
|
9517
9646
|
msgid "%{value} is an invalid url"
|
9518
9647
|
msgstr ""
|
9519
9648
|
|
9649
|
+
#: ../lib/puppet/util/package/version/rpm.rb:40
|
9650
|
+
msgid "Cannot compare, as %{other} is not a Rpm Version"
|
9651
|
+
msgstr ""
|
9652
|
+
|
9520
9653
|
#: ../lib/puppet/util/plist.rb:48
|
9521
9654
|
msgid "Cannot read file %{file_path}; Puppet is skipping it."
|
9522
9655
|
msgstr ""
|
@@ -9525,7 +9658,7 @@ msgstr ""
|
|
9525
9658
|
msgid "Details: %{detail}"
|
9526
9659
|
msgstr ""
|
9527
9660
|
|
9528
|
-
#: ../lib/puppet/util/plist.rb:
|
9661
|
+
#: ../lib/puppet/util/plist.rb:151
|
9529
9662
|
msgid "Unable to write the file %{file_path}. %{error}"
|
9530
9663
|
msgstr ""
|
9531
9664
|
|
@@ -9633,23 +9766,23 @@ msgstr ""
|
|
9633
9766
|
msgid "Sleeping for %{time} seconds (splay is enabled)"
|
9634
9767
|
msgstr ""
|
9635
9768
|
|
9636
|
-
#: ../lib/puppet/util/storage.rb:
|
9769
|
+
#: ../lib/puppet/util/storage.rb:52
|
9637
9770
|
msgid "Checksumfile %{filename} is not a file, ignoring"
|
9638
9771
|
msgstr ""
|
9639
9772
|
|
9640
|
-
#: ../lib/puppet/util/storage.rb:
|
9773
|
+
#: ../lib/puppet/util/storage.rb:59
|
9641
9774
|
msgid "Checksumfile %{filename} is corrupt (%{detail}); replacing"
|
9642
9775
|
msgstr ""
|
9643
9776
|
|
9644
|
-
#: ../lib/puppet/util/storage.rb:
|
9777
|
+
#: ../lib/puppet/util/storage.rb:64
|
9645
9778
|
msgid "Could not rename corrupt %{filename}; remove manually"
|
9646
9779
|
msgstr ""
|
9647
9780
|
|
9648
|
-
#: ../lib/puppet/util/storage.rb:
|
9781
|
+
#: ../lib/puppet/util/storage.rb:70
|
9649
9782
|
msgid "State got corrupted"
|
9650
9783
|
msgstr ""
|
9651
9784
|
|
9652
|
-
#: ../lib/puppet/util/storage.rb:
|
9785
|
+
#: ../lib/puppet/util/storage.rb:82
|
9653
9786
|
msgid "Creating state file %{file}"
|
9654
9787
|
msgstr ""
|
9655
9788
|
|
@@ -9729,43 +9862,43 @@ msgstr ""
|
|
9729
9862
|
msgid "Could not resolve name: %{name}"
|
9730
9863
|
msgstr ""
|
9731
9864
|
|
9732
|
-
#: ../lib/puppet/util/windows/adsi.rb:
|
9865
|
+
#: ../lib/puppet/util/windows/adsi.rb:230
|
9733
9866
|
msgid "Subclass must implement class-level method 'list_all'!"
|
9734
9867
|
msgstr ""
|
9735
9868
|
|
9736
|
-
#: ../lib/puppet/util/windows/adsi.rb:
|
9869
|
+
#: ../lib/puppet/util/windows/adsi.rb:283
|
9737
9870
|
msgid "Puppet is not able to create/delete domain %{object_class} objects with the %{object_class} resource."
|
9738
9871
|
msgstr ""
|
9739
9872
|
|
9740
|
-
#: ../lib/puppet/util/windows/adsi.rb:
|
9873
|
+
#: ../lib/puppet/util/windows/adsi.rb:287
|
9741
9874
|
msgid "%{object_class} update failed: %{error}"
|
9742
9875
|
msgstr ""
|
9743
9876
|
|
9744
|
-
#: ../lib/puppet/util/windows/adsi.rb:
|
9877
|
+
#: ../lib/puppet/util/windows/adsi.rb:313
|
9745
9878
|
msgid "Cannot create user if group '%{name}' exists."
|
9746
9879
|
msgstr ""
|
9747
9880
|
|
9748
|
-
#: ../lib/puppet/util/windows/adsi.rb:
|
9881
|
+
#: ../lib/puppet/util/windows/adsi.rb:453
|
9749
9882
|
msgid "Unrecognized ADS UserFlags: %{unrecognized_flags}"
|
9750
9883
|
msgstr ""
|
9751
9884
|
|
9752
|
-
#: ../lib/puppet/util/windows/adsi.rb:
|
9885
|
+
#: ../lib/puppet/util/windows/adsi.rb:497
|
9753
9886
|
msgid "Failed to get user name"
|
9754
9887
|
msgstr ""
|
9755
9888
|
|
9756
|
-
#: ../lib/puppet/util/windows/adsi.rb:
|
9889
|
+
#: ../lib/puppet/util/windows/adsi.rb:534
|
9757
9890
|
msgid "Cannot delete user profile for '%{sid}' prior to Vista SP1"
|
9758
9891
|
msgstr ""
|
9759
9892
|
|
9760
|
-
#: ../lib/puppet/util/windows/adsi.rb:
|
9893
|
+
#: ../lib/puppet/util/windows/adsi.rb:552
|
9761
9894
|
msgid "Cannot create group if user '%{name}' exists."
|
9762
9895
|
msgstr ""
|
9763
9896
|
|
9764
|
-
#: ../lib/puppet/util/windows/api_types.rb:
|
9897
|
+
#: ../lib/puppet/util/windows/api_types.rb:85
|
9765
9898
|
msgid "Unable to read wide strings with %{null_terminator} terminal nulls"
|
9766
9899
|
msgstr ""
|
9767
9900
|
|
9768
|
-
#: ../lib/puppet/util/windows/api_types.rb:
|
9901
|
+
#: ../lib/puppet/util/windows/api_types.rb:216
|
9769
9902
|
msgid "Bad GUID format."
|
9770
9903
|
msgstr ""
|
9771
9904
|
|
@@ -9820,16 +9953,20 @@ msgstr ""
|
|
9820
9953
|
msgid "Failed to call GetLongPathName"
|
9821
9954
|
msgstr ""
|
9822
9955
|
|
9823
|
-
#: ../lib/puppet/util/windows/principal.rb:
|
9956
|
+
#: ../lib/puppet/util/windows/principal.rb:67 ../lib/puppet/util/windows/principal.rb:74
|
9824
9957
|
msgid "Failed to call LookupAccountNameW with account: %{account_name}"
|
9825
9958
|
msgstr ""
|
9826
9959
|
|
9827
9960
|
#. TRANSLATORS `lookup_account_sid` is a variable name and should not be translated
|
9828
|
-
#: ../lib/puppet/util/windows/principal.rb:
|
9961
|
+
#: ../lib/puppet/util/windows/principal.rb:97
|
9829
9962
|
msgid "Byte array for lookup_account_sid must not be nil and must be at least 1 byte long"
|
9830
9963
|
msgstr ""
|
9831
9964
|
|
9832
|
-
#: ../lib/puppet/util/windows/principal.rb:
|
9965
|
+
#: ../lib/puppet/util/windows/principal.rb:114
|
9966
|
+
msgid "Byte array for lookup_account_sid is invalid: %{sid_bytes}"
|
9967
|
+
msgstr ""
|
9968
|
+
|
9969
|
+
#: ../lib/puppet/util/windows/principal.rb:122 ../lib/puppet/util/windows/principal.rb:129
|
9833
9970
|
msgid "Failed to call LookupAccountSidW with bytes: %{sid_bytes}"
|
9834
9971
|
msgstr ""
|
9835
9972
|
|
@@ -9837,23 +9974,23 @@ msgstr ""
|
|
9837
9974
|
msgid "Failed to get child process exit code"
|
9838
9975
|
msgstr ""
|
9839
9976
|
|
9840
|
-
#: ../lib/puppet/util/windows/process.rb:
|
9977
|
+
#: ../lib/puppet/util/windows/process.rb:286
|
9841
9978
|
msgid "GetVersionEx failed"
|
9842
9979
|
msgstr ""
|
9843
9980
|
|
9844
|
-
#: ../lib/puppet/util/windows/process.rb:
|
9981
|
+
#: ../lib/puppet/util/windows/process.rb:315
|
9845
9982
|
msgid "Discarding environment variable %{string} which contains invalid bytes"
|
9846
9983
|
msgstr ""
|
9847
9984
|
|
9848
|
-
#: ../lib/puppet/util/windows/process.rb:
|
9985
|
+
#: ../lib/puppet/util/windows/process.rb:331
|
9849
9986
|
msgid "environment variable name must not be nil or empty"
|
9850
9987
|
msgstr ""
|
9851
9988
|
|
9852
|
-
#: ../lib/puppet/util/windows/process.rb:
|
9989
|
+
#: ../lib/puppet/util/windows/process.rb:336
|
9853
9990
|
msgid "Failed to remove environment variable: %{name}"
|
9854
9991
|
msgstr ""
|
9855
9992
|
|
9856
|
-
#: ../lib/puppet/util/windows/process.rb:
|
9993
|
+
#: ../lib/puppet/util/windows/process.rb:341
|
9857
9994
|
msgid "Failed to set environment variable: %{name}"
|
9858
9995
|
msgstr ""
|
9859
9996
|
|
@@ -9865,39 +10002,39 @@ msgstr ""
|
|
9865
10002
|
msgid "Failed to open registry key '%{key}\\%{path}'"
|
9866
10003
|
msgstr ""
|
9867
10004
|
|
9868
|
-
#: ../lib/puppet/util/windows/registry.rb:
|
10005
|
+
#: ../lib/puppet/util/windows/registry.rb:133
|
9869
10006
|
msgid "Failed to enumerate %{key} registry keys at index %{index}"
|
9870
10007
|
msgstr ""
|
9871
10008
|
|
9872
|
-
#: ../lib/puppet/util/windows/registry.rb:
|
10009
|
+
#: ../lib/puppet/util/windows/registry.rb:167
|
9873
10010
|
msgid "Failed to enumerate %{key} registry values at index %{index}"
|
9874
10011
|
msgstr ""
|
9875
10012
|
|
9876
|
-
#: ../lib/puppet/util/windows/registry.rb:
|
10013
|
+
#: ../lib/puppet/util/windows/registry.rb:197
|
9877
10014
|
msgid "Failed to query registry %{key} for sizes"
|
9878
10015
|
msgstr ""
|
9879
10016
|
|
9880
|
-
#: ../lib/puppet/util/windows/registry.rb:
|
10017
|
+
#: ../lib/puppet/util/windows/registry.rb:233
|
9881
10018
|
msgid "Type mismatch (expect %{rtype} but %{type} present)"
|
9882
10019
|
msgstr ""
|
9883
10020
|
|
9884
|
-
#: ../lib/puppet/util/windows/registry.rb:
|
10021
|
+
#: ../lib/puppet/util/windows/registry.rb:255
|
9885
10022
|
msgid "Type %{type} is not supported."
|
9886
10023
|
msgstr ""
|
9887
10024
|
|
9888
|
-
#: ../lib/puppet/util/windows/registry.rb:
|
10025
|
+
#: ../lib/puppet/util/windows/registry.rb:260
|
9889
10026
|
msgid "A value in the registry key %{parent_key_name}%{key} is corrupt or invalid"
|
9890
10027
|
msgstr ""
|
9891
10028
|
|
9892
|
-
#: ../lib/puppet/util/windows/registry.rb:
|
10029
|
+
#: ../lib/puppet/util/windows/registry.rb:282
|
9893
10030
|
msgid "Failed to read registry value %{value} at %{key}"
|
9894
10031
|
msgstr ""
|
9895
10032
|
|
9896
|
-
#: ../lib/puppet/util/windows/registry.rb:
|
10033
|
+
#: ../lib/puppet/util/windows/registry.rb:300
|
9897
10034
|
msgid "Failed to delete registry value %{name} at %{key}"
|
9898
10035
|
msgstr ""
|
9899
10036
|
|
9900
|
-
#: ../lib/puppet/util/windows/registry.rb:
|
10037
|
+
#: ../lib/puppet/util/windows/registry.rb:315
|
9901
10038
|
msgid "Failed to delete registry key %{name} at %{key}"
|
9902
10039
|
msgstr ""
|
9903
10040
|
|
@@ -9905,77 +10042,77 @@ msgstr ""
|
|
9905
10042
|
msgid "Failed to import root certificate: %{detail}"
|
9906
10043
|
msgstr ""
|
9907
10044
|
|
9908
|
-
#: ../lib/puppet/util/windows/security.rb:
|
10045
|
+
#: ../lib/puppet/util/windows/security.rb:174
|
9909
10046
|
msgid "Failed to get volume information"
|
9910
10047
|
msgstr ""
|
9911
10048
|
|
9912
10049
|
#. TRANSLATORS 'SYSTEM' is a Windows name and should not be translated
|
9913
|
-
#: ../lib/puppet/util/windows/security.rb:
|
10050
|
+
#: ../lib/puppet/util/windows/security.rb:340
|
9914
10051
|
msgid "Setting control rights for %{path} owner SYSTEM to less than Full Control rights. Setting SYSTEM rights to less than Full Control may have unintented consequences for operations on this file"
|
9915
10052
|
msgstr ""
|
9916
10053
|
|
9917
10054
|
#. TRANSLATORS 'SYSTEM' is a Windows name and should not be translated
|
9918
|
-
#: ../lib/puppet/util/windows/security.rb:
|
10055
|
+
#: ../lib/puppet/util/windows/security.rb:343
|
9919
10056
|
msgid "%{path} owner and group both set to user SYSTEM, but group is not managed directly: SYSTEM user rights will be set to FullControl by group"
|
9920
10057
|
msgstr ""
|
9921
10058
|
|
9922
10059
|
#. TRANSLATORS 'SYSTEM' is a Windows name and should not be translated
|
9923
|
-
#: ../lib/puppet/util/windows/security.rb:
|
10060
|
+
#: ../lib/puppet/util/windows/security.rb:346
|
9924
10061
|
msgid "An attempt to set mode %{mode} on item %{path} would result in the owner, SYSTEM, to have less than Full Control rights. This attempt has been corrected to Full Control"
|
9925
10062
|
msgstr ""
|
9926
10063
|
|
9927
10064
|
#. TRANSLATORS 'SYSTEM' is a Windows name and should not be translated
|
9928
|
-
#: ../lib/puppet/util/windows/security.rb:
|
10065
|
+
#: ../lib/puppet/util/windows/security.rb:356
|
9929
10066
|
msgid "Setting control rights for %{path} group SYSTEM to less than Full Control rights. Setting SYSTEM rights to less than Full Control may have unintented consequences for operations on this file"
|
9930
10067
|
msgstr ""
|
9931
10068
|
|
9932
10069
|
#. TRANSLATORS 'SYSTEM' is a Windows name and should not be translated
|
9933
|
-
#: ../lib/puppet/util/windows/security.rb:
|
10070
|
+
#: ../lib/puppet/util/windows/security.rb:359
|
9934
10071
|
msgid "%{path} owner and group both set to user SYSTEM, but owner is not managed directly: SYSTEM user rights will be set to FullControl by owner"
|
9935
10072
|
msgstr ""
|
9936
10073
|
|
9937
10074
|
#. TRANSLATORS 'SYSTEM' is a Windows name and should not be translated
|
9938
|
-
#: ../lib/puppet/util/windows/security.rb:
|
10075
|
+
#: ../lib/puppet/util/windows/security.rb:362
|
9939
10076
|
msgid "An attempt to set mode %{mode} on item %{path} would result in the group, SYSTEM, to have less than Full Control rights. This attempt has been corrected to Full Control"
|
9940
10077
|
msgstr ""
|
9941
10078
|
|
9942
|
-
#: ../lib/puppet/util/windows/security.rb:
|
10079
|
+
#: ../lib/puppet/util/windows/security.rb:433 ../lib/puppet/util/windows/security.rb:450 ../lib/puppet/util/windows/sid.rb:155 ../lib/puppet/util/windows/sid.rb:217 ../lib/puppet/util/windows/user.rb:59
|
9943
10080
|
msgid "Invalid SID"
|
9944
10081
|
msgstr ""
|
9945
10082
|
|
9946
|
-
#: ../lib/puppet/util/windows/security.rb:
|
10083
|
+
#: ../lib/puppet/util/windows/security.rb:437 ../lib/puppet/util/windows/security.rb:454
|
9947
10084
|
msgid "Failed to add access control entry"
|
9948
10085
|
msgstr ""
|
9949
10086
|
|
9950
|
-
#: ../lib/puppet/util/windows/security.rb:
|
10087
|
+
#: ../lib/puppet/util/windows/security.rb:465 ../lib/puppet/util/windows/security.rb:647
|
9951
10088
|
msgid "Invalid DACL"
|
9952
10089
|
msgstr ""
|
9953
10090
|
|
9954
|
-
#: ../lib/puppet/util/windows/security.rb:
|
10091
|
+
#: ../lib/puppet/util/windows/security.rb:488
|
9955
10092
|
msgid "Unsupported access control entry type: 0x%{type}"
|
9956
10093
|
msgstr ""
|
9957
10094
|
|
9958
|
-
#: ../lib/puppet/util/windows/security.rb:
|
10095
|
+
#: ../lib/puppet/util/windows/security.rb:522
|
9959
10096
|
msgid "Failed to open '%{path}'"
|
9960
10097
|
msgstr ""
|
9961
10098
|
|
9962
|
-
#: ../lib/puppet/util/windows/security.rb:
|
10099
|
+
#: ../lib/puppet/util/windows/security.rb:569
|
9963
10100
|
msgid "Failed to adjust process privileges"
|
9964
10101
|
msgstr ""
|
9965
10102
|
|
9966
|
-
#: ../lib/puppet/util/windows/security.rb:
|
10103
|
+
#: ../lib/puppet/util/windows/security.rb:599
|
9967
10104
|
msgid "Failed to get security information"
|
9968
10105
|
msgstr ""
|
9969
10106
|
|
9970
|
-
#: ../lib/puppet/util/windows/security.rb:
|
10107
|
+
#: ../lib/puppet/util/windows/security.rb:610
|
9971
10108
|
msgid "Failed to get security descriptor control"
|
9972
10109
|
msgstr ""
|
9973
10110
|
|
9974
|
-
#: ../lib/puppet/util/windows/security.rb:
|
10111
|
+
#: ../lib/puppet/util/windows/security.rb:643
|
9975
10112
|
msgid "Failed to initialize ACL"
|
9976
10113
|
msgstr ""
|
9977
10114
|
|
9978
|
-
#: ../lib/puppet/util/windows/security.rb:
|
10115
|
+
#: ../lib/puppet/util/windows/security.rb:682
|
9979
10116
|
msgid "Failed to set security information"
|
9980
10117
|
msgstr ""
|
9981
10118
|
|
@@ -10015,87 +10152,83 @@ msgstr ""
|
|
10015
10152
|
msgid "Unknown start type '%{start_type}' for '%{service_name}'"
|
10016
10153
|
msgstr ""
|
10017
10154
|
|
10018
|
-
#: ../lib/puppet/util/windows/service.rb:
|
10019
|
-
msgid "Unknown start type %{start_type}"
|
10020
|
-
msgstr ""
|
10021
|
-
|
10022
|
-
#: ../lib/puppet/util/windows/service.rb:474
|
10155
|
+
#: ../lib/puppet/util/windows/service.rb:487
|
10023
10156
|
msgid "Failed to update service configuration"
|
10024
10157
|
msgstr ""
|
10025
10158
|
|
10026
|
-
#: ../lib/puppet/util/windows/service.rb:
|
10159
|
+
#: ../lib/puppet/util/windows/service.rb:552
|
10027
10160
|
msgid "Failed to fetch services"
|
10028
10161
|
msgstr ""
|
10029
10162
|
|
10030
|
-
#: ../lib/puppet/util/windows/service.rb:
|
10163
|
+
#: ../lib/puppet/util/windows/service.rb:601
|
10031
10164
|
msgid "Failed to open a handle to the service"
|
10032
10165
|
msgstr ""
|
10033
10166
|
|
10034
|
-
#: ../lib/puppet/util/windows/service.rb:
|
10167
|
+
#: ../lib/puppet/util/windows/service.rb:618
|
10035
10168
|
msgid "Failed to open a handle to the service control manager"
|
10036
10169
|
msgstr ""
|
10037
10170
|
|
10038
|
-
#: ../lib/puppet/util/windows/service.rb:
|
10171
|
+
#: ../lib/puppet/util/windows/service.rb:641
|
10039
10172
|
msgid "The service is already in the %{final_state} state. No further work needs to be done."
|
10040
10173
|
msgstr ""
|
10041
10174
|
|
10042
|
-
#: ../lib/puppet/util/windows/service.rb:
|
10175
|
+
#: ../lib/puppet/util/windows/service.rb:653
|
10043
10176
|
msgid "The service must be in one of the %{valid_initial_states} states to perform this transition. It is currently in the %{current_state} state."
|
10044
10177
|
msgstr ""
|
10045
10178
|
|
10046
|
-
#: ../lib/puppet/util/windows/service.rb:
|
10179
|
+
#: ../lib/puppet/util/windows/service.rb:664
|
10047
10180
|
msgid "There is already a pending transition to the %{final_state} state for the %{service_name} service."
|
10048
10181
|
msgstr ""
|
10049
10182
|
|
10050
|
-
#: ../lib/puppet/util/windows/service.rb:
|
10183
|
+
#: ../lib/puppet/util/windows/service.rb:680
|
10051
10184
|
msgid "The service is in the %{pending_state} state, which is an unsafe pending state."
|
10052
10185
|
msgstr ""
|
10053
10186
|
|
10054
|
-
#: ../lib/puppet/util/windows/service.rb:
|
10187
|
+
#: ../lib/puppet/util/windows/service.rb:685
|
10055
10188
|
msgid "Transitioning the %{service_name} service from %{initial_state} to %{final_state}"
|
10056
10189
|
msgstr ""
|
10057
10190
|
|
10058
|
-
#: ../lib/puppet/util/windows/service.rb:
|
10191
|
+
#: ../lib/puppet/util/windows/service.rb:689
|
10059
10192
|
msgid "Waiting for the transition to finish"
|
10060
10193
|
msgstr ""
|
10061
10194
|
|
10062
|
-
#: ../lib/puppet/util/windows/service.rb:
|
10195
|
+
#: ../lib/puppet/util/windows/service.rb:694
|
10063
10196
|
msgid "Failed to transition the %{service_name} service to the %{final_state} state. Detail: %{detail}"
|
10064
10197
|
msgstr ""
|
10065
10198
|
|
10066
|
-
#: ../lib/puppet/util/windows/service.rb:
|
10199
|
+
#: ../lib/puppet/util/windows/service.rb:733 ../lib/puppet/util/windows/service.rb:769
|
10067
10200
|
msgid "Service query failed"
|
10068
10201
|
msgstr ""
|
10069
10202
|
|
10070
|
-
#: ../lib/puppet/util/windows/service.rb:
|
10203
|
+
#: ../lib/puppet/util/windows/service.rb:812
|
10071
10204
|
msgid "Service query for %{parameter_name} failed"
|
10072
10205
|
msgstr ""
|
10073
10206
|
|
10074
|
-
#: ../lib/puppet/util/windows/service.rb:
|
10207
|
+
#: ../lib/puppet/util/windows/service.rb:835
|
10075
10208
|
msgid "Failed to update service %{change} configuration"
|
10076
10209
|
msgstr ""
|
10077
10210
|
|
10078
|
-
#: ../lib/puppet/util/windows/service.rb:
|
10211
|
+
#: ../lib/puppet/util/windows/service.rb:862
|
10079
10212
|
msgid "Failed to send the %{control_signal} signal to the service. Its current state is %{current_state}. Reason for failure:"
|
10080
10213
|
msgstr ""
|
10081
10214
|
|
10082
|
-
#: ../lib/puppet/util/windows/service.rb:
|
10215
|
+
#: ../lib/puppet/util/windows/service.rb:897
|
10083
10216
|
msgid "The service transitioned to the %{pending_state} state."
|
10084
10217
|
msgstr ""
|
10085
10218
|
|
10086
|
-
#: ../lib/puppet/util/windows/service.rb:
|
10219
|
+
#: ../lib/puppet/util/windows/service.rb:911
|
10087
10220
|
msgid "Timed out while waiting for the service to transition from %{initial_state} to %{final_state} OR from %{initial_state} to %{pending_state} to %{final_state}. The service's current state is %{current_state}."
|
10088
10221
|
msgstr ""
|
10089
10222
|
|
10090
|
-
#: ../lib/puppet/util/windows/service.rb:
|
10223
|
+
#: ../lib/puppet/util/windows/service.rb:926
|
10091
10224
|
msgid "Waiting for the pending transition to the %{final_state} state to finish."
|
10092
10225
|
msgstr ""
|
10093
10226
|
|
10094
|
-
#: ../lib/puppet/util/windows/service.rb:
|
10227
|
+
#: ../lib/puppet/util/windows/service.rb:940
|
10095
10228
|
msgid "Unexpected transition to the %{current_state} state while waiting for the pending transition from %{pending_state} to %{final_state} to finish."
|
10096
10229
|
msgstr ""
|
10097
10230
|
|
10098
|
-
#: ../lib/puppet/util/windows/service.rb:
|
10231
|
+
#: ../lib/puppet/util/windows/service.rb:954
|
10099
10232
|
msgid "Timed out while waiting for the pending transition from %{pending_state} to %{final_state} to finish. The current state is %{current_state}."
|
10100
10233
|
msgstr ""
|
10101
10234
|
|
@@ -10115,23 +10248,23 @@ msgstr ""
|
|
10115
10248
|
msgid "Failed to convert string SID: %{string_sid}"
|
10116
10249
|
msgstr ""
|
10117
10250
|
|
10118
|
-
#: ../lib/puppet/util/windows/user.rb:
|
10251
|
+
#: ../lib/puppet/util/windows/user.rb:54
|
10119
10252
|
msgid "Failed to create administrators SID"
|
10120
10253
|
msgstr ""
|
10121
10254
|
|
10122
|
-
#: ../lib/puppet/util/windows/user.rb:
|
10255
|
+
#: ../lib/puppet/util/windows/user.rb:64
|
10123
10256
|
msgid "Failed to check membership"
|
10124
10257
|
msgstr ""
|
10125
10258
|
|
10126
|
-
#: ../lib/puppet/util/windows/user.rb:
|
10259
|
+
#: ../lib/puppet/util/windows/user.rb:104
|
10127
10260
|
msgid "Failed to logon user %{name}"
|
10128
10261
|
msgstr ""
|
10129
10262
|
|
10130
|
-
#: ../lib/puppet/util/windows/user.rb:
|
10263
|
+
#: ../lib/puppet/util/windows/user.rb:135
|
10131
10264
|
msgid "Failed to load user profile %{user}"
|
10132
10265
|
msgstr ""
|
10133
10266
|
|
10134
|
-
#: ../lib/puppet/util/windows/user.rb:
|
10267
|
+
#: ../lib/puppet/util/windows/user.rb:141
|
10135
10268
|
msgid "Failed to unload user profile %{user}"
|
10136
10269
|
msgstr ""
|
10137
10270
|
|