puppet 6.0.10-universal-darwin → 6.1.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/Gemfile +1 -0
- data/Gemfile.lock +31 -27
- data/Guardfile.example +76 -0
- data/LICENSE +189 -4
- data/MAINTAINERS +47 -0
- data/README.md +3 -3
- data/lib/hiera/scope.rb +0 -7
- data/lib/puppet.rb +6 -5
- data/lib/puppet/application.rb +3 -3
- data/lib/puppet/application/cert.rb +2 -2
- data/lib/puppet/application/device.rb +83 -109
- data/lib/puppet/application/filebucket.rb +1 -10
- data/lib/puppet/application/ssl.rb +0 -2
- data/lib/puppet/configurer.rb +9 -10
- data/lib/puppet/confine/false.rb +1 -7
- data/lib/puppet/confine/true.rb +1 -7
- data/lib/puppet/defaults.rb +39 -51
- data/lib/puppet/forge.rb +1 -4
- data/lib/puppet/functions/abs.rb +1 -1
- data/lib/puppet/functions/call.rb +1 -2
- data/lib/puppet/functions/new.rb +1 -1
- data/lib/puppet/indirector/request.rb +15 -26
- data/lib/puppet/network/http/connection.rb +12 -32
- data/lib/puppet/network/http/factory.rb +0 -5
- data/lib/puppet/pal/catalog_compiler.rb +96 -0
- data/lib/puppet/pal/compiler.rb +221 -0
- data/lib/puppet/pal/function_signature.rb +52 -0
- data/lib/puppet/pal/json_catalog_encoder.rb +67 -0
- data/lib/puppet/pal/pal_api.rb +15 -0
- data/lib/puppet/pal/pal_impl.rb +523 -0
- data/lib/puppet/pal/plan_signature.rb +71 -0
- data/lib/puppet/pal/script_compiler.rb +71 -0
- data/lib/puppet/pal/task_signature.rb +58 -0
- data/lib/puppet/parser/functions/generate.rb +7 -6
- data/lib/puppet/plugins/configuration.rb +5 -1
- data/lib/puppet/pops/evaluator/evaluator_impl.rb +5 -1
- data/lib/puppet/pops/evaluator/external_syntax_support.rb +3 -3
- data/lib/puppet/pops/issues.rb +0 -4
- data/lib/puppet/pops/loader/ruby_legacy_function_instantiator.rb +4 -60
- data/lib/puppet/pops/model/factory.rb +4 -38
- data/lib/puppet/pops/model/pn_transformer.rb +0 -5
- data/lib/puppet/pops/parser/egrammar.ra +2 -2
- data/lib/puppet/pops/parser/heredoc_support.rb +7 -17
- data/lib/puppet/pops/parser/lexer2.rb +1 -6
- data/lib/puppet/pops/parser/locator.rb +86 -106
- data/lib/puppet/pops/parser/parser_support.rb +2 -11
- data/lib/puppet/pops/types/string_converter.rb +7 -2
- data/lib/puppet/pops/types/type_mismatch_describer.rb +1 -1
- data/lib/puppet/pops/types/types.rb +3 -5
- data/lib/puppet/pops/validation/checker4_0.rb +13 -0
- data/lib/puppet/provider.rb +2 -1
- data/lib/puppet/provider/exec.rb +6 -1
- data/lib/puppet/provider/file/windows.rb +1 -49
- data/lib/puppet/provider/group/windows_adsi.rb +1 -4
- data/lib/puppet/provider/package.rb +0 -2
- data/lib/puppet/provider/package/dpkg.rb +2 -15
- data/lib/puppet/provider/package/gem.rb +42 -102
- data/lib/puppet/provider/package/pip.rb +111 -135
- data/lib/puppet/provider/package/pip3.rb +1 -1
- data/lib/puppet/provider/package/pkgng.rb +37 -21
- data/lib/puppet/provider/package/puppet_gem.rb +1 -1
- data/lib/puppet/provider/package/rpm.rb +16 -27
- data/lib/puppet/provider/package/windows.rb +1 -5
- data/lib/puppet/provider/package/yum.rb +1 -2
- data/lib/puppet/provider/service/systemd.rb +17 -0
- data/lib/puppet/provider/service/upstart.rb +5 -17
- data/lib/puppet/provider/service/windows.rb +8 -3
- data/lib/puppet/provider/user/directoryservice.rb +4 -16
- data/lib/puppet/provider/user/useradd.rb +13 -16
- data/lib/puppet/resource.rb +3 -1
- data/lib/puppet/rest/client.rb +83 -0
- data/lib/puppet/rest/route.rb +1 -1
- data/lib/puppet/settings.rb +5 -10
- data/lib/puppet/settings/server_list_setting.rb +0 -9
- data/lib/puppet/ssl/host.rb +11 -0
- data/lib/puppet/ssl/validator/default_validator.rb +0 -31
- data/lib/puppet/syntax_checkers/epp.rb +34 -0
- data/lib/puppet/syntax_checkers/pp.rb +34 -0
- data/lib/puppet/transaction.rb +7 -12
- data/lib/puppet/transaction/event_manager.rb +5 -1
- data/lib/puppet/transaction/resource_harness.rb +0 -1
- data/lib/puppet/type.rb +6 -0
- data/lib/puppet/type/exec.rb +5 -27
- data/lib/puppet/type/file/mode.rb +1 -6
- data/lib/puppet/type/file/source.rb +1 -0
- data/lib/puppet/type/filebucket.rb +8 -12
- data/lib/puppet/type/package.rb +11 -44
- data/lib/puppet/type/schedule.rb +0 -4
- data/lib/puppet/type/service.rb +12 -0
- data/lib/puppet/type/user.rb +1 -1
- data/lib/puppet/util/command_line.rb +1 -5
- data/lib/puppet/util/connection.rb +6 -15
- data/lib/puppet/util/http_proxy.rb +2 -3
- data/lib/puppet/util/log.rb +2 -7
- data/lib/puppet/util/pidlock.rb +1 -15
- data/lib/puppet/util/windows/process.rb +5 -73
- data/lib/puppet/util/windows/registry.rb +1 -7
- data/lib/puppet/util/windows/security.rb +8 -29
- data/lib/puppet/util/windows/service.rb +33 -27
- data/lib/puppet/util/windows/user.rb +4 -14
- data/lib/puppet/version.rb +1 -1
- data/lib/puppet_pal.rb +5 -1132
- data/locales/ja/puppet.po +297 -363
- data/locales/puppet.pot +445 -517
- data/man/man5/puppet.conf.5 +12 -20
- data/man/man8/puppet-agent.8 +1 -1
- data/man/man8/puppet-apply.8 +1 -1
- data/man/man8/puppet-catalog.8 +1 -1
- data/man/man8/puppet-config.8 +1 -1
- data/man/man8/puppet-describe.8 +1 -1
- data/man/man8/puppet-device.8 +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 +2 -6
- data/man/man8/puppet-generate.8 +1 -1
- data/man/man8/puppet-help.8 +1 -1
- data/man/man8/puppet-key.8 +1 -1
- data/man/man8/puppet-lookup.8 +1 -1
- data/man/man8/puppet-man.8 +1 -1
- data/man/man8/puppet-module.8 +1 -1
- data/man/man8/puppet-node.8 +1 -1
- data/man/man8/puppet-parser.8 +1 -1
- data/man/man8/puppet-plugin.8 +1 -1
- data/man/man8/puppet-report.8 +1 -1
- data/man/man8/puppet-resource.8 +1 -1
- data/man/man8/puppet-script.8 +1 -1
- data/man/man8/puppet-ssl.8 +1 -1
- data/man/man8/puppet-status.8 +1 -1
- data/man/man8/puppet.8 +2 -2
- data/spec/fixtures/unit/provider/package/pkgng/pkg.query +7 -1
- data/spec/fixtures/unit/provider/package/pkgng/pkg.query.zsh +1 -0
- data/spec/integration/agent/logging_spec.rb +7 -5
- data/spec/integration/application/apply_spec.rb +16 -18
- data/spec/integration/application/doc_spec.rb +2 -1
- data/spec/integration/application/lookup_spec.rb +5 -5
- data/spec/integration/configurer_spec.rb +6 -5
- data/spec/integration/defaults_spec.rb +6 -5
- data/spec/integration/directory_environments_spec.rb +1 -1
- data/spec/integration/faces/config_spec.rb +4 -3
- data/spec/integration/faces/documentation_spec.rb +1 -0
- data/spec/integration/faces/plugin_spec.rb +1 -1
- data/spec/integration/file_bucket/file_spec.rb +4 -2
- data/spec/integration/file_serving/content_spec.rb +1 -0
- data/spec/integration/file_serving/fileset_spec.rb +1 -0
- data/spec/integration/file_serving/metadata_spec.rb +1 -0
- data/spec/integration/file_serving/terminus_helper_spec.rb +1 -0
- data/spec/integration/indirector/catalog/compiler_spec.rb +11 -10
- data/spec/integration/indirector/direct_file_server_spec.rb +1 -1
- data/spec/integration/indirector/facts/facter_spec.rb +5 -4
- data/spec/integration/indirector/file_content/file_server_spec.rb +8 -7
- data/spec/integration/indirector/file_metadata/file_server_spec.rb +8 -7
- data/spec/integration/network/authconfig_spec.rb +24 -23
- data/spec/integration/network/formats_spec.rb +1 -0
- data/spec/integration/node/environment_spec.rb +1 -0
- data/spec/integration/node/facts_spec.rb +10 -9
- data/spec/integration/node_spec.rb +7 -6
- data/spec/integration/parser/catalog_spec.rb +5 -1
- data/spec/integration/parser/collection_spec.rb +2 -1
- data/spec/integration/parser/compiler_spec.rb +6 -6
- data/spec/integration/parser/scope_spec.rb +1 -1
- data/spec/integration/parser/undef_param_spec.rb +1 -1
- data/spec/integration/provider/service/init_spec.rb +5 -4
- data/spec/integration/provider/service/systemd_spec.rb +2 -0
- data/spec/integration/provider/service/windows_spec.rb +2 -1
- data/spec/integration/reference/providers_spec.rb +2 -1
- data/spec/integration/reports_spec.rb +2 -1
- data/spec/integration/resource/catalog_spec.rb +17 -14
- data/spec/integration/resource/type_collection_spec.rb +5 -4
- data/spec/integration/ssl/certificate_request_spec.rb +1 -0
- data/spec/integration/ssl/host_spec.rb +2 -1
- data/spec/integration/ssl/key_spec.rb +1 -0
- data/spec/integration/test/test_helper_spec.rb +1 -0
- data/spec/integration/transaction/report_spec.rb +11 -6
- data/spec/integration/transaction_spec.rb +19 -18
- data/spec/integration/type/exec_spec.rb +1 -0
- data/spec/integration/type/file_spec.rb +33 -13
- data/spec/integration/type/package_spec.rb +24 -20
- data/spec/integration/type/tidy_spec.rb +2 -1
- data/spec/integration/type_spec.rb +1 -0
- data/spec/integration/util/autoload_spec.rb +2 -1
- data/spec/integration/util/rdoc/parser_spec.rb +1 -0
- data/spec/integration/util/settings_spec.rb +1 -0
- data/spec/integration/util/windows/adsi_spec.rb +5 -3
- data/spec/integration/util/windows/principal_spec.rb +1 -0
- data/spec/integration/util/windows/process_spec.rb +6 -4
- data/spec/integration/util/windows/registry_spec.rb +51 -93
- data/spec/integration/util/windows/security_spec.rb +4 -2
- data/spec/integration/util/windows/user_spec.rb +20 -37
- data/spec/integration/util_spec.rb +7 -4
- data/spec/lib/puppet_spec/compiler.rb +1 -1
- data/spec/lib/puppet_spec/files.rb +1 -0
- data/spec/lib/puppet_spec/module_tool/shared_functions.rb +1 -1
- data/spec/lib/puppet_spec/scope.rb +2 -1
- data/spec/shared_behaviours/all_parsedfile_providers.rb +1 -1
- data/spec/shared_behaviours/file_server_terminus.rb +9 -8
- data/spec/shared_behaviours/file_serving.rb +8 -6
- data/spec/shared_behaviours/file_serving_model.rb +5 -3
- data/spec/shared_behaviours/hiera_indirections.rb +4 -3
- data/spec/shared_behaviours/iterative_functions.rb +1 -0
- data/spec/shared_behaviours/memory_terminus.rb +2 -2
- data/spec/shared_examples/rhel_package_provider.rb +70 -112
- data/spec/spec_helper.rb +2 -11
- data/spec/unit/agent/disabler_spec.rb +5 -4
- data/spec/unit/agent/locker_spec.rb +13 -12
- data/spec/unit/agent_spec.rb +85 -80
- data/spec/unit/application/agent_spec.rb +93 -88
- data/spec/unit/application/apply_spec.rb +83 -82
- data/spec/unit/application/config_spec.rb +1 -0
- data/spec/unit/application/describe_spec.rb +7 -6
- data/spec/unit/application/device_spec.rb +419 -395
- data/spec/unit/application/doc_spec.rb +46 -44
- data/spec/unit/application/face_base_spec.rb +62 -61
- data/spec/unit/application/facts_spec.rb +4 -3
- data/spec/unit/application/filebucket_spec.rb +74 -66
- data/spec/unit/application/indirection_base_spec.rb +6 -8
- data/spec/unit/application/lookup_spec.rb +26 -26
- data/spec/unit/application/resource_spec.rb +48 -42
- data/spec/unit/application/ssl_spec.rb +3 -8
- data/spec/unit/application_spec.rb +98 -86
- data/spec/unit/capability_spec.rb +6 -6
- data/spec/unit/certificate_factory_spec.rb +5 -3
- data/spec/unit/configurer/downloader_spec.rb +21 -20
- data/spec/unit/configurer/fact_handler_spec.rb +3 -2
- data/spec/unit/configurer/plugin_handler_spec.rb +8 -41
- data/spec/unit/configurer_spec.rb +198 -194
- data/spec/unit/confine/exists_spec.rb +15 -17
- data/spec/unit/confine/false_spec.rb +6 -32
- data/spec/unit/confine/feature_spec.rb +5 -7
- data/spec/unit/confine/true_spec.rb +6 -32
- data/spec/unit/confine/variable_spec.rb +15 -14
- data/spec/unit/confine_collection_spec.rb +29 -28
- data/spec/unit/confine_spec.rb +14 -13
- data/spec/unit/confiner_spec.rb +11 -10
- data/spec/unit/context/trusted_information_spec.rb +1 -1
- data/spec/unit/daemon_spec.rb +36 -35
- data/spec/unit/data_providers/function_data_provider_spec.rb +1 -0
- data/spec/unit/data_providers/hiera_data_provider_spec.rb +1 -0
- data/spec/unit/datatypes_spec.rb +4 -3
- data/spec/unit/defaults_spec.rb +27 -18
- data/spec/unit/environments_spec.rb +7 -7
- data/spec/unit/etc_spec.rb +32 -30
- data/spec/unit/external/pson_spec.rb +1 -0
- data/spec/unit/face/catalog_spec.rb +1 -0
- data/spec/unit/face/config_spec.rb +35 -31
- data/spec/unit/face/epp_face_spec.rb +4 -3
- data/spec/unit/face/facts_spec.rb +6 -5
- data/spec/unit/face/generate_spec.rb +5 -4
- data/spec/unit/face/help_spec.rb +8 -7
- data/spec/unit/face/key_spec.rb +1 -0
- data/spec/unit/face/man_spec.rb +2 -1
- data/spec/unit/face/module/install_spec.rb +5 -3
- data/spec/unit/face/module/list_spec.rb +12 -2
- data/spec/unit/face/module/search_spec.rb +9 -11
- data/spec/unit/face/module/uninstall_spec.rb +8 -4
- data/spec/unit/face/node_spec.rb +24 -23
- data/spec/unit/face/parser_spec.rb +18 -3
- data/spec/unit/face/plugin_spec.rb +9 -36
- data/spec/unit/face/status_spec.rb +1 -0
- data/spec/unit/file_bucket/dipper_spec.rb +20 -24
- data/spec/unit/file_bucket/file_spec.rb +2 -0
- data/spec/unit/file_serving/base_spec.rb +15 -14
- data/spec/unit/file_serving/configuration/parser_spec.rb +28 -27
- data/spec/unit/file_serving/configuration_spec.rb +66 -63
- data/spec/unit/file_serving/content_spec.rb +11 -10
- data/spec/unit/file_serving/fileset_spec.rb +58 -63
- data/spec/unit/file_serving/http_metadata_spec.rb +7 -8
- data/spec/unit/file_serving/metadata_spec.rb +36 -36
- data/spec/unit/file_serving/mount/file_spec.rb +32 -31
- data/spec/unit/file_serving/mount/locales_spec.rb +24 -23
- data/spec/unit/file_serving/mount/modules_spec.rb +15 -14
- data/spec/unit/file_serving/mount/pluginfacts_spec.rb +24 -23
- data/spec/unit/file_serving/mount/plugins_spec.rb +24 -23
- data/spec/unit/file_serving/mount/tasks_spec.rb +15 -14
- data/spec/unit/file_serving/mount_spec.rb +1 -0
- data/spec/unit/file_serving/terminus_helper_spec.rb +42 -37
- data/spec/unit/file_serving/terminus_selector_spec.rb +13 -12
- data/spec/unit/file_system/uniquefile_spec.rb +4 -4
- data/spec/unit/file_system_spec.rb +2 -2
- data/spec/unit/forge/errors_spec.rb +1 -1
- data/spec/unit/forge/forge_spec.rb +16 -17
- data/spec/unit/forge/module_release_spec.rb +18 -18
- data/spec/unit/forge/repository_spec.rb +30 -29
- data/spec/unit/forge_spec.rb +11 -15
- data/spec/unit/functions/binary_file_spec.rb +3 -3
- data/spec/unit/functions/contain_spec.rb +2 -0
- data/spec/unit/functions/defined_spec.rb +1 -0
- data/spec/unit/functions/epp_spec.rb +2 -2
- data/spec/unit/functions/find_file_spec.rb +7 -7
- data/spec/unit/functions/include_spec.rb +4 -0
- data/spec/unit/functions/lookup_fixture_spec.rb +1 -0
- data/spec/unit/functions/lookup_spec.rb +2 -1
- data/spec/unit/functions/module_directory_spec.rb +12 -12
- data/spec/unit/functions/new_spec.rb +0 -15
- data/spec/unit/functions/require_spec.rb +3 -0
- data/spec/unit/functions/shared.rb +8 -5
- data/spec/unit/functions/versioncmp_spec.rb +2 -1
- data/spec/unit/functions4_spec.rb +10 -9
- data/spec/unit/gettext/config_spec.rb +4 -4
- data/spec/unit/gettext/module_loading_spec.rb +7 -7
- data/spec/unit/graph/rb_tree_map_spec.rb +2 -0
- data/spec/unit/graph/relationship_graph_spec.rb +2 -1
- data/spec/unit/graph/simple_graph_spec.rb +10 -9
- data/spec/unit/hiera/scope_spec.rb +0 -7
- data/spec/unit/hiera_puppet_spec.rb +20 -20
- data/spec/unit/indirector/catalog/compiler_spec.rb +149 -147
- data/spec/unit/indirector/catalog/json_spec.rb +2 -1
- data/spec/unit/indirector/catalog/msgpack_spec.rb +1 -0
- data/spec/unit/indirector/catalog/rest_spec.rb +1 -0
- data/spec/unit/indirector/catalog/store_configs_spec.rb +1 -0
- data/spec/unit/indirector/catalog/yaml_spec.rb +1 -0
- data/spec/unit/indirector/certificate/file_spec.rb +1 -0
- data/spec/unit/indirector/certificate/rest_spec.rb +10 -8
- data/spec/unit/indirector/certificate_request/file_spec.rb +1 -0
- data/spec/unit/indirector/certificate_request/rest_spec.rb +1 -0
- data/spec/unit/indirector/direct_file_server_spec.rb +18 -17
- data/spec/unit/indirector/envelope_spec.rb +2 -1
- data/spec/unit/indirector/exec_spec.rb +5 -4
- data/spec/unit/indirector/face_spec.rb +9 -9
- data/spec/unit/indirector/facts/facter_spec.rb +43 -37
- data/spec/unit/indirector/facts/network_device_spec.rb +9 -8
- data/spec/unit/indirector/facts/rest_spec.rb +8 -7
- data/spec/unit/indirector/facts/store_configs_spec.rb +1 -0
- data/spec/unit/indirector/facts/yaml_spec.rb +1 -0
- data/spec/unit/indirector/file_bucket_file/file_spec.rb +4 -3
- data/spec/unit/indirector/file_bucket_file/rest_spec.rb +1 -0
- data/spec/unit/indirector/file_bucket_file/selector_spec.rb +5 -4
- data/spec/unit/indirector/file_content/file_server_spec.rb +1 -0
- data/spec/unit/indirector/file_content/file_spec.rb +1 -0
- data/spec/unit/indirector/file_content/rest_spec.rb +1 -0
- data/spec/unit/indirector/file_content/selector_spec.rb +1 -0
- data/spec/unit/indirector/file_metadata/file_server_spec.rb +1 -0
- data/spec/unit/indirector/file_metadata/file_spec.rb +13 -12
- data/spec/unit/indirector/file_metadata/rest_spec.rb +1 -0
- data/spec/unit/indirector/file_metadata/selector_spec.rb +1 -0
- data/spec/unit/indirector/file_server_spec.rb +87 -87
- data/spec/unit/indirector/indirection_spec.rb +226 -242
- data/spec/unit/indirector/json_spec.rb +9 -7
- data/spec/unit/indirector/key/file_spec.rb +22 -21
- data/spec/unit/indirector/memory_spec.rb +7 -6
- data/spec/unit/indirector/msgpack_spec.rb +9 -7
- data/spec/unit/indirector/node/exec_spec.rb +3 -2
- data/spec/unit/indirector/node/memory_spec.rb +4 -2
- data/spec/unit/indirector/node/msgpack_spec.rb +1 -0
- data/spec/unit/indirector/node/plain_spec.rb +4 -2
- data/spec/unit/indirector/node/rest_spec.rb +1 -0
- data/spec/unit/indirector/node/store_configs_spec.rb +1 -0
- data/spec/unit/indirector/node/yaml_spec.rb +1 -0
- data/spec/unit/indirector/none_spec.rb +5 -5
- data/spec/unit/indirector/plain_spec.rb +8 -7
- data/spec/unit/indirector/report/msgpack_spec.rb +1 -0
- data/spec/unit/indirector/report/processor_spec.rb +22 -21
- data/spec/unit/indirector/report/rest_spec.rb +12 -11
- data/spec/unit/indirector/report/yaml_spec.rb +1 -0
- data/spec/unit/indirector/request_spec.rb +12 -11
- data/spec/unit/indirector/resource/ral_spec.rb +54 -47
- data/spec/unit/indirector/resource/store_configs_spec.rb +1 -0
- data/spec/unit/indirector/rest_spec.rb +110 -113
- data/spec/unit/indirector/ssl_file_spec.rb +65 -64
- data/spec/unit/indirector/status/local_spec.rb +1 -0
- data/spec/unit/indirector/status/rest_spec.rb +1 -0
- data/spec/unit/indirector/store_configs_spec.rb +1 -0
- data/spec/unit/indirector/terminus_spec.rb +27 -27
- data/spec/unit/indirector/yaml_spec.rb +6 -5
- data/spec/unit/indirector_spec.rb +2 -1
- data/spec/unit/info_service_spec.rb +1 -1
- data/spec/unit/interface/action_builder_spec.rb +1 -0
- data/spec/unit/interface/action_manager_spec.rb +1 -0
- data/spec/unit/interface/action_spec.rb +3 -2
- data/spec/unit/interface/documentation_spec.rb +1 -0
- data/spec/unit/interface/face_collection_spec.rb +12 -19
- data/spec/unit/interface_spec.rb +3 -3
- data/spec/unit/man_spec.rb +4 -3
- data/spec/unit/module_spec.rb +51 -46
- data/spec/unit/module_tool/applications/installer_spec.rb +11 -10
- data/spec/unit/module_tool/applications/searcher_spec.rb +3 -3
- data/spec/unit/module_tool/applications/uninstaller_spec.rb +2 -1
- data/spec/unit/module_tool/applications/unpacker_spec.rb +13 -13
- data/spec/unit/module_tool/applications/upgrader_spec.rb +5 -5
- data/spec/unit/module_tool/install_directory_spec.rb +8 -8
- data/spec/unit/module_tool/installed_modules_spec.rb +3 -3
- data/spec/unit/module_tool/tar/gnu_spec.rb +6 -6
- data/spec/unit/module_tool/tar/mini_spec.rb +12 -12
- data/spec/unit/module_tool/tar_spec.rb +13 -12
- data/spec/unit/module_tool_spec.rb +12 -7
- data/spec/unit/network/auth_config_parser_spec.rb +13 -11
- data/spec/unit/network/authconfig_spec.rb +18 -17
- data/spec/unit/network/authorization_spec.rb +5 -4
- data/spec/unit/network/authstore_spec.rb +1 -0
- data/spec/unit/network/format_handler_spec.rb +1 -0
- data/spec/unit/network/format_spec.rb +10 -9
- data/spec/unit/network/format_support_spec.rb +29 -28
- data/spec/unit/network/formats_spec.rb +5 -4
- data/spec/unit/network/http/api/indirected_routes_spec.rb +29 -24
- data/spec/unit/network/http/api/master/v3/authorization_spec.rb +2 -2
- data/spec/unit/network/http/api/master/v3/environment_spec.rb +1 -1
- data/spec/unit/network/http/api/master/v3/environments_spec.rb +7 -6
- data/spec/unit/network/http/api_spec.rb +2 -0
- data/spec/unit/network/http/compression_spec.rb +22 -21
- data/spec/unit/network/http/connection_spec.rb +121 -30
- data/spec/unit/network/http/factory_spec.rb +6 -11
- data/spec/unit/network/http/handler_spec.rb +18 -9
- data/spec/unit/network/http/nocache_pool_spec.rb +7 -6
- data/spec/unit/network/http/pool_spec.rb +29 -28
- data/spec/unit/network/http/request_spec.rb +2 -0
- data/spec/unit/network/http/response_spec.rb +13 -11
- data/spec/unit/network/http/route_spec.rb +1 -0
- data/spec/unit/network/http/session_spec.rb +2 -1
- data/spec/unit/network/http/site_spec.rb +1 -0
- data/spec/unit/network/http_pool_spec.rb +9 -18
- data/spec/unit/network/http_spec.rb +1 -0
- data/spec/unit/network/resolver_spec.rb +26 -25
- data/spec/unit/network/rights_spec.rb +53 -52
- data/spec/unit/node/environment_spec.rb +15 -14
- data/spec/unit/node/facts_spec.rb +7 -5
- data/spec/unit/node_spec.rb +10 -4
- data/spec/unit/other/selinux_spec.rb +1 -0
- data/spec/unit/parameter/boolean_spec.rb +2 -1
- data/spec/unit/parameter/package_options_spec.rb +2 -1
- data/spec/unit/parameter/path_spec.rb +1 -0
- data/spec/unit/parameter/value_collection_spec.rb +1 -0
- data/spec/unit/parameter/value_spec.rb +1 -0
- data/spec/unit/parameter_spec.rb +9 -9
- data/spec/unit/parser/ast/block_expression_spec.rb +8 -6
- data/spec/unit/parser/ast/leaf_spec.rb +21 -20
- data/spec/unit/parser/compiler_spec.rb +96 -84
- data/spec/unit/parser/environment_compiler_spec.rb +8 -7
- data/spec/unit/parser/files_spec.rb +1 -0
- data/spec/unit/parser/functions/create_resources_spec.rb +1 -1
- data/spec/unit/parser/functions/digest_spec.rb +1 -0
- data/spec/unit/parser/functions/fail_spec.rb +2 -1
- data/spec/unit/parser/functions/file_spec.rb +14 -13
- data/spec/unit/parser/functions/fqdn_rand_spec.rb +6 -5
- data/spec/unit/parser/functions/generate_spec.rb +8 -7
- data/spec/unit/parser/functions/inline_template_spec.rb +1 -0
- data/spec/unit/parser/functions/regsubst_spec.rb +1 -0
- data/spec/unit/parser/functions/scanf_spec.rb +1 -0
- data/spec/unit/parser/functions/shellquote_spec.rb +1 -0
- data/spec/unit/parser/functions/split_spec.rb +1 -0
- data/spec/unit/parser/functions/sprintf_spec.rb +1 -0
- data/spec/unit/parser/functions/tag_spec.rb +2 -1
- data/spec/unit/parser/functions/tagged_spec.rb +3 -2
- data/spec/unit/parser/functions/template_spec.rb +13 -13
- data/spec/unit/parser/functions/versioncmp_spec.rb +2 -1
- data/spec/unit/parser/functions_spec.rb +7 -6
- data/spec/unit/parser/relationship_spec.rb +1 -0
- data/spec/unit/parser/resource_spec.rb +42 -42
- data/spec/unit/parser/scope_spec.rb +35 -39
- data/spec/unit/parser/templatewrapper_spec.rb +12 -11
- data/spec/unit/parser/type_loader_spec.rb +19 -17
- data/spec/unit/pops/adaptable_spec.rb +1 -0
- data/spec/unit/pops/benchmark_spec.rb +1 -0
- data/spec/unit/pops/evaluator/access_ops_spec.rb +1 -0
- data/spec/unit/pops/evaluator/arithmetic_ops_spec.rb +1 -0
- data/spec/unit/pops/evaluator/basic_expressions_spec.rb +1 -0
- data/spec/unit/pops/evaluator/collections_ops_spec.rb +1 -0
- data/spec/unit/pops/evaluator/comparison_ops_spec.rb +1 -0
- data/spec/unit/pops/evaluator/conditionals_spec.rb +1 -0
- data/spec/unit/pops/evaluator/evaluating_parser_spec.rb +47 -10
- data/spec/unit/pops/evaluator/logical_ops_spec.rb +1 -0
- data/spec/unit/pops/evaluator/runtime3_converter_spec.rb +1 -0
- data/spec/unit/pops/evaluator/string_interpolation_spec.rb +1 -0
- data/spec/unit/pops/evaluator/variables_spec.rb +1 -0
- data/spec/unit/pops/factory_spec.rb +4 -3
- data/spec/unit/pops/issues_spec.rb +20 -19
- data/spec/unit/pops/loaders/loader_spec.rb +4 -8
- data/spec/unit/pops/loaders/loaders_spec.rb +31 -101
- data/spec/unit/pops/lookup/context_spec.rb +1 -0
- data/spec/unit/pops/lookup/interpolation_spec.rb +3 -2
- data/spec/unit/pops/merge_strategy_spec.rb +1 -0
- data/spec/unit/pops/migration_spec.rb +5 -3
- data/spec/unit/pops/model/model_spec.rb +1 -0
- data/spec/unit/pops/model/pn_transformer_spec.rb +1 -4
- data/spec/unit/pops/parser/locator_spec.rb +6 -48
- data/spec/unit/pops/parser/parse_application_spec.rb +1 -0
- data/spec/unit/pops/parser/parse_basic_expressions_spec.rb +1 -0
- data/spec/unit/pops/parser/parse_calls_spec.rb +1 -0
- data/spec/unit/pops/parser/parse_capabilities_spec.rb +1 -0
- data/spec/unit/pops/parser/parse_conditionals_spec.rb +1 -0
- data/spec/unit/pops/parser/parse_containers_spec.rb +1 -0
- data/spec/unit/pops/parser/parse_heredoc_spec.rb +15 -111
- data/spec/unit/pops/parser/parse_plan_spec.rb +1 -0
- data/spec/unit/pops/parser/parse_resource_spec.rb +1 -0
- data/spec/unit/pops/parser/parse_site_spec.rb +1 -0
- data/spec/unit/pops/parser/pn_parser_spec.rb +1 -0
- data/spec/unit/pops/pn_spec.rb +1 -0
- data/spec/unit/pops/resource/resource_type_impl_spec.rb +1 -0
- data/spec/unit/pops/serialization/serialization_spec.rb +1 -1
- data/spec/unit/pops/serialization/to_from_hr_spec.rb +1 -1
- data/spec/unit/pops/types/recursion_guard_spec.rb +10 -10
- data/spec/unit/pops/types/ruby_generator_spec.rb +2 -2
- data/spec/unit/pops/types/string_converter_spec.rb +5 -1
- data/spec/unit/pops/types/type_asserter_spec.rb +2 -2
- data/spec/unit/pops/types/type_calculator_spec.rb +30 -30
- data/spec/unit/pops/types/type_mismatch_describer_spec.rb +0 -9
- data/spec/unit/pops/types/type_parser_spec.rb +13 -13
- data/spec/unit/pops/validator/validator_spec.rb +2 -1
- data/spec/unit/pops/visitor_spec.rb +1 -0
- data/spec/unit/property/boolean_spec.rb +1 -1
- data/spec/unit/property/ensure_spec.rb +1 -0
- data/spec/unit/property/keyvalue_spec.rb +34 -32
- data/spec/unit/property/list_spec.rb +27 -26
- data/spec/unit/property/ordered_list_spec.rb +14 -10
- data/spec/unit/property_spec.rb +43 -42
- data/spec/unit/provider/aix_object_spec.rb +45 -47
- data/spec/unit/provider/command_spec.rb +9 -9
- data/spec/unit/provider/exec/posix_spec.rb +31 -6
- data/spec/unit/provider/exec/shell_spec.rb +1 -0
- data/spec/unit/provider/exec/windows_spec.rb +4 -2
- data/spec/unit/provider/exec_spec.rb +1 -0
- data/spec/unit/provider/file/posix_spec.rb +24 -22
- data/spec/unit/provider/file/windows_spec.rb +17 -15
- data/spec/unit/provider/group/aix_spec.rb +2 -3
- data/spec/unit/provider/group/groupadd_spec.rb +26 -30
- data/spec/unit/provider/group/ldap_spec.rb +18 -18
- data/spec/unit/provider/group/pw_spec.rb +11 -11
- data/spec/unit/provider/group/windows_adsi_spec.rb +53 -59
- data/spec/unit/provider/ldap_spec.rb +62 -61
- data/spec/unit/provider/nameservice/directoryservice_spec.rb +36 -35
- data/spec/unit/provider/nameservice_spec.rb +40 -38
- data/spec/unit/provider/package/aix_spec.rb +15 -15
- data/spec/unit/provider/package/appdmg_spec.rb +13 -13
- data/spec/unit/provider/package/apt_spec.rb +27 -44
- data/spec/unit/provider/package/aptitude_spec.rb +7 -6
- data/spec/unit/provider/package/aptrpm_spec.rb +12 -7
- data/spec/unit/provider/package/base_spec.rb +4 -4
- data/spec/unit/provider/package/dnf_spec.rb +20 -18
- data/spec/unit/provider/package/dpkg_spec.rb +53 -70
- data/spec/unit/provider/package/freebsd_spec.rb +11 -11
- data/spec/unit/provider/package/gem_spec.rb +55 -132
- data/spec/unit/provider/package/hpux_spec.rb +8 -8
- data/spec/unit/provider/package/macports_spec.rb +42 -46
- data/spec/unit/provider/package/nim_spec.rb +39 -30
- data/spec/unit/provider/package/openbsd_spec.rb +39 -36
- data/spec/unit/provider/package/opkg_spec.rb +26 -23
- data/spec/unit/provider/package/pacman_spec.rb +118 -97
- data/spec/unit/provider/package/pip3_spec.rb +0 -17
- data/spec/unit/provider/package/pip_spec.rb +106 -95
- data/spec/unit/provider/package/pkg_spec.rb +109 -109
- data/spec/unit/provider/package/pkgdmg_spec.rb +63 -65
- data/spec/unit/provider/package/pkgin_spec.rb +8 -10
- data/spec/unit/provider/package/pkgng_spec.rb +31 -22
- data/spec/unit/provider/package/pkgutil_spec.rb +49 -45
- data/spec/unit/provider/package/portage_spec.rb +74 -70
- data/spec/unit/provider/package/puppet_gem_spec.rb +13 -37
- data/spec/unit/provider/package/rpm_spec.rb +76 -154
- data/spec/unit/provider/package/sun_spec.rb +18 -16
- data/spec/unit/provider/package/tdnf_spec.rb +2 -2
- data/spec/unit/provider/package/up2date_spec.rb +4 -2
- data/spec/unit/provider/package/urpmi_spec.rb +17 -15
- data/spec/unit/provider/package/windows/exe_package_spec.rb +15 -12
- data/spec/unit/provider/package/windows/msi_package_spec.rb +22 -19
- data/spec/unit/provider/package/windows/package_spec.rb +42 -37
- data/spec/unit/provider/package/windows_spec.rb +32 -47
- data/spec/unit/provider/package/yum_spec.rb +7 -7
- data/spec/unit/provider/package/zypper_spec.rb +87 -87
- data/spec/unit/provider/parsedfile_spec.rb +45 -44
- data/spec/unit/provider/service/base_spec.rb +5 -4
- data/spec/unit/provider/service/bsd_spec.rb +29 -27
- data/spec/unit/provider/service/daemontools_spec.rb +35 -35
- data/spec/unit/provider/service/debian_spec.rb +38 -38
- data/spec/unit/provider/service/freebsd_spec.rb +18 -18
- data/spec/unit/provider/service/gentoo_spec.rb +55 -50
- data/spec/unit/provider/service/init_spec.rb +52 -53
- data/spec/unit/provider/service/launchd_spec.rb +116 -138
- data/spec/unit/provider/service/openbsd_spec.rb +50 -50
- data/spec/unit/provider/service/openrc_spec.rb +45 -43
- data/spec/unit/provider/service/openwrt_spec.rb +31 -26
- data/spec/unit/provider/service/rcng_spec.rb +14 -14
- data/spec/unit/provider/service/redhat_spec.rb +43 -45
- data/spec/unit/provider/service/runit_spec.rb +27 -29
- data/spec/unit/provider/service/smf_spec.rb +66 -74
- data/spec/unit/provider/service/src_spec.rb +47 -46
- data/spec/unit/provider/service/systemd_spec.rb +136 -109
- data/spec/unit/provider/service/upstart_spec.rb +93 -77
- data/spec/unit/provider/service/windows_spec.rb +41 -33
- data/spec/unit/provider/user/aix_spec.rb +31 -31
- data/spec/unit/provider/user/directoryservice_spec.rb +114 -146
- data/spec/unit/provider/user/hpux_spec.rb +16 -16
- data/spec/unit/provider/user/ldap_spec.rb +57 -57
- data/spec/unit/provider/user/openbsd_spec.rb +12 -10
- data/spec/unit/provider/user/pw_spec.rb +35 -37
- data/spec/unit/provider/user/user_role_add_spec.rb +93 -93
- data/spec/unit/provider/user/useradd_spec.rb +92 -93
- data/spec/unit/provider/user/windows_adsi_spec.rb +60 -59
- data/spec/unit/provider_spec.rb +35 -35
- data/spec/unit/puppet_pal_2pec.rb +5 -4
- data/spec/unit/puppet_pal_spec.rb +1 -0
- data/spec/unit/puppet_spec.rb +7 -6
- data/spec/unit/relationship_spec.rb +1 -0
- data/spec/unit/reports/http_spec.rb +23 -21
- data/spec/unit/reports/store_spec.rb +4 -3
- data/spec/unit/reports_spec.rb +14 -12
- data/spec/unit/resource/capability_finder_spec.rb +17 -15
- data/spec/unit/resource/catalog_spec.rb +68 -72
- data/spec/unit/resource/status_spec.rb +8 -6
- data/spec/unit/resource/type_collection_spec.rb +18 -17
- data/spec/unit/resource/type_spec.rb +35 -34
- data/spec/unit/resource_spec.rb +63 -36
- data/spec/unit/rest/client_spec.rb +135 -0
- data/spec/unit/rest/route_spec.rb +6 -6
- data/spec/unit/scheduler/job_spec.rb +1 -0
- data/spec/unit/scheduler/scheduler_spec.rb +1 -0
- data/spec/unit/scheduler/splay_job_spec.rb +2 -1
- data/spec/unit/settings/array_setting_spec.rb +1 -1
- data/spec/unit/settings/autosign_setting_spec.rb +9 -9
- data/spec/unit/settings/certificate_revocation_setting_spec.rb +1 -1
- data/spec/unit/settings/config_file_spec.rb +1 -0
- data/spec/unit/settings/directory_setting_spec.rb +7 -2
- data/spec/unit/settings/duration_setting_spec.rb +2 -1
- data/spec/unit/settings/enum_setting_spec.rb +1 -1
- data/spec/unit/settings/environment_conf_spec.rb +6 -4
- data/spec/unit/settings/file_setting_spec.rb +46 -44
- data/spec/unit/settings/path_setting_spec.rb +2 -1
- data/spec/unit/settings/priority_setting_spec.rb +2 -1
- data/spec/unit/settings/string_setting_spec.rb +15 -14
- data/spec/unit/settings/terminus_setting_spec.rb +2 -1
- data/spec/unit/settings/value_translator_spec.rb +1 -0
- data/spec/unit/settings_spec.rb +224 -253
- data/spec/unit/ssl/base_spec.rb +15 -14
- data/spec/unit/ssl/certificate_request_spec.rb +58 -62
- data/spec/unit/ssl/certificate_spec.rb +25 -23
- data/spec/unit/ssl/digest_spec.rb +1 -0
- data/spec/unit/ssl/host_spec.rb +149 -166
- data/spec/unit/ssl/key_spec.rb +31 -30
- data/spec/unit/ssl/validator_spec.rb +39 -40
- data/spec/unit/task_spec.rb +45 -44
- data/spec/unit/transaction/additional_resource_generator_spec.rb +5 -3
- data/spec/unit/transaction/event_manager_spec.rb +88 -87
- data/spec/unit/transaction/event_spec.rb +15 -16
- data/spec/unit/transaction/persistence_spec.rb +17 -16
- data/spec/unit/transaction/report_spec.rb +12 -11
- data/spec/unit/transaction/resource_harness_spec.rb +31 -52
- data/spec/unit/transaction_spec.rb +87 -140
- data/spec/unit/type/component_spec.rb +1 -0
- data/spec/unit/type/exec_spec.rb +50 -101
- data/spec/unit/type/file/checksum_spec.rb +10 -9
- data/spec/unit/type/file/checksum_value_spec.rb +32 -31
- data/spec/unit/type/file/content_spec.rb +61 -58
- data/spec/unit/type/file/ctime_spec.rb +1 -0
- data/spec/unit/type/file/ensure_spec.rb +13 -12
- data/spec/unit/type/file/group_spec.rb +7 -5
- data/spec/unit/type/file/mode_spec.rb +6 -4
- data/spec/unit/type/file/mtime_spec.rb +1 -0
- data/spec/unit/type/file/owner_spec.rb +8 -6
- data/spec/unit/type/file/selinux_spec.rb +19 -17
- data/spec/unit/type/file/source_spec.rb +101 -104
- data/spec/unit/type/file/type_spec.rb +1 -0
- data/spec/unit/type/file_spec.rb +185 -195
- data/spec/unit/type/filebucket_spec.rb +10 -11
- data/spec/unit/type/group_spec.rb +8 -6
- data/spec/unit/type/noop_metaparam_spec.rb +2 -1
- data/spec/unit/type/package/package_settings_spec.rb +23 -44
- data/spec/unit/type/package_spec.rb +57 -56
- data/spec/unit/type/resources_spec.rb +74 -72
- data/spec/unit/type/schedule_spec.rb +26 -24
- data/spec/unit/type/service_spec.rb +75 -49
- data/spec/unit/type/stage_spec.rb +1 -0
- data/spec/unit/type/tidy_spec.rb +62 -61
- data/spec/unit/type/user_spec.rb +25 -24
- data/spec/unit/type/whit_spec.rb +1 -0
- data/spec/unit/type_spec.rb +54 -55
- data/spec/unit/util/at_fork_spec.rb +19 -18
- data/spec/unit/util/autoload_spec.rb +56 -55
- data/spec/unit/util/backups_spec.rb +35 -34
- data/spec/unit/util/character_encoding_spec.rb +5 -5
- data/spec/unit/util/checksums_spec.rb +39 -38
- data/spec/unit/util/colors_spec.rb +2 -1
- data/spec/unit/util/command_line_spec.rb +20 -40
- data/spec/unit/util/constant_inflector_spec.rb +1 -0
- data/spec/unit/util/diff_spec.rb +8 -7
- data/spec/unit/util/errors_spec.rb +1 -0
- data/spec/unit/util/execution_spec.rb +163 -187
- data/spec/unit/util/execution_stub_spec.rb +1 -0
- data/spec/unit/util/feature_spec.rb +14 -21
- data/spec/unit/util/filetype_spec.rb +49 -49
- data/spec/unit/util/http_proxy_spec.rb +12 -12
- data/spec/unit/util/inifile_spec.rb +31 -26
- data/spec/unit/util/json_lockfile_spec.rb +5 -3
- data/spec/unit/util/ldap/connection_spec.rb +25 -26
- data/spec/unit/util/ldap/generator_spec.rb +1 -0
- data/spec/unit/util/ldap/manager_spec.rb +101 -102
- data/spec/unit/util/lockfile_spec.rb +1 -0
- data/spec/unit/util/log/destinations_spec.rb +33 -30
- data/spec/unit/util/log_spec.rb +34 -48
- data/spec/unit/util/logging_spec.rb +72 -58
- data/spec/unit/util/metric_spec.rb +1 -0
- data/spec/unit/util/monkey_patches_spec.rb +9 -7
- data/spec/unit/util/multi_match_spec.rb +1 -0
- data/spec/unit/util/network_device/config_spec.rb +1 -0
- data/spec/unit/util/network_device/transport/base_spec.rb +6 -5
- data/spec/unit/util/network_device_spec.rb +9 -7
- data/spec/unit/util/package_spec.rb +1 -0
- data/spec/unit/util/pidlock_spec.rb +15 -60
- data/spec/unit/util/plist_spec.rb +33 -40
- data/spec/unit/util/posix_spec.rb +51 -54
- data/spec/unit/util/rdoc_spec.rb +10 -9
- data/spec/unit/util/reference_spec.rb +1 -0
- data/spec/unit/util/resource_template_spec.rb +20 -20
- data/spec/unit/util/retry_action_spec.rb +8 -7
- data/spec/unit/util/rubygems_spec.rb +8 -7
- data/spec/unit/util/run_mode_spec.rb +4 -3
- data/spec/unit/util/selinux_spec.rb +72 -79
- data/spec/unit/util/splayer_spec.rb +9 -8
- data/spec/unit/util/ssl_spec.rb +1 -0
- data/spec/unit/util/storage_spec.rb +23 -22
- data/spec/unit/util/suidmanager_spec.rb +54 -45
- data/spec/unit/util/symbolic_file_mode_spec.rb +1 -0
- data/spec/unit/util/tag_set_spec.rb +1 -0
- data/spec/unit/util/tagging_spec.rb +1 -0
- data/spec/unit/util/terminal_spec.rb +10 -9
- data/spec/unit/util/user_attr_spec.rb +2 -1
- data/spec/unit/util/warnings_spec.rb +4 -3
- data/spec/unit/util/watcher/periodic_watcher_spec.rb +2 -2
- data/spec/unit/util/watcher_spec.rb +21 -51
- data/spec/unit/util/windows/access_control_entry_spec.rb +1 -0
- data/spec/unit/util/windows/access_control_list_spec.rb +1 -0
- data/spec/unit/util/windows/adsi_spec.rb +138 -136
- data/spec/unit/util/windows/api_types_spec.rb +1 -0
- data/spec/unit/util/windows/eventlog_spec.rb +12 -9
- data/spec/unit/util/windows/file_spec.rb +1 -0
- data/spec/unit/util/windows/root_certs_spec.rb +1 -0
- data/spec/unit/util/windows/security_descriptor_spec.rb +2 -0
- data/spec/unit/util/windows/service_spec.rb +103 -100
- data/spec/unit/util/windows/sid_spec.rb +13 -11
- data/spec/unit/util/windows/string_spec.rb +1 -0
- data/spec/unit/util_spec.rb +57 -55
- data/spec/unit/version_spec.rb +6 -6
- metadata +20 -32
- data/CODEOWNERS +0 -30
- data/ext/autotest/Rakefile +0 -8
- data/ext/autotest/config +0 -43
- data/ext/autotest/readme.rst +0 -16
- data/lib/puppet/confine/boolean.rb +0 -45
- data/lib/puppet/provider/package_targetable.rb +0 -68
- data/spec/fixtures/unit/pops/loaders/loaders/mix_4x_and_3x_functions/usee/lib/puppet/parser/functions/bad_func_load2.rb +0 -11
- data/spec/fixtures/unit/pops/loaders/loaders/mix_4x_and_3x_functions/usee/lib/puppet/parser/functions/bad_func_load3.rb +0 -11
- data/spec/fixtures/unit/pops/loaders/loaders/mix_4x_and_3x_functions/usee/lib/puppet/parser/functions/bad_func_load4.rb +0 -11
- data/spec/fixtures/unit/pops/loaders/loaders/mix_4x_and_3x_functions/usee/lib/puppet/parser/functions/bad_func_load5.rb +0 -12
- data/spec/fixtures/unit/pops/loaders/loaders/mix_4x_and_3x_functions/usee/lib/puppet/parser/functions/good_func_load.rb +0 -9
- data/spec/fixtures/unit/provider/package/pkgng/pkg.info +0 -7
- data/spec/fixtures/unit/provider/package/pkgng/pkg.query_absent +0 -1
- data/spec/integration/network/http_pool_spec.rb +0 -120
- data/spec/integration/provider/file/windows_spec.rb +0 -162
- data/spec/lib/puppet_spec/https.rb +0 -166
- data/spec/unit/settings/server_list_setting_spec.rb +0 -21
- data/spec/watchr.rb +0 -137
data/locales/ja/puppet.po
CHANGED
@@ -1,28 +1,17 @@
|
|
1
1
|
# SOME DESCRIPTIVE TITLE.
|
2
|
-
# Copyright (C)
|
2
|
+
# Copyright (C) 2018 Puppet, Inc.
|
3
3
|
# This file is distributed under the same license as the Puppet automation framework package.
|
4
|
-
# FIRST AUTHOR <EMAIL@ADDRESS>,
|
5
|
-
#
|
6
|
-
# Translators:
|
7
|
-
# James Shen <James.Shen@puppet.com>, 2019
|
8
|
-
# sayaka inagaki <sayaka-inagaki@to-in.co.jp>, 2019
|
9
|
-
# LarissaLane <larissa@puppet.com>, 2019
|
10
|
-
# satoko inoue <satoko-inoue@to-in.co.jp>, 2019
|
11
|
-
# Erwin Hom <erwin.hom@puppet.com>, 2019
|
12
|
-
# Hidekatsu Tsuru <hidekatsu-tsuru@to-in.co.jp>, 2019
|
13
|
-
# 梅田智世 <c-umeda@nifty.com>, 2019
|
14
|
-
# Kojima Ai <ai-kojima@to-in.co.jp>, 2019
|
15
|
-
# Eriko Kashiwagi <eriko.55@d5.dion.ne.jp>, 2019
|
4
|
+
# FIRST AUTHOR <EMAIL@ADDRESS>, 2018.
|
16
5
|
#
|
17
6
|
#, fuzzy
|
18
7
|
msgid ""
|
19
8
|
msgstr ""
|
20
|
-
"Project-Id-Version: Puppet automation framework 6.0.
|
9
|
+
"Project-Id-Version: Puppet automation framework 6.0.2-87-gd2c9723\n"
|
21
10
|
"\n"
|
22
11
|
"Report-Msgid-Bugs-To: https://tickets.puppetlabs.com\n"
|
23
|
-
"POT-Creation-Date:
|
24
|
-
"PO-Revision-Date:
|
25
|
-
"Last-Translator: Eriko Kashiwagi <eriko.55@d5.dion.ne.jp>,
|
12
|
+
"POT-Creation-Date: 2018-10-18 18:20+0000\n"
|
13
|
+
"PO-Revision-Date: 2018-10-18 18:20+0000\n"
|
14
|
+
"Last-Translator: Eriko Kashiwagi <eriko.55@d5.dion.ne.jp>, 2018\n"
|
26
15
|
"Language-Team: Japanese (Japan) (https://www.transifex.com/puppet/teams/29089/ja_JP/)\n"
|
27
16
|
"MIME-Version: 1.0\n"
|
28
17
|
"Content-Type: text/plain; charset=UTF-8\n"
|
@@ -198,16 +187,12 @@ msgstr "実行できませんでした。"
|
|
198
187
|
msgid "No valid command or main"
|
199
188
|
msgstr "有効なコマンドまたはmainがありません。"
|
200
189
|
|
201
|
-
#: ../lib/puppet/application.rb:428
|
202
|
-
msgid "Could not set logdest to %{dest}."
|
203
|
-
msgstr "logdestを%{dest}に設定できませんでした。"
|
204
|
-
|
205
190
|
#: ../lib/puppet/application.rb:504
|
206
191
|
msgid "No help available for puppet %{app_name}"
|
207
192
|
msgstr "puppet %{app_name}で利用できるヘルプがありません。"
|
208
193
|
|
209
194
|
#: ../lib/puppet/application/agent.rb:24
|
210
|
-
#: ../lib/puppet/application/device.rb:
|
195
|
+
#: ../lib/puppet/application/device.rb:22
|
211
196
|
msgid "Cancelling startup"
|
212
197
|
msgstr "起動をキャンセルしています。"
|
213
198
|
|
@@ -286,57 +271,57 @@ msgstr "証明書とリクエストを管理(無効)"
|
|
286
271
|
msgid "Display help about resource types"
|
287
272
|
msgstr "リソース型に関するヘルプを表示"
|
288
273
|
|
289
|
-
#: ../lib/puppet/application/device.rb:
|
274
|
+
#: ../lib/puppet/application/device.rb:77
|
290
275
|
msgid "Manage remote network devices"
|
291
276
|
msgstr "リモートネットワークデバイスを管理"
|
292
277
|
|
293
|
-
#: ../lib/puppet/application/device.rb:
|
278
|
+
#: ../lib/puppet/application/device.rb:216
|
294
279
|
msgid "resource command requires target"
|
295
280
|
msgstr "リソースコマンドにはターゲットが必要です。"
|
296
281
|
|
297
|
-
#: ../lib/puppet/application/device.rb:
|
282
|
+
#: ../lib/puppet/application/device.rb:219
|
298
283
|
msgid "facts command requires target"
|
299
284
|
msgstr "factsコマンドにはターゲットが必要です。"
|
300
285
|
|
301
|
-
#: ../lib/puppet/application/device.rb:
|
286
|
+
#: ../lib/puppet/application/device.rb:222
|
302
287
|
msgid "missing argument: --target is required when using --apply"
|
303
288
|
msgstr "引数がありません: --applyの使用時には--targetが必要です"
|
304
289
|
|
305
|
-
#: ../lib/puppet/application/device.rb:
|
290
|
+
#: ../lib/puppet/application/device.rb:223
|
306
291
|
msgid "%{file} does not exist, cannot apply"
|
307
292
|
msgstr "%{file}が存在せず、適用できません"
|
308
293
|
|
309
|
-
#: ../lib/puppet/application/device.rb:
|
294
|
+
#: ../lib/puppet/application/device.rb:239
|
310
295
|
msgid "Target device / certificate '%{target}' not found in %{config}"
|
311
296
|
msgstr "ターゲットのデバイス/証明書'%{target}'が%{config}で見つかりません。"
|
312
297
|
|
313
|
-
#: ../lib/puppet/application/device.rb:
|
298
|
+
#: ../lib/puppet/application/device.rb:241
|
314
299
|
msgid "No device found in %{config}"
|
315
300
|
msgstr "デバイスが%{config}で見つかりません。"
|
316
301
|
|
317
|
-
#: ../lib/puppet/application/device.rb:
|
302
|
+
#: ../lib/puppet/application/device.rb:263
|
318
303
|
msgid ""
|
319
304
|
"retrieving resource: %{resource} from %{target} at "
|
320
305
|
"%{scheme}%{url_host}%{port}%{url_path}"
|
321
306
|
msgstr "取得リソース: %{scheme}%{url_host}%{port}%{url_path}で%{target}から%{resource}"
|
322
307
|
|
323
|
-
#: ../lib/puppet/application/device.rb:
|
308
|
+
#: ../lib/puppet/application/device.rb:278
|
324
309
|
msgid ""
|
325
310
|
"retrieving facts from %{target} at %{scheme}%{url_host}%{port}%{url_path}"
|
326
311
|
msgstr "%{scheme}%{url_host}%{port}%{url_path}で%{target}からfactを取得しています。"
|
327
312
|
|
328
|
-
#: ../lib/puppet/application/device.rb:
|
313
|
+
#: ../lib/puppet/application/device.rb:303
|
329
314
|
msgid ""
|
330
315
|
"starting applying configuration to %{target} at "
|
331
316
|
"%{scheme}%{url_host}%{port}%{url_path}"
|
332
317
|
msgstr "%{scheme}%{url_host}%{port}%{url_path}で%{target}への設定の適用を開始しています。"
|
333
318
|
|
334
|
-
#: ../lib/puppet/application/device.rb:
|
319
|
+
#: ../lib/puppet/application/device.rb:340
|
335
320
|
#: ../lib/puppet/application/resource.rb:196
|
336
321
|
msgid "You must specify the type to display"
|
337
322
|
msgstr "表示するタイプを指定する必要があります。"
|
338
323
|
|
339
|
-
#: ../lib/puppet/application/device.rb:
|
324
|
+
#: ../lib/puppet/application/device.rb:341
|
340
325
|
#: ../lib/puppet/application/resource.rb:197
|
341
326
|
msgid "Could not find type %{type}"
|
342
327
|
msgstr "ファイルタイプ%{type}が見つかりませんでした。"
|
@@ -407,28 +392,28 @@ msgstr "'puppet help %{face} %{action}'を使用してみてください。"
|
|
407
392
|
msgid "Store and retrieve files in a filebucket"
|
408
393
|
msgstr "ファイルをfilebucketに保存して取得"
|
409
394
|
|
410
|
-
#: ../lib/puppet/application/filebucket.rb:
|
395
|
+
#: ../lib/puppet/application/filebucket.rb:203
|
411
396
|
msgid "You must specify a file to back up"
|
412
397
|
msgstr "バックアップするファイルを指定する必要があります。"
|
413
398
|
|
414
|
-
#: ../lib/puppet/application/filebucket.rb:
|
399
|
+
#: ../lib/puppet/application/filebucket.rb:207
|
415
400
|
msgid "%{file}: no such file"
|
416
401
|
msgstr "%{file}: このファイルがありません。"
|
417
402
|
|
418
|
-
#: ../lib/puppet/application/filebucket.rb:
|
403
|
+
#: ../lib/puppet/application/filebucket.rb:211
|
419
404
|
msgid "%{file}: cannot read file"
|
420
405
|
msgstr "%{file}: ファイルを読み込めません。"
|
421
406
|
|
422
|
-
#: ../lib/puppet/application/filebucket.rb:
|
423
|
-
#: ../lib/puppet/application/filebucket.rb:
|
407
|
+
#: ../lib/puppet/application/filebucket.rb:233
|
408
|
+
#: ../lib/puppet/application/filebucket.rb:256
|
424
409
|
msgid "Need exactly two arguments: filebucket diff <file_a> <file_b>"
|
425
410
|
msgstr "引数は2つ必要です: filebucket diff <file_a> <file_b>"
|
426
411
|
|
427
|
-
#: ../lib/puppet/application/filebucket.rb:
|
412
|
+
#: ../lib/puppet/application/filebucket.rb:253
|
428
413
|
msgid "Comparing %{checksum_a} %{checksum_b} %{file_a} %{file_b}"
|
429
414
|
msgstr "%{checksum_a} %{checksum_b} %{file_a} %{file_b}を比較しています。"
|
430
415
|
|
431
|
-
#: ../lib/puppet/application/filebucket.rb:
|
416
|
+
#: ../lib/puppet/application/filebucket.rb:267
|
432
417
|
msgid "Cancelling"
|
433
418
|
msgstr "キャンセルしています。"
|
434
419
|
|
@@ -512,70 +497,70 @@ msgstr "1回の実行に使用できるのは1ファイルのみです。%{files
|
|
512
497
|
msgid "Manage SSL keys and certificates for puppet SSL clients"
|
513
498
|
msgstr "Puppet SSLクライアント用のSSLキーと証明書を管理"
|
514
499
|
|
515
|
-
#: ../lib/puppet/application/ssl.rb:
|
500
|
+
#: ../lib/puppet/application/ssl.rb:80
|
516
501
|
msgid "An action must be specified."
|
517
502
|
msgstr "アクションを指定する必要があります。"
|
518
503
|
|
519
|
-
#: ../lib/puppet/application/ssl.rb:
|
504
|
+
#: ../lib/puppet/application/ssl.rb:92 ../lib/puppet/application/ssl.rb:97
|
520
505
|
msgid "The certificate for '%{name}' has not yet been signed"
|
521
506
|
msgstr "'%{name}'の証明書が署名されていません。"
|
522
507
|
|
523
|
-
#: ../lib/puppet/application/ssl.rb:
|
508
|
+
#: ../lib/puppet/application/ssl.rb:104
|
524
509
|
msgid "Unknown action '%{action}'"
|
525
510
|
msgstr "未知のアクション'%{action}'"
|
526
511
|
|
527
|
-
#: ../lib/puppet/application/ssl.rb:
|
512
|
+
#: ../lib/puppet/application/ssl.rb:112
|
528
513
|
msgid ""
|
529
514
|
"Submitted certificate request for '%{name}' to https://%{server}:%{port}"
|
530
515
|
msgstr "'%{name}' の証明書リクエストをhttps://%{server}:%{port}に送信しました。"
|
531
516
|
|
532
|
-
#: ../lib/puppet/application/ssl.rb:
|
517
|
+
#: ../lib/puppet/application/ssl.rb:116
|
533
518
|
msgid "Failed to submit certificate request: %{message}"
|
534
519
|
msgstr "証明書リクエストの送信に失敗しました: %{message}"
|
535
520
|
|
536
|
-
#: ../lib/puppet/application/ssl.rb:
|
521
|
+
#: ../lib/puppet/application/ssl.rb:122
|
537
522
|
msgid "Downloading certificate '%{name}' from https://%{server}:%{port}"
|
538
523
|
msgstr "証明書'%{name}'をhttps://%{server}:%{port}からダウンロードしています。"
|
539
524
|
|
540
|
-
#: ../lib/puppet/application/ssl.rb:
|
525
|
+
#: ../lib/puppet/application/ssl.rb:128
|
541
526
|
msgid "Downloaded certificate '%{name}' with fingerprint %{fingerprint}"
|
542
527
|
msgstr "フィンガープリント%{fingerprint}を持つ証明書'%{name}'をダウンロードしました。"
|
543
528
|
|
544
|
-
#: ../lib/puppet/application/ssl.rb:
|
529
|
+
#: ../lib/puppet/application/ssl.rb:133
|
545
530
|
msgid "Failed to download certificate: %{message}"
|
546
531
|
msgstr "証明書のダウンロードに失敗しました: %{message}"
|
547
532
|
|
548
|
-
#: ../lib/puppet/application/ssl.rb:
|
533
|
+
#: ../lib/puppet/application/ssl.rb:140
|
549
534
|
msgid "The host's private key is missing"
|
550
535
|
msgstr "ホストのプライベートキーが見つかりません。"
|
551
536
|
|
552
|
-
#: ../lib/puppet/application/ssl.rb:
|
537
|
+
#: ../lib/puppet/application/ssl.rb:143
|
553
538
|
msgid "The host's certificate is missing"
|
554
539
|
msgstr "ホストの証明書が見つかりません。"
|
555
540
|
|
556
|
-
#: ../lib/puppet/application/ssl.rb:
|
541
|
+
#: ../lib/puppet/application/ssl.rb:146
|
557
542
|
msgid "The host's key does not match the certificate"
|
558
543
|
msgstr "ホストのキーが証明書と一致しません。"
|
559
544
|
|
560
|
-
#: ../lib/puppet/application/ssl.rb:
|
545
|
+
#: ../lib/puppet/application/ssl.rb:151
|
561
546
|
msgid "Failed to verify certificate '%{name}': %{message} (%{error})"
|
562
547
|
msgstr "証明書'%{name}'を確認できませんでした: %{message} (%{error})"
|
563
548
|
|
564
|
-
#: ../lib/puppet/application/ssl.rb:
|
549
|
+
#: ../lib/puppet/application/ssl.rb:156
|
565
550
|
msgid "Verified certificate '%{name}'"
|
566
551
|
msgstr "証明書'%{name}'を確認しました。"
|
567
552
|
|
568
|
-
#: ../lib/puppet/application/ssl.rb:
|
553
|
+
#: ../lib/puppet/application/ssl.rb:164
|
569
554
|
msgid "Verify failed: %{message}"
|
570
555
|
msgstr "確認できませんでした: %{message}"
|
571
556
|
|
572
|
-
#: ../lib/puppet/application/ssl.rb:
|
557
|
+
#: ../lib/puppet/application/ssl.rb:174
|
573
558
|
msgid ""
|
574
559
|
"Failed to connect to the CA to determine if certificate %{certname} has been"
|
575
560
|
" cleaned"
|
576
561
|
msgstr "証明書%{certname}が削除されているかどうか確認するためのCAへの接続に失敗しました。"
|
577
562
|
|
578
|
-
#: ../lib/puppet/application/ssl.rb:
|
563
|
+
#: ../lib/puppet/application/ssl.rb:178
|
579
564
|
msgid ""
|
580
565
|
"The certificate %{certname} must be cleaned from the CA first. To fix this,\n"
|
581
566
|
"run the following commands on the CA:\n"
|
@@ -587,7 +572,7 @@ msgstr ""
|
|
587
572
|
" puppetserver ca clean --certname %{certname}\n"
|
588
573
|
" puppet ssl clean\n"
|
589
574
|
|
590
|
-
#: ../lib/puppet/application/ssl.rb:
|
575
|
+
#: ../lib/puppet/application/ssl.rb:199
|
591
576
|
msgid "Removed %{label} %{path}"
|
592
577
|
msgstr "%{label} %{path}を削除しました。"
|
593
578
|
|
@@ -803,13 +788,21 @@ msgstr "'environment_data_provider'の設定は廃止予定です。"
|
|
803
788
|
msgid "Certificate names must be lower case"
|
804
789
|
msgstr "証明書名は小文字でなければなりません。"
|
805
790
|
|
806
|
-
#: ../lib/puppet/defaults.rb:
|
791
|
+
#: ../lib/puppet/defaults.rb:961 ../lib/puppet/settings/enum_setting.rb:13
|
807
792
|
#: ../lib/puppet/settings/symbolic_enum_setting.rb:14
|
808
793
|
msgid ""
|
809
794
|
"Invalid value '%{value}' for parameter %{name}. Allowed values are "
|
810
795
|
"'%{allowed_values}'"
|
811
796
|
msgstr "パラメータ%{name}に関して無効な値'%{value}'。許可されている値は'%{allowed_values}'です。"
|
812
797
|
|
798
|
+
#: ../lib/puppet/defaults.rb:1458 ../lib/puppet/defaults.rb:1473
|
799
|
+
msgid "Attempted to set both server and server_list."
|
800
|
+
msgstr "serverとserver_listの両方を設定しようとしました。"
|
801
|
+
|
802
|
+
#: ../lib/puppet/defaults.rb:1459 ../lib/puppet/defaults.rb:1474
|
803
|
+
msgid "Server setting will not be used."
|
804
|
+
msgstr "serverの設定は使用されません。"
|
805
|
+
|
813
806
|
#: ../lib/puppet/error.rb:69
|
814
807
|
msgid "Could not parse for environment %{environment}: %{message}"
|
815
808
|
msgstr "environment%{environment}を解析できませんでした: %{message}"
|
@@ -877,8 +870,8 @@ msgid "Examine Puppet's current settings."
|
|
877
870
|
msgstr "Puppetの現在の設定を検証。"
|
878
871
|
|
879
872
|
#: ../lib/puppet/face/config.rb:38
|
880
|
-
msgid "all | <setting> [<setting> ...]"
|
881
|
-
msgstr "all | <setting> [<setting> ...]"
|
873
|
+
msgid "(all | <setting> [<setting> ...]"
|
874
|
+
msgstr "(all | <setting> [<setting> ...]"
|
882
875
|
|
883
876
|
#: ../lib/puppet/face/config.rb:83
|
884
877
|
msgid "New environment loaders generated from the requested section."
|
@@ -944,8 +937,8 @@ msgid "Delete a Puppet setting."
|
|
944
937
|
msgstr "Puppet設定を削除。"
|
945
938
|
|
946
939
|
#: ../lib/puppet/face/config.rb:213
|
947
|
-
msgid "<setting>"
|
948
|
-
msgstr "<setting>"
|
940
|
+
msgid "(<setting>"
|
941
|
+
msgstr "(<setting>"
|
949
942
|
|
950
943
|
#. TRANSLATORS 'main' is a specific section name and should not be translated
|
951
944
|
#: ../lib/puppet/face/config.rb:250
|
@@ -1739,8 +1732,8 @@ msgid "Diff is not supported on this platform"
|
|
1739
1732
|
msgstr "Diffはこのプラットフォームではサポートされていません。"
|
1740
1733
|
|
1741
1734
|
#: ../lib/puppet/file_bucket/dipper.rb:80
|
1742
|
-
msgid "Please provide a file or checksum
|
1743
|
-
msgstr "
|
1735
|
+
msgid "Please provide a file or checksum do diff with"
|
1736
|
+
msgstr "比較を実行するファイルまたはチェックサムを指定してください。"
|
1744
1737
|
|
1745
1738
|
#: ../lib/puppet/file_bucket/dipper.rb:96
|
1746
1739
|
msgid "Failed to diff files"
|
@@ -1997,25 +1990,25 @@ msgid ""
|
|
1997
1990
|
"The current user does not have the necessary permission to manage symlinks."
|
1998
1991
|
msgstr "現在のユーザは、シムリンクの管理に必要な許可を得ていません。"
|
1999
1992
|
|
2000
|
-
#: ../lib/puppet/forge.rb:
|
1993
|
+
#: ../lib/puppet/forge.rb:136
|
2001
1994
|
msgid "Malformed dependency: %{name}."
|
2002
1995
|
msgstr "依存関係の形式が不正です: %{name}。"
|
2003
1996
|
|
2004
|
-
#: ../lib/puppet/forge.rb:
|
1997
|
+
#: ../lib/puppet/forge.rb:137
|
2005
1998
|
msgid "Exception was: %{detail}"
|
2006
1999
|
msgstr "例外: %{detail}"
|
2007
2000
|
|
2008
|
-
#: ../lib/puppet/forge.rb:
|
2001
|
+
#: ../lib/puppet/forge.rb:203
|
2009
2002
|
msgid "Downloaded release for %{name} did not match expected checksum"
|
2010
2003
|
msgstr "ダウンロードされた%{name}のリリースが、予想されるチェックサムと一致しませんでした。 "
|
2011
2004
|
|
2012
|
-
#: ../lib/puppet/forge.rb:
|
2005
|
+
#: ../lib/puppet/forge.rb:211
|
2013
2006
|
#: ../lib/puppet/module_tool/applications/unpacker.rb:58
|
2014
2007
|
#: ../lib/puppet/module_tool/local_tarball.rb:86
|
2015
2008
|
msgid "Could not extract contents of module archive: %{message}"
|
2016
2009
|
msgstr "モジュールアーカイブのコンテンツを抽出できませんでした: %{message}"
|
2017
2010
|
|
2018
|
-
#: ../lib/puppet/forge.rb:
|
2011
|
+
#: ../lib/puppet/forge.rb:228
|
2019
2012
|
msgid "Cannot consider release %{name}-%{version}: %{error}"
|
2020
2013
|
msgstr "リリース%{name}-%{version}を検証できません: %{error}"
|
2021
2014
|
|
@@ -6062,77 +6055,71 @@ msgstr "@()のエスケープ文字は、一度しか使えません。'%{escape
|
|
6062
6055
|
|
6063
6056
|
#: ../lib/puppet/pops/issues.rb:764
|
6064
6057
|
msgid ""
|
6065
|
-
"Heredoc with text in the margin is not allowed (line %{heredoc_line} in this"
|
6066
|
-
" heredoc)"
|
6067
|
-
msgstr "マージンに文字列を含むヒアドキュメントは許可されません(このヒアドキュメントの行%{heredoc_line})"
|
6068
|
-
|
6069
|
-
#: ../lib/puppet/pops/issues.rb:768
|
6070
|
-
msgid ""
|
6071
6058
|
"Illegal %{format} Byte Order mark at beginning of input: %{bom} - remove "
|
6072
6059
|
"these from the puppet source"
|
6073
6060
|
msgstr "インプットの冒頭に不正な%{format}バイトオーダーマーク: %{bom} - Puppetソースからこれらを削除してください。"
|
6074
6061
|
|
6075
|
-
#: ../lib/puppet/pops/issues.rb:
|
6062
|
+
#: ../lib/puppet/pops/issues.rb:768
|
6076
6063
|
msgid "No such file or directory: %{file}"
|
6077
6064
|
msgstr "そのようなファイルまたはディレクトリはありません: %{file}"
|
6078
6065
|
|
6079
|
-
#: ../lib/puppet/pops/issues.rb:
|
6066
|
+
#: ../lib/puppet/pops/issues.rb:772
|
6080
6067
|
msgid "%{file} is not a file"
|
6081
6068
|
msgstr "%{file}はファイルではありません。"
|
6082
6069
|
|
6083
|
-
#: ../lib/puppet/pops/issues.rb:
|
6070
|
+
#: ../lib/puppet/pops/issues.rb:777
|
6084
6071
|
msgid ""
|
6085
6072
|
"%{expression} resulted in a value outside of Puppet Integer max range, got "
|
6086
6073
|
"'%{value}'"
|
6087
6074
|
msgstr "%{expression}がPuppet整数の最大値の範囲外になり、'%{value}'が与えられています。"
|
6088
6075
|
|
6089
|
-
#: ../lib/puppet/pops/issues.rb:
|
6076
|
+
#: ../lib/puppet/pops/issues.rb:779
|
6090
6077
|
msgid ""
|
6091
6078
|
"%{expression} resulted in a value outside of Puppet Integer min range, got "
|
6092
6079
|
"'%{value}'"
|
6093
6080
|
msgstr "%{expression}がPuppet整数の最小値の範囲外になり、'%{value}'が与えられています。"
|
6094
6081
|
|
6095
|
-
#: ../lib/puppet/pops/issues.rb:
|
6082
|
+
#: ../lib/puppet/pops/issues.rb:784
|
6096
6083
|
msgid "This runtime does not support hiera.yaml version %{version}"
|
6097
6084
|
msgstr "このランタイムはhiera.yamlバージョン%{version}をサポートしていません。"
|
6098
6085
|
|
6099
|
-
#: ../lib/puppet/pops/issues.rb:
|
6086
|
+
#: ../lib/puppet/pops/issues.rb:788
|
6100
6087
|
msgid "hiera.yaml version 3 cannot be used in %{location}"
|
6101
6088
|
msgstr "hiera.yamlバージョン3は%{location}では使用できません。"
|
6102
6089
|
|
6103
|
-
#: ../lib/puppet/pops/issues.rb:
|
6090
|
+
#: ../lib/puppet/pops/issues.rb:792
|
6104
6091
|
msgid "hiera.yaml version 4 cannot be used in the global layer"
|
6105
6092
|
msgstr "hiera.yamlバージョン4はグローバルレイヤでは使用できません。"
|
6106
6093
|
|
6107
|
-
#: ../lib/puppet/pops/issues.rb:
|
6094
|
+
#: ../lib/puppet/pops/issues.rb:796
|
6108
6095
|
msgid "Undefined variable '%{name}'"
|
6109
6096
|
msgstr "定義されていない変数'%{name}'"
|
6110
6097
|
|
6111
|
-
#: ../lib/puppet/pops/issues.rb:
|
6098
|
+
#: ../lib/puppet/pops/issues.rb:800
|
6112
6099
|
msgid "Backend '%{name}' is defined more than once."
|
6113
6100
|
msgstr "バックエンド'%{name}'が複数回定義されています。"
|
6114
6101
|
|
6115
|
-
#: ../lib/puppet/pops/issues.rb:
|
6102
|
+
#: ../lib/puppet/pops/issues.rb:803 ../lib/puppet/pops/issues.rb:816
|
6116
6103
|
msgid "First defined at %{error_location}"
|
6117
6104
|
msgstr "最初に%{error_location}で定義されています。"
|
6118
6105
|
|
6119
|
-
#: ../lib/puppet/pops/issues.rb:
|
6106
|
+
#: ../lib/puppet/pops/issues.rb:809
|
6120
6107
|
msgid "No data provider is registered for backend '%{name}'"
|
6121
6108
|
msgstr "バックエンド'%{name}'のデータプロバイダが登録されていません。"
|
6122
6109
|
|
6123
|
-
#: ../lib/puppet/pops/issues.rb:
|
6110
|
+
#: ../lib/puppet/pops/issues.rb:813
|
6124
6111
|
msgid "Hierarchy name '%{name}' defined more than once."
|
6125
6112
|
msgstr "階層名'%{name}'が複数回定義されています。"
|
6126
6113
|
|
6127
|
-
#: ../lib/puppet/pops/issues.rb:
|
6114
|
+
#: ../lib/puppet/pops/issues.rb:822
|
6128
6115
|
msgid "'hiera3_backend' is only allowed in the global layer"
|
6129
6116
|
msgstr "'hiera3_backend'が許可されているのはグローバルレイヤのみです。"
|
6130
6117
|
|
6131
|
-
#: ../lib/puppet/pops/issues.rb:
|
6118
|
+
#: ../lib/puppet/pops/issues.rb:826
|
6132
6119
|
msgid "'default_hierarchy' is only allowed in the module layer"
|
6133
6120
|
msgstr "'default_hierarchy'が許可されているのはモジュールレイヤのみです。"
|
6134
6121
|
|
6135
|
-
#: ../lib/puppet/pops/issues.rb:
|
6122
|
+
#: ../lib/puppet/pops/issues.rb:830
|
6136
6123
|
msgid ""
|
6137
6124
|
"Use \"data_hash: %{function_name}_data\" instead of \"hiera3_backend: "
|
6138
6125
|
"%{function_name}\""
|
@@ -6140,100 +6127,100 @@ msgstr ""
|
|
6140
6127
|
"\"hiera3_backend: %{function_name}\"ではなく\"data_hash: "
|
6141
6128
|
"%{function_name}_data\"を使用してください。"
|
6142
6129
|
|
6143
|
-
#: ../lib/puppet/pops/issues.rb:
|
6130
|
+
#: ../lib/puppet/pops/issues.rb:834
|
6144
6131
|
msgid "One of %{keys} must be defined in hierarchy '%{name}'"
|
6145
6132
|
msgstr "%{keys}の1つを階層'%{name}'で定義する必要があります。"
|
6146
6133
|
|
6147
|
-
#: ../lib/puppet/pops/issues.rb:
|
6134
|
+
#: ../lib/puppet/pops/issues.rb:838 ../lib/puppet/pops/issues.rb:846
|
6148
6135
|
msgid "Only one of %{keys} can be defined in hierarchy '%{name}'"
|
6149
6136
|
msgstr "階層'%{name}'で定義できるのは1つの%{keys}のみです。"
|
6150
6137
|
|
6151
|
-
#: ../lib/puppet/pops/issues.rb:
|
6138
|
+
#: ../lib/puppet/pops/issues.rb:842
|
6152
6139
|
msgid "Only one of %{keys} can be defined in defaults"
|
6153
6140
|
msgstr "デフォルトで定義できるのは1つの%{keys}のみです。"
|
6154
6141
|
|
6155
|
-
#: ../lib/puppet/pops/issues.rb:
|
6142
|
+
#: ../lib/puppet/pops/issues.rb:850
|
6156
6143
|
msgid "Option key '%{key}' used in hierarchy '%{name}' is reserved by Puppet"
|
6157
6144
|
msgstr "階層'%{name}'で使用されているオプションキー'%{key}'は、Puppetにより予約されています。"
|
6158
6145
|
|
6159
|
-
#: ../lib/puppet/pops/issues.rb:
|
6146
|
+
#: ../lib/puppet/pops/issues.rb:854
|
6160
6147
|
msgid "Option key '%{key}' used in defaults is reserved by Puppet"
|
6161
6148
|
msgstr "デフォルトで使用されているオプションキー'%{key}'は、Puppetにより予約されています。"
|
6162
6149
|
|
6163
|
-
#: ../lib/puppet/pops/issues.rb:
|
6150
|
+
#: ../lib/puppet/pops/issues.rb:858
|
6164
6151
|
msgid "Unable to find '%{function_type}' function named '%{function_name}'"
|
6165
6152
|
msgstr "'%{function_name}'という名前の'%{function_type}'関数が見つかりません。"
|
6166
6153
|
|
6167
|
-
#: ../lib/puppet/pops/issues.rb:
|
6154
|
+
#: ../lib/puppet/pops/issues.rb:862
|
6168
6155
|
msgid ""
|
6169
6156
|
"'alias' interpolation is only permitted if the expression is equal to the "
|
6170
6157
|
"entire string"
|
6171
6158
|
msgstr "'alias'補間が許可されるのは、表現が文字列全体と等しい場合のみです。"
|
6172
6159
|
|
6173
|
-
#: ../lib/puppet/pops/issues.rb:
|
6160
|
+
#: ../lib/puppet/pops/issues.rb:866
|
6174
6161
|
msgid "Unknown interpolation method '%{name}'"
|
6175
6162
|
msgstr "不明な補間メソッド'%{name}'"
|
6176
6163
|
|
6177
|
-
#: ../lib/puppet/pops/issues.rb:
|
6164
|
+
#: ../lib/puppet/pops/issues.rb:870
|
6178
6165
|
msgid "Interpolation using method syntax is not allowed in this context"
|
6179
6166
|
msgstr "メソッド構文を用いた補間は、この文脈では許可されていません。"
|
6180
6167
|
|
6181
|
-
#: ../lib/puppet/pops/issues.rb:
|
6168
|
+
#: ../lib/puppet/pops/issues.rb:874
|
6182
6169
|
msgid ""
|
6183
6170
|
"Endless recursion detected when attempting to serialize value of class "
|
6184
6171
|
"%{type_name}"
|
6185
6172
|
msgstr "クラス%{type_name}の値のシリアライズを試みている際に、無限再帰が検出されました。"
|
6186
6173
|
|
6187
|
-
#: ../lib/puppet/pops/issues.rb:
|
6174
|
+
#: ../lib/puppet/pops/issues.rb:878
|
6188
6175
|
msgid ""
|
6189
6176
|
"%{path} contains the special value default. It will be converted to the "
|
6190
6177
|
"String 'default'"
|
6191
6178
|
msgstr "%{path}に特殊なデフォルト値が含まれています。これは文字列'default'に変換されます。"
|
6192
6179
|
|
6193
|
-
#: ../lib/puppet/pops/issues.rb:
|
6180
|
+
#: ../lib/puppet/pops/issues.rb:882
|
6194
6181
|
msgid ""
|
6195
6182
|
"%{path} contains %{klass} value. It will be converted to the String "
|
6196
6183
|
"'%{value}'"
|
6197
6184
|
msgstr "%{path}に%{klass}値が含まれています。これは文字列'%{value}'に変換されます。"
|
6198
6185
|
|
6199
|
-
#: ../lib/puppet/pops/issues.rb:
|
6186
|
+
#: ../lib/puppet/pops/issues.rb:886
|
6200
6187
|
msgid ""
|
6201
6188
|
"%{path} contains a hash with %{klass} key. It will be converted to the "
|
6202
6189
|
"String '%{value}'"
|
6203
6190
|
msgstr "%{path}に%{klass}キーを伴うハッシュが含まれています。これは文字列'%{value}'に変換されます。"
|
6204
6191
|
|
6205
|
-
#: ../lib/puppet/pops/issues.rb:
|
6192
|
+
#: ../lib/puppet/pops/issues.rb:890
|
6206
6193
|
msgid "The feature '%{feature}' is only available when compiling a catalog"
|
6207
6194
|
msgstr "フィーチャー'%{feature}'はカタログのコンパイル時のみ使用できます。"
|
6208
6195
|
|
6209
|
-
#: ../lib/puppet/pops/issues.rb:
|
6196
|
+
#: ../lib/puppet/pops/issues.rb:894
|
6210
6197
|
msgid ""
|
6211
6198
|
"The catalog operation '%{operation}' is only available when compiling a "
|
6212
6199
|
"catalog"
|
6213
6200
|
msgstr "カタログオペレーション'%{operation}'はカタログのコンパイル時のみ使用できます。"
|
6214
6201
|
|
6215
|
-
#: ../lib/puppet/pops/issues.rb:
|
6202
|
+
#: ../lib/puppet/pops/issues.rb:898
|
6216
6203
|
msgid "%{expr} is only available when compiling a catalog"
|
6217
6204
|
msgstr "%{expr}は、カタログをコンパイルするときにのみ利用可能です"
|
6218
6205
|
|
6219
|
-
#: ../lib/puppet/pops/issues.rb:
|
6206
|
+
#: ../lib/puppet/pops/issues.rb:902
|
6220
6207
|
msgid ""
|
6221
6208
|
"The task operation '%{operation}' is not available when compiling a catalog"
|
6222
6209
|
msgstr "タスクオペレーション'%{operation}'はカタログのコンパイル時には使用できません。"
|
6223
6210
|
|
6224
|
-
#: ../lib/puppet/pops/issues.rb:
|
6211
|
+
#: ../lib/puppet/pops/issues.rb:906
|
6225
6212
|
msgid "%{expr} is not available when compiling a catalog"
|
6226
6213
|
msgstr "%{expr}は、カタログをコンパイルするときには利用できません"
|
6227
6214
|
|
6228
|
-
#: ../lib/puppet/pops/issues.rb:
|
6215
|
+
#: ../lib/puppet/pops/issues.rb:910
|
6229
6216
|
msgid "The 'bolt' library is required to %{action}"
|
6230
6217
|
msgstr "'bolt'ライブラリは%{action}に必須です。"
|
6231
6218
|
|
6232
|
-
#: ../lib/puppet/pops/issues.rb:
|
6219
|
+
#: ../lib/puppet/pops/issues.rb:914
|
6233
6220
|
msgid "Task not found: %{type_name}"
|
6234
6221
|
msgstr "タスクが見つかりませんでした: %{type_name}"
|
6235
6222
|
|
6236
|
-
#: ../lib/puppet/pops/issues.rb:
|
6223
|
+
#: ../lib/puppet/pops/issues.rb:918
|
6237
6224
|
msgid "Failed to load: %{type_name}"
|
6238
6225
|
msgstr "ロードに失敗しました: %{type_name}"
|
6239
6226
|
|
@@ -6407,36 +6394,27 @@ msgid ""
|
|
6407
6394
|
"evaluated. Got '%{klass}'"
|
6408
6395
|
msgstr "%{source_ref}からロードしたコードは、検証時に関数クラスを生成しませんでした。'%{klass}'が与えられています。"
|
6409
6396
|
|
6410
|
-
#: ../lib/puppet/pops/loader/ruby_legacy_function_instantiator.rb:
|
6397
|
+
#: ../lib/puppet/pops/loader/ruby_legacy_function_instantiator.rb:17
|
6411
6398
|
msgid ""
|
6412
6399
|
"The code loaded from %{source_ref} does not seem to be a Puppet 3x API "
|
6413
6400
|
"function - no 'newfunction' call."
|
6414
6401
|
msgstr ""
|
6415
6402
|
"%{source_ref}からロードしたコードは、Puppet 3x API関数ではないようです - 'newfunction'コールがありません。"
|
6416
6403
|
|
6417
|
-
|
6418
|
-
#. method name.
|
6419
|
-
#: ../lib/puppet/pops/loader/ruby_legacy_function_instantiator.rb:46
|
6404
|
+
#: ../lib/puppet/pops/loader/ruby_legacy_function_instantiator.rb:36
|
6420
6405
|
msgid ""
|
6421
|
-
"
|
6422
|
-
"
|
6406
|
+
"The code loaded from %{source_ref} did not produce the expected 3x function "
|
6407
|
+
"info Hash when evaluated. Got '%{klass}'"
|
6423
6408
|
msgstr ""
|
6424
|
-
"
|
6425
|
-
"
|
6409
|
+
"%{source_ref}からロードしたコードは、 "
|
6410
|
+
"検証時に要求された3x関数の情報ハッシュを生成しませんでした。'%{klass}'が与えられています。"
|
6426
6411
|
|
6427
|
-
#: ../lib/puppet/pops/loader/ruby_legacy_function_instantiator.rb:
|
6412
|
+
#: ../lib/puppet/pops/loader/ruby_legacy_function_instantiator.rb:39
|
6428
6413
|
msgid ""
|
6429
6414
|
"The code loaded from %{source_ref} produced mis-matched name, expected "
|
6430
|
-
"'function_%{type_name}', got
|
6431
|
-
msgstr ""
|
6432
|
-
"%{source_ref}からロードしたコードは、適合しない名前を生成しました。'function_%{type_name}'が要求されていますが、'%{created_name}'が与えられています。"
|
6433
|
-
|
6434
|
-
#: ../lib/puppet/pops/loader/ruby_legacy_function_instantiator.rb:92
|
6435
|
-
msgid ""
|
6436
|
-
"Illegal method definition of method '%{method_name}' on line %{line}' in "
|
6437
|
-
"legacy function. See %{url} for more information"
|
6415
|
+
"'function_%{type_name}', got %{created_name}"
|
6438
6416
|
msgstr ""
|
6439
|
-
"
|
6417
|
+
"%{source_ref}からロードしたコードは、適合しない名前を生成しました。'function_%{type_name}'が要求されていますが、%{created_name}が与えられています。"
|
6440
6418
|
|
6441
6419
|
#: ../lib/puppet/pops/loader/task_instantiator.rb:27
|
6442
6420
|
msgid "Failed to load metadata for task %{name}: %{reason}"
|
@@ -6703,23 +6681,23 @@ msgstr "許可されない変換 - ルールのないオブジェクトが見つ
|
|
6703
6681
|
|
6704
6682
|
#. TRANSLATORS 'NUMBER' refers to a method name and the 'name_or_numeric' was
|
6705
6683
|
#. the passed in value and should not be translated
|
6706
|
-
#: ../lib/puppet/pops/model/factory.rb:
|
6684
|
+
#: ../lib/puppet/pops/model/factory.rb:814
|
6707
6685
|
msgid ""
|
6708
6686
|
"Internal Error, NUMBER token does not contain a valid number, "
|
6709
6687
|
"%{name_or_numeric}"
|
6710
6688
|
msgstr "内部エラー。NUMBERトークンには有効な数値%{name_or_numeric}が含まれていません。"
|
6711
6689
|
|
6712
|
-
#: ../lib/puppet/pops/model/factory.rb:
|
6690
|
+
#: ../lib/puppet/pops/model/factory.rb:1130
|
6713
6691
|
msgid "can only concatenate strings, got %{class_name}"
|
6714
6692
|
msgstr "文字列のみ連結できます。%{class_name}を取得しました。"
|
6715
6693
|
|
6716
|
-
#: ../lib/puppet/pops/parser/parser_support.rb:
|
6694
|
+
#: ../lib/puppet/pops/parser/parser_support.rb:195
|
6717
6695
|
msgid ""
|
6718
6696
|
"attempt to pass argument list to the function '%{name}' which cannot be "
|
6719
6697
|
"called without parentheses"
|
6720
6698
|
msgstr "括弧なしでは呼び出せない関数'%{name}'に引数リストを渡そうとしています。 "
|
6721
6699
|
|
6722
|
-
#: ../lib/puppet/pops/parser/parser_support.rb:
|
6700
|
+
#: ../lib/puppet/pops/parser/parser_support.rb:197
|
6723
6701
|
msgid "illegal comma separated argument list"
|
6724
6702
|
msgstr "不正なカンマ区切り引数リスト"
|
6725
6703
|
|
@@ -7286,7 +7264,7 @@ msgstr "aix.object_info(): %{resource}[%{name}]が見つかりませんでした
|
|
7286
7264
|
|
7287
7265
|
#: ../lib/puppet/provider/aix_object.rb:469
|
7288
7266
|
#: ../lib/puppet/provider/nameservice.rb:180
|
7289
|
-
#: ../lib/puppet/provider/nameservice/directoryservice.rb:
|
7267
|
+
#: ../lib/puppet/provider/nameservice/directoryservice.rb:423
|
7290
7268
|
msgid "Could not create %{resource} %{name}: %{detail}"
|
7291
7269
|
msgstr "%{resource} %{name}を作成できませんでした: %{detail}"
|
7292
7270
|
|
@@ -7367,7 +7345,7 @@ msgid "No AIX group exists with a group name or gid of %{group}!"
|
|
7367
7345
|
msgstr "グループ名またはgidが%{group}のAIXグループは存在しません。"
|
7368
7346
|
|
7369
7347
|
#: ../lib/puppet/provider/group/groupadd.rb:13
|
7370
|
-
#: ../lib/puppet/provider/group/pw.rb:
|
7348
|
+
#: ../lib/puppet/provider/group/pw.rb:17
|
7371
7349
|
msgid "GID must be an integer"
|
7372
7350
|
msgstr "GIDは整数でなければなりません。"
|
7373
7351
|
|
@@ -7406,7 +7384,7 @@ msgid ""
|
|
7406
7384
|
msgstr "autogen_id()は、リソースタイプ%{resource_type}に対してIDの自動生成をサポートしていません。"
|
7407
7385
|
|
7408
7386
|
#: ../lib/puppet/provider/nameservice.rb:169
|
7409
|
-
#: ../lib/puppet/provider/nameservice/directoryservice.rb:
|
7387
|
+
#: ../lib/puppet/provider/nameservice/directoryservice.rb:378
|
7410
7388
|
msgid "already exists"
|
7411
7389
|
msgstr "すでに存在しています。"
|
7412
7390
|
|
@@ -7420,7 +7398,7 @@ msgstr "Nameserviceコマンドは配列でなくてはなりません。"
|
|
7420
7398
|
|
7421
7399
|
#: ../lib/puppet/provider/nameservice.rb:282
|
7422
7400
|
#: ../lib/puppet/provider/nameservice/directoryservice.rb:337
|
7423
|
-
#: ../lib/puppet/provider/nameservice/directoryservice.rb:
|
7401
|
+
#: ../lib/puppet/provider/nameservice/directoryservice.rb:368
|
7424
7402
|
msgid "Could not set %{param} on %{resource}[%{name}]: %{detail}"
|
7425
7403
|
msgstr "%{resource}[%{name}]の%{param}を設定できませんでした: %{detail}"
|
7426
7404
|
|
@@ -7446,15 +7424,15 @@ msgstr "パスワードを確認し、再試行してください。"
|
|
7446
7424
|
msgid "Invalid id_type %{id_type}. Only 'uid' and 'gid' supported"
|
7447
7425
|
msgstr "無効なid_type %{id_type}。サポートされているのは'uid'と'gid'のみです。"
|
7448
7426
|
|
7449
|
-
#: ../lib/puppet/provider/nameservice/directoryservice.rb:
|
7427
|
+
#: ../lib/puppet/provider/nameservice/directoryservice.rb:395
|
7450
7428
|
msgid "Could not set GeneratedUID for %{resource} %{name}: %{detail}"
|
7451
7429
|
msgstr "%{resource} %{name}のGeneratedUIDを設定できませんでした: %{detail}"
|
7452
7430
|
|
7453
|
-
#: ../lib/puppet/provider/nameservice/directoryservice.rb:
|
7431
|
+
#: ../lib/puppet/provider/nameservice/directoryservice.rb:443
|
7454
7432
|
msgid "Could not remove %{member} from group: %{resource}, %{detail}"
|
7455
7433
|
msgstr "グループ: %{resource}から%{member}を削除できませんでした。%{detail}"
|
7456
7434
|
|
7457
|
-
#: ../lib/puppet/provider/nameservice/directoryservice.rb:
|
7435
|
+
#: ../lib/puppet/provider/nameservice/directoryservice.rb:457
|
7458
7436
|
msgid "Could not add %{new_member} to group: %{name}, %{detail}"
|
7459
7437
|
msgstr "グループ: %{name}に%{new_member}を追加できませんでした、%{detail}"
|
7460
7438
|
|
@@ -7850,33 +7828,33 @@ msgstr "Sunパッケージでは、パッケージソースを指定する必要
|
|
7850
7828
|
msgid "Package %{name} was not present after trying to install it"
|
7851
7829
|
msgstr "インストールを試みましたが、パッケージ%{name}が存在しませんでした。"
|
7852
7830
|
|
7853
|
-
#: ../lib/puppet/provider/package/windows.rb:
|
7831
|
+
#: ../lib/puppet/provider/package/windows.rb:93
|
7854
7832
|
msgid ""
|
7855
7833
|
"The package %{operation}ed successfully and the system is rebooting now."
|
7856
7834
|
msgstr "パッケージの%{operation}に成功しました。システムを再起動しています。"
|
7857
7835
|
|
7858
|
-
#: ../lib/puppet/provider/package/windows.rb:
|
7836
|
+
#: ../lib/puppet/provider/package/windows.rb:95
|
7859
7837
|
msgid ""
|
7860
7838
|
"The package %{operation}ed successfully, but the system must be rebooted."
|
7861
7839
|
msgstr "パッケージの%{operation}に成功しましたが、システムを再起動する必要があります。"
|
7862
7840
|
|
7863
|
-
#: ../lib/puppet/provider/package/windows.rb:
|
7841
|
+
#: ../lib/puppet/provider/package/windows.rb:97
|
7864
7842
|
msgid "Failed to %{operation}"
|
7865
7843
|
msgstr "%{operation}に失敗しました。"
|
7866
7844
|
|
7867
|
-
#: ../lib/puppet/provider/package/windows.rb:
|
7845
|
+
#: ../lib/puppet/provider/package/windows.rb:103
|
7868
7846
|
msgid "The source parameter cannot be empty when using the Windows provider."
|
7869
7847
|
msgstr "Windowsプロバイダを使用する場合、ソースパラメータを空にすることはできません。"
|
7870
7848
|
|
7871
|
-
#: ../lib/puppet/provider/package/windows/package.rb:
|
7849
|
+
#: ../lib/puppet/provider/package/windows/package.rb:53
|
7872
7850
|
msgid "The source parameter is required when using the Windows provider."
|
7873
7851
|
msgstr "Windowsプロバイダを使用する場合は、ソースパラメータが必要です。"
|
7874
7852
|
|
7875
|
-
#: ../lib/puppet/provider/package/windows/package.rb:
|
7853
|
+
#: ../lib/puppet/provider/package/windows/package.rb:61
|
7876
7854
|
msgid "The source does not exist: '%{source}'"
|
7877
7855
|
msgstr "ソースが存在しません: '%{source}'"
|
7878
7856
|
|
7879
|
-
#: ../lib/puppet/provider/package/windows/package.rb:
|
7857
|
+
#: ../lib/puppet/provider/package/windows/package.rb:64
|
7880
7858
|
msgid "Don't know how to install '%{source}'"
|
7881
7859
|
msgstr "'%{source}'のインストール方法が不明です。"
|
7882
7860
|
|
@@ -7901,16 +7879,11 @@ msgstr "パッケージ%{wanted}が見つかりませんでした。"
|
|
7901
7879
|
msgid "Failed to update to version %{should}, got version %{version} instead"
|
7902
7880
|
msgstr "バージョン%{should}へのアップデートに失敗しました。代わりにバージョン%{version}を取得しました。"
|
7903
7881
|
|
7904
|
-
#: ../lib/puppet/provider/parsedfile.rb:
|
7882
|
+
#: ../lib/puppet/provider/parsedfile.rb:46
|
7905
7883
|
msgid "Invalid filetype %{type}"
|
7906
7884
|
msgstr "無効なファイルタイプ%{type}"
|
7907
7885
|
|
7908
|
-
#: ../lib/puppet/provider/parsedfile.rb:
|
7909
|
-
msgid ""
|
7910
|
-
"Failed to read %{target}'s records when prefetching them. Reason: %{detail}"
|
7911
|
-
msgstr "%{target}の記録のプリフェッチ時に、読み込みに失敗しました。理由: %{detail}"
|
7912
|
-
|
7913
|
-
#: ../lib/puppet/provider/parsedfile.rb:287
|
7886
|
+
#: ../lib/puppet/provider/parsedfile.rb:268
|
7914
7887
|
msgid ""
|
7915
7888
|
"Could not prefetch %{resource} provider '%{name}' target '%{target}': "
|
7916
7889
|
"%{detail}. Treating as empty"
|
@@ -7918,15 +7891,15 @@ msgstr ""
|
|
7918
7891
|
"%{resource}プロバイダ'%{name}'ターゲット'%{target}'をprefetchできませんでした: "
|
7919
7892
|
"%{detail}。空として処理しています。"
|
7920
7893
|
|
7921
|
-
#: ../lib/puppet/provider/parsedfile.rb:
|
7894
|
+
#: ../lib/puppet/provider/parsedfile.rb:280
|
7922
7895
|
msgid "Prefetching %{target} for provider %{name} returned nil"
|
7923
7896
|
msgstr "プロバイダ%{name}のprefetch %{target}がnilを返しました。"
|
7924
7897
|
|
7925
|
-
#: ../lib/puppet/provider/parsedfile.rb:
|
7898
|
+
#: ../lib/puppet/provider/parsedfile.rb:353
|
7926
7899
|
msgid "Parsed Providers must define a default target"
|
7927
7900
|
msgstr "Parsed Providersはデフォルトターゲットを定義する必要があります。"
|
7928
7901
|
|
7929
|
-
#: ../lib/puppet/provider/parsedfile.rb:
|
7902
|
+
#: ../lib/puppet/provider/parsedfile.rb:442
|
7930
7903
|
msgid "Somehow got told to prefetch with no resource set"
|
7931
7904
|
msgstr "リソースセットなしでprefetchするよう指示されました。"
|
7932
7905
|
|
@@ -7942,46 +7915,21 @@ msgstr "%{file} plistには'label'キーが含まれていません。Puppetに
|
|
7942
7915
|
|
7943
7916
|
#: ../lib/puppet/provider/service/launchd.rb:204
|
7944
7917
|
msgid "Reading overrides plist, attempt %{i}"
|
7945
|
-
msgstr "
|
7918
|
+
msgstr "読み込みによってplistがオーバーライドされます。%{i}を試行します。"
|
7946
7919
|
|
7947
7920
|
#: ../lib/puppet/provider/service/launchd.rb:207
|
7948
7921
|
msgid "Unable to read overrides plist, too many attempts"
|
7949
|
-
msgstr "
|
7922
|
+
msgstr "オーバーライドされたplistを読み込めません。試行が多すぎます。"
|
7950
7923
|
|
7951
7924
|
#: ../lib/puppet/provider/service/launchd.rb:208
|
7952
7925
|
msgid "Overrides file could not be read, trying again."
|
7953
|
-
msgstr "
|
7926
|
+
msgstr "オーバーライドされたファイルが読み込めませんでした。もう一度試行しています。"
|
7954
7927
|
|
7955
7928
|
#. TRANSLATORS 'runsvdir' is a linux service name and should not be translated
|
7956
7929
|
#: ../lib/puppet/provider/service/runit.rb:93
|
7957
7930
|
msgid "Waiting 5 seconds for runsvdir to discover service %{service}"
|
7958
7931
|
msgstr "runsvdirがサービス%{service}を検出するまで5秒間待機します。"
|
7959
7932
|
|
7960
|
-
#: ../lib/puppet/provider/service/smf.rb:68
|
7961
|
-
msgid ""
|
7962
|
-
"Failed to get the FMRI of the %{service} service: The pattern '%{service}' "
|
7963
|
-
"matches multiple FMRIs! These are the FMRIs it matches: %{all_fmris}"
|
7964
|
-
msgstr ""
|
7965
|
-
"%{service}サービスのFMRI取得に失敗しました: パターン'%{service}'が複数のFMRIに一致しています! "
|
7966
|
-
"一致するFMRIは次のとおりです: %{all_fmris}"
|
7967
|
-
|
7968
|
-
#: ../lib/puppet/provider/service/smf.rb:83
|
7969
|
-
msgid ""
|
7970
|
-
"Cannot query if the %{service} service is complete: The concept of "
|
7971
|
-
"complete/incomplete services was introduced in Solaris 11.1. You are on a "
|
7972
|
-
"Solaris %{release} machine."
|
7973
|
-
msgstr ""
|
7974
|
-
"%{service}サービスが完了しているかどうかを問い合わせできません: サービスの完了/未完了というコンセプトはSolaris "
|
7975
|
-
"11.1で導入されました。あなたはSolaris %{release}マシンを使用しています。"
|
7976
|
-
|
7977
|
-
#: ../lib/puppet/provider/service/smf.rb:182
|
7978
|
-
msgid ""
|
7979
|
-
"The %{service} service is incomplete so its status will be reported as "
|
7980
|
-
":stopped. See `svcs -xv %{fmri}` for more details."
|
7981
|
-
msgstr ""
|
7982
|
-
"%{service}サービスは未完了なので、ステータスは次のように報告されます :停止。詳細については`svcs -xv "
|
7983
|
-
"%{fmri}`を参照してください。"
|
7984
|
-
|
7985
7933
|
#: ../lib/puppet/provider/service/windows.rb:22
|
7986
7934
|
msgid "Cannot enable %{resource_name}, error was: %{detail}"
|
7987
7935
|
msgstr "%{resource_name}を有効にできません。エラー: %{detail}"
|
@@ -8285,7 +8233,7 @@ msgid ""
|
|
8285
8233
|
"Could not find resource %{resource} when converting %{message} resources"
|
8286
8234
|
msgstr "%{message}リソースの変換中にリソース%{resource}が見つかりませんでした。"
|
8287
8235
|
|
8288
|
-
#: ../lib/puppet/resource/status.rb:139 ../lib/puppet/transaction.rb:
|
8236
|
+
#: ../lib/puppet/resource/status.rb:139 ../lib/puppet/transaction.rb:264
|
8289
8237
|
msgid "Could not evaluate: %{detail}"
|
8290
8238
|
msgstr "検証できませんでした: %{detail}"
|
8291
8239
|
|
@@ -8464,62 +8412,58 @@ msgid ""
|
|
8464
8412
|
"Using --configprint is deprecated. Use 'puppet config <subcommand>' instead."
|
8465
8413
|
msgstr "--configprintの使用は廃止予定です。代わりに'puppet config <subcommand>'を使用してください。"
|
8466
8414
|
|
8467
|
-
#: ../lib/puppet/settings.rb:
|
8468
|
-
msgid "Could not load %{file}: %{detail}"
|
8469
|
-
msgstr "%{file}を読み込めませんでした: %{detail}"
|
8470
|
-
|
8471
|
-
#: ../lib/puppet/settings.rb:700
|
8415
|
+
#: ../lib/puppet/settings.rb:695
|
8472
8416
|
msgid "Invalid setting type '%{type}'"
|
8473
8417
|
msgstr "無効な設定タイプ'%{type}'"
|
8474
8418
|
|
8475
|
-
#: ../lib/puppet/settings.rb:
|
8419
|
+
#: ../lib/puppet/settings.rb:839
|
8476
8420
|
msgid ""
|
8477
8421
|
"Unknown searchpath case: %{source_type} for the %{source} settings path "
|
8478
8422
|
"element."
|
8479
8423
|
msgstr "不明なsearchpathケース: %{source}設定パス要素の%{source_type}。"
|
8480
8424
|
|
8481
|
-
#: ../lib/puppet/settings.rb:
|
8425
|
+
#: ../lib/puppet/settings.rb:901
|
8482
8426
|
msgid "setting definition for '%{name}' is not a hash!"
|
8483
8427
|
msgstr "'%{name}'の設定定義はハッシュではありません。"
|
8484
8428
|
|
8485
|
-
#: ../lib/puppet/settings.rb:
|
8429
|
+
#: ../lib/puppet/settings.rb:906
|
8486
8430
|
msgid "Setting %{name} is already defined"
|
8487
8431
|
msgstr "%{name}の設定はすでに定義されています。"
|
8488
8432
|
|
8489
|
-
#: ../lib/puppet/settings.rb:
|
8433
|
+
#: ../lib/puppet/settings.rb:910
|
8490
8434
|
msgid "Setting %{name} is already using short name '%{short}'"
|
8491
8435
|
msgstr "%{name}の設定はすでにショートネーム'%{short}'を使用しています。"
|
8492
8436
|
|
8493
|
-
#: ../lib/puppet/settings.rb:
|
8437
|
+
#: ../lib/puppet/settings.rb:1167
|
8494
8438
|
msgid "Setting %{name} is deprecated."
|
8495
8439
|
msgstr "%{name}の設定は廃止予定です。"
|
8496
8440
|
|
8497
8441
|
#. TRANSLATORS 'puppet.conf' is a file name and should not be translated
|
8498
|
-
#: ../lib/puppet/settings.rb:
|
8442
|
+
#: ../lib/puppet/settings.rb:1172
|
8499
8443
|
msgid "Setting %{name} is deprecated in puppet.conf."
|
8500
8444
|
msgstr "%{name}の設定はpuppet.confで廃止予定です。"
|
8501
8445
|
|
8502
|
-
#: ../lib/puppet/settings.rb:
|
8446
|
+
#: ../lib/puppet/settings.rb:1339
|
8503
8447
|
msgid "Error converting value for param '%{name}': %{detail}"
|
8504
8448
|
msgstr "param '%{name}'の値の変換エラー: %{detail}"
|
8505
8449
|
|
8506
|
-
#: ../lib/puppet/settings.rb:
|
8450
|
+
#: ../lib/puppet/settings.rb:1363
|
8507
8451
|
msgid "Could not find value for %{expression}"
|
8508
8452
|
msgstr "%{expression}の値が見つかりませんでした。"
|
8509
8453
|
|
8510
8454
|
#. TRANSLATORS '$environment' is a Puppet specific variable and should not be
|
8511
8455
|
#. translated
|
8512
|
-
#: ../lib/puppet/settings.rb:
|
8456
|
+
#: ../lib/puppet/settings.rb:1373
|
8513
8457
|
msgid ""
|
8514
8458
|
"You cannot interpolate $environment within '%{setting_name}' when using "
|
8515
8459
|
"directory environments."
|
8516
8460
|
msgstr "ディレクトリenvidonmentの使用中は、'%{setting_name}'内で$environmentを補間できません。"
|
8517
8461
|
|
8518
|
-
#: ../lib/puppet/settings.rb:
|
8462
|
+
#: ../lib/puppet/settings.rb:1374
|
8519
8463
|
msgid "Its value will remain %{value}."
|
8520
8464
|
msgstr "値は%{value}のままです。"
|
8521
8465
|
|
8522
|
-
#: ../lib/puppet/settings.rb:
|
8466
|
+
#: ../lib/puppet/settings.rb:1405
|
8523
8467
|
msgid "Attempt to assign a value to unknown setting %{name}"
|
8524
8468
|
msgstr "未知の設定%{name}に値を割り当てようとしています。"
|
8525
8469
|
|
@@ -8794,17 +8738,17 @@ msgstr "無効なCSR属性。ハッシュのインスタンスが要求されて
|
|
8794
8738
|
msgid "unexpected attributes %{keys} in %{path}"
|
8795
8739
|
msgstr "%{path}に予期せぬ属性%{keys}"
|
8796
8740
|
|
8797
|
-
#: ../lib/puppet/ssl/host.rb:
|
8741
|
+
#: ../lib/puppet/ssl/host.rb:154
|
8798
8742
|
msgid "No certificate to validate."
|
8799
8743
|
msgstr "認証する証明書がありません。"
|
8800
8744
|
|
8801
|
-
#: ../lib/puppet/ssl/host.rb:
|
8745
|
+
#: ../lib/puppet/ssl/host.rb:155
|
8802
8746
|
msgid ""
|
8803
8747
|
"No private key with which to validate certificate with fingerprint: "
|
8804
8748
|
"%{fingerprint}"
|
8805
8749
|
msgstr "フィンガープリント: %{fingerprint}を持つ証明書の認証に用いる秘密キーがありません。"
|
8806
8750
|
|
8807
|
-
#: ../lib/puppet/ssl/host.rb:
|
8751
|
+
#: ../lib/puppet/ssl/host.rb:157
|
8808
8752
|
msgid ""
|
8809
8753
|
"The certificate retrieved from the master does not match the agent's private key. Did you forget to run as root?\n"
|
8810
8754
|
"Certificate fingerprint: %{fingerprint}\n"
|
@@ -8812,19 +8756,19 @@ msgid ""
|
|
8812
8756
|
"On the master:\n"
|
8813
8757
|
" puppetserver ca clean --certname %{cert_name}\n"
|
8814
8758
|
"On the agent:\n"
|
8815
|
-
" 1. puppet ssl clean
|
8816
|
-
" 2. puppet
|
8759
|
+
" 1. puppet ssl clean\n"
|
8760
|
+
" 2. puppet agent -t\n"
|
8817
8761
|
msgstr ""
|
8818
8762
|
"masterから取得した証明書がagentのプライベートキーと一致しません。rootとして実行するのを忘れていませんか?\n"
|
8819
8763
|
"証明書のフィンガープリント: %{fingerprint}\n"
|
8820
8764
|
"この問題を修正するには、masterとagent両方の証明書を削除してから、Puppet実行を開始してください。これにより、自動的に証明書が再作成されます。\n"
|
8821
|
-
"master
|
8765
|
+
"masterで以下を行います。\n"
|
8822
8766
|
" puppetserver ca clean --certname %{cert_name}\n"
|
8823
|
-
"agent
|
8824
|
-
" 1. puppet ssl clean
|
8825
|
-
" 2. puppet
|
8767
|
+
"agentで以下を行います。\n"
|
8768
|
+
" 1. puppet ssl clean\n"
|
8769
|
+
" 2. puppet agent -t\n"
|
8826
8770
|
|
8827
|
-
#: ../lib/puppet/ssl/host.rb:
|
8771
|
+
#: ../lib/puppet/ssl/host.rb:239
|
8828
8772
|
msgid ""
|
8829
8773
|
"The local CSR does not match the agent's public key.\n"
|
8830
8774
|
"CSR fingerprint: %{fingerprint}\n"
|
@@ -8832,19 +8776,19 @@ msgid ""
|
|
8832
8776
|
"Agent public key: %{agent_public_key}\n"
|
8833
8777
|
"To fix this, remove the CSR from the agent and then start a puppet run, which will automatically regenerate a CSR.\n"
|
8834
8778
|
"On the agent:\n"
|
8835
|
-
" 1. puppet ssl clean
|
8836
|
-
" 2. puppet
|
8779
|
+
" 1. puppet ssl clean\n"
|
8780
|
+
" 2. puppet agent -t\n"
|
8837
8781
|
msgstr ""
|
8838
8782
|
"ローカルのCSRがagentの公開キーと一致しません。\n"
|
8839
8783
|
"CSRのフィンガープリント: %{fingerprint}\n"
|
8840
8784
|
"CSRの公開キー: %{csr_public_key}\n"
|
8841
8785
|
"agentの公開キー: %{agent_public_key}\n"
|
8842
8786
|
"この問題を修正するには、agentのCSRを削除してから、Puppet実行を開始してください。これにより、自動的にCSRが再作成されます。\n"
|
8843
|
-
"agent
|
8844
|
-
" 1. puppet ssl clean
|
8845
|
-
" 2. puppet
|
8787
|
+
"agentで以下を行います。\n"
|
8788
|
+
" 1. puppet ssl clean\n"
|
8789
|
+
" 2. puppet agent -t\n"
|
8846
8790
|
|
8847
|
-
#: ../lib/puppet/ssl/host.rb:
|
8791
|
+
#: ../lib/puppet/ssl/host.rb:255
|
8848
8792
|
msgid ""
|
8849
8793
|
"The CSR retrieved from the master does not match the agent's public key.\n"
|
8850
8794
|
"CSR fingerprint: %{fingerprint}\n"
|
@@ -8854,46 +8798,46 @@ msgid ""
|
|
8854
8798
|
"On the master:\n"
|
8855
8799
|
" puppetserver ca clean --certname %{cert_name}\n"
|
8856
8800
|
"On the agent:\n"
|
8857
|
-
" 1. puppet ssl clean
|
8858
|
-
" 2. puppet
|
8801
|
+
" 1. puppet ssl clean\n"
|
8802
|
+
" 2. puppet agent -t\n"
|
8859
8803
|
msgstr ""
|
8860
8804
|
"masterから取得したCSRがagentの公開キーと一致しません。\n"
|
8861
8805
|
"CSRのフィンガープリント: %{fingerprint}\n"
|
8862
8806
|
"CSRの公開キー: %{csr_public_key}\n"
|
8863
8807
|
"agentの公開キー: %{agent_public_key}\n"
|
8864
|
-
"この問題を修正するには、masterとagent
|
8865
|
-
"master
|
8808
|
+
"この問題を修正するには、masterとagentの両方のCSRを削除してから、Puppet実行を開始してください。これにより、自動的にCSRが再作成されます。\n"
|
8809
|
+
"masterで以下を行います。\n"
|
8866
8810
|
" puppetserver ca clean --certname %{cert_name}\n"
|
8867
|
-
"agent
|
8868
|
-
" 1. puppet ssl clean
|
8869
|
-
" 2. puppet
|
8811
|
+
"agentで以下を行います。\n"
|
8812
|
+
" 1. puppet ssl clean\n"
|
8813
|
+
" 2. puppet agent -t\n"
|
8870
8814
|
|
8871
|
-
#: ../lib/puppet/ssl/host.rb:
|
8815
|
+
#: ../lib/puppet/ssl/host.rb:308 ../lib/puppet/ssl/host.rb:329
|
8872
8816
|
msgid "Could not request certificate: %{message}"
|
8873
8817
|
msgstr "証明書をリクエストできませんでした: %{message}"
|
8874
8818
|
|
8875
|
-
#: ../lib/puppet/ssl/host.rb:
|
8819
|
+
#: ../lib/puppet/ssl/host.rb:310
|
8876
8820
|
msgid "Exiting; failed to retrieve certificate and waitforcert is disabled"
|
8877
8821
|
msgstr "終了しています; 証明書の取得に失敗し、waitforcertが無効になっています。"
|
8878
8822
|
|
8879
|
-
#: ../lib/puppet/ssl/host.rb:
|
8823
|
+
#: ../lib/puppet/ssl/host.rb:319
|
8880
8824
|
msgid "Exiting; no certificate found and waitforcert is disabled"
|
8881
8825
|
msgstr "終了しています; 証明書が見つからず、waitforcertが無効になっています。"
|
8882
8826
|
|
8883
|
-
#: ../lib/puppet/ssl/host.rb:
|
8827
|
+
#: ../lib/puppet/ssl/host.rb:327
|
8884
8828
|
msgid "Did not receive certificate"
|
8885
8829
|
msgstr "証明書を受信していません。"
|
8886
8830
|
|
8887
|
-
#: ../lib/puppet/ssl/host.rb:
|
8831
|
+
#: ../lib/puppet/ssl/host.rb:367
|
8888
8832
|
msgid ""
|
8889
8833
|
"Response from the CA did not contain a valid certificate request: %{message}"
|
8890
8834
|
msgstr "CAからの応答に有効な証明書要求が含まれていませんでした: %{message}"
|
8891
8835
|
|
8892
|
-
#: ../lib/puppet/ssl/host.rb:
|
8836
|
+
#: ../lib/puppet/ssl/host.rb:373
|
8893
8837
|
msgid "Could not download certificate request: %{message}"
|
8894
8838
|
msgstr "証明書リクエストをダウンロードできませんでした: %{message}"
|
8895
8839
|
|
8896
|
-
#: ../lib/puppet/ssl/host.rb:
|
8840
|
+
#: ../lib/puppet/ssl/host.rb:400
|
8897
8841
|
msgid ""
|
8898
8842
|
"Failed attempting to load CRL from %{crl_path}! The CRL below caused the error '%{error}':\n"
|
8899
8843
|
"%{crl}"
|
@@ -8901,45 +8845,45 @@ msgstr ""
|
|
8901
8845
|
"%{crl_path}からCRLを読み込めませんでした。以下のCRLでエラー'%{error}'が発生しました:\n"
|
8902
8846
|
"%{crl}"
|
8903
8847
|
|
8904
|
-
#: ../lib/puppet/ssl/host.rb:
|
8848
|
+
#: ../lib/puppet/ssl/host.rb:428
|
8905
8849
|
msgid "The CA certificate at %{file_path} is invalid: %{message}"
|
8906
8850
|
msgstr "%{file_path}のCA証明書が無効です: %{message}"
|
8907
8851
|
|
8908
|
-
#: ../lib/puppet/ssl/host.rb:
|
8852
|
+
#: ../lib/puppet/ssl/host.rb:452
|
8909
8853
|
msgid "No valid PEM-encoded certificates."
|
8910
8854
|
msgstr "有効なPEMエンコード証明書がありません。"
|
8911
8855
|
|
8912
|
-
#: ../lib/puppet/ssl/host.rb:
|
8856
|
+
#: ../lib/puppet/ssl/host.rb:459
|
8913
8857
|
msgid "Could not parse certificate: %{message}"
|
8914
8858
|
msgstr "証明書を解析できませんでした: %{message}"
|
8915
8859
|
|
8916
|
-
#: ../lib/puppet/ssl/host.rb:
|
8860
|
+
#: ../lib/puppet/ssl/host.rb:482
|
8917
8861
|
msgid "Could not download CRLs: %{message}"
|
8918
8862
|
msgstr "CRLをダウンロードできませんでした: %{message}"
|
8919
8863
|
|
8920
|
-
#: ../lib/puppet/ssl/host.rb:
|
8864
|
+
#: ../lib/puppet/ssl/host.rb:501
|
8921
8865
|
msgid ""
|
8922
8866
|
"Response from the CA did not contain a valid CA certificate: %{message}"
|
8923
8867
|
msgstr "CAからの応答に有効なCA証明書が含まれていませんでした: %{message}"
|
8924
8868
|
|
8925
|
-
#: ../lib/puppet/ssl/host.rb:
|
8869
|
+
#: ../lib/puppet/ssl/host.rb:504
|
8926
8870
|
msgid "Could not download CA certificate: %{message}"
|
8927
8871
|
msgstr "CA証明書をダウンロードできませんでした: %{message}"
|
8928
8872
|
|
8929
|
-
#: ../lib/puppet/ssl/host.rb:
|
8873
|
+
#: ../lib/puppet/ssl/host.rb:544
|
8930
8874
|
msgid "The certificate at %{file_path} is invalid. Could not load."
|
8931
8875
|
msgstr "%{file_path}の証明書が無効です。読み込めませんでした。"
|
8932
8876
|
|
8933
|
-
#: ../lib/puppet/ssl/host.rb:
|
8877
|
+
#: ../lib/puppet/ssl/host.rb:565
|
8934
8878
|
msgid ""
|
8935
8879
|
"Response from the CA did not contain a valid certificate for %{cert_name}."
|
8936
8880
|
msgstr "CAからの応答に%{cert_name}の有効な証明書が含まれていませんでした。"
|
8937
8881
|
|
8938
|
-
#: ../lib/puppet/ssl/host.rb:
|
8882
|
+
#: ../lib/puppet/ssl/host.rb:569
|
8939
8883
|
msgid "No certificate for %{cert_name} on CA"
|
8940
8884
|
msgstr "CAに%{cert_name}の証明書がありません"
|
8941
8885
|
|
8942
|
-
#: ../lib/puppet/ssl/host.rb:
|
8886
|
+
#: ../lib/puppet/ssl/host.rb:572
|
8943
8887
|
msgid "Could not download host certificate: %{message}"
|
8944
8888
|
msgstr "ホスト証明書をダウンロードできませんでした: %{message}"
|
8945
8889
|
|
@@ -9026,64 +8970,64 @@ msgstr "Json構文チェッカー: 無効なアクセプタ: '%{klass}'が与え
|
|
9026
8970
|
msgid "JSON syntax checker: Cannot parse invalid JSON string. \"%{message}\""
|
9027
8971
|
msgstr "JSON構文チェッカー: 無効なJSON文字列は解析できません \"%{message}\""
|
9028
8972
|
|
9029
|
-
#: ../lib/puppet/transaction.rb:
|
8973
|
+
#: ../lib/puppet/transaction.rb:84
|
9030
8974
|
msgid "Some pre-run checks failed"
|
9031
8975
|
msgstr "一部の実行前チェックに失敗しました。"
|
9032
8976
|
|
9033
|
-
#: ../lib/puppet/transaction.rb:
|
8977
|
+
#: ../lib/puppet/transaction.rb:100
|
9034
8978
|
msgid "Applying configuration version '%{version}'"
|
9035
8979
|
msgstr "設定バージョン'%{version}'を適用しています。"
|
9036
8980
|
|
9037
|
-
#: ../lib/puppet/transaction.rb:
|
8981
|
+
#: ../lib/puppet/transaction.rb:123
|
9038
8982
|
msgid "Provider %{name} is not functional on this host"
|
9039
8983
|
msgstr "このホストではプロバイダ%{name}が機能していません。"
|
9040
8984
|
|
9041
|
-
#: ../lib/puppet/transaction.rb:
|
8985
|
+
#: ../lib/puppet/transaction.rb:139
|
9042
8986
|
msgid "Could not find a suitable provider for %{type}"
|
9043
8987
|
msgstr "%{type}の適切なプロバイダが見つかりませんでした。"
|
9044
8988
|
|
9045
|
-
#: ../lib/puppet/transaction.rb:
|
8989
|
+
#: ../lib/puppet/transaction.rb:146
|
9046
8990
|
msgid "post_resource_eval failed for provider %{provider}"
|
9047
8991
|
msgstr "プロバイダ%{provider}のpost_resource_evalに失敗しました。"
|
9048
8992
|
|
9049
|
-
#: ../lib/puppet/transaction.rb:
|
8993
|
+
#: ../lib/puppet/transaction.rb:163
|
9050
8994
|
msgid "resource is part of a dependency cycle"
|
9051
8995
|
msgstr "リソースが循環依存の一部です。"
|
9052
8996
|
|
9053
|
-
#: ../lib/puppet/transaction.rb:
|
8997
|
+
#: ../lib/puppet/transaction.rb:165
|
9054
8998
|
msgid "One or more resource dependency cycles detected in graph"
|
9055
8999
|
msgstr "グラフ内で複数のリソース循環依存が検出されました。"
|
9056
9000
|
|
9057
|
-
#: ../lib/puppet/transaction.rb:
|
9001
|
+
#: ../lib/puppet/transaction.rb:178
|
9058
9002
|
msgid "Somehow left a component in the relationship graph"
|
9059
9003
|
msgstr "原因は不明ですが、関連性グラフにコンポーネントが残されています。"
|
9060
9004
|
|
9061
|
-
#: ../lib/puppet/transaction.rb:
|
9005
|
+
#: ../lib/puppet/transaction.rb:180
|
9062
9006
|
msgid "Starting to evaluate the resource"
|
9063
9007
|
msgstr "リソースの検証を開始しています。"
|
9064
9008
|
|
9065
|
-
#: ../lib/puppet/transaction.rb:
|
9009
|
+
#: ../lib/puppet/transaction.rb:182
|
9066
9010
|
msgid "Evaluated in %{seconds} seconds"
|
9067
9011
|
msgstr "%{seconds}秒で検証されました。"
|
9068
9012
|
|
9069
|
-
#: ../lib/puppet/transaction.rb:
|
9013
|
+
#: ../lib/puppet/transaction.rb:295
|
9070
9014
|
msgid "Dependency %{dep} has failures: %{status}"
|
9071
9015
|
msgstr "依存関係%{dep}に不具合があります: %{status}"
|
9072
9016
|
|
9073
|
-
#: ../lib/puppet/transaction.rb:
|
9017
|
+
#: ../lib/puppet/transaction.rb:315
|
9074
9018
|
msgid "Prefetch failed for %{type_name} provider '%{name}'"
|
9075
9019
|
msgstr "%{type_name}プロバイダ'%{name}'のprefetchに失敗しました。"
|
9076
9020
|
|
9077
9021
|
#. TRANSLATORS `prefetch` is a function name and should not be translated
|
9078
|
-
#: ../lib/puppet/transaction.rb:
|
9022
|
+
#: ../lib/puppet/transaction.rb:365
|
9079
9023
|
msgid "Could not prefetch %{type_name} provider '%{name}': %{detail}"
|
9080
9024
|
msgstr "%{type_name}プロバイダ '%{name}'をprefetchできませんでした: %{detail}"
|
9081
9025
|
|
9082
|
-
#: ../lib/puppet/transaction.rb:
|
9026
|
+
#: ../lib/puppet/transaction.rb:394
|
9083
9027
|
msgid "Skipping because of failed dependencies"
|
9084
9028
|
msgstr "依存関係の不具合のため、スキップしています。"
|
9085
9029
|
|
9086
|
-
#: ../lib/puppet/transaction.rb:
|
9030
|
+
#: ../lib/puppet/transaction.rb:399
|
9087
9031
|
msgid "Skipping because provider prefetch failed"
|
9088
9032
|
msgstr "プロバイダのprefetchが失敗したため、スキップしています。"
|
9089
9033
|
|
@@ -9122,11 +9066,11 @@ msgid "Triggered '%{callback}' from %{count} event"
|
|
9122
9066
|
msgid_plural "Triggered '%{callback}' from %{count} events"
|
9123
9067
|
msgstr[0] "%{count}イベントから'%{callback}'を開始しました。"
|
9124
9068
|
|
9125
|
-
#: ../lib/puppet/transaction/event_manager.rb:
|
9069
|
+
#: ../lib/puppet/transaction/event_manager.rb:154
|
9126
9070
|
msgid "Failed to call %{callback}: %{detail}"
|
9127
9071
|
msgstr "%{callback}のコールに失敗しました: %{detail}"
|
9128
9072
|
|
9129
|
-
#: ../lib/puppet/transaction/event_manager.rb:
|
9073
|
+
#: ../lib/puppet/transaction/event_manager.rb:164
|
9130
9074
|
msgid "Would have triggered '%{callback}' from %{count} event"
|
9131
9075
|
msgid_plural "Would have triggered '%{callback}' from %{count} events"
|
9132
9076
|
msgstr[0] "%{count}イベントから'%{callback}'を開始するはずでした。"
|
@@ -9172,27 +9116,23 @@ msgstr "スケジュール%{name}が見つかりませんでした。"
|
|
9172
9116
|
msgid "change from %s to %s failed: "
|
9173
9117
|
msgstr "%s から %s への変更に失敗しました: "
|
9174
9118
|
|
9175
|
-
#: ../lib/puppet/transaction/resource_harness.rb:
|
9176
|
-
msgid "could not create change error message for %{name}"
|
9177
|
-
msgstr "%{name}の変更エラーメッセージを作成できませんでした。"
|
9178
|
-
|
9179
|
-
#: ../lib/puppet/transaction/resource_harness.rb:215
|
9119
|
+
#: ../lib/puppet/transaction/resource_harness.rb:212
|
9180
9120
|
msgid "audit change: previously recorded value %s has been changed to %s"
|
9181
9121
|
msgstr "オーディット変更: 以前に記録された値 %s が %sに変更されました。"
|
9182
9122
|
|
9183
|
-
#: ../lib/puppet/transaction/resource_harness.rb:
|
9123
|
+
#: ../lib/puppet/transaction/resource_harness.rb:222
|
9184
9124
|
msgid " (previously recorded value was %s)"
|
9185
9125
|
msgstr " (以前に記録された値は%s)"
|
9186
9126
|
|
9187
|
-
#: ../lib/puppet/transaction/resource_harness.rb:
|
9127
|
+
#: ../lib/puppet/transaction/resource_harness.rb:229
|
9188
9128
|
msgid "current_value %s, should be %s (noop)"
|
9189
9129
|
msgstr "current_value %s、%s にする必要があります(noop)。"
|
9190
9130
|
|
9191
|
-
#: ../lib/puppet/transaction/resource_harness.rb:
|
9131
|
+
#: ../lib/puppet/transaction/resource_harness.rb:238
|
9192
9132
|
msgid "changed %s to %s"
|
9193
9133
|
msgstr "%s から%sへ変更しました。"
|
9194
9134
|
|
9195
|
-
#: ../lib/puppet/transaction/resource_harness.rb:
|
9135
|
+
#: ../lib/puppet/transaction/resource_harness.rb:261
|
9196
9136
|
msgid "audit change: newly-recorded value %s"
|
9197
9137
|
msgstr "オーディット変更: 新たに記録された値%s"
|
9198
9138
|
|
@@ -9340,10 +9280,6 @@ msgstr "try_sleepをマイナスの数字にすることはできません。 "
|
|
9340
9280
|
msgid "Check %{value} exceeded timeout"
|
9341
9281
|
msgstr "チェック%{value}がタイムアウトしました。 "
|
9342
9282
|
|
9343
|
-
#: ../lib/puppet/type/exec.rb:589
|
9344
|
-
msgid "'%{cmd}' won't be executed because of failed check '%{check}'"
|
9345
|
-
msgstr "チェック'%{check}'が失敗したため、'%{cmd}'は実行されません。"
|
9346
|
-
|
9347
9283
|
#: ../lib/puppet/type/file.rb:56
|
9348
9284
|
msgid "File paths must be fully qualified, not '%{path}'"
|
9349
9285
|
msgstr "ファイルパスは'%{path}'ではなく、完全修飾でなければなりません。"
|
@@ -9500,26 +9436,42 @@ msgid ""
|
|
9500
9436
|
msgstr ""
|
9501
9437
|
"`source_permissions`パラメータは廃止予定です。 明示的に `owner`、` group`、 `mode`を設定してください。"
|
9502
9438
|
|
9503
|
-
#: ../lib/puppet/type/filebucket.rb:
|
9439
|
+
#: ../lib/puppet/type/filebucket.rb:69
|
9504
9440
|
msgid "You can only have one filebucket path"
|
9505
9441
|
msgstr "filebucketパスは1つだけしか設定できません。"
|
9506
9442
|
|
9507
|
-
#: ../lib/puppet/type/filebucket.rb:
|
9443
|
+
#: ../lib/puppet/type/filebucket.rb:73
|
9508
9444
|
msgid "Filebucket paths must be absolute"
|
9509
9445
|
msgstr "Filebucketパスは絶対パスでなければなりません。"
|
9510
9446
|
|
9511
|
-
#: ../lib/puppet/type/filebucket.rb:
|
9447
|
+
#: ../lib/puppet/type/filebucket.rb:109
|
9512
9448
|
msgid "Could not create %{type} filebucket: %{detail}"
|
9513
9449
|
msgstr "%{type} filebucketを作成できませんでした: %{detail}"
|
9514
9450
|
|
9515
|
-
#: ../lib/puppet/type/group.rb:
|
9451
|
+
#: ../lib/puppet/type/group.rb:61
|
9516
9452
|
msgid "GID cannot be deleted"
|
9517
9453
|
msgstr "GIDは削除できません。"
|
9518
9454
|
|
9519
|
-
#: ../lib/puppet/type/group.rb:
|
9455
|
+
#: ../lib/puppet/type/group.rb:73
|
9520
9456
|
msgid "Invalid GID %{gid}"
|
9521
9457
|
msgstr "無効なGID %{gid}"
|
9522
9458
|
|
9459
|
+
#: ../lib/puppet/type/group.rb:92
|
9460
|
+
msgid ""
|
9461
|
+
"The members property must be specified as either an array of strings, or as "
|
9462
|
+
"a single string consisting of a comma-separated list of members"
|
9463
|
+
msgstr "メンバープロパティには、メンバーのコンマ区切りリストを構成する文字列の配列または単一の文字列を指定してください。"
|
9464
|
+
|
9465
|
+
#: ../lib/puppet/type/group.rb:96
|
9466
|
+
msgid "User names must be provided, not UID numbers."
|
9467
|
+
msgstr "UID番号ではなく、ユーザ名を指定する必要があります。"
|
9468
|
+
|
9469
|
+
#: ../lib/puppet/type/group.rb:100
|
9470
|
+
msgid ""
|
9471
|
+
"User names must not be empty. If you want to specify \"no users\" pass an "
|
9472
|
+
"empty array"
|
9473
|
+
msgstr "ユーザ名を空にすることはできません。\"no users\"を指定する場合は、空配列を渡してください。"
|
9474
|
+
|
9523
9475
|
#: ../lib/puppet/type/package.rb:114 ../lib/puppet/type/package.rb:128
|
9524
9476
|
msgid "Could not update: %{detail}"
|
9525
9477
|
msgstr "更新できませんでした: %{detail}"
|
@@ -9786,15 +9738,15 @@ msgstr "'%{path}'のURIへの変換に失敗しました: %{detail}"
|
|
9786
9738
|
msgid "path may not be nil"
|
9787
9739
|
msgstr "パスはnilにできません。"
|
9788
9740
|
|
9789
|
-
#: ../lib/puppet/util.rb:
|
9741
|
+
#: ../lib/puppet/util.rb:563
|
9790
9742
|
msgid "replace_file requires a block"
|
9791
9743
|
msgstr "replace_fileにはブロックが必要です。"
|
9792
9744
|
|
9793
|
-
#: ../lib/puppet/util.rb:
|
9745
|
+
#: ../lib/puppet/util.rb:567
|
9794
9746
|
msgid "replace_file default_mode: %{default_mode} is invalid"
|
9795
9747
|
msgstr "replace_file default_mode: %{default_mode}が無効です。"
|
9796
9748
|
|
9797
|
-
#: ../lib/puppet/util.rb:
|
9749
|
+
#: ../lib/puppet/util.rb:638
|
9798
9750
|
msgid "Is a directory: %{directory}"
|
9799
9751
|
msgstr "ディレクトリです: %{directory}"
|
9800
9752
|
|
@@ -9892,19 +9844,19 @@ msgstr "クラス%{const}はすでに%{klass}で定義されています。"
|
|
9892
9844
|
msgid "Already a generated class named %{klassname}"
|
9893
9845
|
msgstr "作成されたクラスにはすでに名前%{klassname}が付いています。"
|
9894
9846
|
|
9895
|
-
#: ../lib/puppet/util/command_line.rb:
|
9847
|
+
#: ../lib/puppet/util/command_line.rb:67
|
9896
9848
|
msgid "Could not initialize global default settings"
|
9897
9849
|
msgstr "グローバルデフォルト設定を初期化できませんでした。"
|
9898
9850
|
|
9899
|
-
#: ../lib/puppet/util/command_line.rb:
|
9851
|
+
#: ../lib/puppet/util/command_line.rb:166
|
9900
9852
|
msgid "Error: Could not parse application options: invalid option: %{opt}"
|
9901
9853
|
msgstr "エラー: アプリケーションオプションを解析できませんでした: 無効なオプション: %{opt}"
|
9902
9854
|
|
9903
|
-
#: ../lib/puppet/util/command_line.rb:
|
9855
|
+
#: ../lib/puppet/util/command_line.rb:169
|
9904
9856
|
msgid "See 'puppet help' for help on available puppet subcommands"
|
9905
9857
|
msgstr "利用可能なPuppetのサブコマンドに関するヘルプは、'puppet help'を参照してください。"
|
9906
9858
|
|
9907
|
-
#: ../lib/puppet/util/command_line.rb:
|
9859
|
+
#: ../lib/puppet/util/command_line.rb:182
|
9908
9860
|
msgid "Error: Unknown Puppet subcommand '%{cmd}'"
|
9909
9861
|
msgstr "エラー: 不明なPuppetサブコマンド'%{cmd}'"
|
9910
9862
|
|
@@ -10192,41 +10144,23 @@ msgstr "RAMから%{path}を削除しています。"
|
|
10192
10144
|
msgid "Writing %{path} to RAM"
|
10193
10145
|
msgstr "RAMに%{path}を書き込んでいます。"
|
10194
10146
|
|
10195
|
-
#: ../lib/puppet/util/filetype.rb:
|
10147
|
+
#: ../lib/puppet/util/filetype.rb:178
|
10196
10148
|
msgid "Could not retrieve user %{user}: %{detail}"
|
10197
10149
|
msgstr "ユーザ%{user}を検索できませんでした: %{detail}"
|
10198
10150
|
|
10199
|
-
#: ../lib/puppet/util/filetype.rb:
|
10200
|
-
|
10201
|
-
|
10202
|
-
"The %{path} user does not exist. Treating their crontab file as empty in "
|
10203
|
-
"case Puppet creates them in the middle of the run."
|
10204
|
-
msgstr ""
|
10205
|
-
"%{path}ユーザは存在しません。Puppetが実行中にこれらのユーザを作成した場合は、ユーザのcrontabファイルは空として処理されます。"
|
10206
|
-
|
10207
|
-
#: ../lib/puppet/util/filetype.rb:206 ../lib/puppet/util/filetype.rb:271
|
10208
|
-
#: ../lib/puppet/util/filetype.rb:322
|
10209
|
-
msgid ""
|
10210
|
-
"The %{path} user is not authorized to use cron. Their crontab file is "
|
10211
|
-
"treated as empty in case Puppet authorizes them in the middle of the run "
|
10212
|
-
"(by, for example, modifying the cron.deny or cron.allow files)."
|
10213
|
-
msgstr ""
|
10214
|
-
"%{path}ユーザのcron使用は認められていません。Puppetが実行中にこれらのユーザを認証した場合は(たとえば、cron.denyまたはcron.allowファイルの修正などにより)、ユーザのcrontabファイルは空として処理されます。"
|
10151
|
+
#: ../lib/puppet/util/filetype.rb:233 ../lib/puppet/util/filetype.rb:276
|
10152
|
+
msgid "User %{path} not authorized to use cron"
|
10153
|
+
msgstr "ユーザ%{path}にはcronを使用する権限はありません。"
|
10215
10154
|
|
10216
|
-
#: ../lib/puppet/util/filetype.rb:
|
10217
|
-
#: ../lib/puppet/util/filetype.rb:326
|
10155
|
+
#: ../lib/puppet/util/filetype.rb:235 ../lib/puppet/util/filetype.rb:278
|
10218
10156
|
msgid "Could not read crontab for %{path}: %{detail}"
|
10219
10157
|
msgstr "%{path}のcrontabを読み込めませんでした: %{detail}"
|
10220
10158
|
|
10221
|
-
#: ../lib/puppet/util/filetype.rb:
|
10222
|
-
msgid "Cannot write the %{path} user's crontab: The user does not exist"
|
10223
|
-
msgstr "%{path}ユーザのcrontabを記述できません: このユーザは存在しません。"
|
10224
|
-
|
10225
|
-
#: ../lib/puppet/util/filetype.rb:283 ../lib/puppet/util/filetype.rb:334
|
10159
|
+
#: ../lib/puppet/util/filetype.rb:243 ../lib/puppet/util/filetype.rb:286
|
10226
10160
|
msgid "Could not remove crontab for %{path}: %{detail}"
|
10227
10161
|
msgstr "%{path}のcrontabを削除できませんでした: %{detail}"
|
10228
10162
|
|
10229
|
-
#: ../lib/puppet/util/filetype.rb:
|
10163
|
+
#: ../lib/puppet/util/filetype.rb:258 ../lib/puppet/util/filetype.rb:302
|
10230
10164
|
msgid "Could not write crontab for %{path}: %{detail}"
|
10231
10165
|
msgstr "%{path}のcrontabを書き込めませんでした: %{detail}"
|
10232
10166
|
|
@@ -10301,7 +10235,7 @@ msgstr "Log.close_allが%{destinations}を閉じられませんでした。"
|
|
10301
10235
|
msgid "Logs require a level"
|
10302
10236
|
msgstr "ログにはレベルが必要です。"
|
10303
10237
|
|
10304
|
-
#: ../lib/puppet/util/log.rb:87 ../lib/puppet/util/log.rb:
|
10238
|
+
#: ../lib/puppet/util/log.rb:87 ../lib/puppet/util/log.rb:370
|
10305
10239
|
#: ../lib/puppet/util/windows/eventlog.rb:99
|
10306
10240
|
msgid "Invalid log level %{level}"
|
10307
10241
|
msgstr "無効なログレベル%{level}"
|
@@ -10314,11 +10248,11 @@ msgstr "無効なログレベル%{level}"
|
|
10314
10248
|
msgid "Unknown destination type %{dest}"
|
10315
10249
|
msgstr "不明な宛先タイプ%{dest}"
|
10316
10250
|
|
10317
|
-
#: ../lib/puppet/util/log.rb:
|
10251
|
+
#: ../lib/puppet/util/log.rb:171
|
10318
10252
|
msgid "Received a Log attribute with invalid encoding:%{log_message}"
|
10319
10253
|
msgstr "無効なエンコーディングのログ属性を受信しました:%{log_message}"
|
10320
10254
|
|
10321
|
-
#: ../lib/puppet/util/log.rb:
|
10255
|
+
#: ../lib/puppet/util/log.rb:173
|
10322
10256
|
msgid ""
|
10323
10257
|
"Backtrace:\n"
|
10324
10258
|
"%{backtrace}"
|
@@ -10326,30 +10260,30 @@ msgstr ""
|
|
10326
10260
|
"バックトレース:\n"
|
10327
10261
|
"%{backtrace}"
|
10328
10262
|
|
10329
|
-
#: ../lib/puppet/util/log.rb:
|
10263
|
+
#: ../lib/puppet/util/log.rb:227
|
10330
10264
|
msgid "Reopening log files"
|
10331
10265
|
msgstr "ログファイルを再度開いています。"
|
10332
10266
|
|
10333
10267
|
#. TRANSLATORS 'Puppet::Util::Log' refers to a Puppet source code class
|
10334
|
-
#: ../lib/puppet/util/log.rb:
|
10268
|
+
#: ../lib/puppet/util/log.rb:360
|
10335
10269
|
msgid "Puppet::Util::Log requires a message"
|
10336
10270
|
msgstr "Puppet::Util::Logにはメッセージが必要です。"
|
10337
10271
|
|
10338
10272
|
#. TRANSLATORS 'Puppet::Util::Log' refers to a Puppet source code class
|
10339
|
-
#: ../lib/puppet/util/log.rb:
|
10273
|
+
#: ../lib/puppet/util/log.rb:366
|
10340
10274
|
msgid "Puppet::Util::Log requires a log level"
|
10341
10275
|
msgstr "Puppet::Util::Logにはログレベルが必要です。"
|
10342
10276
|
|
10343
10277
|
#. TRANSLATORS 'Puppet::Util::Log' refers to a Puppet source code class
|
10344
|
-
#: ../lib/puppet/util/log.rb:
|
10278
|
+
#: ../lib/puppet/util/log.rb:368
|
10345
10279
|
msgid "Puppet::Util::Log requires a symbol or string"
|
10346
10280
|
msgstr "Puppet::Util::Logには記号または文字列が必要です。"
|
10347
10281
|
|
10348
|
-
#: ../lib/puppet/util/log.rb:
|
10282
|
+
#: ../lib/puppet/util/log.rb:399
|
10349
10283
|
msgid "Could not parse for environment %{environment}: %{msg}"
|
10350
10284
|
msgstr "environment%{environment}を解析できませんでした: %{msg}"
|
10351
10285
|
|
10352
|
-
#: ../lib/puppet/util/log.rb:
|
10286
|
+
#: ../lib/puppet/util/log.rb:401
|
10353
10287
|
msgid "%{msg} on node %{node}"
|
10354
10288
|
msgstr "ノード%{node}に%{msg}"
|
10355
10289
|
|
@@ -10361,7 +10295,7 @@ msgstr "無効なsyslogファシリティ%{str}"
|
|
10361
10295
|
msgid "Creating log directory %{dir}"
|
10362
10296
|
msgstr "ログディレクトリ%{dir}を作成しています。"
|
10363
10297
|
|
10364
|
-
#: ../lib/puppet/util/log/destinations.rb:
|
10298
|
+
#: ../lib/puppet/util/log/destinations.rb:100
|
10365
10299
|
msgid "Unable to set ownership to %{user}:%{group} for log file: %{path}"
|
10366
10300
|
msgstr "オーナーシップを%{user}に設定できません:ログファイルのグループ%{group}: %{path}"
|
10367
10301
|
|
@@ -10756,27 +10690,27 @@ msgstr "lookup_account_sidのバイト配列は空にする必要があり、1
|
|
10756
10690
|
msgid "Failed to call LookupAccountSidW with bytes: %{sid_bytes}"
|
10757
10691
|
msgstr "バイトが%{sid_bytes}であるLookupAccountSidWのコールに失敗しました。"
|
10758
10692
|
|
10759
|
-
#: ../lib/puppet/util/windows/process.rb:
|
10693
|
+
#: ../lib/puppet/util/windows/process.rb:44
|
10760
10694
|
msgid "Failed to get child process exit code"
|
10761
10695
|
msgstr "子プロセス終了コードの取得に失敗しました。"
|
10762
10696
|
|
10763
|
-
#: ../lib/puppet/util/windows/process.rb:
|
10697
|
+
#: ../lib/puppet/util/windows/process.rb:237
|
10764
10698
|
msgid "GetVersionEx failed"
|
10765
10699
|
msgstr "GetVersionExに失敗しました。"
|
10766
10700
|
|
10767
|
-
#: ../lib/puppet/util/windows/process.rb:
|
10701
|
+
#: ../lib/puppet/util/windows/process.rb:266
|
10768
10702
|
msgid "Discarding environment variable %{string} which contains invalid bytes"
|
10769
10703
|
msgstr "無効なバイトを含むenvironment変数%{string}を破棄しています。"
|
10770
10704
|
|
10771
|
-
#: ../lib/puppet/util/windows/process.rb:
|
10705
|
+
#: ../lib/puppet/util/windows/process.rb:282
|
10772
10706
|
msgid "environment variable name must not be nil or empty"
|
10773
10707
|
msgstr "環境変数名は空でなければなりません。"
|
10774
10708
|
|
10775
|
-
#: ../lib/puppet/util/windows/process.rb:
|
10709
|
+
#: ../lib/puppet/util/windows/process.rb:287
|
10776
10710
|
msgid "Failed to remove environment variable: %{name}"
|
10777
10711
|
msgstr "環境変数: %{name}の削除に失敗しました。"
|
10778
10712
|
|
10779
|
-
#: ../lib/puppet/util/windows/process.rb:
|
10713
|
+
#: ../lib/puppet/util/windows/process.rb:292
|
10780
10714
|
msgid "Failed to set environment variable: %{name}"
|
10781
10715
|
msgstr "環境変数: %{name}の設定に失敗しました。"
|
10782
10716
|
|
@@ -10788,40 +10722,40 @@ msgstr "無効なレジストリキー'%{name}'"
|
|
10788
10722
|
msgid "Failed to open registry key '%{key}\\%{path}'"
|
10789
10723
|
msgstr "レジストリキー'%{key}\\%{path}'を開けませんでした。"
|
10790
10724
|
|
10791
|
-
#: ../lib/puppet/util/windows/registry.rb:
|
10725
|
+
#: ../lib/puppet/util/windows/registry.rb:106
|
10792
10726
|
msgid "Failed to enumerate %{key} registry keys at index %{index}"
|
10793
10727
|
msgstr "インデックス%{index}での%{key}レジストリキーの列挙に失敗しました。"
|
10794
10728
|
|
10795
|
-
#: ../lib/puppet/util/windows/registry.rb:
|
10729
|
+
#: ../lib/puppet/util/windows/registry.rb:137
|
10796
10730
|
msgid "Failed to enumerate %{key} registry values at index %{index}"
|
10797
10731
|
msgstr "インデックス%{index}での%{key}レジストリ値の列挙に失敗しました。"
|
10798
10732
|
|
10799
|
-
#: ../lib/puppet/util/windows/registry.rb:
|
10733
|
+
#: ../lib/puppet/util/windows/registry.rb:167
|
10800
10734
|
msgid "Failed to query registry %{key} for sizes"
|
10801
10735
|
msgstr "サイズに関するレジストリ%{key}のクエリに失敗しました。"
|
10802
10736
|
|
10803
|
-
#: ../lib/puppet/util/windows/registry.rb:
|
10737
|
+
#: ../lib/puppet/util/windows/registry.rb:203
|
10804
10738
|
msgid "Type mismatch (expect %{rtype} but %{type} present)"
|
10805
10739
|
msgstr "タイプの不一致(必要なタイプは%{rtype}ですが、%{type}が存在)"
|
10806
10740
|
|
10807
|
-
#: ../lib/puppet/util/windows/registry.rb:
|
10741
|
+
#: ../lib/puppet/util/windows/registry.rb:225
|
10808
10742
|
msgid "Type %{type} is not supported."
|
10809
10743
|
msgstr "タイプ%{type}はサポートされていません。"
|
10810
10744
|
|
10811
|
-
#: ../lib/puppet/util/windows/registry.rb:
|
10745
|
+
#: ../lib/puppet/util/windows/registry.rb:230
|
10812
10746
|
msgid ""
|
10813
10747
|
"A value in the registry key %{parent_key_name}%{key} is corrupt or invalid"
|
10814
10748
|
msgstr "レジストリキー%{parent_key_name}%{key}の値が破損しているか無効です。"
|
10815
10749
|
|
10816
|
-
#: ../lib/puppet/util/windows/registry.rb:
|
10750
|
+
#: ../lib/puppet/util/windows/registry.rb:250
|
10817
10751
|
msgid "Failed to read registry value %{value} at %{key}"
|
10818
10752
|
msgstr "%{key}でのレジストリ値%{value}の読み込みに失敗しました。"
|
10819
10753
|
|
10820
|
-
#: ../lib/puppet/util/windows/registry.rb:
|
10754
|
+
#: ../lib/puppet/util/windows/registry.rb:268
|
10821
10755
|
msgid "Failed to delete registry value %{name} at %{key}"
|
10822
10756
|
msgstr "%{key}でのレジストリ値%{name}の削除に失敗しました。"
|
10823
10757
|
|
10824
|
-
#: ../lib/puppet/util/windows/registry.rb:
|
10758
|
+
#: ../lib/puppet/util/windows/registry.rb:283
|
10825
10759
|
msgid "Failed to delete registry key %{name} at %{key}"
|
10826
10760
|
msgstr "%{key}でのレジストリキー%{name}の削除に失敗しました。"
|
10827
10761
|
|
@@ -10898,7 +10832,7 @@ msgstr "セキュリティ情報の設定に失敗しました。"
|
|
10898
10832
|
|
10899
10833
|
#: ../lib/puppet/util/windows/service.rb:300
|
10900
10834
|
msgid "Starting the %{service_name} service"
|
10901
|
-
msgstr "%{service_name}
|
10835
|
+
msgstr "%{service_name}サービスを開始します。"
|
10902
10836
|
|
10903
10837
|
#: ../lib/puppet/util/windows/service.rb:310
|
10904
10838
|
msgid "Failed to start the service"
|
@@ -10906,7 +10840,7 @@ msgstr "サービスの起動に失敗しました。"
|
|
10906
10840
|
|
10907
10841
|
#: ../lib/puppet/util/windows/service.rb:314
|
10908
10842
|
msgid "Successfully started the %{service_name} service"
|
10909
|
-
msgstr "%{service_name}
|
10843
|
+
msgstr "%{service_name}サービスの起動に成功しました。"
|
10910
10844
|
|
10911
10845
|
#: ../lib/puppet/util/windows/service.rb:322
|
10912
10846
|
msgid "Stopping the %{service_name} service"
|
@@ -10918,97 +10852,97 @@ msgstr "%{service_name}サービスを停止しました。"
|
|
10918
10852
|
|
10919
10853
|
#: ../lib/puppet/util/windows/service.rb:338
|
10920
10854
|
msgid "Resuming the %{service_name} service"
|
10921
|
-
msgstr "%{service_name}
|
10855
|
+
msgstr "%{service_name}サービスを中断しています。"
|
10922
10856
|
|
10923
10857
|
#: ../lib/puppet/util/windows/service.rb:354
|
10924
10858
|
msgid "Successfully resumed the %{service_name} service"
|
10925
10859
|
msgstr "%{service_name}サービスを再開しました。"
|
10926
10860
|
|
10927
|
-
#: ../lib/puppet/util/windows/service.rb:
|
10861
|
+
#: ../lib/puppet/util/windows/service.rb:369
|
10928
10862
|
msgid "Unknown Service state '%{current_state}' for '%{service_name}'"
|
10929
10863
|
msgstr "'%{service_name}'のサービス状態が不明です: '%{current_state}'"
|
10930
10864
|
|
10931
|
-
#: ../lib/puppet/util/windows/service.rb:
|
10865
|
+
#: ../lib/puppet/util/windows/service.rb:386
|
10932
10866
|
msgid "Unknown start type '%{start_type}' for '%{service_name}'"
|
10933
10867
|
msgstr "'%{service_name}'の起動タイプが不明です: '%{start_type}'"
|
10934
10868
|
|
10935
|
-
#: ../lib/puppet/util/windows/service.rb:
|
10869
|
+
#: ../lib/puppet/util/windows/service.rb:401
|
10936
10870
|
msgid "Unknown start type %{start_type}"
|
10937
10871
|
msgstr "不明な起動タイプ%{start_type}"
|
10938
10872
|
|
10939
|
-
#: ../lib/puppet/util/windows/service.rb:
|
10873
|
+
#: ../lib/puppet/util/windows/service.rb:422
|
10940
10874
|
msgid "Failed to update service configuration"
|
10941
10875
|
msgstr "サービス構成の更新に失敗しました。"
|
10942
10876
|
|
10943
|
-
#: ../lib/puppet/util/windows/service.rb:
|
10877
|
+
#: ../lib/puppet/util/windows/service.rb:482
|
10944
10878
|
msgid "Failed to fetch services"
|
10945
10879
|
msgstr "サービスの取得に失敗しました。"
|
10946
10880
|
|
10947
|
-
#: ../lib/puppet/util/windows/service.rb:
|
10881
|
+
#: ../lib/puppet/util/windows/service.rb:531
|
10948
10882
|
msgid "Failed to open a handle to the service"
|
10949
10883
|
msgstr "サービスのハンドルを開くのに失敗しました。"
|
10950
10884
|
|
10951
|
-
#: ../lib/puppet/util/windows/service.rb:
|
10885
|
+
#: ../lib/puppet/util/windows/service.rb:548
|
10952
10886
|
msgid "Failed to open a handle to the service control manager"
|
10953
10887
|
msgstr "サービスコントロールマネージャのハンドルを開くのに失敗しました。"
|
10954
10888
|
|
10955
|
-
#: ../lib/puppet/util/windows/service.rb:
|
10889
|
+
#: ../lib/puppet/util/windows/service.rb:571
|
10956
10890
|
msgid ""
|
10957
10891
|
"The service is already in the %{final_state} state. No further work needs to"
|
10958
10892
|
" be done."
|
10959
10893
|
msgstr "サービスの状態はすでに%{final_state}です。今後の作業は必要ありません。"
|
10960
10894
|
|
10961
|
-
#: ../lib/puppet/util/windows/service.rb:
|
10895
|
+
#: ../lib/puppet/util/windows/service.rb:583
|
10962
10896
|
msgid ""
|
10963
10897
|
"The service must be in one of the %{valid_initial_states} states to perform "
|
10964
10898
|
"this transition. It is currently in the %{current_state} state."
|
10965
10899
|
msgstr ""
|
10966
10900
|
"この移行を実行するために、サービスの状態は%{valid_initial_states}の1つである必要があります。現在の状態は%{current_state}です。"
|
10967
10901
|
|
10968
|
-
#: ../lib/puppet/util/windows/service.rb:
|
10902
|
+
#: ../lib/puppet/util/windows/service.rb:594
|
10969
10903
|
msgid ""
|
10970
10904
|
"There is already a pending transition to the %{final_state} state for the "
|
10971
10905
|
"%{service_name} service."
|
10972
10906
|
msgstr "%{service_name}サービスは、すでに%{final_state}状態への移行待機中です。"
|
10973
10907
|
|
10974
|
-
#: ../lib/puppet/util/windows/service.rb:
|
10908
|
+
#: ../lib/puppet/util/windows/service.rb:610
|
10975
10909
|
msgid ""
|
10976
10910
|
"The service is in the %{pending_state} state, which is an unsafe pending "
|
10977
10911
|
"state."
|
10978
10912
|
msgstr "サービスの状態は%{pending_state}です。これは安全ではない待機状態です。"
|
10979
10913
|
|
10980
|
-
#: ../lib/puppet/util/windows/service.rb:
|
10914
|
+
#: ../lib/puppet/util/windows/service.rb:615
|
10981
10915
|
msgid ""
|
10982
10916
|
"Transitioning the %{service_name} service from %{initial_state} to "
|
10983
10917
|
"%{final_state}"
|
10984
10918
|
msgstr "%{service_name}サービスを%{initial_state}から%{final_state}へ移行しています。"
|
10985
10919
|
|
10986
|
-
#: ../lib/puppet/util/windows/service.rb:
|
10920
|
+
#: ../lib/puppet/util/windows/service.rb:619
|
10987
10921
|
msgid "Waiting for the transition to finish"
|
10988
10922
|
msgstr "移行が完了するまで待機しています。"
|
10989
10923
|
|
10990
|
-
#: ../lib/puppet/util/windows/service.rb:
|
10924
|
+
#: ../lib/puppet/util/windows/service.rb:623
|
10991
10925
|
msgid ""
|
10992
10926
|
"Failed to transition the %{service_name} service to the %{final_state} "
|
10993
10927
|
"state. Detail: %{detail}"
|
10994
10928
|
msgstr "%{service_name}サービスの%{final_state}状態への移行に失敗しました。詳細: %{detail}"
|
10995
10929
|
|
10996
|
-
#: ../lib/puppet/util/windows/service.rb:
|
10997
|
-
#: ../lib/puppet/util/windows/service.rb:
|
10930
|
+
#: ../lib/puppet/util/windows/service.rb:662
|
10931
|
+
#: ../lib/puppet/util/windows/service.rb:698
|
10998
10932
|
msgid "Service query failed"
|
10999
10933
|
msgstr "サービスクエリが失敗しました。"
|
11000
10934
|
|
11001
|
-
#: ../lib/puppet/util/windows/service.rb:
|
10935
|
+
#: ../lib/puppet/util/windows/service.rb:715
|
11002
10936
|
msgid ""
|
11003
10937
|
"Failed to send the %{control_signal} signal to the service. Its current "
|
11004
|
-
"state is %{current_state}.
|
11005
|
-
msgstr "サービスに%{control_signal}信号を送信するのに失敗しました。現在の状態は%{current_state}
|
10938
|
+
"state is %{current_state}. Failed with"
|
10939
|
+
msgstr "サービスに%{control_signal}信号を送信するのに失敗しました。現在の状態は%{current_state}です。失敗:"
|
11006
10940
|
|
11007
|
-
#: ../lib/puppet/util/windows/service.rb:
|
10941
|
+
#: ../lib/puppet/util/windows/service.rb:749
|
11008
10942
|
msgid "The service transitioned to the %{pending_state} state."
|
11009
10943
|
msgstr "サービスは%{pending_state}状態に移行しました。"
|
11010
10944
|
|
11011
|
-
#: ../lib/puppet/util/windows/service.rb:
|
10945
|
+
#: ../lib/puppet/util/windows/service.rb:759
|
11012
10946
|
msgid ""
|
11013
10947
|
"Timed out while waiting for the service to transition from %{initial_state} "
|
11014
10948
|
"to %{final_state} OR from %{initial_state} to %{pending_state} to "
|
@@ -11016,19 +10950,19 @@ msgid ""
|
|
11016
10950
|
msgstr ""
|
11017
10951
|
"サービスを%{initial_state}から%{final_state}、または%{initial_state}から%{pending_state}、さらに%{final_state}へと移行する際にタイムアウトしました。サービスの現在の状態は%{current_state}です。"
|
11018
10952
|
|
11019
|
-
#: ../lib/puppet/util/windows/service.rb:
|
10953
|
+
#: ../lib/puppet/util/windows/service.rb:773
|
11020
10954
|
msgid ""
|
11021
10955
|
"Waiting for the pending transition to the %{final_state} state to finish."
|
11022
|
-
msgstr "%{final_state}
|
10956
|
+
msgstr "%{final_state}状態への移行が完了するまで待機しています。"
|
11023
10957
|
|
11024
|
-
#: ../lib/puppet/util/windows/service.rb:
|
10958
|
+
#: ../lib/puppet/util/windows/service.rb:786
|
11025
10959
|
msgid ""
|
11026
10960
|
"Unexpected transition to the %{current_state} state while waiting for the "
|
11027
10961
|
"pending transition from %{pending_state} to %{final_state} to finish."
|
11028
10962
|
msgstr ""
|
11029
10963
|
"%{pending_state}から%{final_state}への移行完了を待機している間に、%{current_state}状態への予期せぬ移行が発生しました。"
|
11030
10964
|
|
11031
|
-
#: ../lib/puppet/util/windows/service.rb:
|
10965
|
+
#: ../lib/puppet/util/windows/service.rb:800
|
11032
10966
|
msgid ""
|
11033
10967
|
"Timed out while waiting for the pending transition from %{pending_state} to "
|
11034
10968
|
"%{final_state} to finish. The current state is %{current_state}."
|