puppet 6.11.1-x86-mingw32 → 6.16.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 +3 -8
- data/CONTRIBUTING.md +7 -13
- data/Gemfile +1 -0
- data/Gemfile.lock +39 -36
- data/README.md +17 -24
- data/ext/build_defaults.yaml +1 -0
- data/ext/project_data.yaml +1 -1
- data/ext/windows/service/daemon.rb +25 -20
- data/lib/puppet.rb +52 -13
- data/lib/puppet/agent.rb +20 -14
- data/lib/puppet/application/agent.rb +12 -14
- 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/concurrent.rb +2 -0
- data/lib/puppet/concurrent/lock.rb +16 -0
- data/lib/puppet/concurrent/synchronized.rb +15 -0
- data/lib/puppet/concurrent/thread_local_singleton.rb +14 -0
- data/lib/puppet/configurer.rb +85 -83
- data/lib/puppet/configurer/plugin_handler.rb +10 -1
- data/lib/puppet/context/trusted_information.rb +14 -8
- data/lib/puppet/daemon.rb +13 -27
- data/lib/puppet/defaults.rb +158 -40
- data/lib/puppet/environments.rb +30 -20
- data/lib/puppet/error.rb +9 -1
- 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 +1 -1
- data/lib/puppet/file_system/file_impl.rb +13 -9
- 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 +4 -0
- data/lib/puppet/file_system/windows.rb +7 -10
- data/lib/puppet/forge.rb +3 -3
- data/lib/puppet/forge/errors.rb +2 -2
- data/lib/puppet/forge/repository.rb +31 -86
- data/lib/puppet/functions/call.rb +1 -1
- data/lib/puppet/functions/camelcase.rb +2 -2
- data/lib/puppet/functions/epp.rb +4 -4
- data/lib/puppet/functions/eyaml_lookup_key.rb +13 -8
- data/lib/puppet/functions/filter.rb +1 -0
- data/lib/puppet/functions/find_file.rb +9 -9
- data/lib/puppet/functions/find_template.rb +63 -0
- data/lib/puppet/functions/inline_epp.rb +5 -5
- data/lib/puppet/functions/reduce.rb +2 -4
- data/lib/puppet/http.rb +7 -0
- data/lib/puppet/http/client.rb +341 -54
- data/lib/puppet/http/errors.rb +2 -0
- data/lib/puppet/http/external_client.rb +90 -0
- data/lib/puppet/http/redirector.rb +34 -0
- data/lib/puppet/http/resolver.rb +57 -1
- data/lib/puppet/http/resolver/server_list.rb +98 -0
- data/lib/puppet/http/resolver/settings.rb +23 -2
- data/lib/puppet/http/resolver/srv.rb +36 -4
- data/lib/puppet/http/response.rb +68 -1
- data/lib/puppet/http/retry_after_handler.rb +39 -0
- data/lib/puppet/http/service.rb +179 -3
- data/lib/puppet/http/service/ca.rb +84 -21
- 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 +66 -0
- data/lib/puppet/http/session.rb +106 -31
- 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 +4 -4
- 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/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/base_pool.rb +19 -1
- 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 +182 -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 +24 -8
- data/lib/puppet/pal/catalog_compiler.rb +5 -0
- data/lib/puppet/pal/pal_impl.rb +9 -29
- data/lib/puppet/parser/ast/pops_bridge.rb +6 -11
- data/lib/puppet/parser/compiler.rb +42 -32
- data/lib/puppet/parser/functions.rb +18 -13
- data/lib/puppet/parser/functions/epp.rb +3 -3
- data/lib/puppet/parser/functions/filter.rb +1 -0
- data/lib/puppet/parser/functions/inline_epp.rb +5 -5
- data/lib/puppet/pops/evaluator/access_operator.rb +2 -2
- data/lib/puppet/pops/evaluator/evaluator_impl.rb +1 -1
- data/lib/puppet/pops/evaluator/runtime3_support.rb +1 -1
- data/lib/puppet/pops/loader/puppet_plan_instantiator.rb +12 -3
- data/lib/puppet/pops/loaders.rb +7 -5
- data/lib/puppet/pops/lookup/invocation.rb +10 -3
- data/lib/puppet/pops/model/pn_transformer.rb +5 -9
- data/lib/puppet/pops/parser/evaluating_parser.rb +8 -11
- data/lib/puppet/pops/serialization/json_path.rb +3 -3
- data/lib/puppet/pops/time/timespan.rb +3 -5
- data/lib/puppet/pops/types/p_object_type_extension.rb +10 -0
- data/lib/puppet/pops/types/string_converter.rb +6 -9
- data/lib/puppet/pops/types/type_calculator.rb +30 -10
- data/lib/puppet/pops/types/type_formatter.rb +9 -11
- data/lib/puppet/pops/types/type_parser.rb +3 -3
- data/lib/puppet/pops/validation/checker4_0.rb +1 -1
- data/lib/puppet/pops/validation/tasks_checker.rb +5 -1
- 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/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 +5 -5
- 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 +108 -24
- data/lib/puppet/provider/package/zypper.rb +59 -1
- data/lib/puppet/provider/package_targetable.rb +5 -4
- data/lib/puppet/provider/service/systemd.rb +23 -5
- data/lib/puppet/provider/user/aix.rb +1 -0
- data/lib/puppet/provider/user/directoryservice.rb +30 -5
- data/lib/puppet/provider/user/hpux.rb +1 -1
- data/lib/puppet/provider/user/useradd.rb +11 -8
- data/lib/puppet/reports/http.rb +13 -9
- data/lib/puppet/reports/store.rb +1 -1
- data/lib/puppet/resource/type_collection.rb +20 -16
- data/lib/puppet/runtime.rb +32 -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_provider.rb +20 -0
- 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 +7 -1
- data/lib/puppet/transaction.rb +33 -11
- data/lib/puppet/transaction/report.rb +2 -2
- data/lib/puppet/transaction/resource_harness.rb +1 -1
- data/lib/puppet/type.rb +7 -2
- data/lib/puppet/type/file.rb +13 -0
- data/lib/puppet/type/file/data_sync.rb +5 -1
- data/lib/puppet/type/file/source.rb +49 -58
- data/lib/puppet/type/group.rb +5 -4
- data/lib/puppet/type/package.rb +102 -10
- data/lib/puppet/type/service.rb +6 -8
- data/lib/puppet/type/user.rb +6 -30
- data/lib/puppet/util.rb +34 -11
- data/lib/puppet/util/at_fork.rb +1 -1
- data/lib/puppet/util/autoload.rb +4 -18
- data/lib/puppet/util/instance_loader.rb +14 -10
- data/lib/puppet/util/log/destinations.rb +2 -11
- data/lib/puppet/util/logging.rb +30 -18
- 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/rpm_compare.rb +193 -0
- data/lib/puppet/util/storage.rb +0 -1
- data/lib/puppet/util/windows/adsi.rb +50 -20
- data/lib/puppet/util/windows/process.rb +15 -14
- data/lib/puppet/util/windows/security.rb +1 -0
- data/lib/puppet/util/windows/sid.rb +3 -3
- data/lib/puppet/util/yaml.rb +1 -1
- data/lib/puppet/version.rb +1 -1
- data/lib/puppet/x509/cert_provider.rb +9 -5
- data/locales/puppet.pot +640 -521
- data/man/man5/puppet.conf.5 +88 -9
- data/man/man8/puppet-agent.8 +6 -6
- 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/forge/bacula.json +76 -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 +394 -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/http/client_spec.rb +154 -0
- 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 +51 -0
- data/spec/integration/network/http_pool_spec.rb +76 -20
- data/spec/integration/node/environment_spec.rb +15 -0
- data/spec/integration/util/windows/adsi_spec.rb +6 -1
- data/spec/lib/puppet/test_ca.rb +2 -2
- data/spec/lib/puppet_spec/https.rb +20 -9
- data/spec/lib/puppet_spec/puppetserver.rb +119 -0
- data/spec/shared_contexts/https.rb +29 -0
- data/spec/spec_helper.rb +6 -2
- 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/concurrent/lock_spec.rb +29 -0
- data/spec/unit/configurer/fact_handler_spec.rb +0 -4
- data/spec/unit/configurer/plugin_handler_spec.rb +36 -19
- data/spec/unit/configurer_spec.rb +400 -406
- data/spec/unit/context/trusted_information_spec.rb +17 -0
- data/spec/unit/daemon_spec.rb +5 -64
- data/spec/unit/defaults_spec.rb +38 -4
- 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_system/uniquefile_spec.rb +11 -0
- data/spec/unit/file_system_spec.rb +26 -2
- data/spec/unit/forge/errors_spec.rb +1 -1
- data/spec/unit/forge/forge_spec.rb +12 -54
- data/spec/unit/forge/module_release_spec.rb +19 -6
- data/spec/unit/forge/repository_spec.rb +63 -157
- data/spec/unit/forge_spec.rb +46 -116
- data/spec/unit/functions/find_template_spec.rb +69 -0
- data/spec/unit/functions/lookup_spec.rb +13 -0
- data/spec/unit/http/client_spec.rb +395 -27
- data/spec/unit/http/external_client_spec.rb +201 -0
- data/spec/unit/http/resolver_spec.rb +81 -12
- data/spec/unit/http/response_spec.rb +69 -0
- data/spec/unit/http/service/ca_spec.rb +100 -7
- 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 +118 -0
- data/spec/unit/http/service_spec.rb +117 -4
- data/spec/unit/http/session_spec.rb +237 -19
- 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 +167 -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/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/network/http/connection_spec.rb +549 -176
- 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/pops/evaluator/evaluating_parser_spec.rb +8 -3
- data/spec/unit/pops/serialization/to_from_hr_spec.rb +6 -1
- 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 +9 -4
- 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/package_targetable_spec.rb +60 -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/user/directoryservice_spec.rb +41 -0
- data/spec/unit/provider/user/hpux_spec.rb +2 -2
- data/spec/unit/provider/user/useradd_spec.rb +21 -8
- 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/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 +71 -0
- data/spec/unit/ssl/state_machine_spec.rb +99 -13
- data/spec/unit/transaction/persistence_spec.rb +1 -10
- data/spec/unit/transaction/report_spec.rb +4 -0
- data/spec/unit/transaction_spec.rb +45 -1
- data/spec/unit/type/file/content_spec.rb +9 -3
- data/spec/unit/type/file/ensure_spec.rb +1 -2
- data/spec/unit/type/file/source_spec.rb +86 -35
- data/spec/unit/type/package_spec.rb +8 -0
- data/spec/unit/type/service_spec.rb +9 -8
- data/spec/unit/type/user_spec.rb +1 -2
- data/spec/unit/util/at_fork_spec.rb +3 -2
- data/spec/unit/util/autoload_spec.rb +2 -1
- data/spec/unit/util/log/destinations_spec.rb +1 -29
- data/spec/unit/util/log_spec.rb +0 -138
- data/spec/unit/util/logging_spec.rb +200 -0
- 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 +55 -4
- data/spec/unit/util/windows/sid_spec.rb +2 -2
- data/spec/unit/x509/cert_provider_spec.rb +24 -4
- data/tasks/generate_cert_fixtures.rake +15 -1
- data/tasks/manpages.rake +6 -35
- metadata +92 -12
- data/COMMITTERS.md +0 -244
- data/spec/integration/faces/plugin_spec.rb +0 -61
- data/spec/lib/puppet_spec/validators.rb +0 -37
data/locales/puppet.pot
CHANGED
@@ -1,16 +1,16 @@
|
|
1
1
|
# SOME DESCRIPTIVE TITLE.
|
2
|
-
# Copyright (C)
|
2
|
+
# Copyright (C) 2020 Puppet, Inc.
|
3
3
|
# This file is distributed under the same license as the Puppet automation framework package.
|
4
|
-
# FIRST AUTHOR <EMAIL@ADDRESS>,
|
4
|
+
# FIRST AUTHOR <EMAIL@ADDRESS>, 2020.
|
5
5
|
#
|
6
6
|
#, fuzzy
|
7
7
|
msgid ""
|
8
8
|
msgstr ""
|
9
|
-
"Project-Id-Version: Puppet automation framework 6.
|
9
|
+
"Project-Id-Version: Puppet automation framework 6.15.0-156-gc38342f706\n"
|
10
10
|
"\n"
|
11
11
|
"Report-Msgid-Bugs-To: https://tickets.puppetlabs.com\n"
|
12
|
-
"POT-Creation-Date:
|
13
|
-
"PO-Revision-Date:
|
12
|
+
"POT-Creation-Date: 2020-05-20 22:19+0000\n"
|
13
|
+
"PO-Revision-Date: 2020-05-20 22:19+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:67
|
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:70
|
80
|
+
msgid "Exiting now because the maxwaitforlock timeout has been exceeded."
|
81
|
+
msgstr ""
|
82
|
+
|
83
|
+
#: ../lib/puppet/agent.rb:73
|
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:74 ../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:79
|
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:84
|
84
96
|
msgid "Could not run %{client_class}: %{detail}"
|
85
97
|
msgstr ""
|
86
98
|
|
87
|
-
#: ../lib/puppet/agent.rb:
|
99
|
+
#: ../lib/puppet/agent.rb:91
|
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:109
|
92
104
|
msgid "puppet agent: applying configuration"
|
93
105
|
msgstr ""
|
94
106
|
|
95
|
-
#: ../lib/puppet/agent.rb:
|
107
|
+
#: ../lib/puppet/agent.rb:132
|
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:398
|
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:403
|
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:426
|
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:442
|
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,117 +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:235
|
568
|
-
msgid "Selected puppet server from the `server_list` setting: %{server}:%{port}"
|
569
|
-
msgstr ""
|
570
|
-
|
571
|
-
#: ../lib/puppet/configurer.rb:268
|
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:307
|
580
576
|
msgid "Using configured environment '%{env}'"
|
581
577
|
msgstr ""
|
582
578
|
|
583
|
-
#: ../lib/puppet/configurer.rb:
|
579
|
+
#: ../lib/puppet/configurer.rb:311
|
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:340
|
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:351
|
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:353
|
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:394
|
600
596
|
msgid "Failed to apply catalog: %{detail}"
|
601
597
|
msgstr ""
|
602
598
|
|
603
|
-
#: ../lib/puppet/configurer.rb:
|
599
|
+
#: ../lib/puppet/configurer.rb:423 ../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
|
605
|
+
#: ../lib/puppet/configurer.rb:427 ../lib/puppet/http/resolver/server_list.rb:95
|
609
606
|
msgid "Unable to connect to server from server_list setting: %{detail}"
|
610
607
|
msgstr ""
|
611
608
|
|
612
|
-
#: ../lib/puppet/configurer.rb:
|
609
|
+
#: ../lib/puppet/configurer.rb:438 ../lib/puppet/face/report.rb:47
|
613
610
|
msgid "Could not send report: %{detail}"
|
614
611
|
msgstr ""
|
615
612
|
|
616
|
-
#: ../lib/puppet/configurer.rb:
|
613
|
+
#: ../lib/puppet/configurer.rb:447
|
617
614
|
msgid "Could not save last run local report: %{detail}"
|
618
615
|
msgstr ""
|
619
616
|
|
620
|
-
#: ../lib/puppet/configurer.rb:
|
617
|
+
#: ../lib/puppet/configurer.rb:466
|
621
618
|
msgid "Uploading facts for %{node} to %{server}"
|
622
619
|
msgstr ""
|
623
620
|
|
624
|
-
#: ../lib/puppet/configurer.rb:
|
621
|
+
#: ../lib/puppet/configurer.rb:474
|
625
622
|
msgid "Failed to submit facts: %{detail}"
|
626
623
|
msgstr ""
|
627
624
|
|
628
|
-
#: ../lib/puppet/configurer.rb:
|
625
|
+
#: ../lib/puppet/configurer.rb:489
|
629
626
|
msgid "Could not run command from %{setting}: %{detail}"
|
630
627
|
msgstr ""
|
631
628
|
|
632
|
-
#: ../lib/puppet/configurer.rb:
|
629
|
+
#: ../lib/puppet/configurer.rb:507
|
633
630
|
msgid "Could not retrieve catalog from cache: %{detail}"
|
634
631
|
msgstr ""
|
635
632
|
|
636
|
-
#: ../lib/puppet/configurer.rb:
|
633
|
+
#: ../lib/puppet/configurer.rb:528
|
637
634
|
msgid "Could not retrieve catalog from remote server: %{detail}"
|
638
635
|
msgstr ""
|
639
636
|
|
@@ -665,20 +662,20 @@ msgstr ""
|
|
665
662
|
msgid "Attempted to pop, but already at root of the context stack."
|
666
663
|
msgstr ""
|
667
664
|
|
668
|
-
#: ../lib/puppet/context/trusted_information.rb:
|
665
|
+
#: ../lib/puppet/context/trusted_information.rb:53
|
669
666
|
msgid "TrustedInformation expected a certificate, but none was given."
|
670
667
|
msgstr ""
|
671
668
|
|
672
|
-
#: ../lib/puppet/context/trusted_information.rb:
|
669
|
+
#: ../lib/puppet/context/trusted_information.rb:104 ../lib/puppet/parser/scope.rb:835
|
673
670
|
msgid "Unsupported data type: '%{klass}'"
|
674
671
|
msgstr ""
|
675
672
|
|
676
|
-
#: ../lib/puppet/daemon.rb:
|
677
|
-
msgid "
|
673
|
+
#: ../lib/puppet/daemon.rb:26
|
674
|
+
msgid "Daemons must have an agent"
|
678
675
|
msgstr ""
|
679
676
|
|
680
|
-
#: ../lib/puppet/daemon.rb:
|
681
|
-
msgid "
|
677
|
+
#: ../lib/puppet/daemon.rb:81
|
678
|
+
msgid "Cannot reexec unless ARGV arguments are set"
|
682
679
|
msgstr ""
|
683
680
|
|
684
681
|
#: ../lib/puppet/datatypes.rb:133
|
@@ -697,46 +694,46 @@ msgstr ""
|
|
697
694
|
msgid "a data type can only have one implementation"
|
698
695
|
msgstr ""
|
699
696
|
|
700
|
-
#: ../lib/puppet/defaults.rb:
|
701
|
-
msgid "Cannot disable unrecognized warning types %{invalid}."
|
697
|
+
#: ../lib/puppet/defaults.rb:178
|
698
|
+
msgid "Cannot disable unrecognized warning types '%{invalid}'."
|
702
699
|
msgstr ""
|
703
700
|
|
704
|
-
#: ../lib/puppet/defaults.rb:
|
705
|
-
msgid "Valid values are %{values}."
|
701
|
+
#: ../lib/puppet/defaults.rb:179
|
702
|
+
msgid "Valid values are '%{values}'."
|
706
703
|
msgstr ""
|
707
704
|
|
708
705
|
#. TRANSLATORS 'data_binding_terminus' is a setting and should not be translated
|
709
|
-
#: ../lib/puppet/defaults.rb:
|
706
|
+
#: ../lib/puppet/defaults.rb:547
|
710
707
|
msgid "Setting 'data_binding_terminus' is deprecated."
|
711
708
|
msgstr ""
|
712
709
|
|
713
710
|
#. TRANSLATORS 'hiera' should not be translated
|
714
|
-
#: ../lib/puppet/defaults.rb:
|
711
|
+
#: ../lib/puppet/defaults.rb:549
|
715
712
|
msgid "Convert custom terminus to hiera 5 API."
|
716
713
|
msgstr ""
|
717
714
|
|
718
715
|
#. TRANSLATORS 'environment_data_provider' is a setting and should not be translated
|
719
|
-
#: ../lib/puppet/defaults.rb:
|
716
|
+
#: ../lib/puppet/defaults.rb:739
|
720
717
|
msgid "Setting 'environment_data_provider' is deprecated."
|
721
718
|
msgstr ""
|
722
719
|
|
723
|
-
#: ../lib/puppet/defaults.rb:
|
720
|
+
#: ../lib/puppet/defaults.rb:820
|
724
721
|
msgid "Certificate names must be lower case"
|
725
722
|
msgstr ""
|
726
723
|
|
727
|
-
#: ../lib/puppet/defaults.rb:
|
724
|
+
#: ../lib/puppet/defaults.rb:1005
|
728
725
|
msgid "Setting 'ssl_client_ca_auth' is deprecated."
|
729
726
|
msgstr ""
|
730
727
|
|
731
|
-
#: ../lib/puppet/defaults.rb:
|
728
|
+
#: ../lib/puppet/defaults.rb:1084 ../lib/puppet/settings/enum_setting.rb:13 ../lib/puppet/settings/symbolic_enum_setting.rb:14
|
732
729
|
msgid "Invalid value '%{value}' for parameter %{name}. Allowed values are '%{allowed_values}'"
|
733
730
|
msgstr ""
|
734
731
|
|
735
|
-
#: ../lib/puppet/error.rb:
|
732
|
+
#: ../lib/puppet/error.rb:77
|
736
733
|
msgid "Could not parse for environment %{environment}: %{message}"
|
737
734
|
msgstr ""
|
738
735
|
|
739
|
-
#: ../lib/puppet/error.rb:
|
736
|
+
#: ../lib/puppet/error.rb:78 ../lib/puppet/parser/compiler.rb:40
|
740
737
|
msgid "%{message} on node %{node}"
|
741
738
|
msgstr ""
|
742
739
|
|
@@ -1024,8 +1021,8 @@ msgstr ""
|
|
1024
1021
|
msgid "Upload local facts to the puppet master."
|
1025
1022
|
msgstr ""
|
1026
1023
|
|
1027
|
-
#: ../lib/puppet/face/facts.rb:
|
1028
|
-
msgid "Uploading facts for '%{node}' to
|
1024
|
+
#: ../lib/puppet/face/facts.rb:82
|
1025
|
+
msgid "Uploading facts for '%{node}' to '%{server}'"
|
1029
1026
|
msgstr ""
|
1030
1027
|
|
1031
1028
|
#: ../lib/puppet/face/generate.rb:9
|
@@ -1087,49 +1084,53 @@ msgstr ""
|
|
1087
1084
|
msgid "The version of the subcommand for which to show help."
|
1088
1085
|
msgstr ""
|
1089
1086
|
|
1087
|
+
#: ../lib/puppet/face/help.rb:28
|
1088
|
+
msgid "Whether to render the help text in ronn format."
|
1089
|
+
msgstr ""
|
1090
|
+
|
1090
1091
|
#. TRANSLATORS 'puppet help' is a command line and should not be translated
|
1091
|
-
#: ../lib/puppet/face/help.rb:
|
1092
|
+
#: ../lib/puppet/face/help.rb:44
|
1092
1093
|
msgid "The 'puppet help' command takes two (optional) arguments: a subcommand and an action"
|
1093
1094
|
msgstr ""
|
1094
1095
|
|
1095
1096
|
#. TRANSLATORS '--version' is a command line option and should not be translated
|
1096
|
-
#: ../lib/puppet/face/help.rb:
|
1097
|
+
#: ../lib/puppet/face/help.rb:54
|
1097
1098
|
msgid "Supplying a '--version' only makes sense when a Faces subcommand is given"
|
1098
1099
|
msgstr ""
|
1099
1100
|
|
1100
|
-
#: ../lib/puppet/face/help.rb:
|
1101
|
+
#: ../lib/puppet/face/help.rb:62
|
1101
1102
|
msgid "The legacy subcommand '%{sub_command}' does not support supplying an action"
|
1102
1103
|
msgstr ""
|
1103
1104
|
|
1104
|
-
#: ../lib/puppet/face/help.rb:
|
1105
|
+
#: ../lib/puppet/face/help.rb:102
|
1105
1106
|
msgid "Could not load help for the application %{application_name}."
|
1106
1107
|
msgstr ""
|
1107
1108
|
|
1108
|
-
#: ../lib/puppet/face/help.rb:
|
1109
|
+
#: ../lib/puppet/face/help.rb:103 ../lib/puppet/face/help.rb:115
|
1109
1110
|
msgid "Please check the error logs for more information."
|
1110
1111
|
msgstr ""
|
1111
1112
|
|
1112
|
-
#: ../lib/puppet/face/help.rb:
|
1113
|
+
#: ../lib/puppet/face/help.rb:105 ../lib/puppet/face/help.rb:117
|
1113
1114
|
msgid "Detail: \"%{detail}\""
|
1114
1115
|
msgstr ""
|
1115
1116
|
|
1116
|
-
#: ../lib/puppet/face/help.rb:
|
1117
|
+
#: ../lib/puppet/face/help.rb:114
|
1117
1118
|
msgid "Could not load help for the face %{face_name}."
|
1118
1119
|
msgstr ""
|
1119
1120
|
|
1120
|
-
#: ../lib/puppet/face/help.rb:
|
1121
|
+
#: ../lib/puppet/face/help.rb:126
|
1121
1122
|
msgid "Unable to load action %{actionname} from %{face}"
|
1122
1123
|
msgstr ""
|
1123
1124
|
|
1124
|
-
#: ../lib/puppet/face/help.rb:
|
1125
|
+
#: ../lib/puppet/face/help.rb:170
|
1125
1126
|
msgid "(Deprecated)"
|
1126
1127
|
msgstr ""
|
1127
1128
|
|
1128
|
-
#: ../lib/puppet/face/help.rb:
|
1129
|
+
#: ../lib/puppet/face/help.rb:173 ../lib/puppet/face/help.rb:185
|
1129
1130
|
msgid "!%{sub_command}! Subcommand unavailable due to error."
|
1130
1131
|
msgstr ""
|
1131
1132
|
|
1132
|
-
#: ../lib/puppet/face/help.rb:
|
1133
|
+
#: ../lib/puppet/face/help.rb:174 ../lib/puppet/face/help.rb:186
|
1133
1134
|
msgid "Check error logs."
|
1134
1135
|
msgstr ""
|
1135
1136
|
|
@@ -1286,15 +1287,19 @@ msgstr ""
|
|
1286
1287
|
msgid "Search the Puppet Forge for a module."
|
1287
1288
|
msgstr ""
|
1288
1289
|
|
1289
|
-
#: ../lib/puppet/face/module/search.rb:
|
1290
|
+
#: ../lib/puppet/face/module/search.rb:14
|
1290
1291
|
msgid "Array of module metadata hashes"
|
1291
1292
|
msgstr ""
|
1292
1293
|
|
1293
|
-
#: ../lib/puppet/face/module/search.rb:
|
1294
|
+
#: ../lib/puppet/face/module/search.rb:24
|
1294
1295
|
msgid "<search_term>"
|
1295
1296
|
msgstr ""
|
1296
1297
|
|
1297
|
-
#: ../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
|
1298
1303
|
msgid "No results found for '%{term}'."
|
1299
1304
|
msgstr ""
|
1300
1305
|
|
@@ -1777,11 +1782,11 @@ msgstr ""
|
|
1777
1782
|
msgid "Timeout waiting for exclusive lock on %{path}"
|
1778
1783
|
msgstr ""
|
1779
1784
|
|
1780
|
-
#: ../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:681
|
1781
1786
|
msgid "Is a directory: %{directory}"
|
1782
1787
|
msgstr ""
|
1783
1788
|
|
1784
|
-
#: ../lib/puppet/file_system/memory_impl.rb:
|
1789
|
+
#: ../lib/puppet/file_system/memory_impl.rb:81
|
1785
1790
|
msgid "Unable to find registered object for %{path}"
|
1786
1791
|
msgstr ""
|
1787
1792
|
|
@@ -1821,11 +1826,11 @@ msgstr ""
|
|
1821
1826
|
msgid "%{dest} already exists and the :force option was not specified"
|
1822
1827
|
msgstr ""
|
1823
1828
|
|
1824
|
-
#: ../lib/puppet/file_system/windows.rb:
|
1829
|
+
#: ../lib/puppet/file_system/windows.rb:202
|
1825
1830
|
msgid "This version of Windows does not support symlinks. Windows Vista / 2008 or higher is required."
|
1826
1831
|
msgstr ""
|
1827
1832
|
|
1828
|
-
#: ../lib/puppet/file_system/windows.rb:
|
1833
|
+
#: ../lib/puppet/file_system/windows.rb:207
|
1829
1834
|
msgid "The current user does not have the necessary permission to manage symlinks."
|
1830
1835
|
msgstr ""
|
1831
1836
|
|
@@ -2074,6 +2079,10 @@ msgstr ""
|
|
2074
2079
|
msgid "Unable to parse %{message}"
|
2075
2080
|
msgstr ""
|
2076
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
|
+
|
2077
2086
|
#: ../lib/puppet/functions/floor.rb:27
|
2078
2087
|
msgid "The floor() function's auto conversion of String to Float is deprecated - change to convert input before calling"
|
2079
2088
|
msgstr ""
|
@@ -2221,46 +2230,67 @@ msgstr ""
|
|
2221
2230
|
msgid "Try the '--graph' option and opening the resulting '.dot' file in OmniGraffle or GraphViz"
|
2222
2231
|
msgstr ""
|
2223
2232
|
|
2224
|
-
#: ../lib/puppet/http/client.rb:
|
2225
|
-
msgid "
|
2233
|
+
#: ../lib/puppet/http/client.rb:90
|
2234
|
+
msgid "Request to %{uri} timed out connect operation after %{elapsed} seconds"
|
2226
2235
|
msgstr ""
|
2227
2236
|
|
2228
|
-
#: ../lib/puppet/http/client.rb:
|
2229
|
-
msgid "
|
2237
|
+
#: ../lib/puppet/http/client.rb:92
|
2238
|
+
msgid "Request to %{uri} timed out read operation after %{elapsed} seconds"
|
2230
2239
|
msgstr ""
|
2231
2240
|
|
2232
|
-
#: ../lib/puppet/http/client.rb:
|
2241
|
+
#: ../lib/puppet/http/client.rb:94
|
2233
2242
|
msgid "Request to %{uri} interrupted after %{elapsed} seconds"
|
2234
2243
|
msgstr ""
|
2235
2244
|
|
2236
|
-
#: ../lib/puppet/http/client.rb:
|
2237
|
-
msgid "Request to %{uri}
|
2245
|
+
#: ../lib/puppet/http/client.rb:100
|
2246
|
+
msgid "Request to %{uri} failed after %{elapsed} seconds: %{message}"
|
2238
2247
|
msgstr ""
|
2239
2248
|
|
2240
|
-
#: ../lib/puppet/http/client.rb:
|
2241
|
-
msgid "
|
2249
|
+
#: ../lib/puppet/http/client.rb:321
|
2250
|
+
msgid "Sleeping for %{interval} seconds before retrying the request"
|
2242
2251
|
msgstr ""
|
2243
2252
|
|
2244
|
-
#: ../lib/puppet/http/
|
2253
|
+
#: ../lib/puppet/http/client.rb:364 ../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
|
2245
2258
|
msgid "Too many HTTP redirections for %{addr}"
|
2246
2259
|
msgstr ""
|
2247
2260
|
|
2248
|
-
#: ../lib/puppet/http/errors.rb:
|
2261
|
+
#: ../lib/puppet/http/errors.rb:29
|
2249
2262
|
msgid "Too many HTTP retries for %{addr}"
|
2250
2263
|
msgstr ""
|
2251
2264
|
|
2252
|
-
#: ../lib/puppet/http/redirector.rb:
|
2265
|
+
#: ../lib/puppet/http/redirector.rb:76
|
2253
2266
|
msgid "Location response header is missing"
|
2254
2267
|
msgstr ""
|
2255
2268
|
|
2256
|
-
#: ../lib/puppet/http/redirector.rb:
|
2269
|
+
#: ../lib/puppet/http/redirector.rb:80
|
2257
2270
|
msgid "Location URI is invalid: %{detail}"
|
2258
2271
|
msgstr ""
|
2259
2272
|
|
2260
|
-
#: ../lib/puppet/http/retry_after_handler.rb:
|
2273
|
+
#: ../lib/puppet/http/retry_after_handler.rb:83
|
2261
2274
|
msgid "Failed to parse Retry-After header '%{retry_after}' as an integer or RFC 2822 date"
|
2262
2275
|
msgstr ""
|
2263
2276
|
|
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
|
2291
|
+
msgid "To submit reports to a server running puppetserver %{server_version}, set preferred_serialization_format to pson"
|
2292
|
+
msgstr ""
|
2293
|
+
|
2264
2294
|
#: ../lib/puppet/indirector.rb:25
|
2265
2295
|
msgid "Indirection %{indirection_name} does not exist"
|
2266
2296
|
msgstr ""
|
@@ -2269,132 +2299,132 @@ msgstr ""
|
|
2269
2299
|
msgid "Already handling indirection for %{current}; cannot also handle %{next}"
|
2270
2300
|
msgstr ""
|
2271
2301
|
|
2272
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2302
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:26
|
2273
2303
|
msgid "Facts but no fact format provided for %{request}"
|
2274
2304
|
msgstr ""
|
2275
2305
|
|
2276
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2306
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:29
|
2277
2307
|
msgid "Found facts"
|
2278
2308
|
msgstr ""
|
2279
2309
|
|
2280
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2310
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:34
|
2281
2311
|
msgid "Catalog for %{request} was requested with fact definition for the wrong node (%{fact_name})."
|
2282
2312
|
msgstr ""
|
2283
2313
|
|
2284
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2314
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:71
|
2285
2315
|
msgid "Setup server facts for compiling"
|
2286
2316
|
msgstr ""
|
2287
2317
|
|
2288
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2318
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:95
|
2289
2319
|
msgid "Unsupported facts format"
|
2290
2320
|
msgstr ""
|
2291
2321
|
|
2292
2322
|
#. TRANSLATORS Inlining refers to adding additional metadata (in this case we are not inlining)
|
2293
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2323
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:136
|
2294
2324
|
msgid "Not inlining absent resource"
|
2295
2325
|
msgstr ""
|
2296
2326
|
|
2297
2327
|
#. TRANSLATORS Inlining refers to adding additional metadata (in this case we are not inlining)
|
2298
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2328
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:139
|
2299
2329
|
msgid "Not inlining resource without sources"
|
2300
2330
|
msgstr ""
|
2301
2331
|
|
2302
2332
|
#. TRANSLATORS Inlining refers to adding additional metadata (in this case we are not inlining)
|
2303
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2333
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:142
|
2304
2334
|
msgid "Not inlining unsupported source scheme"
|
2305
2335
|
msgstr ""
|
2306
2336
|
|
2307
2337
|
#. TRANSLATORS Inlining refers to adding additional metadata (in this case we are not inlining)
|
2308
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2338
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:164
|
2309
2339
|
msgid "Not inlining file outside environment"
|
2310
2340
|
msgstr ""
|
2311
2341
|
|
2312
2342
|
#. TRANSLATORS Inlining refers to adding additional metadata
|
2313
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2343
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:170
|
2314
2344
|
msgid "Inlining file metadata"
|
2315
2345
|
msgstr ""
|
2316
2346
|
|
2317
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2347
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:259
|
2318
2348
|
msgid "Could not get metadata for %{resource}"
|
2319
2349
|
msgstr ""
|
2320
2350
|
|
2321
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2351
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:280
|
2322
2352
|
msgid "Unable to find a common checksum type between agent '%{agent_type}' and master '%{master_type}'."
|
2323
2353
|
msgstr ""
|
2324
2354
|
|
2325
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2355
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:287
|
2326
2356
|
msgid "Compiled static catalog for %{node} in environment %{environment} in %%{seconds} seconds"
|
2327
2357
|
msgstr ""
|
2328
2358
|
|
2329
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2359
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:288
|
2330
2360
|
msgid "Compiled static catalog for %{node} in environment %{environment}"
|
2331
2361
|
msgstr ""
|
2332
2362
|
|
2333
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2363
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:290
|
2334
2364
|
msgid "Compiled static catalog for %{node} in %%{seconds} seconds"
|
2335
2365
|
msgstr ""
|
2336
2366
|
|
2337
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2367
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:291
|
2338
2368
|
msgid "Compiled static catalog for %{node}"
|
2339
2369
|
msgstr ""
|
2340
2370
|
|
2341
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2371
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:296
|
2342
2372
|
msgid "Compiled catalog for %{node} in environment %{environment} in %%{seconds} seconds"
|
2343
2373
|
msgstr ""
|
2344
2374
|
|
2345
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2375
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:297
|
2346
2376
|
msgid "Compiled catalog for %{node} in environment %{environment}"
|
2347
2377
|
msgstr ""
|
2348
2378
|
|
2349
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2379
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:299
|
2350
2380
|
msgid "Compiled catalog for %{node} in %%{seconds} seconds"
|
2351
2381
|
msgstr ""
|
2352
2382
|
|
2353
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2383
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:300
|
2354
2384
|
msgid "Compiled catalog for %{node}"
|
2355
2385
|
msgstr ""
|
2356
2386
|
|
2357
2387
|
#. TRANSLATORS Inlined refers to adding additional metadata
|
2358
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2388
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:322
|
2359
2389
|
msgid "Inlined resource metadata into static catalog for %{node} in environment %{environment} in %%{seconds} seconds"
|
2360
2390
|
msgstr ""
|
2361
2391
|
|
2362
2392
|
#. TRANSLATORS Inlined refers to adding additional metadata
|
2363
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2393
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:324
|
2364
2394
|
msgid "Inlined resource metadata into static catalog for %{node} in environment %{environment}"
|
2365
2395
|
msgstr ""
|
2366
2396
|
|
2367
2397
|
#. TRANSLATORS Inlined refers to adding additional metadata
|
2368
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2398
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:327
|
2369
2399
|
msgid "Inlined resource metadata into static catalog for %{node} in %%{seconds} seconds"
|
2370
2400
|
msgstr ""
|
2371
2401
|
|
2372
2402
|
#. TRANSLATORS Inlined refers to adding additional metadata
|
2373
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2403
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:329
|
2374
2404
|
msgid "Inlined resource metadata into static catalog for %{node}"
|
2375
2405
|
msgstr ""
|
2376
2406
|
|
2377
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2407
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:346
|
2378
2408
|
msgid "Found node information"
|
2379
2409
|
msgstr ""
|
2380
2410
|
|
2381
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2411
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:354
|
2382
2412
|
msgid "Failed when searching for node %{name}: %{detail}"
|
2383
2413
|
msgstr ""
|
2384
2414
|
|
2385
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2415
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:374
|
2386
2416
|
msgid "Invalid option use_node for a remote request"
|
2387
2417
|
msgstr ""
|
2388
2418
|
|
2389
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2419
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:393
|
2390
2420
|
msgid "Could not find node '%{name}'; cannot compile"
|
2391
2421
|
msgstr ""
|
2392
2422
|
|
2393
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2423
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:426
|
2394
2424
|
msgid "Could not retrieve fact servername"
|
2395
2425
|
msgstr ""
|
2396
2426
|
|
2397
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2427
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:435
|
2398
2428
|
msgid "Could not retrieve either serverip or serverip6 fact"
|
2399
2429
|
msgstr ""
|
2400
2430
|
|
@@ -2406,6 +2436,10 @@ msgstr ""
|
|
2406
2436
|
msgid "Unable to serialize catalog to json, retrying with pson"
|
2407
2437
|
msgstr ""
|
2408
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
|
+
|
2409
2443
|
#: ../lib/puppet/indirector/exec.rb:11
|
2410
2444
|
msgid "Exec commands must be an array"
|
2411
2445
|
msgstr ""
|
@@ -2506,7 +2540,7 @@ msgstr ""
|
|
2506
2540
|
msgid "You cannot save facts to the code store; it is only used for getting facts from a remote device"
|
2507
2541
|
msgstr ""
|
2508
2542
|
|
2509
|
-
#: ../lib/puppet/indirector/facts/rest.rb:
|
2543
|
+
#: ../lib/puppet/indirector/facts/rest.rb:30 ../lib/puppet/indirector/rest.rb:198
|
2510
2544
|
msgid "PUT does not accept options"
|
2511
2545
|
msgstr ""
|
2512
2546
|
|
@@ -2557,6 +2591,10 @@ msgstr ""
|
|
2557
2591
|
msgid "Invalid checksum %{checksum}"
|
2558
2592
|
msgstr ""
|
2559
2593
|
|
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
|
+
|
2560
2598
|
#: ../lib/puppet/indirector/file_metadata/http.rb:25
|
2561
2599
|
msgid "cannot lookup multiple files"
|
2562
2600
|
msgstr ""
|
@@ -2733,16 +2771,20 @@ msgstr ""
|
|
2733
2771
|
msgid "No report named '%{name}'"
|
2734
2772
|
msgstr ""
|
2735
2773
|
|
2736
|
-
#: ../lib/puppet/indirector/report/rest.rb:
|
2774
|
+
#: ../lib/puppet/indirector/report/rest.rb:36
|
2737
2775
|
msgid "Server version %{version} does not accept reports in '%{format}', use `preferred_serialization_format=pson`"
|
2738
2776
|
msgstr ""
|
2739
2777
|
|
2740
|
-
#: ../lib/puppet/indirector/
|
2741
|
-
msgid "
|
2778
|
+
#: ../lib/puppet/indirector/report/yaml.rb:19
|
2779
|
+
msgid "replace_file mode: %{mode} is invalid"
|
2742
2780
|
msgstr ""
|
2743
2781
|
|
2744
|
-
#: ../lib/puppet/indirector/
|
2745
|
-
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}'"
|
2746
2788
|
msgstr ""
|
2747
2789
|
|
2748
2790
|
#: ../lib/puppet/indirector/request.rb:202
|
@@ -2754,6 +2796,11 @@ msgstr ""
|
|
2754
2796
|
msgid "Selected server from first entry of the `server_list` setting: %{server}"
|
2755
2797
|
msgstr ""
|
2756
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
|
+
|
2757
2804
|
#. TRANSLATORS 'server_list' is the name of a setting and should not be translated
|
2758
2805
|
#: ../lib/puppet/indirector/request.rb:231
|
2759
2806
|
msgid "Selected port from the first entry of the `server_list` setting: %{port}"
|
@@ -2776,27 +2823,39 @@ msgstr ""
|
|
2776
2823
|
msgid "Resource instance does not match request key"
|
2777
2824
|
msgstr ""
|
2778
2825
|
|
2779
|
-
#: ../lib/puppet/indirector/rest.rb:
|
2780
|
-
msgid "
|
2826
|
+
#: ../lib/puppet/indirector/rest.rb:115
|
2827
|
+
msgid "Puppet::Indirector::Rest#find is deprecated. Use Puppet::HTTP::Client instead."
|
2781
2828
|
msgstr ""
|
2782
2829
|
|
2783
|
-
#: ../lib/puppet/indirector/rest.rb:
|
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."
|
2840
|
+
msgstr ""
|
2841
|
+
|
2842
|
+
#: ../lib/puppet/indirector/rest.rb:182
|
2784
2843
|
msgid "DELETE does not accept options"
|
2785
2844
|
msgstr ""
|
2786
2845
|
|
2846
|
+
#: ../lib/puppet/indirector/rest.rb:197
|
2847
|
+
msgid "Puppet::Indirector::Rest#save is deprecated. Use Puppet::HTTP::Client instead."
|
2848
|
+
msgstr ""
|
2849
|
+
|
2787
2850
|
#. TRANSLATORS "PSON" should not be translated
|
2788
|
-
#: ../lib/puppet/indirector/rest.rb:
|
2851
|
+
#: ../lib/puppet/indirector/rest.rb:235
|
2789
2852
|
msgid "Downgrading to PSON for future requests"
|
2790
2853
|
msgstr ""
|
2791
2854
|
|
2792
|
-
#: ../lib/puppet/indirector/rest.rb:
|
2855
|
+
#: ../lib/puppet/indirector/rest.rb:277 ../lib/puppet/rest/response.rb:31
|
2793
2856
|
msgid "Error %{code} on SERVER: %{returned_message}"
|
2794
2857
|
msgstr ""
|
2795
2858
|
|
2796
|
-
#: ../lib/puppet/indirector/rest.rb:276
|
2797
|
-
msgid "No content type in http response; cannot parse"
|
2798
|
-
msgstr ""
|
2799
|
-
|
2800
2859
|
#: ../lib/puppet/indirector/ssl_file.rb:34
|
2801
2860
|
msgid "No file or directory setting provided; terminus %{class_name} cannot function"
|
2802
2861
|
msgstr ""
|
@@ -2865,10 +2924,6 @@ msgstr ""
|
|
2865
2924
|
msgid "You can only save objects that respond to :name"
|
2866
2925
|
msgstr ""
|
2867
2926
|
|
2868
|
-
#: ../lib/puppet/indirector/yaml.rb:32
|
2869
|
-
msgid "Could not save %{indirection} %{request}: %{detail}"
|
2870
|
-
msgstr ""
|
2871
|
-
|
2872
2927
|
#: ../lib/puppet/info_service/class_information_service.rb:18
|
2873
2928
|
msgid "Given argument must be a Hash"
|
2874
2929
|
msgstr ""
|
@@ -3137,17 +3192,17 @@ msgid "Option %{option} conflicts with existing option %{conflict} on %{action}"
|
|
3137
3192
|
msgstr ""
|
3138
3193
|
|
3139
3194
|
#. TRANSLATORS 'Puppet::Type.newtype' should not be translated
|
3140
|
-
#: ../lib/puppet/metatype/manager.rb:
|
3195
|
+
#: ../lib/puppet/metatype/manager.rb:77
|
3141
3196
|
msgid "Puppet::Type.newtype(%{name}) now expects a hash as the second argument, not %{argument}"
|
3142
3197
|
msgstr ""
|
3143
3198
|
|
3144
3199
|
#. TRANSLATORS 'new%{method}' will become a method name, do not translate this string
|
3145
|
-
#: ../lib/puppet/metatype/manager.rb:
|
3200
|
+
#: ../lib/puppet/metatype/manager.rb:110
|
3146
3201
|
msgid "'new%{method}' method already exists; skipping"
|
3147
3202
|
msgstr ""
|
3148
3203
|
|
3149
3204
|
#. TRANSLATORS 'puppet/type/%{name}' should not be translated
|
3150
|
-
#: ../lib/puppet/metatype/manager.rb:
|
3205
|
+
#: ../lib/puppet/metatype/manager.rb:173
|
3151
3206
|
msgid "Loaded puppet/type/%{name} but no class was created"
|
3152
3207
|
msgstr ""
|
3153
3208
|
|
@@ -3912,10 +3967,34 @@ msgstr ""
|
|
3912
3967
|
msgid "Application %{app} assigns multiple nodes to component %{comp}"
|
3913
3968
|
msgstr ""
|
3914
3969
|
|
3915
|
-
#: ../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
|
3916
3975
|
msgid "Unknown content encoding - %{encoding}"
|
3917
3976
|
msgstr ""
|
3918
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
|
+
|
3919
3998
|
#: ../lib/puppet/network/http/connection.rb:56
|
3920
3999
|
msgid "Unrecognized option(s): %{opts}"
|
3921
4000
|
msgstr ""
|
@@ -3924,36 +4003,40 @@ msgstr ""
|
|
3924
4003
|
msgid "Expected an instance of Puppet::SSL::Verifier but was passed a %{klass}"
|
3925
4004
|
msgstr ""
|
3926
4005
|
|
3927
|
-
#: ../lib/puppet/network/http/connection.rb:
|
4006
|
+
#: ../lib/puppet/network/http/connection.rb:229 ../lib/puppet/network/http/connection_adapter.rb:155
|
3928
4007
|
msgid "Too many HTTP redirections for %{host}:%{port}"
|
3929
4008
|
msgstr ""
|
3930
4009
|
|
3931
4010
|
#. TRANSLATORS: Used in the phrase:
|
3932
4011
|
#. "Received a response from the remote server."
|
3933
|
-
#: ../lib/puppet/network/http/connection.rb:
|
4012
|
+
#: ../lib/puppet/network/http/connection.rb:259
|
3934
4013
|
msgid "the remote server"
|
3935
4014
|
msgstr ""
|
3936
4015
|
|
3937
|
-
#: ../lib/puppet/network/http/connection.rb:
|
4016
|
+
#: ../lib/puppet/network/http/connection.rb:263
|
3938
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."
|
3939
4018
|
msgstr ""
|
3940
4019
|
|
3941
|
-
#: ../lib/puppet/network/http/connection.rb:
|
4020
|
+
#: ../lib/puppet/network/http/connection.rb:274
|
3942
4021
|
msgid "Received a %{status_code} response from %{server_hostname}. Sleeping for %{retry_sleep} seconds before retrying the request."
|
3943
4022
|
msgstr ""
|
3944
4023
|
|
3945
|
-
#: ../lib/puppet/network/http/connection.rb:
|
4024
|
+
#: ../lib/puppet/network/http/connection.rb:335
|
3946
4025
|
msgid "request %{uri} interrupted after %{elapsed} seconds"
|
3947
4026
|
msgstr ""
|
3948
4027
|
|
3949
|
-
#: ../lib/puppet/network/http/connection.rb:
|
4028
|
+
#: ../lib/puppet/network/http/connection.rb:337
|
3950
4029
|
msgid "request %{uri} timed out after %{elapsed} seconds"
|
3951
4030
|
msgstr ""
|
3952
4031
|
|
3953
|
-
#: ../lib/puppet/network/http/connection.rb:
|
4032
|
+
#: ../lib/puppet/network/http/connection.rb:339
|
3954
4033
|
msgid "request %{uri} failed: %{msg}"
|
3955
4034
|
msgstr ""
|
3956
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
|
+
|
3957
4040
|
#: ../lib/puppet/network/http/error.rb:23
|
3958
4041
|
msgid "Not Acceptable: %{message}"
|
3959
4042
|
msgstr ""
|
@@ -3998,7 +4081,11 @@ msgstr ""
|
|
3998
4081
|
msgid "Could not resolve %{ip}: %{detail}"
|
3999
4082
|
msgstr ""
|
4000
4083
|
|
4001
|
-
#: ../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
|
4002
4089
|
msgid "Failed to close connection for %{site}: %{detail}"
|
4003
4090
|
msgstr ""
|
4004
4091
|
|
@@ -4015,12 +4102,12 @@ msgid "Missing required Accept header"
|
|
4015
4102
|
msgstr ""
|
4016
4103
|
|
4017
4104
|
#. TRANSLATORS 'ssl_context' is an argument and should not be translated
|
4018
|
-
#: ../lib/puppet/network/http_pool.rb:
|
4105
|
+
#: ../lib/puppet/network/http_pool.rb:81
|
4019
4106
|
msgid "An ssl_context is required when connecting to 'https://%{host}:%{port}'"
|
4020
4107
|
msgstr ""
|
4021
4108
|
|
4022
4109
|
#. TRANSLATORS 'ssl_context' is an argument and should not be translated
|
4023
|
-
#: ../lib/puppet/network/http_pool.rb:
|
4110
|
+
#: ../lib/puppet/network/http_pool.rb:89
|
4024
4111
|
msgid "An ssl_context is unnecessary when connecting to 'http://%{host}:%{port}' and will be ignored"
|
4025
4112
|
msgstr ""
|
4026
4113
|
|
@@ -4072,11 +4159,11 @@ msgstr ""
|
|
4072
4159
|
msgid "Trusted node data modified for node %{name}"
|
4073
4160
|
msgstr ""
|
4074
4161
|
|
4075
|
-
#: ../lib/puppet/node/environment.rb:
|
4162
|
+
#: ../lib/puppet/node/environment.rb:212
|
4076
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."
|
4077
4164
|
msgstr ""
|
4078
4165
|
|
4079
|
-
#: ../lib/puppet/node/environment.rb:
|
4166
|
+
#: ../lib/puppet/node/environment.rb:561 ../lib/puppet/pops/loaders.rb:300
|
4080
4167
|
msgid "Could not parse for environment %{env}: %{detail}"
|
4081
4168
|
msgstr ""
|
4082
4169
|
|
@@ -4108,54 +4195,54 @@ msgstr ""
|
|
4108
4195
|
|
4109
4196
|
#. TRANSLATORS: do not translate the variable names in this error message
|
4110
4197
|
#. TRANSLATORS: do not translate the variable names in this error message
|
4111
|
-
#: ../lib/puppet/pal/pal_impl.rb:73 ../lib/puppet/pal/pal_impl.rb:
|
4198
|
+
#: ../lib/puppet/pal/pal_impl.rb:73 ../lib/puppet/pal/pal_impl.rb:171
|
4112
4199
|
msgid "manifest_file or code_string cannot be given when configured_by_env is true"
|
4113
4200
|
msgstr ""
|
4114
4201
|
|
4115
|
-
#: ../lib/puppet/pal/pal_impl.rb:
|
4202
|
+
#: ../lib/puppet/pal/pal_impl.rb:219
|
4116
4203
|
msgid "temporary environment name"
|
4117
4204
|
msgstr ""
|
4118
4205
|
|
4119
4206
|
#. TRANSLATORS: do not translate variable name string in these assertions
|
4120
|
-
#: ../lib/puppet/pal/pal_impl.rb:
|
4207
|
+
#: ../lib/puppet/pal/pal_impl.rb:224
|
4121
4208
|
msgid "A block must be given to 'in_tmp_environment'"
|
4122
4209
|
msgstr ""
|
4123
4210
|
|
4124
4211
|
#. TRANSLATORS terms in the assertions below are names of terms in code
|
4125
|
-
#: ../lib/puppet/pal/pal_impl.rb:
|
4212
|
+
#: ../lib/puppet/pal/pal_impl.rb:278
|
4126
4213
|
msgid "A block must be given to 'in_environment'"
|
4127
4214
|
msgstr ""
|
4128
4215
|
|
4129
4216
|
#. TRANSLATORS 'in_environment' is a name, do not translate
|
4130
|
-
#: ../lib/puppet/pal/pal_impl.rb:
|
4217
|
+
#: ../lib/puppet/pal/pal_impl.rb:283
|
4131
4218
|
msgid "The environment directory '%{env_dir}' does not exist"
|
4132
4219
|
msgstr ""
|
4133
4220
|
|
4134
|
-
#: ../lib/puppet/pal/pal_impl.rb:
|
4221
|
+
#: ../lib/puppet/pal/pal_impl.rb:306
|
4135
4222
|
msgid "No directory found for the environment '%{env_name}' on the path '%{envpath}'"
|
4136
4223
|
msgstr ""
|
4137
4224
|
|
4138
|
-
#: ../lib/puppet/pal/pal_impl.rb:
|
4225
|
+
#: ../lib/puppet/pal/pal_impl.rb:360
|
4139
4226
|
msgid "Given variables must be a hash, got %{type}"
|
4140
4227
|
msgstr ""
|
4141
4228
|
|
4142
|
-
#: ../lib/puppet/pal/pal_impl.rb:
|
4229
|
+
#: ../lib/puppet/pal/pal_impl.rb:366
|
4143
4230
|
msgid "Given variable '%{varname}' has illegal name"
|
4144
4231
|
msgstr ""
|
4145
4232
|
|
4146
|
-
#: ../lib/puppet/pal/pal_impl.rb:
|
4233
|
+
#: ../lib/puppet/pal/pal_impl.rb:370
|
4147
4234
|
msgid "Given value for '%{varname}' has illegal type - got: %{type}"
|
4148
4235
|
msgstr ""
|
4149
4236
|
|
4150
|
-
#: ../lib/puppet/pal/pal_impl.rb:
|
4237
|
+
#: ../lib/puppet/pal/pal_impl.rb:485
|
4151
4238
|
msgid "Puppet Pal: %{what}"
|
4152
4239
|
msgstr ""
|
4153
4240
|
|
4154
|
-
#: ../lib/puppet/pal/pal_impl.rb:
|
4241
|
+
#: ../lib/puppet/pal/pal_impl.rb:499
|
4155
4242
|
msgid "Cannot use '%{a_term}' and '%{b_term}' at the same time"
|
4156
4243
|
msgstr ""
|
4157
4244
|
|
4158
|
-
#: ../lib/puppet/pal/pal_impl.rb:
|
4245
|
+
#: ../lib/puppet/pal/pal_impl.rb:506
|
4159
4246
|
msgid "A block must be given"
|
4160
4247
|
msgstr ""
|
4161
4248
|
|
@@ -4220,7 +4307,7 @@ msgstr ""
|
|
4220
4307
|
msgid "Node inheritance is removed in Puppet 4.0.0. See http://links.puppet.com/puppet-node-inheritance-deprecation"
|
4221
4308
|
msgstr ""
|
4222
4309
|
|
4223
|
-
#: ../lib/puppet/parser/ast/pops_bridge.rb:
|
4310
|
+
#: ../lib/puppet/parser/ast/pops_bridge.rb:190
|
4224
4311
|
msgid "Instantiating Resource with type checked parameters - scope is missing, skipping type checking."
|
4225
4312
|
msgstr ""
|
4226
4313
|
|
@@ -4331,52 +4418,52 @@ msgstr ""
|
|
4331
4418
|
msgid "Application %{app} maps component %{res} to multiple nodes"
|
4332
4419
|
msgstr ""
|
4333
4420
|
|
4334
|
-
#: ../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
|
4335
4426
|
msgid "No source for scope passed to evaluate_classes"
|
4336
4427
|
msgstr ""
|
4337
4428
|
|
4338
|
-
#: ../lib/puppet/parser/compiler.rb:
|
4429
|
+
#: ../lib/puppet/parser/compiler.rb:401
|
4339
4430
|
msgid "Could not find class %{name} for %{node}"
|
4340
4431
|
msgstr ""
|
4341
4432
|
|
4342
|
-
#: ../lib/puppet/parser/compiler.rb:
|
4433
|
+
#: ../lib/puppet/parser/compiler.rb:503
|
4343
4434
|
msgid "Capability mapping error: %{kind} clause references nonexistent %{component_type} %{component_name}"
|
4344
4435
|
msgstr ""
|
4345
4436
|
|
4346
|
-
#: ../lib/puppet/parser/compiler.rb:
|
4347
|
-
msgid "Could not find node statement with name 'default' or '%{names}'"
|
4348
|
-
msgstr ""
|
4349
|
-
|
4350
|
-
#: ../lib/puppet/parser/compiler.rb:523
|
4437
|
+
#: ../lib/puppet/parser/compiler.rb:526
|
4351
4438
|
msgid "Evaluated collections"
|
4352
4439
|
msgstr ""
|
4353
4440
|
|
4354
|
-
#: ../lib/puppet/parser/compiler.rb:
|
4441
|
+
#: ../lib/puppet/parser/compiler.rb:541
|
4355
4442
|
msgid "Evaluated definitions"
|
4356
4443
|
msgstr ""
|
4357
4444
|
|
4358
|
-
#: ../lib/puppet/parser/compiler.rb:
|
4445
|
+
#: ../lib/puppet/parser/compiler.rb:570
|
4359
4446
|
msgid "Iterated (%{count}) on generators"
|
4360
4447
|
msgstr ""
|
4361
4448
|
|
4362
|
-
#: ../lib/puppet/parser/compiler.rb:
|
4449
|
+
#: ../lib/puppet/parser/compiler.rb:581
|
4363
4450
|
msgid "Somehow looped more than 1000 times while evaluating host catalog"
|
4364
4451
|
msgstr ""
|
4365
4452
|
|
4366
|
-
#: ../lib/puppet/parser/compiler.rb:
|
4453
|
+
#: ../lib/puppet/parser/compiler.rb:613
|
4367
4454
|
msgid "Could not find resource(s) %{resources} for overriding"
|
4368
4455
|
msgstr ""
|
4369
4456
|
|
4370
|
-
#: ../lib/puppet/parser/compiler.rb:
|
4457
|
+
#: ../lib/puppet/parser/compiler.rb:624
|
4371
4458
|
msgid "Failed to realize virtual resources %{resources}"
|
4372
4459
|
msgstr ""
|
4373
4460
|
|
4374
4461
|
#. TRANSLATORS "main" is a function name and should not be translated
|
4375
|
-
#: ../lib/puppet/parser/compiler.rb:
|
4462
|
+
#: ../lib/puppet/parser/compiler.rb:657
|
4376
4463
|
msgid "Couldn't find main"
|
4377
4464
|
msgstr ""
|
4378
4465
|
|
4379
|
-
#: ../lib/puppet/parser/compiler.rb:
|
4466
|
+
#: ../lib/puppet/parser/compiler.rb:730
|
4380
4467
|
msgid "For initializing compiler"
|
4381
4468
|
msgstr ""
|
4382
4469
|
|
@@ -4448,43 +4535,43 @@ msgstr ""
|
|
4448
4535
|
msgid "Evaluated application %{resource}"
|
4449
4536
|
msgstr ""
|
4450
4537
|
|
4451
|
-
#: ../lib/puppet/parser/functions.rb:
|
4538
|
+
#: ../lib/puppet/parser/functions.rb:43
|
4452
4539
|
msgid "The method 'Puppet::Parser::Functions.autoloader#loadall' is deprecated in favor of using 'Scope#call_function'."
|
4453
4540
|
msgstr ""
|
4454
4541
|
|
4455
|
-
#: ../lib/puppet/parser/functions.rb:
|
4542
|
+
#: ../lib/puppet/parser/functions.rb:51
|
4456
4543
|
msgid "The method 'Puppet::Parser::Functions.autoloader#load(\"%{name}\")' is deprecated in favor of using 'Scope#call_function'."
|
4457
4544
|
msgstr ""
|
4458
4545
|
|
4459
|
-
#: ../lib/puppet/parser/functions.rb:
|
4546
|
+
#: ../lib/puppet/parser/functions.rb:59
|
4460
4547
|
msgid "The method 'Puppet::Parser::Functions.autoloader#loaded?(\"%{name}\")' is deprecated in favor of using 'Scope#call_function'."
|
4461
4548
|
msgstr ""
|
4462
4549
|
|
4463
|
-
#: ../lib/puppet/parser/functions.rb:
|
4550
|
+
#: ../lib/puppet/parser/functions.rb:186
|
4464
4551
|
msgid "Overwriting previous definition for function %{name}"
|
4465
4552
|
msgstr ""
|
4466
4553
|
|
4467
|
-
#: ../lib/puppet/parser/functions.rb:
|
4554
|
+
#: ../lib/puppet/parser/functions.rb:192
|
4468
4555
|
msgid "Invalid statement type %{type}"
|
4469
4556
|
msgstr ""
|
4470
4557
|
|
4471
|
-
#: ../lib/puppet/parser/functions.rb:
|
4558
|
+
#: ../lib/puppet/parser/functions.rb:204
|
4472
4559
|
msgid "Called %{name}"
|
4473
4560
|
msgstr ""
|
4474
4561
|
|
4475
|
-
#: ../lib/puppet/parser/functions.rb:
|
4562
|
+
#: ../lib/puppet/parser/functions.rb:207
|
4476
4563
|
msgid "%{name}(): Wrong number of arguments given (%{arg_count} for %{arity})"
|
4477
4564
|
msgstr ""
|
4478
4565
|
|
4479
|
-
#: ../lib/puppet/parser/functions.rb:
|
4566
|
+
#: ../lib/puppet/parser/functions.rb:209
|
4480
4567
|
msgid "%{name}(): Wrong number of arguments given (%{arg_count} for minimum %{min_arg_count})"
|
4481
4568
|
msgstr ""
|
4482
4569
|
|
4483
|
-
#: ../lib/puppet/parser/functions.rb:
|
4570
|
+
#: ../lib/puppet/parser/functions.rb:215
|
4484
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)"
|
4485
4572
|
msgstr ""
|
4486
4573
|
|
4487
|
-
#: ../lib/puppet/parser/functions.rb:
|
4574
|
+
#: ../lib/puppet/parser/functions.rb:314
|
4488
4575
|
msgid "%{name}() can only be called using the 4.x function API. See Scope#call_function"
|
4489
4576
|
msgstr ""
|
4490
4577
|
|
@@ -5718,23 +5805,23 @@ msgstr ""
|
|
5718
5805
|
msgid "The code loaded from %{source} contains additional logic - can only contain the function %{name}"
|
5719
5806
|
msgstr ""
|
5720
5807
|
|
5721
|
-
#: ../lib/puppet/pops/loader/puppet_plan_instantiator.rb:
|
5808
|
+
#: ../lib/puppet/pops/loader/puppet_plan_instantiator.rb:34
|
5722
5809
|
msgid "The code loaded from %{source_ref} does not define the plan '%{plan_name}' - it is empty."
|
5723
5810
|
msgstr ""
|
5724
5811
|
|
5725
|
-
#: ../lib/puppet/pops/loader/puppet_plan_instantiator.rb:
|
5812
|
+
#: ../lib/puppet/pops/loader/puppet_plan_instantiator.rb:38
|
5726
5813
|
msgid "The code loaded from %{source_ref} must contain only the plan '%{plan_name}' - it has additional definitions."
|
5727
5814
|
msgstr ""
|
5728
5815
|
|
5729
|
-
#: ../lib/puppet/pops/loader/puppet_plan_instantiator.rb:
|
5816
|
+
#: ../lib/puppet/pops/loader/puppet_plan_instantiator.rb:43
|
5730
5817
|
msgid "The code loaded from %{source_ref} does not define the plan '%{plan_name}' - no plan found."
|
5731
5818
|
msgstr ""
|
5732
5819
|
|
5733
|
-
#: ../lib/puppet/pops/loader/puppet_plan_instantiator.rb:
|
5820
|
+
#: ../lib/puppet/pops/loader/puppet_plan_instantiator.rb:48
|
5734
5821
|
msgid "The code loaded from %{source_ref} produced plan with the wrong name, expected %{expected}, actual %{actual}"
|
5735
5822
|
msgstr ""
|
5736
5823
|
|
5737
|
-
#: ../lib/puppet/pops/loader/puppet_plan_instantiator.rb:
|
5824
|
+
#: ../lib/puppet/pops/loader/puppet_plan_instantiator.rb:51
|
5738
5825
|
msgid "The code loaded from %{source} contains additional logic - can only contain the plan %{plan_name}"
|
5739
5826
|
msgstr ""
|
5740
5827
|
|
@@ -5823,23 +5910,23 @@ msgstr ""
|
|
5823
5910
|
msgid "The code loaded from %{source_ref} contains additional logic - can only contain the type '%{name}'"
|
5824
5911
|
msgstr ""
|
5825
5912
|
|
5826
|
-
#: ../lib/puppet/pops/loaders.rb:
|
5913
|
+
#: ../lib/puppet/pops/loaders.rb:34
|
5827
5914
|
msgid "Attempt to redefine already initialized loaders for environment"
|
5828
5915
|
msgstr ""
|
5829
5916
|
|
5830
|
-
#: ../lib/puppet/pops/loaders.rb:
|
5917
|
+
#: ../lib/puppet/pops/loaders.rb:176
|
5831
5918
|
msgid "Internal Error: Puppet Context ':loaders' missing"
|
5832
5919
|
msgstr ""
|
5833
5920
|
|
5834
|
-
#: ../lib/puppet/pops/loaders.rb:
|
5921
|
+
#: ../lib/puppet/pops/loaders.rb:190
|
5835
5922
|
msgid "Unable to find loader named '%{loader_name}'"
|
5836
5923
|
msgstr ""
|
5837
5924
|
|
5838
|
-
#: ../lib/puppet/pops/loaders.rb:
|
5925
|
+
#: ../lib/puppet/pops/loaders.rb:211
|
5839
5926
|
msgid "Internal Error: did not find public loader for module: '%{module_name}'"
|
5840
5927
|
msgstr ""
|
5841
5928
|
|
5842
|
-
#: ../lib/puppet/pops/loaders.rb:
|
5929
|
+
#: ../lib/puppet/pops/loaders.rb:257
|
5843
5930
|
msgid "Internal Error: Attempt to redefine loader named '%{name}'"
|
5844
5931
|
msgstr ""
|
5845
5932
|
|
@@ -5878,7 +5965,7 @@ msgstr ""
|
|
5878
5965
|
msgid "%{config_path}: Use of 'hiera.yaml' version 4 is deprecated. It should be converted to version 5"
|
5879
5966
|
msgstr ""
|
5880
5967
|
|
5881
|
-
#: ../lib/puppet/pops/lookup/invocation.rb:
|
5968
|
+
#: ../lib/puppet/pops/lookup/invocation.rb:91
|
5882
5969
|
msgid "Recursive lookup detected in [%{name_stack}]"
|
5883
5970
|
msgstr ""
|
5884
5971
|
|
@@ -6046,7 +6133,7 @@ msgstr ""
|
|
6046
6133
|
msgid "digit expected"
|
6047
6134
|
msgstr ""
|
6048
6135
|
|
6049
|
-
#: ../lib/puppet/pops/resource/resource_type_impl.rb:167 ../lib/puppet/type.rb:
|
6136
|
+
#: ../lib/puppet/pops/resource/resource_type_impl.rb:167 ../lib/puppet/type.rb:440
|
6050
6137
|
msgid "you must specify title patterns when there are two or more key attributes"
|
6051
6138
|
msgstr ""
|
6052
6139
|
|
@@ -6111,35 +6198,35 @@ msgstr ""
|
|
6111
6198
|
msgid "No Puppet Type found for %{klass}"
|
6112
6199
|
msgstr ""
|
6113
6200
|
|
6114
|
-
#: ../lib/puppet/pops/time/timespan.rb:
|
6201
|
+
#: ../lib/puppet/pops/time/timespan.rb:114 ../lib/puppet/pops/time/timestamp.rb:83
|
6115
6202
|
msgid "Unable to parse '%{str}' using any of the formats %{formats}"
|
6116
6203
|
msgstr ""
|
6117
6204
|
|
6118
|
-
#: ../lib/puppet/pops/time/timespan.rb:
|
6205
|
+
#: ../lib/puppet/pops/time/timespan.rb:135
|
6119
6206
|
msgid "%{klass} cannot be added to a Timespan"
|
6120
6207
|
msgstr ""
|
6121
6208
|
|
6122
|
-
#: ../lib/puppet/pops/time/timespan.rb:
|
6209
|
+
#: ../lib/puppet/pops/time/timespan.rb:147
|
6123
6210
|
msgid "%{klass} cannot be subtracted from a Timespan"
|
6124
6211
|
msgstr ""
|
6125
6212
|
|
6126
|
-
#: ../lib/puppet/pops/time/timespan.rb:
|
6213
|
+
#: ../lib/puppet/pops/time/timespan.rb:160
|
6127
6214
|
msgid "A Timestamp cannot be multiplied by %{klass}"
|
6128
6215
|
msgstr ""
|
6129
6216
|
|
6130
|
-
#: ../lib/puppet/pops/time/timespan.rb:
|
6217
|
+
#: ../lib/puppet/pops/time/timespan.rb:171
|
6131
6218
|
msgid "Can not do modulus on a Timespan using a %{klass}"
|
6132
6219
|
msgstr ""
|
6133
6220
|
|
6134
|
-
#: ../lib/puppet/pops/time/timespan.rb:
|
6221
|
+
#: ../lib/puppet/pops/time/timespan.rb:191
|
6135
6222
|
msgid "A Timespan cannot be divided by %{klass}"
|
6136
6223
|
msgstr ""
|
6137
6224
|
|
6138
|
-
#: ../lib/puppet/pops/time/timespan.rb:
|
6225
|
+
#: ../lib/puppet/pops/time/timespan.rb:478
|
6139
6226
|
msgid "Format specifiers %L and %N denotes fractions and must be used together with a specifier of higher magnitude"
|
6140
6227
|
msgstr ""
|
6141
6228
|
|
6142
|
-
#: ../lib/puppet/pops/time/timespan.rb:
|
6229
|
+
#: ../lib/puppet/pops/time/timespan.rb:554 ../lib/puppet/pops/time/timespan.rb:560
|
6143
6230
|
msgid "Unable to parse '%{timespan}' using format '%{format}'"
|
6144
6231
|
msgstr ""
|
6145
6232
|
|
@@ -6288,7 +6375,7 @@ msgstr ""
|
|
6288
6375
|
msgid "Options 'include_containers' and 'include_values' cannot both be false"
|
6289
6376
|
msgstr ""
|
6290
6377
|
|
6291
|
-
#: ../lib/puppet/pops/types/type_calculator.rb:
|
6378
|
+
#: ../lib/puppet/pops/types/type_calculator.rb:187
|
6292
6379
|
msgid "TypeCalculator.enumerable is deprecated. Use iterable"
|
6293
6380
|
msgstr ""
|
6294
6381
|
|
@@ -6483,27 +6570,31 @@ msgstr ""
|
|
6483
6570
|
msgid "Invalid value %{value}: %{property} must be an Integer!"
|
6484
6571
|
msgstr ""
|
6485
6572
|
|
6486
|
-
#: ../lib/puppet/provider/aix_object.rb:
|
6573
|
+
#: ../lib/puppet/provider/aix_object.rb:333
|
6574
|
+
msgid "Cannot have both 'forcelocal' and 'ia_load_module' at the same time!"
|
6575
|
+
msgstr ""
|
6576
|
+
|
6577
|
+
#: ../lib/puppet/provider/aix_object.rb:376
|
6487
6578
|
msgid "Could not set %{property} on %{resource}[%{name}]: %{detail}"
|
6488
6579
|
msgstr ""
|
6489
6580
|
|
6490
|
-
#: ../lib/puppet/provider/aix_object.rb:
|
6581
|
+
#: ../lib/puppet/provider/aix_object.rb:402
|
6491
6582
|
msgid "attributes is setting the %{properties} properties via. the %{attributes} attributes, respectively! Please specify these property values in the resource declaration instead."
|
6492
6583
|
msgstr ""
|
6493
6584
|
|
6494
|
-
#: ../lib/puppet/provider/aix_object.rb:
|
6585
|
+
#: ../lib/puppet/provider/aix_object.rb:404 ../lib/puppet/provider/aix_object.rb:413
|
6495
6586
|
msgid "Could not set attributes on %{resource}[%{name}]: %{detail}"
|
6496
6587
|
msgstr ""
|
6497
6588
|
|
6498
|
-
#: ../lib/puppet/provider/aix_object.rb:
|
6589
|
+
#: ../lib/puppet/provider/aix_object.rb:425
|
6499
6590
|
msgid "aix.object_info(): Could not find %{resource}[%{name}]"
|
6500
6591
|
msgstr ""
|
6501
6592
|
|
6502
|
-
#: ../lib/puppet/provider/aix_object.rb:
|
6593
|
+
#: ../lib/puppet/provider/aix_object.rb:471 ../lib/puppet/provider/nameservice.rb:182 ../lib/puppet/provider/nameservice/directoryservice.rb:425
|
6503
6594
|
msgid "Could not create %{resource} %{name}: %{detail}"
|
6504
6595
|
msgstr ""
|
6505
6596
|
|
6506
|
-
#: ../lib/puppet/provider/aix_object.rb:
|
6597
|
+
#: ../lib/puppet/provider/aix_object.rb:483 ../lib/puppet/provider/nameservice.rb:196
|
6507
6598
|
msgid "Could not delete %{resource} %{name}: %{detail}"
|
6508
6599
|
msgstr ""
|
6509
6600
|
|
@@ -6568,15 +6659,15 @@ msgstr ""
|
|
6568
6659
|
msgid "%{resource_name}: %{mode_part_type} set to SYSTEM. SYSTEM permissions cannot be set below FullControl ('7')"
|
6569
6660
|
msgstr ""
|
6570
6661
|
|
6571
|
-
#: ../lib/puppet/provider/group/aix.rb:
|
6662
|
+
#: ../lib/puppet/provider/group/aix.rb:48
|
6572
6663
|
msgid "No AIX group exists with a group name or gid of %{group}!"
|
6573
6664
|
msgstr ""
|
6574
6665
|
|
6575
|
-
#: ../lib/puppet/provider/group/groupadd.rb:
|
6666
|
+
#: ../lib/puppet/provider/group/groupadd.rb:11 ../lib/puppet/provider/group/pw.rb:14
|
6576
6667
|
msgid "GID must be an integer"
|
6577
6668
|
msgstr ""
|
6578
6669
|
|
6579
|
-
#: ../lib/puppet/provider/group/groupadd.rb:
|
6670
|
+
#: ../lib/puppet/provider/group/groupadd.rb:44
|
6580
6671
|
msgid "GID %{resource} already exists, use allowdupe to force group creation"
|
6581
6672
|
msgstr ""
|
6582
6673
|
|
@@ -6659,27 +6750,31 @@ msgstr ""
|
|
6659
6750
|
msgid "Could not perform network device prefetch: %{detail}"
|
6660
6751
|
msgstr ""
|
6661
6752
|
|
6662
|
-
#: ../lib/puppet/provider/package/aix.rb:
|
6753
|
+
#: ../lib/puppet/provider/package/aix.rb:46
|
6663
6754
|
msgid "The aix provider can only be used by root"
|
6664
6755
|
msgstr ""
|
6665
6756
|
|
6666
|
-
#: ../lib/puppet/provider/package/aix.rb:
|
6757
|
+
#: ../lib/puppet/provider/package/aix.rb:88 ../lib/puppet/provider/package/nim.rb:53
|
6667
6758
|
msgid "Failed to uninstall package '%{name}'"
|
6668
6759
|
msgstr ""
|
6669
6760
|
|
6670
|
-
#: ../lib/puppet/provider/package/aix.rb:
|
6761
|
+
#: ../lib/puppet/provider/package/aix.rb:95
|
6671
6762
|
msgid "A directory is required which will be used to find packages"
|
6672
6763
|
msgstr ""
|
6673
6764
|
|
6674
|
-
#: ../lib/puppet/provider/package/aix.rb:
|
6765
|
+
#: ../lib/puppet/provider/package/aix.rb:107
|
6675
6766
|
msgid "aix package provider is unable to downgrade packages"
|
6676
6767
|
msgstr ""
|
6677
6768
|
|
6678
|
-
#: ../lib/puppet/provider/package/aix.rb:
|
6769
|
+
#: ../lib/puppet/provider/package/aix.rb:112
|
6770
|
+
msgid "Package '%{name}' is in a %{status} state and requires manual intervention"
|
6771
|
+
msgstr ""
|
6772
|
+
|
6773
|
+
#: ../lib/puppet/provider/package/aix.rb:133
|
6679
6774
|
msgid "Could not list installed Packages: %{detail}"
|
6680
6775
|
msgstr ""
|
6681
6776
|
|
6682
|
-
#: ../lib/puppet/provider/package/aix.rb:
|
6777
|
+
#: ../lib/puppet/provider/package/aix.rb:156 ../lib/puppet/provider/package/yum.rb:332
|
6683
6778
|
msgid "Tried to get latest on a missing package"
|
6684
6779
|
msgstr ""
|
6685
6780
|
|
@@ -6695,23 +6790,23 @@ msgstr ""
|
|
6695
6790
|
msgid "Mac OS X packages must specify a package source"
|
6696
6791
|
msgstr ""
|
6697
6792
|
|
6698
|
-
#: ../lib/puppet/provider/package/apt.rb:
|
6793
|
+
#: ../lib/puppet/provider/package/apt.rb:47
|
6699
6794
|
msgid "/etc/apt/sources.list contains a cdrom source; not installing. Use 'allowcdrom' to override this failure."
|
6700
6795
|
msgstr ""
|
6701
6796
|
|
6702
|
-
#: ../lib/puppet/provider/package/apt.rb:
|
6797
|
+
#: ../lib/puppet/provider/package/apt.rb:129 ../lib/puppet/provider/package/fink.rb:55
|
6703
6798
|
msgid "Could not find latest version"
|
6704
6799
|
msgstr ""
|
6705
6800
|
|
6706
|
-
#: ../lib/puppet/provider/package/apt.rb:
|
6801
|
+
#: ../lib/puppet/provider/package/apt.rb:140 ../lib/puppet/provider/package/fink.rb:66
|
6707
6802
|
msgid "Preseeding %{response} to debconf-set-selections"
|
6708
6803
|
msgstr ""
|
6709
6804
|
|
6710
|
-
#: ../lib/puppet/provider/package/apt.rb:
|
6805
|
+
#: ../lib/puppet/provider/package/apt.rb:144 ../lib/puppet/provider/package/fink.rb:70
|
6711
6806
|
msgid "No responsefile specified or non existent, not preseeding anything"
|
6712
6807
|
msgstr ""
|
6713
6808
|
|
6714
|
-
#: ../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:
|
6809
|
+
#: ../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
|
6715
6810
|
msgid "Could not find package %{name}"
|
6716
6811
|
msgstr ""
|
6717
6812
|
|
@@ -6747,11 +6842,11 @@ msgstr ""
|
|
6747
6842
|
msgid "You cannot install dpkg packages without a source"
|
6748
6843
|
msgstr ""
|
6749
6844
|
|
6750
|
-
#: ../lib/puppet/provider/package/dpkg.rb:
|
6845
|
+
#: ../lib/puppet/provider/package/dpkg.rb:118
|
6751
6846
|
msgid "Could not update: You cannot install dpkg packages without a source"
|
6752
6847
|
msgstr ""
|
6753
6848
|
|
6754
|
-
#: ../lib/puppet/provider/package/dpkg.rb:
|
6849
|
+
#: ../lib/puppet/provider/package/dpkg.rb:122
|
6755
6850
|
msgid "source doesn't contain named package, but %{name}"
|
6756
6851
|
msgstr ""
|
6757
6852
|
|
@@ -6759,27 +6854,27 @@ msgstr ""
|
|
6759
6854
|
msgid "source is defined but does not have trailing slash, ignoring %{source}"
|
6760
6855
|
msgstr ""
|
6761
6856
|
|
6762
|
-
#: ../lib/puppet/provider/package/gem.rb:
|
6857
|
+
#: ../lib/puppet/provider/package/gem.rb:100
|
6763
6858
|
msgid "Could not list gems: %{detail}"
|
6764
6859
|
msgstr ""
|
6765
6860
|
|
6766
|
-
#: ../lib/puppet/provider/package/gem.rb:
|
6861
|
+
#: ../lib/puppet/provider/package/gem.rb:126
|
6767
6862
|
msgid "Could not match %{desc}"
|
6768
6863
|
msgstr ""
|
6769
6864
|
|
6770
|
-
#: ../lib/puppet/provider/package/gem.rb:
|
6865
|
+
#: ../lib/puppet/provider/package/gem.rb:204
|
6771
6866
|
msgid "Invalid source '%{uri}': %{detail}"
|
6772
6867
|
msgstr ""
|
6773
6868
|
|
6774
|
-
#: ../lib/puppet/provider/package/gem.rb:
|
6869
|
+
#: ../lib/puppet/provider/package/gem.rb:215
|
6775
6870
|
msgid "puppet:// URLs are not supported as gem sources"
|
6776
6871
|
msgstr ""
|
6777
6872
|
|
6778
|
-
#: ../lib/puppet/provider/package/gem.rb:
|
6873
|
+
#: ../lib/puppet/provider/package/gem.rb:231
|
6779
6874
|
msgid "Could not install: %{output}"
|
6780
6875
|
msgstr ""
|
6781
6876
|
|
6782
|
-
#: ../lib/puppet/provider/package/gem.rb:
|
6877
|
+
#: ../lib/puppet/provider/package/gem.rb:257
|
6783
6878
|
msgid "Could not uninstall: %{output}"
|
6784
6879
|
msgstr ""
|
6785
6880
|
|
@@ -6837,19 +6932,19 @@ msgid ""
|
|
6837
6932
|
"'%{line}'"
|
6838
6933
|
msgstr ""
|
6839
6934
|
|
6840
|
-
#: ../lib/puppet/provider/package/openbsd.rb:
|
6935
|
+
#: ../lib/puppet/provider/package/openbsd.rb:51 ../lib/puppet/provider/package/opkg.rb:26
|
6841
6936
|
msgid "Failed to match line %{line}"
|
6842
6937
|
msgstr ""
|
6843
6938
|
|
6844
|
-
#: ../lib/puppet/provider/package/openbsd.rb:
|
6939
|
+
#: ../lib/puppet/provider/package/openbsd.rb:142
|
6845
6940
|
msgid "No valid installpath found in /etc/pkg.conf and no source was set"
|
6846
6941
|
msgstr ""
|
6847
6942
|
|
6848
|
-
#: ../lib/puppet/provider/package/openbsd.rb:
|
6943
|
+
#: ../lib/puppet/provider/package/openbsd.rb:146
|
6849
6944
|
msgid "You must specify a package source or configure an installpath in /etc/pkg.conf"
|
6850
6945
|
msgstr ""
|
6851
6946
|
|
6852
|
-
#: ../lib/puppet/provider/package/openbsd.rb:
|
6947
|
+
#: ../lib/puppet/provider/package/openbsd.rb:219
|
6853
6948
|
msgid "%{version} is not available for this package"
|
6854
6949
|
msgstr ""
|
6855
6950
|
|
@@ -6865,31 +6960,31 @@ msgstr ""
|
|
6865
6960
|
msgid "Error getting installed packages"
|
6866
6961
|
msgstr ""
|
6867
6962
|
|
6868
|
-
#: ../lib/puppet/provider/package/pacman.rb:
|
6963
|
+
#: ../lib/puppet/provider/package/pacman.rb:173
|
6869
6964
|
msgid "%{resource_name} is a group, but allow_virtual is false."
|
6870
6965
|
msgstr ""
|
6871
6966
|
|
6872
|
-
#: ../lib/puppet/provider/package/pacman.rb:
|
6967
|
+
#: ../lib/puppet/provider/package/pacman.rb:200
|
6873
6968
|
msgid "Refusing to uninstall package group %{resource_name}, because allow_virtual is false."
|
6874
6969
|
msgstr ""
|
6875
6970
|
|
6876
|
-
#: ../lib/puppet/provider/package/pacman.rb:
|
6971
|
+
#: ../lib/puppet/provider/package/pacman.rb:230
|
6877
6972
|
msgid "Invalid source '%{source}': %{detail}"
|
6878
6973
|
msgstr ""
|
6879
6974
|
|
6880
|
-
#: ../lib/puppet/provider/package/pacman.rb:
|
6975
|
+
#: ../lib/puppet/provider/package/pacman.rb:239
|
6881
6976
|
msgid "puppet:// URL is not supported by pacman"
|
6882
6977
|
msgstr ""
|
6883
6978
|
|
6884
|
-
#: ../lib/puppet/provider/package/pacman.rb:
|
6979
|
+
#: ../lib/puppet/provider/package/pacman.rb:241
|
6885
6980
|
msgid "Source %{source} is not supported by pacman"
|
6886
6981
|
msgstr ""
|
6887
6982
|
|
6888
|
-
#: ../lib/puppet/provider/package/pacman.rb:
|
6983
|
+
#: ../lib/puppet/provider/package/pacman.rb:251
|
6889
6984
|
msgid "Refusing to install package group %{resource_name}, because allow_virtual is false."
|
6890
6985
|
msgstr ""
|
6891
6986
|
|
6892
|
-
#: ../lib/puppet/provider/package/pip.rb:
|
6987
|
+
#: ../lib/puppet/provider/package/pip.rb:58
|
6893
6988
|
msgid "Cannot resolve pip version"
|
6894
6989
|
msgstr ""
|
6895
6990
|
|
@@ -6905,27 +7000,27 @@ msgstr ""
|
|
6905
7000
|
msgid "Unknown line format %{resource_name}: %{parse_line}"
|
6906
7001
|
msgstr ""
|
6907
7002
|
|
6908
|
-
#: ../lib/puppet/provider/package/pkg.rb:
|
7003
|
+
#: ../lib/puppet/provider/package/pkg.rb:127
|
6909
7004
|
msgid "Unable to unfreeze %{package}"
|
6910
7005
|
msgstr ""
|
6911
7006
|
|
6912
|
-
#: ../lib/puppet/provider/package/pkg.rb:
|
7007
|
+
#: ../lib/puppet/provider/package/pkg.rb:162
|
6913
7008
|
msgid "Implicit version %{should} has %{n} possible matches"
|
6914
7009
|
msgstr ""
|
6915
7010
|
|
6916
|
-
#: ../lib/puppet/provider/package/pkg.rb:
|
7011
|
+
#: ../lib/puppet/provider/package/pkg.rb:174
|
6917
7012
|
msgid "Selecting version '%{version}' for implicit '%{should}'"
|
6918
7013
|
msgstr ""
|
6919
7014
|
|
6920
|
-
#: ../lib/puppet/provider/package/pkg.rb:
|
7015
|
+
#: ../lib/puppet/provider/package/pkg.rb:179
|
6921
7016
|
msgid "No version of %{name} matching %{should} is installable, even though the package is currently installed"
|
6922
7017
|
msgstr ""
|
6923
7018
|
|
6924
|
-
#: ../lib/puppet/provider/package/pkg.rb:
|
7019
|
+
#: ../lib/puppet/provider/package/pkg.rb:198
|
6925
7020
|
msgid "pkg warning: %{warnings}"
|
6926
7021
|
msgstr ""
|
6927
7022
|
|
6928
|
-
#: ../lib/puppet/provider/package/pkg.rb:
|
7023
|
+
#: ../lib/puppet/provider/package/pkg.rb:242 ../lib/puppet/provider/package/pkg.rb:268
|
6929
7024
|
msgid "Unable to update %{package}"
|
6930
7025
|
msgstr ""
|
6931
7026
|
|
@@ -6985,11 +7080,11 @@ msgstr ""
|
|
6985
7080
|
msgid "portversion.latest() - fatal error with portversion: %{output}"
|
6986
7081
|
msgstr ""
|
6987
7082
|
|
6988
|
-
#: ../lib/puppet/provider/package/rpm.rb:
|
7083
|
+
#: ../lib/puppet/provider/package/rpm.rb:68
|
6989
7084
|
msgid "Failed to list packages"
|
6990
7085
|
msgstr ""
|
6991
7086
|
|
6992
|
-
#: ../lib/puppet/provider/package/rpm.rb:
|
7087
|
+
#: ../lib/puppet/provider/package/rpm.rb:107 ../lib/puppet/provider/package/rpm.rb:120
|
6993
7088
|
msgid "RPMs must specify a package source"
|
6994
7089
|
msgstr ""
|
6995
7090
|
|
@@ -7034,31 +7129,31 @@ msgstr ""
|
|
7034
7129
|
msgid "Don't know how to install '%{source}'"
|
7035
7130
|
msgstr ""
|
7036
7131
|
|
7037
|
-
#: ../lib/puppet/provider/package/yum.rb:
|
7132
|
+
#: ../lib/puppet/provider/package/yum.rb:69
|
7038
7133
|
msgid "The yum provider can only be used as root"
|
7039
7134
|
msgstr ""
|
7040
7135
|
|
7041
|
-
#: ../lib/puppet/provider/package/yum.rb:
|
7136
|
+
#: ../lib/puppet/provider/package/yum.rb:123
|
7042
7137
|
msgid "Could not check for updates, '%{cmd} check-update' exited with %{status}"
|
7043
7138
|
msgstr ""
|
7044
7139
|
|
7045
|
-
#: ../lib/puppet/provider/package/yum.rb:
|
7140
|
+
#: ../lib/puppet/provider/package/yum.rb:158
|
7046
7141
|
msgid "Failed to parse package name and architecture from '%{pkgname}'"
|
7047
7142
|
msgstr ""
|
7048
7143
|
|
7049
|
-
#: ../lib/puppet/provider/package/yum.rb:
|
7144
|
+
#: ../lib/puppet/provider/package/yum.rb:306
|
7050
7145
|
msgid "Could not find package %{wanted}"
|
7051
7146
|
msgstr ""
|
7052
7147
|
|
7053
|
-
#: ../lib/puppet/provider/package/yum.rb:
|
7148
|
+
#: ../lib/puppet/provider/package/yum.rb:317
|
7054
7149
|
msgid "Failed to update to version %{should}, got version %{version} instead"
|
7055
7150
|
msgstr ""
|
7056
7151
|
|
7057
|
-
#: ../lib/puppet/provider/package_targetable.rb:
|
7152
|
+
#: ../lib/puppet/provider/package_targetable.rb:56
|
7058
7153
|
msgid "Provider %{name} package command is not functional on this host"
|
7059
7154
|
msgstr ""
|
7060
7155
|
|
7061
|
-
#: ../lib/puppet/provider/package_targetable.rb:
|
7156
|
+
#: ../lib/puppet/provider/package_targetable.rb:59
|
7062
7157
|
msgid "Provider %{name} package command '%{cmd}' does not exist on this host"
|
7063
7158
|
msgstr ""
|
7064
7159
|
|
@@ -7157,15 +7252,15 @@ msgid "Unknown service state '%{current_state}' for service '%{resource_name}'"
|
|
7157
7252
|
msgstr ""
|
7158
7253
|
|
7159
7254
|
#. TRANSLATORS 'AIX' is the name of an operating system and should not be translated
|
7160
|
-
#: ../lib/puppet/provider/user/aix.rb:
|
7255
|
+
#: ../lib/puppet/provider/user/aix.rb:69
|
7161
7256
|
msgid "Could not convert AIX expires date '%{expires}' on %{class_name}[%{resource_name}]"
|
7162
7257
|
msgstr ""
|
7163
7258
|
|
7164
|
-
#: ../lib/puppet/provider/user/aix.rb:
|
7259
|
+
#: ../lib/puppet/provider/user/aix.rb:83
|
7165
7260
|
msgid "Invalid value %{groups}: Groups must be comma separated!"
|
7166
7261
|
msgstr ""
|
7167
7262
|
|
7168
|
-
#: ../lib/puppet/provider/user/aix.rb:
|
7263
|
+
#: ../lib/puppet/provider/user/aix.rb:151
|
7169
7264
|
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}"
|
7170
7265
|
msgstr ""
|
7171
7266
|
|
@@ -7237,7 +7332,7 @@ msgstr ""
|
|
7237
7332
|
msgid "You must pass a callback for non-NONE events"
|
7238
7333
|
msgstr ""
|
7239
7334
|
|
7240
|
-
#: ../lib/puppet/reports/http.rb:
|
7335
|
+
#: ../lib/puppet/reports/http.rb:38
|
7241
7336
|
msgid "Unable to submit report to %{url} [%{code}] %{message}"
|
7242
7337
|
msgstr ""
|
7243
7338
|
|
@@ -7384,7 +7479,7 @@ msgstr ""
|
|
7384
7479
|
msgid "Could not find resource %{resource} when converting %{message} resources"
|
7385
7480
|
msgstr ""
|
7386
7481
|
|
7387
|
-
#: ../lib/puppet/resource/status.rb:139 ../lib/puppet/transaction.rb:
|
7482
|
+
#: ../lib/puppet/resource/status.rb:139 ../lib/puppet/transaction.rb:274
|
7388
7483
|
msgid "Could not evaluate: %{detail}"
|
7389
7484
|
msgstr ""
|
7390
7485
|
|
@@ -7452,55 +7547,55 @@ msgstr ""
|
|
7452
7547
|
msgid "%{param} is a metaparameter; please choose another parameter name in the %{name} definition"
|
7453
7548
|
msgstr ""
|
7454
7549
|
|
7455
|
-
#: ../lib/puppet/resource/type_collection.rb:
|
7550
|
+
#: ../lib/puppet/resource/type_collection.rb:72
|
7456
7551
|
msgid "Class '%{klass}' is already defined%{error}; cannot redefine"
|
7457
7552
|
msgstr ""
|
7458
7553
|
|
7459
|
-
#: ../lib/puppet/resource/type_collection.rb:
|
7554
|
+
#: ../lib/puppet/resource/type_collection.rb:73
|
7460
7555
|
msgid "Definition '%{klass}' is already defined%{error}; cannot be redefined as a class"
|
7461
7556
|
msgstr ""
|
7462
7557
|
|
7463
|
-
#: ../lib/puppet/resource/type_collection.rb:
|
7558
|
+
#: ../lib/puppet/resource/type_collection.rb:74
|
7464
7559
|
msgid "Application '%{klass}' is already defined%{error}; cannot be redefined as a class"
|
7465
7560
|
msgstr ""
|
7466
7561
|
|
7467
|
-
#: ../lib/puppet/resource/type_collection.rb:
|
7562
|
+
#: ../lib/puppet/resource/type_collection.rb:105
|
7468
7563
|
msgid "Node '%{name}' is already defined%{error}; cannot redefine"
|
7469
7564
|
msgstr ""
|
7470
7565
|
|
7471
|
-
#: ../lib/puppet/resource/type_collection.rb:
|
7566
|
+
#: ../lib/puppet/resource/type_collection.rb:113
|
7472
7567
|
msgid "Site is already defined%{error}; cannot redefine"
|
7473
7568
|
msgstr ""
|
7474
7569
|
|
7475
|
-
#: ../lib/puppet/resource/type_collection.rb:
|
7570
|
+
#: ../lib/puppet/resource/type_collection.rb:150
|
7476
7571
|
msgid "'%{name}' is already defined%{error} as a class; cannot redefine as a definition"
|
7477
7572
|
msgstr ""
|
7478
7573
|
|
7479
|
-
#: ../lib/puppet/resource/type_collection.rb:
|
7574
|
+
#: ../lib/puppet/resource/type_collection.rb:151
|
7480
7575
|
msgid "Definition '%{name}' is already defined%{error}; cannot be redefined"
|
7481
7576
|
msgstr ""
|
7482
7577
|
|
7483
|
-
#: ../lib/puppet/resource/type_collection.rb:
|
7578
|
+
#: ../lib/puppet/resource/type_collection.rb:152 ../lib/puppet/resource/type_collection.rb:168
|
7484
7579
|
msgid "'%{name}' is already defined%{error} as an application; cannot be redefined"
|
7485
7580
|
msgstr ""
|
7486
7581
|
|
7487
|
-
#: ../lib/puppet/resource/type_collection.rb:
|
7582
|
+
#: ../lib/puppet/resource/type_collection.rb:157
|
7488
7583
|
msgid "'%{name}' is already defined%{error} as a class; cannot redefine as a mapping"
|
7489
7584
|
msgstr ""
|
7490
7585
|
|
7491
|
-
#: ../lib/puppet/resource/type_collection.rb:
|
7586
|
+
#: ../lib/puppet/resource/type_collection.rb:166
|
7492
7587
|
msgid "'%{name}' is already defined%{error} as a class; cannot redefine as an application"
|
7493
7588
|
msgstr ""
|
7494
7589
|
|
7495
|
-
#: ../lib/puppet/resource/type_collection.rb:
|
7590
|
+
#: ../lib/puppet/resource/type_collection.rb:167
|
7496
7591
|
msgid "'%{name}' is already defined%{error} as a definition; cannot redefine as an application"
|
7497
7592
|
msgstr ""
|
7498
7593
|
|
7499
|
-
#: ../lib/puppet/resource/type_collection.rb:
|
7594
|
+
#: ../lib/puppet/resource/type_collection.rb:220
|
7500
7595
|
msgid "Execution of config_version command `%{cmd}` failed: %{message}"
|
7501
7596
|
msgstr ""
|
7502
7597
|
|
7503
|
-
#: ../lib/puppet/resource/type_collection.rb:
|
7598
|
+
#: ../lib/puppet/resource/type_collection.rb:241
|
7504
7599
|
msgid "Not attempting to load %{type} %{fqname} as this object was missing during a prior compilation"
|
7505
7600
|
msgstr ""
|
7506
7601
|
|
@@ -7520,73 +7615,73 @@ msgstr ""
|
|
7520
7615
|
msgid "Downloaded existing certificate request for %{name} from %{server}"
|
7521
7616
|
msgstr ""
|
7522
7617
|
|
7523
|
-
#: ../lib/puppet/settings.rb:
|
7618
|
+
#: ../lib/puppet/settings.rb:98
|
7524
7619
|
msgid "New environment loaders generated from the requested section."
|
7525
7620
|
msgstr ""
|
7526
7621
|
|
7527
|
-
#: ../lib/puppet/settings.rb:
|
7622
|
+
#: ../lib/puppet/settings.rb:300
|
7528
7623
|
msgid "Attempting to initialize global default settings more than once!"
|
7529
7624
|
msgstr ""
|
7530
7625
|
|
7531
|
-
#: ../lib/puppet/settings.rb:
|
7626
|
+
#: ../lib/puppet/settings.rb:500
|
7532
7627
|
msgid "Using --configprint is deprecated. Use 'puppet config <subcommand>' instead."
|
7533
7628
|
msgstr ""
|
7534
7629
|
|
7535
|
-
#: ../lib/puppet/settings.rb:
|
7630
|
+
#: ../lib/puppet/settings.rb:642
|
7536
7631
|
msgid "Could not load %{file}: %{detail}"
|
7537
7632
|
msgstr ""
|
7538
7633
|
|
7539
|
-
#: ../lib/puppet/settings.rb:
|
7634
|
+
#: ../lib/puppet/settings.rb:748
|
7540
7635
|
msgid "Invalid setting type '%{type}'"
|
7541
7636
|
msgstr ""
|
7542
7637
|
|
7543
|
-
#: ../lib/puppet/settings.rb:
|
7638
|
+
#: ../lib/puppet/settings.rb:894
|
7544
7639
|
msgid "Unknown searchpath case: %{source_type} for the %{source} settings path element."
|
7545
7640
|
msgstr ""
|
7546
7641
|
|
7547
|
-
#: ../lib/puppet/settings.rb:
|
7642
|
+
#: ../lib/puppet/settings.rb:957
|
7548
7643
|
msgid "setting definition for '%{name}' is not a hash!"
|
7549
7644
|
msgstr ""
|
7550
7645
|
|
7551
|
-
#: ../lib/puppet/settings.rb:
|
7646
|
+
#: ../lib/puppet/settings.rb:962
|
7552
7647
|
msgid "Setting %{name} is already defined"
|
7553
7648
|
msgstr ""
|
7554
7649
|
|
7555
|
-
#: ../lib/puppet/settings.rb:
|
7650
|
+
#: ../lib/puppet/settings.rb:968
|
7556
7651
|
msgid "Setting %{name} is already using short name '%{short}'"
|
7557
7652
|
msgstr ""
|
7558
7653
|
|
7559
|
-
#: ../lib/puppet/settings.rb:
|
7654
|
+
#: ../lib/puppet/settings.rb:1227
|
7560
7655
|
msgid "Setting %{name} is deprecated."
|
7561
7656
|
msgstr ""
|
7562
7657
|
|
7563
7658
|
#. TRANSLATORS 'puppet.conf' is a file name and should not be translated
|
7564
|
-
#: ../lib/puppet/settings.rb:
|
7659
|
+
#: ../lib/puppet/settings.rb:1232
|
7565
7660
|
msgid "Setting %{name} is deprecated in puppet.conf."
|
7566
7661
|
msgstr ""
|
7567
7662
|
|
7568
|
-
#: ../lib/puppet/settings.rb:
|
7663
|
+
#: ../lib/puppet/settings.rb:1403
|
7569
7664
|
msgid "Error converting value for param '%{name}': %{detail}"
|
7570
7665
|
msgstr ""
|
7571
7666
|
|
7572
|
-
#: ../lib/puppet/settings.rb:
|
7667
|
+
#: ../lib/puppet/settings.rb:1427
|
7573
7668
|
msgid "Could not find value for %{expression}"
|
7574
7669
|
msgstr ""
|
7575
7670
|
|
7576
7671
|
#. TRANSLATORS '$environment' is a Puppet specific variable and should not be translated
|
7577
|
-
#: ../lib/puppet/settings.rb:
|
7672
|
+
#: ../lib/puppet/settings.rb:1437
|
7578
7673
|
msgid "You cannot interpolate $environment within '%{setting_name}' when using directory environments."
|
7579
7674
|
msgstr ""
|
7580
7675
|
|
7581
|
-
#: ../lib/puppet/settings.rb:
|
7676
|
+
#: ../lib/puppet/settings.rb:1438
|
7582
7677
|
msgid "Its value will remain %{value}."
|
7583
7678
|
msgstr ""
|
7584
7679
|
|
7585
|
-
#: ../lib/puppet/settings.rb:
|
7680
|
+
#: ../lib/puppet/settings.rb:1469
|
7586
7681
|
msgid "Attempt to assign a value to unknown setting %{name}"
|
7587
7682
|
msgstr ""
|
7588
7683
|
|
7589
|
-
#: ../lib/puppet/settings/array_setting.rb:14
|
7684
|
+
#: ../lib/puppet/settings/array_setting.rb:14 ../lib/puppet/settings/http_extra_headers_setting.rb:21
|
7590
7685
|
msgid "Expected an Array or String, got a %{klass}"
|
7591
7686
|
msgstr ""
|
7592
7687
|
|
@@ -7700,6 +7795,10 @@ msgstr ""
|
|
7700
7795
|
msgid "The %{parameter} parameter for the setting '%{name}' must be either 'root' or 'service', not '%{value}'"
|
7701
7796
|
msgstr ""
|
7702
7797
|
|
7798
|
+
#: ../lib/puppet/settings/http_extra_headers_setting.rb:12
|
7799
|
+
msgid "Expected an Array, String, or Hash, got a %{klass}"
|
7800
|
+
msgstr ""
|
7801
|
+
|
7703
7802
|
#: ../lib/puppet/settings/priority_setting.rb:39
|
7704
7803
|
msgid "Invalid priority format '%{value}' for parameter: %{name}"
|
7705
7804
|
msgstr ""
|
@@ -7724,7 +7823,7 @@ msgstr ""
|
|
7724
7823
|
msgid "%{name} has not declared what class it wraps"
|
7725
7824
|
msgstr ""
|
7726
7825
|
|
7727
|
-
#: ../lib/puppet/ssl/base.rb:32 ../lib/puppet/x509/cert_provider.rb:
|
7826
|
+
#: ../lib/puppet/ssl/base.rb:32 ../lib/puppet/x509/cert_provider.rb:342
|
7728
7827
|
msgid "Certname %{name} must not contain unprintable or non-ASCII characters"
|
7729
7828
|
msgstr ""
|
7730
7829
|
|
@@ -7912,99 +8011,99 @@ msgstr ""
|
|
7912
8011
|
msgid "Could not download host certificate: %{message}"
|
7913
8012
|
msgstr ""
|
7914
8013
|
|
7915
|
-
#: ../lib/puppet/ssl/oids.rb:
|
8014
|
+
#: ../lib/puppet/ssl/oids.rb:110
|
7916
8015
|
msgid "Error loading ssl custom OIDs mapping file from '%{custom_oid_file}': %{err}"
|
7917
8016
|
msgstr ""
|
7918
8017
|
|
7919
|
-
#: ../lib/puppet/ssl/oids.rb:
|
8018
|
+
#: ../lib/puppet/ssl/oids.rb:114
|
7920
8019
|
msgid "Error loading ssl custom OIDs mapping file from '%{custom_oid_file}': no such index '%{map_key}'"
|
7921
8020
|
msgstr ""
|
7922
8021
|
|
7923
|
-
#: ../lib/puppet/ssl/oids.rb:
|
8022
|
+
#: ../lib/puppet/ssl/oids.rb:118
|
7924
8023
|
msgid "Error loading ssl custom OIDs mapping file from '%{custom_oid_file}': data under index '%{map_key}' must be a Hash"
|
7925
8024
|
msgstr ""
|
7926
8025
|
|
7927
|
-
#: ../lib/puppet/ssl/oids.rb:
|
8026
|
+
#: ../lib/puppet/ssl/oids.rb:125
|
7928
8027
|
msgid "Error loading ssl custom OIDs mapping file from '%{custom_oid_file}': incomplete definition of oid '%{oid}'"
|
7929
8028
|
msgstr ""
|
7930
8029
|
|
7931
|
-
#: ../lib/puppet/ssl/oids.rb:
|
8030
|
+
#: ../lib/puppet/ssl/oids.rb:157
|
7932
8031
|
msgid "Error registering ssl custom OIDs mapping from file '%{custom_oid_file}': %{err}"
|
7933
8032
|
msgstr ""
|
7934
8033
|
|
7935
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
8034
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:85
|
7936
8035
|
msgid "CA certs are missing"
|
7937
8036
|
msgstr ""
|
7938
8037
|
|
7939
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
8038
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:86
|
7940
8039
|
msgid "CRLs are missing"
|
7941
8040
|
msgstr ""
|
7942
8041
|
|
7943
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
8042
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:87
|
7944
8043
|
msgid "Private key is missing"
|
7945
8044
|
msgstr ""
|
7946
8045
|
|
7947
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
8046
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:88
|
7948
8047
|
msgid "Client cert is missing"
|
7949
8048
|
msgstr ""
|
7950
8049
|
|
7951
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
8050
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:94
|
7952
8051
|
msgid "Unsupported key '%{type}'"
|
7953
8052
|
msgstr ""
|
7954
8053
|
|
7955
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
8054
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:98
|
7956
8055
|
msgid "The certificate for '%{name}' does not match its private key"
|
7957
8056
|
msgstr ""
|
7958
8057
|
|
7959
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
8058
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:137
|
7960
8059
|
msgid "Failed to load private key for host '%{name}': %{message}"
|
7961
8060
|
msgstr ""
|
7962
8061
|
|
7963
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
8062
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:151
|
7964
8063
|
msgid "The CSR for host '%{name}' does not match the public key"
|
7965
8064
|
msgstr ""
|
7966
8065
|
|
7967
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
8066
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:215
|
7968
8067
|
msgid "The issuer '%{issuer}' of certificate '%{subject}' cannot be found locally"
|
7969
8068
|
msgstr ""
|
7970
8069
|
|
7971
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
8070
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:231
|
7972
8071
|
msgid "The certificate '%{subject}' is not yet valid, verify time is synchronized"
|
7973
8072
|
msgstr ""
|
7974
8073
|
|
7975
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
8074
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:233
|
7976
8075
|
msgid "The certificate '%{subject}' has expired, verify time is synchronized"
|
7977
8076
|
msgstr ""
|
7978
8077
|
|
7979
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
8078
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:235
|
7980
8079
|
msgid "The CRL issued by '%{issuer}' is not yet valid, verify time is synchronized"
|
7981
8080
|
msgstr ""
|
7982
8081
|
|
7983
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
8082
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:237
|
7984
8083
|
msgid "The CRL issued by '%{issuer}' has expired, verify time is synchronized"
|
7985
8084
|
msgstr ""
|
7986
8085
|
|
7987
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
8086
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:239
|
7988
8087
|
msgid "Invalid signature for certificate '%{subject}'"
|
7989
8088
|
msgstr ""
|
7990
8089
|
|
7991
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
8090
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:241
|
7992
8091
|
msgid "Invalid signature for CRL issued by '%{issuer}'"
|
7993
8092
|
msgstr ""
|
7994
8093
|
|
7995
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
8094
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:243
|
7996
8095
|
msgid "The issuer '%{issuer}' of certificate '%{subject}' is missing"
|
7997
8096
|
msgstr ""
|
7998
8097
|
|
7999
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
8098
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:246
|
8000
8099
|
msgid "The CRL issued by '%{issuer}' is missing"
|
8001
8100
|
msgstr ""
|
8002
8101
|
|
8003
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
8102
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:248
|
8004
8103
|
msgid "Certificate '%{subject}' is revoked"
|
8005
8104
|
msgstr ""
|
8006
8105
|
|
8007
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
8106
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:252
|
8008
8107
|
msgid "Certificate '%{subject}' failed verification (%{err}): %{err_utf8}"
|
8009
8108
|
msgstr ""
|
8010
8109
|
|
@@ -8088,20 +8187,24 @@ msgstr ""
|
|
8088
8187
|
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."
|
8089
8188
|
msgstr ""
|
8090
8189
|
|
8091
|
-
#: ../lib/puppet/ssl/state_machine.rb:
|
8092
|
-
msgid "
|
8190
|
+
#: ../lib/puppet/ssl/state_machine.rb:305
|
8191
|
+
msgid "Another puppet instance is already running and the waitforlock setting is set to 0; exiting"
|
8093
8192
|
msgstr ""
|
8094
8193
|
|
8095
|
-
#: ../lib/puppet/ssl/state_machine.rb:
|
8096
|
-
msgid "
|
8194
|
+
#: ../lib/puppet/ssl/state_machine.rb:307
|
8195
|
+
msgid "Another puppet instance is already running and the maxwaitforlock timeout has been exceeded; exiting"
|
8097
8196
|
msgstr ""
|
8098
8197
|
|
8099
|
-
#: ../lib/puppet/ssl/state_machine.rb:
|
8100
|
-
msgid "
|
8198
|
+
#: ../lib/puppet/ssl/state_machine.rb:309
|
8199
|
+
msgid "Another puppet instance is already running; waiting for it to finish"
|
8101
8200
|
msgstr ""
|
8102
8201
|
|
8103
|
-
#: ../lib/puppet/ssl/state_machine.rb:
|
8104
|
-
msgid "
|
8202
|
+
#: ../lib/puppet/ssl/state_machine.rb:427
|
8203
|
+
msgid "Verified client certificate '%{subject}' fingerprint %{digest}"
|
8204
|
+
msgstr ""
|
8205
|
+
|
8206
|
+
#: ../lib/puppet/ssl/state_machine.rb:429
|
8207
|
+
msgid "Verified CA certificate '%{subject}' fingerprint %{digest}"
|
8105
8208
|
msgstr ""
|
8106
8209
|
|
8107
8210
|
#. 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
|
@@ -8177,64 +8280,72 @@ msgstr ""
|
|
8177
8280
|
msgid "PP syntax checker: \"%{message}\""
|
8178
8281
|
msgstr ""
|
8179
8282
|
|
8180
|
-
#: ../lib/puppet/transaction.rb:
|
8283
|
+
#: ../lib/puppet/transaction.rb:90
|
8181
8284
|
msgid "Some pre-run checks failed"
|
8182
8285
|
msgstr ""
|
8183
8286
|
|
8184
|
-
#: ../lib/puppet/transaction.rb:
|
8287
|
+
#: ../lib/puppet/transaction.rb:106
|
8185
8288
|
msgid "Applying configuration version '%{version}'"
|
8186
8289
|
msgstr ""
|
8187
8290
|
|
8188
|
-
#: ../lib/puppet/transaction.rb:
|
8291
|
+
#: ../lib/puppet/transaction.rb:129
|
8189
8292
|
msgid "Provider %{name} is not functional on this host"
|
8190
8293
|
msgstr ""
|
8191
8294
|
|
8192
|
-
#: ../lib/puppet/transaction.rb:
|
8295
|
+
#: ../lib/puppet/transaction.rb:145
|
8193
8296
|
msgid "Could not find a suitable provider for %{type}"
|
8194
8297
|
msgstr ""
|
8195
8298
|
|
8196
|
-
#: ../lib/puppet/transaction.rb:
|
8299
|
+
#: ../lib/puppet/transaction.rb:152
|
8197
8300
|
msgid "post_resource_eval failed for provider %{provider}"
|
8198
8301
|
msgstr ""
|
8199
8302
|
|
8200
|
-
#: ../lib/puppet/transaction.rb:
|
8303
|
+
#: ../lib/puppet/transaction.rb:169
|
8201
8304
|
msgid "resource is part of a dependency cycle"
|
8202
8305
|
msgstr ""
|
8203
8306
|
|
8204
|
-
#: ../lib/puppet/transaction.rb:
|
8307
|
+
#: ../lib/puppet/transaction.rb:171
|
8205
8308
|
msgid "One or more resource dependency cycles detected in graph"
|
8206
8309
|
msgstr ""
|
8207
8310
|
|
8208
|
-
#: ../lib/puppet/transaction.rb:
|
8311
|
+
#: ../lib/puppet/transaction.rb:186
|
8209
8312
|
msgid "Somehow left a component in the relationship graph"
|
8210
8313
|
msgstr ""
|
8211
8314
|
|
8212
|
-
#: ../lib/puppet/transaction.rb:
|
8315
|
+
#: ../lib/puppet/transaction.rb:189
|
8213
8316
|
msgid "Starting to evaluate the resource (%{progress} of %{total})"
|
8214
8317
|
msgstr ""
|
8215
8318
|
|
8216
|
-
#: ../lib/puppet/transaction.rb:
|
8319
|
+
#: ../lib/puppet/transaction.rb:192
|
8217
8320
|
msgid "Evaluated in %{seconds} seconds"
|
8218
8321
|
msgstr ""
|
8219
8322
|
|
8220
|
-
#: ../lib/puppet/transaction.rb:
|
8323
|
+
#: ../lib/puppet/transaction.rb:308
|
8324
|
+
msgid "Class dependency %{dep} has failures: %{status}"
|
8325
|
+
msgstr ""
|
8326
|
+
|
8327
|
+
#: ../lib/puppet/transaction.rb:314
|
8221
8328
|
msgid "Dependency %{dep} has failures: %{status}"
|
8222
8329
|
msgstr ""
|
8223
8330
|
|
8224
|
-
#: ../lib/puppet/transaction.rb:
|
8331
|
+
#: ../lib/puppet/transaction.rb:336
|
8225
8332
|
msgid "Prefetch failed for %{type_name} provider '%{name}'"
|
8226
8333
|
msgstr ""
|
8227
8334
|
|
8228
8335
|
#. TRANSLATORS `prefetch` is a function name and should not be translated
|
8229
|
-
#: ../lib/puppet/transaction.rb:
|
8336
|
+
#: ../lib/puppet/transaction.rb:381 ../lib/puppet/transaction.rb:384
|
8230
8337
|
msgid "Could not prefetch %{type_name} provider '%{name}': %{detail}"
|
8231
8338
|
msgstr ""
|
8232
8339
|
|
8233
|
-
#: ../lib/puppet/transaction.rb:
|
8340
|
+
#: ../lib/puppet/transaction.rb:421
|
8341
|
+
msgid "Skipping resources in class because of failed class dependencies"
|
8342
|
+
msgstr ""
|
8343
|
+
|
8344
|
+
#: ../lib/puppet/transaction.rb:425
|
8234
8345
|
msgid "Skipping because of failed dependencies"
|
8235
8346
|
msgstr ""
|
8236
8347
|
|
8237
|
-
#: ../lib/puppet/transaction.rb:
|
8348
|
+
#: ../lib/puppet/transaction.rb:430
|
8238
8349
|
msgid "Skipping because provider prefetch failed"
|
8239
8350
|
msgstr ""
|
8240
8351
|
|
@@ -8343,77 +8454,77 @@ msgstr ""
|
|
8343
8454
|
msgid "audit change: newly-recorded value %s"
|
8344
8455
|
msgstr ""
|
8345
8456
|
|
8346
|
-
#: ../lib/puppet/type.rb:
|
8457
|
+
#: ../lib/puppet/type.rb:515
|
8347
8458
|
msgid "Options must be a hash, not %{type}"
|
8348
8459
|
msgstr ""
|
8349
8460
|
|
8350
|
-
#: ../lib/puppet/type.rb:
|
8461
|
+
#: ../lib/puppet/type.rb:518
|
8351
8462
|
msgid "Class %{class_name} already has a property named %{property}"
|
8352
8463
|
msgstr ""
|
8353
8464
|
|
8354
|
-
#: ../lib/puppet/type.rb:
|
8465
|
+
#: ../lib/puppet/type.rb:605
|
8355
8466
|
msgid "Class %{class_name} has not defined parameters"
|
8356
8467
|
msgstr ""
|
8357
8468
|
|
8358
|
-
#: ../lib/puppet/type.rb:
|
8469
|
+
#: ../lib/puppet/type.rb:692
|
8359
8470
|
msgid "Parameter %{name} failed on %{ref}: %{detail}"
|
8360
8471
|
msgstr ""
|
8361
8472
|
|
8362
|
-
#: ../lib/puppet/type.rb:
|
8473
|
+
#: ../lib/puppet/type.rb:715
|
8363
8474
|
msgid "Undefined attribute '%{attribute}' in %{name}"
|
8364
8475
|
msgstr ""
|
8365
8476
|
|
8366
8477
|
#. TRANSLATORS 'is' is a variable name and should not be translated
|
8367
8478
|
#. TRANSLATORS 'is' is a variable name and should not be translated
|
8368
|
-
#: ../lib/puppet/type.rb:
|
8479
|
+
#: ../lib/puppet/type.rb:1058 ../lib/puppet/type.rb:1069
|
8369
8480
|
msgid "The 'is' value is not in the 'is' array for '%{name}'"
|
8370
8481
|
msgstr ""
|
8371
8482
|
|
8372
|
-
#: ../lib/puppet/type.rb:
|
8483
|
+
#: ../lib/puppet/type.rb:1200
|
8373
8484
|
msgid "%{name} has no providers and has not overridden 'instances'"
|
8374
8485
|
msgstr ""
|
8375
8486
|
|
8376
|
-
#: ../lib/puppet/type.rb:
|
8487
|
+
#: ../lib/puppet/type.rb:1462
|
8377
8488
|
msgid "Cannot add aliases without a catalog"
|
8378
8489
|
msgstr ""
|
8379
8490
|
|
8380
|
-
#: ../lib/puppet/type.rb:
|
8491
|
+
#: ../lib/puppet/type.rb:1542
|
8381
8492
|
msgid "Could not find %{description} %{ref} for %{resource}"
|
8382
8493
|
msgstr ""
|
8383
8494
|
|
8384
|
-
#: ../lib/puppet/type.rb:
|
8495
|
+
#: ../lib/puppet/type.rb:1817
|
8385
8496
|
msgid "Found multiple default providers for %{name}: %{provider_list}; using %{selected_provider}"
|
8386
8497
|
msgstr ""
|
8387
8498
|
|
8388
|
-
#: ../lib/puppet/type.rb:
|
8499
|
+
#: ../lib/puppet/type.rb:1904
|
8389
8500
|
msgid "Could not find parent provider %{parent} of %{name}"
|
8390
8501
|
msgstr ""
|
8391
8502
|
|
8392
|
-
#: ../lib/puppet/type.rb:
|
8503
|
+
#: ../lib/puppet/type.rb:1978
|
8393
8504
|
msgid "Invalid %{resource} provider '%{provider_class}'"
|
8394
8505
|
msgstr ""
|
8395
8506
|
|
8396
|
-
#: ../lib/puppet/type.rb:
|
8507
|
+
#: ../lib/puppet/type.rb:2063
|
8397
8508
|
msgid "Could not find %{name} provider of %{provider}"
|
8398
8509
|
msgstr ""
|
8399
8510
|
|
8400
|
-
#: ../lib/puppet/type.rb:
|
8511
|
+
#: ../lib/puppet/type.rb:2181
|
8401
8512
|
msgid "You cannot add relationships without a catalog"
|
8402
8513
|
msgstr ""
|
8403
8514
|
|
8404
|
-
#: ../lib/puppet/type.rb:
|
8515
|
+
#: ../lib/puppet/type.rb:2484
|
8405
8516
|
msgid "Unable to mark '%{name}' as sensitive: %{name} is a parameter and not a property, and cannot be automatically redacted."
|
8406
8517
|
msgstr ""
|
8407
8518
|
|
8408
|
-
#: ../lib/puppet/type.rb:
|
8519
|
+
#: ../lib/puppet/type.rb:2487
|
8409
8520
|
msgid "Unable to mark '%{name}' as sensitive: the property itself was not assigned a value."
|
8410
8521
|
msgstr ""
|
8411
8522
|
|
8412
|
-
#: ../lib/puppet/type.rb:
|
8523
|
+
#: ../lib/puppet/type.rb:2489
|
8413
8524
|
msgid "Unable to mark '%{name}' as sensitive: the property itself is not defined on %{type}."
|
8414
8525
|
msgstr ""
|
8415
8526
|
|
8416
|
-
#: ../lib/puppet/type.rb:
|
8527
|
+
#: ../lib/puppet/type.rb:2547
|
8417
8528
|
msgid "Could not set %{attribute} on %{class_name}: %{detail}"
|
8418
8529
|
msgstr ""
|
8419
8530
|
|
@@ -8490,86 +8601,86 @@ msgstr ""
|
|
8490
8601
|
msgid "File paths must be fully qualified, not '%{path}'"
|
8491
8602
|
msgstr ""
|
8492
8603
|
|
8493
|
-
#: ../lib/puppet/type/file.rb:
|
8604
|
+
#: ../lib/puppet/type/file.rb:142
|
8494
8605
|
msgid "Invalid backup type %{value}"
|
8495
8606
|
msgstr ""
|
8496
8607
|
|
8497
|
-
#: ../lib/puppet/type/file.rb:
|
8608
|
+
#: ../lib/puppet/type/file.rb:186 ../lib/puppet/type/tidy.rb:48
|
8498
8609
|
msgid "Invalid recurse value %{value}"
|
8499
8610
|
msgstr ""
|
8500
8611
|
|
8501
|
-
#: ../lib/puppet/type/file.rb:
|
8612
|
+
#: ../lib/puppet/type/file.rb:218
|
8502
8613
|
msgid "Invalid recurselimit value %{value}"
|
8503
8614
|
msgstr ""
|
8504
8615
|
|
8505
|
-
#: ../lib/puppet/type/file.rb:
|
8616
|
+
#: ../lib/puppet/type/file.rb:414
|
8506
8617
|
msgid "You cannot specify more than one of %{creators}"
|
8507
8618
|
msgstr ""
|
8508
8619
|
|
8509
|
-
#: ../lib/puppet/type/file.rb:
|
8620
|
+
#: ../lib/puppet/type/file.rb:416
|
8510
8621
|
msgid "You cannot specify a remote recursion without a source"
|
8511
8622
|
msgstr ""
|
8512
8623
|
|
8513
|
-
#: ../lib/puppet/type/file.rb:
|
8624
|
+
#: ../lib/puppet/type/file.rb:418
|
8514
8625
|
msgid "You cannot specify source when using checksum 'none'"
|
8515
8626
|
msgstr ""
|
8516
8627
|
|
8517
|
-
#: ../lib/puppet/type/file.rb:
|
8628
|
+
#: ../lib/puppet/type/file.rb:421
|
8518
8629
|
msgid "You cannot specify content when using checksum '%{checksum_type}'"
|
8519
8630
|
msgstr ""
|
8520
8631
|
|
8521
|
-
#: ../lib/puppet/type/file.rb:
|
8632
|
+
#: ../lib/puppet/type/file.rb:424
|
8522
8633
|
msgid "Possible error: recurselimit is set but not recurse, no recursion will happen"
|
8523
8634
|
msgstr ""
|
8524
8635
|
|
8525
|
-
#: ../lib/puppet/type/file.rb:
|
8636
|
+
#: ../lib/puppet/type/file.rb:432
|
8526
8637
|
msgid "Checksum value '%{value}' is not a valid checksum type %{checksum}"
|
8527
8638
|
msgstr ""
|
8528
8639
|
|
8529
|
-
#: ../lib/puppet/type/file.rb:
|
8640
|
+
#: ../lib/puppet/type/file.rb:435
|
8530
8641
|
msgid "Checksum value is ignored unless content or source are specified"
|
8531
8642
|
msgstr ""
|
8532
8643
|
|
8533
|
-
#: ../lib/puppet/type/file.rb:
|
8644
|
+
#: ../lib/puppet/type/file.rb:473
|
8534
8645
|
msgid "Can not find filebucket for backups without a catalog"
|
8535
8646
|
msgstr ""
|
8536
8647
|
|
8537
|
-
#: ../lib/puppet/type/file.rb:
|
8648
|
+
#: ../lib/puppet/type/file.rb:478
|
8538
8649
|
msgid "Could not find filebucket %{backup} specified in backup"
|
8539
8650
|
msgstr ""
|
8540
8651
|
|
8541
|
-
#: ../lib/puppet/type/file.rb:
|
8652
|
+
#: ../lib/puppet/type/file.rb:776
|
8542
8653
|
msgid "Could not back up file of type %{current_type}"
|
8543
8654
|
msgstr ""
|
8544
8655
|
|
8545
|
-
#: ../lib/puppet/type/file.rb:
|
8656
|
+
#: ../lib/puppet/type/file.rb:791
|
8546
8657
|
msgid "Could not remove files of type %{current_type}"
|
8547
8658
|
msgstr ""
|
8548
8659
|
|
8549
8660
|
#. TRANSLATORS "source_permissions => ignore" should not be translated
|
8550
|
-
#: ../lib/puppet/type/file.rb:
|
8661
|
+
#: ../lib/puppet/type/file.rb:802
|
8551
8662
|
msgid "Copying owner/mode/group from the source file on Windows is not supported; use source_permissions => ignore."
|
8552
8663
|
msgstr ""
|
8553
8664
|
|
8554
8665
|
#. TRANSLATORS "stat" is a program name and should not be translated
|
8555
|
-
#: ../lib/puppet/type/file.rb:
|
8666
|
+
#: ../lib/puppet/type/file.rb:883 ../lib/puppet/type/tidy.rb:352
|
8556
8667
|
msgid "Could not stat; permission denied"
|
8557
8668
|
msgstr ""
|
8558
8669
|
|
8559
|
-
#: ../lib/puppet/type/file.rb:
|
8670
|
+
#: ../lib/puppet/type/file.rb:886
|
8560
8671
|
msgid "Could not stat; invalid pathname"
|
8561
8672
|
msgstr ""
|
8562
8673
|
|
8563
|
-
#: ../lib/puppet/type/file.rb:
|
8674
|
+
#: ../lib/puppet/type/file.rb:1014
|
8564
8675
|
msgid "Not removing directory; use 'force' to override"
|
8565
8676
|
msgstr ""
|
8566
8677
|
|
8567
8678
|
#. TRANSLATORS refers to a file which could not be backed up
|
8568
|
-
#: ../lib/puppet/type/file.rb:
|
8679
|
+
#: ../lib/puppet/type/file.rb:1039
|
8569
8680
|
msgid "Could not back up; will not remove"
|
8570
8681
|
msgstr ""
|
8571
8682
|
|
8572
|
-
#: ../lib/puppet/type/file.rb:
|
8683
|
+
#: ../lib/puppet/type/file.rb:1053
|
8573
8684
|
msgid "File written to disk did not match checksum; discarding changes (%{content_checksum} vs %{newsum})"
|
8574
8685
|
msgstr ""
|
8575
8686
|
|
@@ -8610,12 +8721,8 @@ msgstr ""
|
|
8610
8721
|
msgid "Not managing symlink mode"
|
8611
8722
|
msgstr ""
|
8612
8723
|
|
8613
|
-
#: ../lib/puppet/type/file/source.rb:135
|
8614
|
-
msgid "No source for content was stored with the metadata"
|
8615
|
-
msgstr ""
|
8616
|
-
|
8617
8724
|
#. TRANSLATORS "source_permissions" is a parameter name and should not be translated
|
8618
|
-
#: ../lib/puppet/type/file/source.rb:
|
8725
|
+
#: ../lib/puppet/type/file/source.rb:353
|
8619
8726
|
msgid "The `source_permissions` parameter is deprecated. Explicitly set `owner`, `group`, and `mode`."
|
8620
8727
|
msgstr ""
|
8621
8728
|
|
@@ -8639,18 +8746,38 @@ msgstr ""
|
|
8639
8746
|
msgid "Invalid GID %{gid}"
|
8640
8747
|
msgstr ""
|
8641
8748
|
|
8642
|
-
#: ../lib/puppet/type/package.rb:
|
8749
|
+
#: ../lib/puppet/type/package.rb:128 ../lib/puppet/type/package.rb:142
|
8643
8750
|
msgid "Could not update: %{detail}"
|
8644
8751
|
msgstr ""
|
8645
8752
|
|
8646
|
-
#: ../lib/puppet/type/package.rb:
|
8753
|
+
#: ../lib/puppet/type/package.rb:177
|
8647
8754
|
msgid "Could not get latest version: %{detail}"
|
8648
8755
|
msgstr ""
|
8649
8756
|
|
8650
|
-
#: ../lib/puppet/type/package.rb:
|
8757
|
+
#: ../lib/puppet/type/package.rb:277
|
8651
8758
|
msgid "Name must be a String not %{klass}"
|
8652
8759
|
msgstr ""
|
8653
8760
|
|
8761
|
+
#: ../lib/puppet/type/package.rb:423
|
8762
|
+
msgid "Cannot have both `ensure => disabled` and `flavor`"
|
8763
|
+
msgstr ""
|
8764
|
+
|
8765
|
+
#: ../lib/puppet/type/package.rb:522
|
8766
|
+
msgid "Cannot have both `enable_only => true` and `flavor`"
|
8767
|
+
msgstr ""
|
8768
|
+
|
8769
|
+
#: ../lib/puppet/type/package.rb:525
|
8770
|
+
msgid "Cannot have both `ensure => disabled` and `enable_only => true`"
|
8771
|
+
msgstr ""
|
8772
|
+
|
8773
|
+
#: ../lib/puppet/type/package.rb:687
|
8774
|
+
msgid "Invalid hold value %{value}. %{doc}"
|
8775
|
+
msgstr ""
|
8776
|
+
|
8777
|
+
#: ../lib/puppet/type/package.rb:717
|
8778
|
+
msgid "You cannot use \"mark\" property while \"ensure\" is one of [\"absent\", \"purged\", \"held\"]"
|
8779
|
+
msgstr ""
|
8780
|
+
|
8654
8781
|
#: ../lib/puppet/type/resources.rb:15
|
8655
8782
|
msgid "Could not find resource type '%{name}'"
|
8656
8783
|
msgstr ""
|
@@ -8703,11 +8830,11 @@ msgstr ""
|
|
8703
8830
|
msgid "%{value} is not a valid day of the week"
|
8704
8831
|
msgstr ""
|
8705
8832
|
|
8706
|
-
#: ../lib/puppet/type/service.rb:
|
8833
|
+
#: ../lib/puppet/type/service.rb:90
|
8707
8834
|
msgid "Setting enable to %{value} is only supported on Microsoft Windows."
|
8708
8835
|
msgstr ""
|
8709
8836
|
|
8710
|
-
#: ../lib/puppet/type/service.rb:
|
8837
|
+
#: ../lib/puppet/type/service.rb:247
|
8711
8838
|
msgid "\"%{value}\" is not a positive integer: the timeout parameter must be specified as a positive integer"
|
8712
8839
|
msgstr ""
|
8713
8840
|
|
@@ -8780,55 +8907,47 @@ msgstr ""
|
|
8780
8907
|
msgid "Expiry dates must be YYYY-MM-DD or the string \"absent\""
|
8781
8908
|
msgstr ""
|
8782
8909
|
|
8783
|
-
#: ../lib/puppet/type/user.rb:
|
8910
|
+
#: ../lib/puppet/type/user.rb:506
|
8784
8911
|
msgid "Role names must be provided, not numbers"
|
8785
8912
|
msgstr ""
|
8786
8913
|
|
8787
|
-
#: ../lib/puppet/type/user.rb:
|
8914
|
+
#: ../lib/puppet/type/user.rb:508
|
8788
8915
|
msgid "Role names must be provided as an array, not a comma-separated list"
|
8789
8916
|
msgstr ""
|
8790
8917
|
|
8791
|
-
#: ../lib/puppet/type/user.rb:
|
8918
|
+
#: ../lib/puppet/type/user.rb:545
|
8792
8919
|
msgid "Auth names must be provided, not numbers"
|
8793
8920
|
msgstr ""
|
8794
8921
|
|
8795
|
-
#: ../lib/puppet/type/user.rb:
|
8922
|
+
#: ../lib/puppet/type/user.rb:547
|
8796
8923
|
msgid "Auth names must be provided as an array, not a comma-separated list"
|
8797
8924
|
msgstr ""
|
8798
8925
|
|
8799
|
-
#: ../lib/puppet/type/user.rb:
|
8926
|
+
#: ../lib/puppet/type/user.rb:571
|
8800
8927
|
msgid "Profile names must be provided, not numbers"
|
8801
8928
|
msgstr ""
|
8802
8929
|
|
8803
|
-
#: ../lib/puppet/type/user.rb:
|
8930
|
+
#: ../lib/puppet/type/user.rb:573
|
8804
8931
|
msgid "Profile names must be provided as an array, not a comma-separated list"
|
8805
8932
|
msgstr ""
|
8806
8933
|
|
8807
|
-
#: ../lib/puppet/type/user.rb:
|
8934
|
+
#: ../lib/puppet/type/user.rb:684
|
8808
8935
|
msgid "Ssh_authorized_key type is not available. Cannot purge SSH keys."
|
8809
8936
|
msgstr ""
|
8810
8937
|
|
8811
|
-
#: ../lib/puppet/type/user.rb:
|
8938
|
+
#: ../lib/puppet/type/user.rb:722
|
8812
8939
|
msgid "Each entry for purge_ssh_keys must be a string, not a %{klass}"
|
8813
8940
|
msgstr ""
|
8814
8941
|
|
8815
|
-
#: ../lib/puppet/type/user.rb:
|
8942
|
+
#: ../lib/puppet/type/user.rb:725
|
8816
8943
|
msgid "Paths to keyfiles must be absolute, not %{entry}"
|
8817
8944
|
msgstr ""
|
8818
8945
|
|
8819
|
-
#: ../lib/puppet/type/user.rb:
|
8946
|
+
#: ../lib/puppet/type/user.rb:729
|
8820
8947
|
msgid "purge_ssh_keys must be true, false, or an array of file names, not %{value}"
|
8821
8948
|
msgstr ""
|
8822
8949
|
|
8823
|
-
#: ../lib/puppet/type/user.rb:
|
8824
|
-
msgid "purge_ssh_keys can only be true for users with a defined home directory"
|
8825
|
-
msgstr ""
|
8826
|
-
|
8827
|
-
#: ../lib/puppet/type/user.rb:766
|
8828
|
-
msgid "purge_ssh_keys value '%{value}' meta character ~ or %{home_placeholder} only allowed for users with a defined home directory"
|
8829
|
-
msgstr ""
|
8830
|
-
|
8831
|
-
#: ../lib/puppet/type/user.rb:781
|
8950
|
+
#: ../lib/puppet/type/user.rb:757
|
8832
8951
|
msgid "Class name must be provided."
|
8833
8952
|
msgstr ""
|
8834
8953
|
|
@@ -8891,11 +9010,11 @@ msgstr ""
|
|
8891
9010
|
msgid "path may not be nil"
|
8892
9011
|
msgstr ""
|
8893
9012
|
|
8894
|
-
#: ../lib/puppet/util.rb:
|
9013
|
+
#: ../lib/puppet/util.rb:596
|
8895
9014
|
msgid "replace_file requires a block"
|
8896
9015
|
msgstr ""
|
8897
9016
|
|
8898
|
-
#: ../lib/puppet/util.rb:
|
9017
|
+
#: ../lib/puppet/util.rb:600
|
8899
9018
|
msgid "replace_file default_mode: %{default_mode} is invalid"
|
8900
9019
|
msgstr ""
|
8901
9020
|
|
@@ -8927,11 +9046,11 @@ msgstr ""
|
|
8927
9046
|
msgid "Failed to abandon a child process contract"
|
8928
9047
|
msgstr ""
|
8929
9048
|
|
8930
|
-
#: ../lib/puppet/util/autoload.rb:
|
9049
|
+
#: ../lib/puppet/util/autoload.rb:75
|
8931
9050
|
msgid "Could not autoload %{name}: %{detail}"
|
8932
9051
|
msgstr ""
|
8933
9052
|
|
8934
|
-
#: ../lib/puppet/util/autoload.rb:
|
9053
|
+
#: ../lib/puppet/util/autoload.rb:182
|
8935
9054
|
msgid "Autoload paths cannot be fully qualified"
|
8936
9055
|
msgstr ""
|
8937
9056
|
|
@@ -9355,7 +9474,7 @@ msgstr ""
|
|
9355
9474
|
msgid "Section %{name} is already defined, cannot redefine"
|
9356
9475
|
msgstr ""
|
9357
9476
|
|
9358
|
-
#: ../lib/puppet/util/instance_loader.rb:
|
9477
|
+
#: ../lib/puppet/util/instance_loader.rb:56
|
9359
9478
|
msgid "Loaded %{type} file for %{name} but %{type} was not defined"
|
9360
9479
|
msgstr ""
|
9361
9480
|
|
@@ -9462,24 +9581,20 @@ msgstr ""
|
|
9462
9581
|
msgid "Creating log directory %{dir}"
|
9463
9582
|
msgstr ""
|
9464
9583
|
|
9465
|
-
#: ../lib/puppet/util/
|
9466
|
-
msgid "Unable to set ownership to %{user}:%{group} for log file: %{path}"
|
9467
|
-
msgstr ""
|
9468
|
-
|
9469
|
-
#: ../lib/puppet/util/logging.rb:83 ../lib/puppet/util/logging.rb:106
|
9584
|
+
#: ../lib/puppet/util/logging.rb:81 ../lib/puppet/util/logging.rb:105
|
9470
9585
|
msgid "Wrapped exception:"
|
9471
9586
|
msgstr ""
|
9472
9587
|
|
9473
9588
|
#. TRANSLATORS the literals ":file", ":line", and ":key" should not be translated
|
9474
|
-
#: ../lib/puppet/util/logging.rb:
|
9589
|
+
#: ../lib/puppet/util/logging.rb:162
|
9475
9590
|
msgid "Need either :file and :line, or :key"
|
9476
9591
|
msgstr ""
|
9477
9592
|
|
9478
|
-
#: ../lib/puppet/util/logging.rb:
|
9593
|
+
#: ../lib/puppet/util/logging.rb:192
|
9479
9594
|
msgid "(file & line not available)"
|
9480
9595
|
msgstr ""
|
9481
9596
|
|
9482
|
-
#: ../lib/puppet/util/logging.rb:
|
9597
|
+
#: ../lib/puppet/util/logging.rb:294
|
9483
9598
|
msgid "(location: %{location})"
|
9484
9599
|
msgstr ""
|
9485
9600
|
|
@@ -9503,6 +9618,10 @@ msgstr ""
|
|
9503
9618
|
msgid "%{value} is an invalid url"
|
9504
9619
|
msgstr ""
|
9505
9620
|
|
9621
|
+
#: ../lib/puppet/util/package/version/rpm.rb:40
|
9622
|
+
msgid "Cannot compare, as %{other} is not a Rpm Version"
|
9623
|
+
msgstr ""
|
9624
|
+
|
9506
9625
|
#: ../lib/puppet/util/plist.rb:48
|
9507
9626
|
msgid "Cannot read file %{file_path}; Puppet is skipping it."
|
9508
9627
|
msgstr ""
|
@@ -9511,7 +9630,7 @@ msgstr ""
|
|
9511
9630
|
msgid "Details: %{detail}"
|
9512
9631
|
msgstr ""
|
9513
9632
|
|
9514
|
-
#: ../lib/puppet/util/plist.rb:
|
9633
|
+
#: ../lib/puppet/util/plist.rb:151
|
9515
9634
|
msgid "Unable to write the file %{file_path}. %{error}"
|
9516
9635
|
msgstr ""
|
9517
9636
|
|
@@ -9619,23 +9738,23 @@ msgstr ""
|
|
9619
9738
|
msgid "Sleeping for %{time} seconds (splay is enabled)"
|
9620
9739
|
msgstr ""
|
9621
9740
|
|
9622
|
-
#: ../lib/puppet/util/storage.rb:
|
9741
|
+
#: ../lib/puppet/util/storage.rb:52
|
9623
9742
|
msgid "Checksumfile %{filename} is not a file, ignoring"
|
9624
9743
|
msgstr ""
|
9625
9744
|
|
9626
|
-
#: ../lib/puppet/util/storage.rb:
|
9745
|
+
#: ../lib/puppet/util/storage.rb:59
|
9627
9746
|
msgid "Checksumfile %{filename} is corrupt (%{detail}); replacing"
|
9628
9747
|
msgstr ""
|
9629
9748
|
|
9630
|
-
#: ../lib/puppet/util/storage.rb:
|
9749
|
+
#: ../lib/puppet/util/storage.rb:64
|
9631
9750
|
msgid "Could not rename corrupt %{filename}; remove manually"
|
9632
9751
|
msgstr ""
|
9633
9752
|
|
9634
|
-
#: ../lib/puppet/util/storage.rb:
|
9753
|
+
#: ../lib/puppet/util/storage.rb:70
|
9635
9754
|
msgid "State got corrupted"
|
9636
9755
|
msgstr ""
|
9637
9756
|
|
9638
|
-
#: ../lib/puppet/util/storage.rb:
|
9757
|
+
#: ../lib/puppet/util/storage.rb:82
|
9639
9758
|
msgid "Creating state file %{file}"
|
9640
9759
|
msgstr ""
|
9641
9760
|
|
@@ -9695,55 +9814,55 @@ msgstr ""
|
|
9695
9814
|
msgid "Invalid tag '%{name}'"
|
9696
9815
|
msgstr ""
|
9697
9816
|
|
9698
|
-
#: ../lib/puppet/util/windows/adsi.rb:
|
9817
|
+
#: ../lib/puppet/util/windows/adsi.rb:36
|
9699
9818
|
msgid "ADSI connection error: %{e}"
|
9700
9819
|
msgstr ""
|
9701
9820
|
|
9702
|
-
#: ../lib/puppet/util/windows/adsi.rb:
|
9821
|
+
#: ../lib/puppet/util/windows/adsi.rb:59
|
9703
9822
|
msgid "Failed to get computer name"
|
9704
9823
|
msgstr ""
|
9705
9824
|
|
9706
|
-
#: ../lib/puppet/util/windows/adsi.rb:
|
9825
|
+
#: ../lib/puppet/util/windows/adsi.rb:97
|
9707
9826
|
msgid "Must use a valid SID::Principal"
|
9708
9827
|
msgstr ""
|
9709
9828
|
|
9710
|
-
#: ../lib/puppet/util/windows/adsi.rb:
|
9829
|
+
#: ../lib/puppet/util/windows/adsi.rb:162
|
9711
9830
|
msgid "Value must be in DOMAIN\\%{object_class} style syntax"
|
9712
9831
|
msgstr ""
|
9713
9832
|
|
9714
|
-
#: ../lib/puppet/util/windows/adsi.rb:
|
9833
|
+
#: ../lib/puppet/util/windows/adsi.rb:188
|
9715
9834
|
msgid "Could not resolve name: %{name}"
|
9716
9835
|
msgstr ""
|
9717
9836
|
|
9718
|
-
#: ../lib/puppet/util/windows/adsi.rb:
|
9837
|
+
#: ../lib/puppet/util/windows/adsi.rb:230
|
9719
9838
|
msgid "Subclass must implement class-level method 'list_all'!"
|
9720
9839
|
msgstr ""
|
9721
9840
|
|
9722
|
-
#: ../lib/puppet/util/windows/adsi.rb:
|
9841
|
+
#: ../lib/puppet/util/windows/adsi.rb:283
|
9723
9842
|
msgid "Puppet is not able to create/delete domain %{object_class} objects with the %{object_class} resource."
|
9724
9843
|
msgstr ""
|
9725
9844
|
|
9726
|
-
#: ../lib/puppet/util/windows/adsi.rb:
|
9845
|
+
#: ../lib/puppet/util/windows/adsi.rb:287
|
9727
9846
|
msgid "%{object_class} update failed: %{error}"
|
9728
9847
|
msgstr ""
|
9729
9848
|
|
9730
|
-
#: ../lib/puppet/util/windows/adsi.rb:
|
9849
|
+
#: ../lib/puppet/util/windows/adsi.rb:313
|
9731
9850
|
msgid "Cannot create user if group '%{name}' exists."
|
9732
9851
|
msgstr ""
|
9733
9852
|
|
9734
|
-
#: ../lib/puppet/util/windows/adsi.rb:
|
9853
|
+
#: ../lib/puppet/util/windows/adsi.rb:453
|
9735
9854
|
msgid "Unrecognized ADS UserFlags: %{unrecognized_flags}"
|
9736
9855
|
msgstr ""
|
9737
9856
|
|
9738
|
-
#: ../lib/puppet/util/windows/adsi.rb:
|
9857
|
+
#: ../lib/puppet/util/windows/adsi.rb:497
|
9739
9858
|
msgid "Failed to get user name"
|
9740
9859
|
msgstr ""
|
9741
9860
|
|
9742
|
-
#: ../lib/puppet/util/windows/adsi.rb:
|
9861
|
+
#: ../lib/puppet/util/windows/adsi.rb:534
|
9743
9862
|
msgid "Cannot delete user profile for '%{sid}' prior to Vista SP1"
|
9744
9863
|
msgstr ""
|
9745
9864
|
|
9746
|
-
#: ../lib/puppet/util/windows/adsi.rb:
|
9865
|
+
#: ../lib/puppet/util/windows/adsi.rb:552
|
9747
9866
|
msgid "Cannot create group if user '%{name}' exists."
|
9748
9867
|
msgstr ""
|
9749
9868
|
|
@@ -9823,23 +9942,23 @@ msgstr ""
|
|
9823
9942
|
msgid "Failed to get child process exit code"
|
9824
9943
|
msgstr ""
|
9825
9944
|
|
9826
|
-
#: ../lib/puppet/util/windows/process.rb:
|
9945
|
+
#: ../lib/puppet/util/windows/process.rb:286
|
9827
9946
|
msgid "GetVersionEx failed"
|
9828
9947
|
msgstr ""
|
9829
9948
|
|
9830
|
-
#: ../lib/puppet/util/windows/process.rb:
|
9949
|
+
#: ../lib/puppet/util/windows/process.rb:315
|
9831
9950
|
msgid "Discarding environment variable %{string} which contains invalid bytes"
|
9832
9951
|
msgstr ""
|
9833
9952
|
|
9834
|
-
#: ../lib/puppet/util/windows/process.rb:
|
9953
|
+
#: ../lib/puppet/util/windows/process.rb:331
|
9835
9954
|
msgid "environment variable name must not be nil or empty"
|
9836
9955
|
msgstr ""
|
9837
9956
|
|
9838
|
-
#: ../lib/puppet/util/windows/process.rb:
|
9957
|
+
#: ../lib/puppet/util/windows/process.rb:336
|
9839
9958
|
msgid "Failed to remove environment variable: %{name}"
|
9840
9959
|
msgstr ""
|
9841
9960
|
|
9842
|
-
#: ../lib/puppet/util/windows/process.rb:
|
9961
|
+
#: ../lib/puppet/util/windows/process.rb:341
|
9843
9962
|
msgid "Failed to set environment variable: %{name}"
|
9844
9963
|
msgstr ""
|
9845
9964
|
|
@@ -9891,77 +10010,77 @@ msgstr ""
|
|
9891
10010
|
msgid "Failed to import root certificate: %{detail}"
|
9892
10011
|
msgstr ""
|
9893
10012
|
|
9894
|
-
#: ../lib/puppet/util/windows/security.rb:
|
10013
|
+
#: ../lib/puppet/util/windows/security.rb:174
|
9895
10014
|
msgid "Failed to get volume information"
|
9896
10015
|
msgstr ""
|
9897
10016
|
|
9898
10017
|
#. TRANSLATORS 'SYSTEM' is a Windows name and should not be translated
|
9899
|
-
#: ../lib/puppet/util/windows/security.rb:
|
10018
|
+
#: ../lib/puppet/util/windows/security.rb:340
|
9900
10019
|
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"
|
9901
10020
|
msgstr ""
|
9902
10021
|
|
9903
10022
|
#. TRANSLATORS 'SYSTEM' is a Windows name and should not be translated
|
9904
|
-
#: ../lib/puppet/util/windows/security.rb:
|
10023
|
+
#: ../lib/puppet/util/windows/security.rb:343
|
9905
10024
|
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"
|
9906
10025
|
msgstr ""
|
9907
10026
|
|
9908
10027
|
#. TRANSLATORS 'SYSTEM' is a Windows name and should not be translated
|
9909
|
-
#: ../lib/puppet/util/windows/security.rb:
|
10028
|
+
#: ../lib/puppet/util/windows/security.rb:346
|
9910
10029
|
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"
|
9911
10030
|
msgstr ""
|
9912
10031
|
|
9913
10032
|
#. TRANSLATORS 'SYSTEM' is a Windows name and should not be translated
|
9914
|
-
#: ../lib/puppet/util/windows/security.rb:
|
10033
|
+
#: ../lib/puppet/util/windows/security.rb:356
|
9915
10034
|
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"
|
9916
10035
|
msgstr ""
|
9917
10036
|
|
9918
10037
|
#. TRANSLATORS 'SYSTEM' is a Windows name and should not be translated
|
9919
|
-
#: ../lib/puppet/util/windows/security.rb:
|
10038
|
+
#: ../lib/puppet/util/windows/security.rb:359
|
9920
10039
|
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"
|
9921
10040
|
msgstr ""
|
9922
10041
|
|
9923
10042
|
#. TRANSLATORS 'SYSTEM' is a Windows name and should not be translated
|
9924
|
-
#: ../lib/puppet/util/windows/security.rb:
|
10043
|
+
#: ../lib/puppet/util/windows/security.rb:362
|
9925
10044
|
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"
|
9926
10045
|
msgstr ""
|
9927
10046
|
|
9928
|
-
#: ../lib/puppet/util/windows/security.rb:
|
10047
|
+
#: ../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:43
|
9929
10048
|
msgid "Invalid SID"
|
9930
10049
|
msgstr ""
|
9931
10050
|
|
9932
|
-
#: ../lib/puppet/util/windows/security.rb:
|
10051
|
+
#: ../lib/puppet/util/windows/security.rb:437 ../lib/puppet/util/windows/security.rb:454
|
9933
10052
|
msgid "Failed to add access control entry"
|
9934
10053
|
msgstr ""
|
9935
10054
|
|
9936
|
-
#: ../lib/puppet/util/windows/security.rb:
|
10055
|
+
#: ../lib/puppet/util/windows/security.rb:465 ../lib/puppet/util/windows/security.rb:647
|
9937
10056
|
msgid "Invalid DACL"
|
9938
10057
|
msgstr ""
|
9939
10058
|
|
9940
|
-
#: ../lib/puppet/util/windows/security.rb:
|
10059
|
+
#: ../lib/puppet/util/windows/security.rb:488
|
9941
10060
|
msgid "Unsupported access control entry type: 0x%{type}"
|
9942
10061
|
msgstr ""
|
9943
10062
|
|
9944
|
-
#: ../lib/puppet/util/windows/security.rb:
|
10063
|
+
#: ../lib/puppet/util/windows/security.rb:522
|
9945
10064
|
msgid "Failed to open '%{path}'"
|
9946
10065
|
msgstr ""
|
9947
10066
|
|
9948
|
-
#: ../lib/puppet/util/windows/security.rb:
|
10067
|
+
#: ../lib/puppet/util/windows/security.rb:569
|
9949
10068
|
msgid "Failed to adjust process privileges"
|
9950
10069
|
msgstr ""
|
9951
10070
|
|
9952
|
-
#: ../lib/puppet/util/windows/security.rb:
|
10071
|
+
#: ../lib/puppet/util/windows/security.rb:599
|
9953
10072
|
msgid "Failed to get security information"
|
9954
10073
|
msgstr ""
|
9955
10074
|
|
9956
|
-
#: ../lib/puppet/util/windows/security.rb:
|
10075
|
+
#: ../lib/puppet/util/windows/security.rb:610
|
9957
10076
|
msgid "Failed to get security descriptor control"
|
9958
10077
|
msgstr ""
|
9959
10078
|
|
9960
|
-
#: ../lib/puppet/util/windows/security.rb:
|
10079
|
+
#: ../lib/puppet/util/windows/security.rb:643
|
9961
10080
|
msgid "Failed to initialize ACL"
|
9962
10081
|
msgstr ""
|
9963
10082
|
|
9964
|
-
#: ../lib/puppet/util/windows/security.rb:
|
10083
|
+
#: ../lib/puppet/util/windows/security.rb:682
|
9965
10084
|
msgid "Failed to set security information"
|
9966
10085
|
msgstr ""
|
9967
10086
|
|
@@ -10125,72 +10244,72 @@ msgstr ""
|
|
10125
10244
|
msgid "Puppet::Util::Yaml.load_file is deprecated. Use safe_load_file instead."
|
10126
10245
|
msgstr ""
|
10127
10246
|
|
10128
|
-
#: ../lib/puppet/x509/cert_provider.rb:
|
10247
|
+
#: ../lib/puppet/x509/cert_provider.rb:39
|
10129
10248
|
msgid "Failed to save CA certificates to '%{capath}'"
|
10130
10249
|
msgstr ""
|
10131
10250
|
|
10132
|
-
#: ../lib/puppet/x509/cert_provider.rb:
|
10251
|
+
#: ../lib/puppet/x509/cert_provider.rb:52
|
10133
10252
|
msgid "The CA certificates are missing from '%{path}'"
|
10134
10253
|
msgstr ""
|
10135
10254
|
|
10136
|
-
#: ../lib/puppet/x509/cert_provider.rb:
|
10255
|
+
#: ../lib/puppet/x509/cert_provider.rb:56
|
10137
10256
|
msgid "Failed to load CA certificates from '%{capath}'"
|
10138
10257
|
msgstr ""
|
10139
10258
|
|
10140
10259
|
#. TRANSLATORS 'PEM' is an acronym and shouldn't be translated
|
10141
|
-
#: ../lib/puppet/x509/cert_provider.rb:
|
10260
|
+
#: ../lib/puppet/x509/cert_provider.rb:67
|
10142
10261
|
msgid "Failed to parse CA certificates as PEM"
|
10143
10262
|
msgstr ""
|
10144
10263
|
|
10145
|
-
#: ../lib/puppet/x509/cert_provider.rb:
|
10264
|
+
#: ../lib/puppet/x509/cert_provider.rb:82
|
10146
10265
|
msgid "Failed to save CRLs to '%{crlpath}'"
|
10147
10266
|
msgstr ""
|
10148
10267
|
|
10149
|
-
#: ../lib/puppet/x509/cert_provider.rb:
|
10268
|
+
#: ../lib/puppet/x509/cert_provider.rb:95
|
10150
10269
|
msgid "The CRL is missing from '%{path}'"
|
10151
10270
|
msgstr ""
|
10152
10271
|
|
10153
|
-
#: ../lib/puppet/x509/cert_provider.rb:
|
10272
|
+
#: ../lib/puppet/x509/cert_provider.rb:99
|
10154
10273
|
msgid "Failed to load CRLs from '%{crlpath}'"
|
10155
10274
|
msgstr ""
|
10156
10275
|
|
10157
10276
|
#. TRANSLATORS 'PEM' is an acronym and shouldn't be translated
|
10158
|
-
#: ../lib/puppet/x509/cert_provider.rb:
|
10277
|
+
#: ../lib/puppet/x509/cert_provider.rb:110
|
10159
10278
|
msgid "Failed to parse CRLs as PEM"
|
10160
10279
|
msgstr ""
|
10161
10280
|
|
10162
|
-
#: ../lib/puppet/x509/cert_provider.rb:
|
10281
|
+
#: ../lib/puppet/x509/cert_provider.rb:156
|
10163
10282
|
msgid "Failed to save private key for '%{name}'"
|
10164
10283
|
msgstr ""
|
10165
10284
|
|
10166
|
-
#: ../lib/puppet/x509/cert_provider.rb:
|
10285
|
+
#: ../lib/puppet/x509/cert_provider.rb:175
|
10167
10286
|
msgid "The private key is missing from '%{path}'"
|
10168
10287
|
msgstr ""
|
10169
10288
|
|
10170
|
-
#: ../lib/puppet/x509/cert_provider.rb:
|
10289
|
+
#: ../lib/puppet/x509/cert_provider.rb:179
|
10171
10290
|
msgid "Failed to load private key for '%{name}'"
|
10172
10291
|
msgstr ""
|
10173
10292
|
|
10174
|
-
#: ../lib/puppet/x509/cert_provider.rb:
|
10293
|
+
#: ../lib/puppet/x509/cert_provider.rb:235
|
10175
10294
|
msgid "Failed to save client certificate for '%{name}'"
|
10176
10295
|
msgstr ""
|
10177
10296
|
|
10178
|
-
#: ../lib/puppet/x509/cert_provider.rb:
|
10297
|
+
#: ../lib/puppet/x509/cert_provider.rb:250
|
10179
10298
|
msgid "The client certificate is missing from '%{path}'"
|
10180
10299
|
msgstr ""
|
10181
10300
|
|
10182
|
-
#: ../lib/puppet/x509/cert_provider.rb:
|
10301
|
+
#: ../lib/puppet/x509/cert_provider.rb:254
|
10183
10302
|
msgid "Failed to load client certificate for '%{name}'"
|
10184
10303
|
msgstr ""
|
10185
10304
|
|
10186
|
-
#: ../lib/puppet/x509/cert_provider.rb:
|
10305
|
+
#: ../lib/puppet/x509/cert_provider.rb:300
|
10187
10306
|
msgid "Failed to save certificate request for '%{name}'"
|
10188
10307
|
msgstr ""
|
10189
10308
|
|
10190
|
-
#: ../lib/puppet/x509/cert_provider.rb:
|
10309
|
+
#: ../lib/puppet/x509/cert_provider.rb:315
|
10191
10310
|
msgid "Failed to load certificate request for '%{name}'"
|
10192
10311
|
msgstr ""
|
10193
10312
|
|
10194
|
-
#: ../lib/puppet/x509/cert_provider.rb:
|
10313
|
+
#: ../lib/puppet/x509/cert_provider.rb:326
|
10195
10314
|
msgid "Failed to delete certificate request for '%{name}'"
|
10196
10315
|
msgstr ""
|