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