puppet 6.19.1-x64-mingw32 → 6.23.0-x64-mingw32
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of puppet might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/CODEOWNERS +2 -16
- data/Gemfile +3 -1
- data/Gemfile.lock +51 -40
- data/ext/osx/puppet.plist +2 -0
- data/ext/project_data.yaml +2 -2
- data/lib/puppet/application.rb +10 -6
- data/lib/puppet/application/agent.rb +12 -4
- data/lib/puppet/application/apply.rb +4 -2
- data/lib/puppet/application/device.rb +2 -0
- data/lib/puppet/application/filebucket.rb +2 -2
- data/lib/puppet/application/resource.rb +2 -1
- data/lib/puppet/application/script.rb +2 -0
- data/lib/puppet/application/ssl.rb +11 -0
- data/lib/puppet/application_support.rb +7 -0
- data/lib/puppet/configurer.rb +28 -18
- data/lib/puppet/configurer/downloader.rb +2 -1
- data/lib/puppet/defaults.rb +51 -23
- data/lib/puppet/environments.rb +54 -55
- data/lib/puppet/face/config.rb +10 -0
- data/lib/puppet/face/epp.rb +12 -2
- data/lib/puppet/face/facts.rb +158 -0
- data/lib/puppet/ffi/posix.rb +10 -0
- data/lib/puppet/ffi/posix/constants.rb +14 -0
- data/lib/puppet/ffi/posix/functions.rb +24 -0
- data/lib/puppet/file_serving/fileset.rb +14 -2
- data/lib/puppet/file_system/memory_file.rb +8 -1
- data/lib/puppet/file_system/windows.rb +2 -0
- data/lib/puppet/functions/all.rb +1 -1
- data/lib/puppet/functions/camelcase.rb +1 -1
- data/lib/puppet/functions/capitalize.rb +2 -2
- data/lib/puppet/functions/downcase.rb +2 -2
- data/lib/puppet/functions/epp.rb +1 -0
- data/lib/puppet/functions/get.rb +5 -5
- data/lib/puppet/functions/group_by.rb +13 -5
- data/lib/puppet/functions/inline_epp.rb +1 -0
- data/lib/puppet/functions/lest.rb +1 -1
- data/lib/puppet/functions/new.rb +100 -100
- data/lib/puppet/functions/partition.rb +12 -4
- data/lib/puppet/functions/require.rb +5 -5
- data/lib/puppet/functions/sort.rb +3 -3
- data/lib/puppet/functions/tree_each.rb +7 -9
- data/lib/puppet/functions/type.rb +4 -4
- data/lib/puppet/functions/upcase.rb +2 -2
- data/lib/puppet/http/resolver/server_list.rb +15 -4
- data/lib/puppet/http/service/compiler.rb +69 -0
- data/lib/puppet/http/service/file_server.rb +2 -1
- data/lib/puppet/indirector/catalog/compiler.rb +1 -0
- data/lib/puppet/indirector/fact_search.rb +60 -0
- data/lib/puppet/indirector/facts/facter.rb +24 -3
- data/lib/puppet/indirector/facts/json.rb +27 -0
- data/lib/puppet/indirector/facts/yaml.rb +3 -58
- data/lib/puppet/indirector/file_metadata/rest.rb +1 -0
- data/lib/puppet/indirector/json.rb +5 -1
- data/lib/puppet/indirector/node/json.rb +8 -0
- data/lib/puppet/indirector/report/json.rb +34 -0
- data/lib/puppet/module_tool/applications/installer.rb +48 -2
- data/lib/puppet/module_tool/errors/shared.rb +17 -2
- data/lib/puppet/network/formats.rb +69 -1
- data/lib/puppet/network/http/factory.rb +4 -0
- data/lib/puppet/pal/pal_impl.rb +70 -17
- data/lib/puppet/parser/ast/leaf.rb +3 -2
- data/lib/puppet/parser/functions/fqdn_rand.rb +14 -6
- data/lib/puppet/parser/templatewrapper.rb +1 -1
- data/lib/puppet/pops/evaluator/deferred_resolver.rb +5 -3
- data/lib/puppet/pops/evaluator/evaluator_impl.rb +22 -3
- data/lib/puppet/pops/model/ast_transformer.rb +1 -1
- data/lib/puppet/pops/types/p_sem_ver_type.rb +8 -2
- data/lib/puppet/pops/types/p_sensitive_type.rb +10 -0
- data/lib/puppet/property/list.rb +1 -1
- data/lib/puppet/provider/group/groupadd.rb +13 -8
- data/lib/puppet/provider/package/apt.rb +34 -2
- data/lib/puppet/provider/package/aptitude.rb +6 -0
- data/lib/puppet/provider/package/dnfmodule.rb +1 -1
- data/lib/puppet/provider/package/nim.rb +11 -6
- data/lib/puppet/provider/service/debian.rb +2 -0
- data/lib/puppet/provider/service/systemd.rb +14 -4
- data/lib/puppet/provider/service/windows.rb +38 -0
- data/lib/puppet/provider/user/aix.rb +2 -2
- data/lib/puppet/provider/user/directoryservice.rb +25 -12
- data/lib/puppet/provider/user/useradd.rb +62 -8
- data/lib/puppet/reference/configuration.rb +7 -6
- data/lib/puppet/settings.rb +33 -28
- data/lib/puppet/settings/alias_setting.rb +37 -0
- data/lib/puppet/settings/base_setting.rb +26 -2
- data/lib/puppet/settings/environment_conf.rb +1 -0
- data/lib/puppet/transaction/additional_resource_generator.rb +1 -1
- data/lib/puppet/type/file.rb +19 -1
- data/lib/puppet/type/file/selcontext.rb +1 -1
- data/lib/puppet/type/package.rb +3 -3
- data/lib/puppet/type/service.rb +18 -38
- data/lib/puppet/type/tidy.rb +21 -2
- data/lib/puppet/type/user.rb +38 -20
- data/lib/puppet/util/autoload.rb +1 -8
- data/lib/puppet/util/fact_dif.rb +81 -0
- data/lib/puppet/util/monkey_patches.rb +7 -0
- data/lib/puppet/util/posix.rb +54 -5
- data/lib/puppet/util/rubygems.rb +5 -1
- data/lib/puppet/util/selinux.rb +30 -4
- data/lib/puppet/util/windows/adsi.rb +46 -0
- data/lib/puppet/util/windows/api_types.rb +1 -1
- data/lib/puppet/util/windows/principal.rb +9 -2
- data/lib/puppet/util/windows/service.rb +1 -1
- data/lib/puppet/util/windows/sid.rb +4 -2
- data/lib/puppet/version.rb +1 -1
- data/locales/puppet.pot +372 -288
- data/man/man5/puppet.conf.5 +282 -254
- data/man/man8/puppet-agent.8 +2 -2
- data/man/man8/puppet-apply.8 +2 -2
- data/man/man8/puppet-catalog.8 +1 -1
- data/man/man8/puppet-config.8 +1 -1
- data/man/man8/puppet-describe.8 +1 -1
- data/man/man8/puppet-device.8 +2 -2
- data/man/man8/puppet-doc.8 +1 -1
- data/man/man8/puppet-epp.8 +1 -1
- data/man/man8/puppet-facts.8 +90 -1
- data/man/man8/puppet-filebucket.8 +3 -3
- data/man/man8/puppet-generate.8 +1 -1
- data/man/man8/puppet-help.8 +1 -1
- data/man/man8/puppet-key.8 +1 -1
- data/man/man8/puppet-lookup.8 +1 -1
- data/man/man8/puppet-man.8 +1 -1
- data/man/man8/puppet-module.8 +1 -1
- data/man/man8/puppet-node.8 +4 -1
- data/man/man8/puppet-parser.8 +1 -1
- data/man/man8/puppet-plugin.8 +1 -1
- data/man/man8/puppet-report.8 +4 -1
- data/man/man8/puppet-resource.8 +1 -1
- data/man/man8/puppet-script.8 +2 -2
- data/man/man8/puppet-ssl.8 +5 -1
- data/man/man8/puppet-status.8 +1 -1
- data/man/man8/puppet.8 +2 -2
- data/spec/fixtures/integration/application/agent/cached_deferred_catalog.json +91 -0
- data/spec/fixtures/ssl/127.0.0.1-key.pem +107 -57
- data/spec/fixtures/ssl/127.0.0.1.pem +52 -31
- data/spec/fixtures/ssl/bad-basic-constraints.pem +57 -35
- data/spec/fixtures/ssl/bad-int-basic-constraints.pem +57 -35
- data/spec/fixtures/ssl/ca.pem +57 -35
- data/spec/fixtures/ssl/crl.pem +28 -18
- data/spec/fixtures/ssl/ec-key.pem +11 -11
- data/spec/fixtures/ssl/ec.pem +33 -24
- data/spec/fixtures/ssl/encrypted-ec-key.pem +12 -12
- data/spec/fixtures/ssl/encrypted-key.pem +108 -58
- data/spec/fixtures/ssl/intermediate-agent-crl.pem +28 -19
- data/spec/fixtures/ssl/intermediate-agent.pem +57 -36
- data/spec/fixtures/ssl/intermediate-crl.pem +31 -21
- data/spec/fixtures/ssl/intermediate.pem +57 -36
- data/spec/fixtures/ssl/pluto-key.pem +107 -57
- data/spec/fixtures/ssl/pluto.pem +52 -30
- data/spec/fixtures/ssl/request-key.pem +107 -57
- data/spec/fixtures/ssl/request.pem +47 -26
- data/spec/fixtures/ssl/revoked-key.pem +107 -57
- data/spec/fixtures/ssl/revoked.pem +52 -30
- data/spec/fixtures/ssl/signed-key.pem +107 -57
- data/spec/fixtures/ssl/signed.pem +52 -30
- data/spec/fixtures/ssl/tampered-cert.pem +52 -30
- data/spec/fixtures/ssl/tampered-csr.pem +47 -26
- data/spec/fixtures/ssl/unknown-127.0.0.1-key.pem +107 -57
- data/spec/fixtures/ssl/unknown-127.0.0.1.pem +50 -29
- data/spec/fixtures/ssl/unknown-ca-key.pem +107 -57
- data/spec/fixtures/ssl/unknown-ca.pem +55 -33
- data/spec/fixtures/unit/provider/service/systemd/list_unit_files_services_vendor_preset +9 -0
- data/spec/fixtures/unit/provider/user/aix/aix_passwd_file.out +4 -0
- data/spec/integration/application/agent_spec.rb +160 -3
- data/spec/integration/application/apply_spec.rb +19 -0
- data/spec/integration/application/plugin_spec.rb +1 -1
- data/spec/integration/application/resource_spec.rb +30 -0
- data/spec/integration/defaults_spec.rb +0 -7
- data/spec/integration/environments/setting_hooks_spec.rb +1 -1
- data/spec/integration/http/client_spec.rb +12 -0
- data/spec/integration/indirector/direct_file_server_spec.rb +1 -3
- data/spec/integration/resource/type_collection_spec.rb +2 -6
- data/spec/integration/transaction_spec.rb +4 -9
- data/spec/integration/util/windows/adsi_spec.rb +21 -1
- data/spec/integration/util/windows/principal_spec.rb +21 -0
- data/spec/integration/util/windows/registry_spec.rb +6 -10
- data/spec/lib/puppet/test_ca.rb +2 -2
- data/spec/lib/puppet_spec/settings.rb +6 -1
- data/spec/spec_helper.rb +12 -5
- data/spec/unit/agent_spec.rb +8 -6
- data/spec/unit/application/agent_spec.rb +7 -3
- data/spec/unit/application/config_spec.rb +224 -4
- data/spec/unit/application/facts_spec.rb +482 -3
- data/spec/unit/application/filebucket_spec.rb +0 -2
- data/spec/unit/application/ssl_spec.rb +23 -0
- data/spec/unit/application_spec.rb +51 -9
- data/spec/unit/configurer/downloader_spec.rb +6 -0
- data/spec/unit/configurer_spec.rb +23 -0
- data/spec/unit/confine/feature_spec.rb +1 -1
- data/spec/unit/confine_spec.rb +8 -2
- data/spec/unit/defaults_spec.rb +36 -1
- data/spec/unit/environments_spec.rb +221 -68
- data/spec/unit/face/config_spec.rb +27 -32
- data/spec/unit/face/facts_spec.rb +4 -0
- data/spec/unit/face/node_spec.rb +0 -11
- data/spec/unit/file_serving/configuration/parser_spec.rb +0 -1
- data/spec/unit/file_serving/fileset_spec.rb +60 -0
- data/spec/unit/file_serving/metadata_spec.rb +3 -3
- data/spec/unit/file_serving/terminus_helper_spec.rb +11 -4
- data/spec/unit/file_system_spec.rb +9 -0
- data/spec/unit/forge/module_release_spec.rb +2 -7
- data/spec/unit/functions/inline_epp_spec.rb +26 -1
- data/spec/unit/gettext/config_spec.rb +12 -0
- data/spec/unit/http/service/compiler_spec.rb +172 -0
- data/spec/unit/http/service_spec.rb +1 -1
- data/spec/unit/indirector/catalog/compiler_spec.rb +14 -10
- data/spec/unit/indirector/face_spec.rb +0 -1
- data/spec/unit/indirector/facts/facter_spec.rb +95 -1
- data/spec/unit/indirector/facts/json_spec.rb +255 -0
- data/spec/unit/indirector/file_bucket_file/selector_spec.rb +26 -8
- data/spec/unit/indirector/indirection_spec.rb +8 -12
- data/spec/unit/indirector/key/file_spec.rb +0 -1
- data/spec/unit/indirector/node/json_spec.rb +33 -0
- data/spec/{integration/indirector/report/yaml.rb → unit/indirector/report/json_spec.rb} +13 -24
- data/spec/unit/indirector/report/yaml_spec.rb +72 -8
- data/spec/unit/indirector_spec.rb +2 -2
- data/spec/unit/module_tool/applications/installer_spec.rb +66 -0
- data/spec/unit/network/authconfig_spec.rb +0 -3
- data/spec/unit/network/formats_spec.rb +41 -0
- data/spec/unit/network/http/api/indirected_routes_spec.rb +0 -9
- data/spec/unit/network/http/factory_spec.rb +19 -0
- data/spec/unit/network/http/handler_spec.rb +0 -5
- data/spec/unit/parser/compiler_spec.rb +3 -19
- data/spec/unit/parser/functions/fqdn_rand_spec.rb +15 -1
- data/spec/unit/parser/resource_spec.rb +14 -8
- data/spec/unit/parser/templatewrapper_spec.rb +4 -3
- data/spec/unit/pops/evaluator/deferred_resolver_spec.rb +20 -0
- data/spec/unit/pops/types/p_sem_ver_type_spec.rb +18 -0
- data/spec/unit/pops/types/p_sensitive_type_spec.rb +18 -0
- data/spec/unit/property_spec.rb +1 -0
- data/spec/unit/provider/group/groupadd_spec.rb +5 -2
- data/spec/unit/provider/nameservice_spec.rb +66 -65
- data/spec/unit/provider/package/apt_spec.rb +28 -23
- data/spec/unit/provider/package/aptitude_spec.rb +1 -1
- data/spec/unit/provider/package/base_spec.rb +6 -5
- data/spec/unit/provider/package/dnfmodule_spec.rb +10 -1
- data/spec/unit/provider/package/nim_spec.rb +42 -0
- data/spec/unit/provider/package/pacman_spec.rb +18 -12
- data/spec/unit/provider/package/pip_spec.rb +6 -11
- data/spec/unit/provider/package/pkgdmg_spec.rb +0 -4
- data/spec/unit/provider/service/init_spec.rb +1 -0
- data/spec/unit/provider/service/openwrt_spec.rb +3 -1
- data/spec/unit/provider/service/systemd_spec.rb +53 -8
- data/spec/unit/provider/service/windows_spec.rb +202 -0
- data/spec/unit/provider/user/aix_spec.rb +5 -0
- data/spec/unit/provider/user/directoryservice_spec.rb +67 -35
- data/spec/unit/provider/user/hpux_spec.rb +1 -1
- data/spec/unit/provider/user/pw_spec.rb +2 -0
- data/spec/unit/provider/user/useradd_spec.rb +71 -3
- data/spec/unit/provider_spec.rb +8 -10
- data/spec/unit/puppet_pal_catalog_spec.rb +45 -0
- data/spec/unit/resource/capability_finder_spec.rb +6 -1
- data/spec/unit/resource/catalog_spec.rb +1 -1
- data/spec/unit/resource/type_spec.rb +1 -1
- data/spec/unit/resource_spec.rb +11 -10
- data/spec/unit/settings_spec.rb +419 -242
- data/spec/unit/ssl/base_spec.rb +0 -1
- data/spec/unit/ssl/host_spec.rb +0 -5
- data/spec/unit/ssl/ssl_provider_spec.rb +14 -8
- data/spec/unit/ssl/state_machine_spec.rb +19 -5
- data/spec/unit/transaction/additional_resource_generator_spec.rb +3 -9
- data/spec/unit/transaction/event_manager_spec.rb +14 -11
- data/spec/unit/transaction_spec.rb +18 -11
- data/spec/unit/type/file/content_spec.rb +0 -1
- data/spec/unit/type/file/selinux_spec.rb +3 -5
- data/spec/unit/type/file_spec.rb +0 -6
- data/spec/unit/type/group_spec.rb +13 -6
- data/spec/unit/type/resources_spec.rb +7 -7
- data/spec/unit/type/service_spec.rb +60 -189
- data/spec/unit/type/tidy_spec.rb +17 -8
- data/spec/unit/type/user_spec.rb +45 -0
- data/spec/unit/type_spec.rb +2 -2
- data/spec/unit/util/at_fork_spec.rb +2 -2
- data/spec/unit/util/autoload_spec.rb +5 -1
- data/spec/unit/util/backups_spec.rb +1 -2
- data/spec/unit/util/execution_spec.rb +15 -11
- data/spec/unit/util/inifile_spec.rb +6 -14
- data/spec/unit/util/log_spec.rb +8 -7
- data/spec/unit/util/logging_spec.rb +3 -3
- data/spec/unit/util/posix_spec.rb +363 -15
- data/spec/unit/util/rubygems_spec.rb +2 -2
- data/spec/unit/util/selinux_spec.rb +163 -68
- data/spec/unit/util/storage_spec.rb +3 -1
- data/spec/unit/util/suidmanager_spec.rb +44 -41
- data/spec/unit/util/windows/sid_spec.rb +6 -0
- data/spec/unit/util_spec.rb +13 -6
- data/tasks/generate_cert_fixtures.rake +2 -2
- metadata +33 -16
- data/spec/integration/application/config_spec.rb +0 -74
- data/spec/lib/matchers/include.rb +0 -27
- data/spec/lib/matchers/include_spec.rb +0 -32
- data/spec/unit/face/catalog_spec.rb +0 -6
- data/spec/unit/face/module_spec.rb +0 -3
@@ -19,7 +19,7 @@ module Puppet::Util::Windows::APITypes
|
|
19
19
|
|
20
20
|
class ::FFI::Pointer
|
21
21
|
NULL_HANDLE = 0
|
22
|
-
WCHAR_NULL = "\0\0".
|
22
|
+
WCHAR_NULL = "\0\0".force_encoding('UTF-16LE').freeze
|
23
23
|
|
24
24
|
def self.from_string_to_wide_string(str, &block)
|
25
25
|
str = Puppet::Util::Windows::String.wide_string(str)
|
@@ -44,7 +44,8 @@ module Puppet::Util::Windows::SID
|
|
44
44
|
ERROR_INVALID_PARAMETER = 87
|
45
45
|
ERROR_INSUFFICIENT_BUFFER = 122
|
46
46
|
|
47
|
-
def self.lookup_account_name(system_name = nil, account_name)
|
47
|
+
def self.lookup_account_name(system_name = nil, sanitize = true, account_name)
|
48
|
+
account_name = sanitize_account_name(account_name) if sanitize
|
48
49
|
system_name_ptr = FFI::Pointer::NULL
|
49
50
|
begin
|
50
51
|
if system_name
|
@@ -146,6 +147,13 @@ module Puppet::Util::Windows::SID
|
|
146
147
|
end
|
147
148
|
end
|
148
149
|
|
150
|
+
# Sanitize the given account name for lookup to avoid known issues
|
151
|
+
def self.sanitize_account_name(account_name)
|
152
|
+
return account_name unless account_name.start_with?('APPLICATION PACKAGE AUTHORITY\\')
|
153
|
+
account_name.split('\\').last
|
154
|
+
end
|
155
|
+
private_class_method :sanitize_account_name
|
156
|
+
|
149
157
|
ffi_convention :stdcall
|
150
158
|
|
151
159
|
# https://msdn.microsoft.com/en-us/library/windows/desktop/aa379601(v=vs.85).aspx
|
@@ -191,4 +199,3 @@ module Puppet::Util::Windows::SID
|
|
191
199
|
[:lpcwstr, :pointer, :lpwstr, :lpdword, :lpwstr, :lpdword, :pointer], :win32_bool
|
192
200
|
end
|
193
201
|
end
|
194
|
-
|
@@ -191,7 +191,7 @@ module Puppet::Util::Windows
|
|
191
191
|
SERVICE_CONFIG_PRESHUTDOWN_INFO = 0x00000007
|
192
192
|
SERVICE_CONFIG_TRIGGER_INFO = 0x00000008
|
193
193
|
SERVICE_CONFIG_PREFERRED_NODE = 0x00000009
|
194
|
-
SERVICE_CONFIG_LAUNCH_PROTECTED =
|
194
|
+
SERVICE_CONFIG_LAUNCH_PROTECTED = 0x0000000C
|
195
195
|
SERVICE_NO_CHANGE = 0xffffffff
|
196
196
|
SERVICE_CONFIG_TYPES = {
|
197
197
|
SERVICE_CONFIG_DESCRIPTION => :SERVICE_CONFIG_DESCRIPTION,
|
@@ -74,11 +74,13 @@ module Puppet::Util::Windows
|
|
74
74
|
string_to_sid_ptr(name) do |sid_ptr|
|
75
75
|
raw_sid_bytes = sid_ptr.read_array_of_uchar(get_length_sid(sid_ptr))
|
76
76
|
end
|
77
|
-
rescue
|
77
|
+
rescue => e
|
78
|
+
Puppet.debug("Could not retrieve raw SID bytes from '#{name}': #{e.message}")
|
78
79
|
end
|
79
80
|
|
80
81
|
raw_sid_bytes ? Principal.lookup_account_sid(raw_sid_bytes) : Principal.lookup_account_name(name)
|
81
|
-
rescue
|
82
|
+
rescue => e
|
83
|
+
Puppet.debug("#{e.message}")
|
82
84
|
(allow_unresolved && raw_sid_bytes) ? unresolved_principal(name, raw_sid_bytes) : nil
|
83
85
|
end
|
84
86
|
module_function :name_to_principal
|
data/lib/puppet/version.rb
CHANGED
data/locales/puppet.pot
CHANGED
@@ -1,16 +1,16 @@
|
|
1
1
|
# SOME DESCRIPTIVE TITLE.
|
2
|
-
# Copyright (C)
|
2
|
+
# Copyright (C) 2021 Puppet, Inc.
|
3
3
|
# This file is distributed under the same license as the Puppet automation framework package.
|
4
|
-
# FIRST AUTHOR <EMAIL@ADDRESS>,
|
4
|
+
# FIRST AUTHOR <EMAIL@ADDRESS>, 2021.
|
5
5
|
#
|
6
6
|
#, fuzzy
|
7
7
|
msgid ""
|
8
8
|
msgstr ""
|
9
|
-
"Project-Id-Version: Puppet automation framework 6.
|
9
|
+
"Project-Id-Version: Puppet automation framework 6.22.1-63-ga15932f0d4\n"
|
10
10
|
"\n"
|
11
11
|
"Report-Msgid-Bugs-To: https://tickets.puppetlabs.com\n"
|
12
|
-
"POT-Creation-Date:
|
13
|
-
"PO-Revision-Date:
|
12
|
+
"POT-Creation-Date: 2021-05-25 15:33+0000\n"
|
13
|
+
"PO-Revision-Date: 2021-05-25 15:33+0000\n"
|
14
14
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
15
15
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
16
16
|
"Language: \n"
|
@@ -168,11 +168,11 @@ msgstr ""
|
|
168
168
|
msgid "No valid command or main"
|
169
169
|
msgstr ""
|
170
170
|
|
171
|
-
#: ../lib/puppet/application.rb:
|
171
|
+
#: ../lib/puppet/application.rb:431
|
172
172
|
msgid "Could not set logdest to %{dest}."
|
173
173
|
msgstr ""
|
174
174
|
|
175
|
-
#: ../lib/puppet/application.rb:
|
175
|
+
#: ../lib/puppet/application.rb:508
|
176
176
|
msgid "No help available for puppet %{app_name}"
|
177
177
|
msgstr ""
|
178
178
|
|
@@ -184,19 +184,19 @@ msgstr ""
|
|
184
184
|
msgid "The puppet agent daemon"
|
185
185
|
msgstr ""
|
186
186
|
|
187
|
-
#: ../lib/puppet/application/agent.rb:
|
187
|
+
#: ../lib/puppet/application/agent.rb:422
|
188
188
|
msgid "Fingerprint asked but neither the certificate, nor the certificate request have been issued"
|
189
189
|
msgstr ""
|
190
190
|
|
191
|
-
#: ../lib/puppet/application/agent.rb:
|
191
|
+
#: ../lib/puppet/application/agent.rb:427
|
192
192
|
msgid "Failed to generate fingerprint: %{message}"
|
193
193
|
msgstr ""
|
194
194
|
|
195
|
-
#: ../lib/puppet/application/agent.rb:
|
195
|
+
#: ../lib/puppet/application/agent.rb:450
|
196
196
|
msgid "Starting Puppet client version %{version}"
|
197
197
|
msgstr ""
|
198
198
|
|
199
|
-
#: ../lib/puppet/application/agent.rb:
|
199
|
+
#: ../lib/puppet/application/agent.rb:466
|
200
200
|
msgid "The puppet agent command does not take parameters"
|
201
201
|
msgstr ""
|
202
202
|
|
@@ -206,35 +206,35 @@ msgstr ""
|
|
206
206
|
|
207
207
|
#. TRANSLATORS "puppet apply" is a program command and should not be translated
|
208
208
|
#. TRANSLATORS "puppet apply" is a program command and should not be translated
|
209
|
-
#: ../lib/puppet/application/apply.rb:
|
209
|
+
#: ../lib/puppet/application/apply.rb:209 ../lib/puppet/application/apply.rb:322
|
210
210
|
msgid "For puppet apply"
|
211
211
|
msgstr ""
|
212
212
|
|
213
|
-
#: ../lib/puppet/application/apply.rb:
|
213
|
+
#: ../lib/puppet/application/apply.rb:217
|
214
214
|
msgid "%{file} is not readable"
|
215
215
|
msgstr ""
|
216
216
|
|
217
|
-
#: ../lib/puppet/application/apply.rb:
|
217
|
+
#: ../lib/puppet/application/apply.rb:288 ../lib/puppet/application/script.rb:241
|
218
218
|
msgid "Exiting"
|
219
219
|
msgstr ""
|
220
220
|
|
221
|
-
#: ../lib/puppet/application/apply.rb:
|
221
|
+
#: ../lib/puppet/application/apply.rb:332
|
222
222
|
msgid "Could not deserialize catalog from %{format}: %{detail}"
|
223
223
|
msgstr ""
|
224
224
|
|
225
|
-
#: ../lib/puppet/application/apply.rb:
|
225
|
+
#: ../lib/puppet/application/apply.rb:353 ../lib/puppet/application/script.rb:146
|
226
226
|
msgid "Could not find facts for %{node}"
|
227
227
|
msgstr ""
|
228
228
|
|
229
|
-
#: ../lib/puppet/application/apply.rb:
|
229
|
+
#: ../lib/puppet/application/apply.rb:365 ../lib/puppet/application/script.rb:154
|
230
230
|
msgid "Could not find node %{node}"
|
231
231
|
msgstr ""
|
232
232
|
|
233
|
-
#: ../lib/puppet/application/apply.rb:
|
233
|
+
#: ../lib/puppet/application/apply.rb:378 ../lib/puppet/application/script.rb:139
|
234
234
|
msgid "Could not find file %{manifest}"
|
235
235
|
msgstr ""
|
236
236
|
|
237
|
-
#: ../lib/puppet/application/apply.rb:
|
237
|
+
#: ../lib/puppet/application/apply.rb:379
|
238
238
|
msgid "Only one file can be applied per run. Skipping %{files}"
|
239
239
|
msgstr ""
|
240
240
|
|
@@ -250,47 +250,47 @@ msgstr ""
|
|
250
250
|
msgid "Manage remote network devices"
|
251
251
|
msgstr ""
|
252
252
|
|
253
|
-
#: ../lib/puppet/application/device.rb:
|
253
|
+
#: ../lib/puppet/application/device.rb:232
|
254
254
|
msgid "resource command requires target"
|
255
255
|
msgstr ""
|
256
256
|
|
257
|
-
#: ../lib/puppet/application/device.rb:
|
257
|
+
#: ../lib/puppet/application/device.rb:235
|
258
258
|
msgid "facts command requires target"
|
259
259
|
msgstr ""
|
260
260
|
|
261
|
-
#: ../lib/puppet/application/device.rb:
|
261
|
+
#: ../lib/puppet/application/device.rb:238
|
262
262
|
msgid "missing argument: --target is required when using --apply"
|
263
263
|
msgstr ""
|
264
264
|
|
265
|
-
#: ../lib/puppet/application/device.rb:
|
265
|
+
#: ../lib/puppet/application/device.rb:239
|
266
266
|
msgid "%{file} does not exist, cannot apply"
|
267
267
|
msgstr ""
|
268
268
|
|
269
|
-
#: ../lib/puppet/application/device.rb:
|
269
|
+
#: ../lib/puppet/application/device.rb:257
|
270
270
|
msgid "Target device / certificate '%{target}' not found in %{config}"
|
271
271
|
msgstr ""
|
272
272
|
|
273
|
-
#: ../lib/puppet/application/device.rb:
|
273
|
+
#: ../lib/puppet/application/device.rb:259
|
274
274
|
msgid "No device found in %{config}"
|
275
275
|
msgstr ""
|
276
276
|
|
277
|
-
#: ../lib/puppet/application/device.rb:
|
277
|
+
#: ../lib/puppet/application/device.rb:318
|
278
278
|
msgid "retrieving resource: %{resource} from %{target} at %{scheme}%{url_host}%{port}%{url_path}"
|
279
279
|
msgstr ""
|
280
280
|
|
281
|
-
#: ../lib/puppet/application/device.rb:
|
281
|
+
#: ../lib/puppet/application/device.rb:333
|
282
282
|
msgid "retrieving facts from %{target} at %{scheme}%{url_host}%{port}%{url_path}"
|
283
283
|
msgstr ""
|
284
284
|
|
285
|
-
#: ../lib/puppet/application/device.rb:
|
285
|
+
#: ../lib/puppet/application/device.rb:356
|
286
286
|
msgid "starting applying configuration to %{target} at %{scheme}%{url_host}%{port}%{url_path}"
|
287
287
|
msgstr ""
|
288
288
|
|
289
|
-
#: ../lib/puppet/application/device.rb:
|
289
|
+
#: ../lib/puppet/application/device.rb:394 ../lib/puppet/application/resource.rb:197
|
290
290
|
msgid "You must specify the type to display"
|
291
291
|
msgstr ""
|
292
292
|
|
293
|
-
#: ../lib/puppet/application/device.rb:
|
293
|
+
#: ../lib/puppet/application/device.rb:395 ../lib/puppet/application/resource.rb:198
|
294
294
|
msgid "Could not find type %{type}"
|
295
295
|
msgstr ""
|
296
296
|
|
@@ -414,7 +414,7 @@ msgstr ""
|
|
414
414
|
msgid "Unknown rendering format '%{format}'"
|
415
415
|
msgstr ""
|
416
416
|
|
417
|
-
#: ../lib/puppet/application/lookup.rb:366 ../lib/puppet/face/epp.rb:
|
417
|
+
#: ../lib/puppet/application/lookup.rb:366 ../lib/puppet/face/epp.rb:530
|
418
418
|
msgid "Incorrect formatted data in %{fact_file} given via the --facts flag"
|
419
419
|
msgstr ""
|
420
420
|
|
@@ -422,15 +422,15 @@ msgstr ""
|
|
422
422
|
msgid "The resource abstraction layer shell"
|
423
423
|
msgstr ""
|
424
424
|
|
425
|
-
#: ../lib/puppet/application/resource.rb:
|
425
|
+
#: ../lib/puppet/application/resource.rb:141
|
426
426
|
msgid "Editing with Yaml output is not supported"
|
427
427
|
msgstr ""
|
428
428
|
|
429
|
-
#: ../lib/puppet/application/resource.rb:
|
429
|
+
#: ../lib/puppet/application/resource.rb:205
|
430
430
|
msgid "Invalid parameter setting %{setting}"
|
431
431
|
msgstr ""
|
432
432
|
|
433
|
-
#: ../lib/puppet/application/resource.rb:
|
433
|
+
#: ../lib/puppet/application/resource.rb:227
|
434
434
|
msgid "Listing all file instances is not supported. Please specify a file or directory, e.g. puppet resource file /etc"
|
435
435
|
msgstr ""
|
436
436
|
|
@@ -438,11 +438,11 @@ msgstr ""
|
|
438
438
|
msgid "Run a puppet manifests as a script without compiling a catalog"
|
439
439
|
msgstr ""
|
440
440
|
|
441
|
-
#: ../lib/puppet/application/script.rb:
|
441
|
+
#: ../lib/puppet/application/script.rb:126
|
442
442
|
msgid "Bolt must be installed to use the script application"
|
443
443
|
msgstr ""
|
444
444
|
|
445
|
-
#: ../lib/puppet/application/script.rb:
|
445
|
+
#: ../lib/puppet/application/script.rb:140
|
446
446
|
msgid "Only one file can be used per run. Skipping %{files}"
|
447
447
|
msgstr ""
|
448
448
|
|
@@ -450,59 +450,59 @@ msgstr ""
|
|
450
450
|
msgid "Manage SSL keys and certificates for puppet SSL clients"
|
451
451
|
msgstr ""
|
452
452
|
|
453
|
-
#: ../lib/puppet/application/ssl.rb:
|
453
|
+
#: ../lib/puppet/application/ssl.rb:106
|
454
454
|
msgid "An action must be specified."
|
455
455
|
msgstr ""
|
456
456
|
|
457
|
-
#: ../lib/puppet/application/ssl.rb:
|
457
|
+
#: ../lib/puppet/application/ssl.rb:129 ../lib/puppet/application/ssl.rb:136
|
458
458
|
msgid "The certificate for '%{name}' has not yet been signed"
|
459
459
|
msgstr ""
|
460
460
|
|
461
|
-
#: ../lib/puppet/application/ssl.rb:
|
461
|
+
#: ../lib/puppet/application/ssl.rb:147
|
462
462
|
msgid "Completed SSL initialization"
|
463
463
|
msgstr ""
|
464
464
|
|
465
|
-
#: ../lib/puppet/application/ssl.rb:
|
465
|
+
#: ../lib/puppet/application/ssl.rb:151
|
466
466
|
msgid "Unknown action '%{action}'"
|
467
467
|
msgstr ""
|
468
468
|
|
469
|
-
#: ../lib/puppet/application/ssl.rb:
|
469
|
+
#: ../lib/puppet/application/ssl.rb:165 ../lib/puppet/ssl/state_machine.rb:180
|
470
470
|
msgid "Creating a new EC SSL key for %{name} using curve %{curve}"
|
471
471
|
msgstr ""
|
472
472
|
|
473
|
-
#: ../lib/puppet/application/ssl.rb:
|
473
|
+
#: ../lib/puppet/application/ssl.rb:168 ../lib/puppet/ssl/key.rb:26
|
474
474
|
msgid "Creating a new SSL key for %{name}"
|
475
475
|
msgstr ""
|
476
476
|
|
477
|
-
#: ../lib/puppet/application/ssl.rb:
|
477
|
+
#: ../lib/puppet/application/ssl.rb:178
|
478
478
|
msgid "Submitted certificate request for '%{name}' to %{url}"
|
479
479
|
msgstr ""
|
480
480
|
|
481
|
-
#: ../lib/puppet/application/ssl.rb:
|
481
|
+
#: ../lib/puppet/application/ssl.rb:181
|
482
482
|
msgid "Could not submit certificate request for '%{name}' to %{url} due to a conflict on the server"
|
483
483
|
msgstr ""
|
484
484
|
|
485
|
-
#: ../lib/puppet/application/ssl.rb:
|
485
|
+
#: ../lib/puppet/application/ssl.rb:183 ../lib/puppet/application/ssl.rb:186
|
486
486
|
msgid "Failed to submit certificate request: %{message}"
|
487
487
|
msgstr ""
|
488
488
|
|
489
|
-
#: ../lib/puppet/application/ssl.rb:
|
489
|
+
#: ../lib/puppet/application/ssl.rb:194
|
490
490
|
msgid "Downloading certificate '%{name}' from %{url}"
|
491
491
|
msgstr ""
|
492
492
|
|
493
|
-
#: ../lib/puppet/application/ssl.rb:
|
493
|
+
#: ../lib/puppet/application/ssl.rb:198
|
494
494
|
msgid "Downloaded certificate '%{name}' with fingerprint %{fingerprint}"
|
495
495
|
msgstr ""
|
496
496
|
|
497
|
-
#: ../lib/puppet/application/ssl.rb:
|
497
|
+
#: ../lib/puppet/application/ssl.rb:211 ../lib/puppet/application/ssl.rb:214
|
498
498
|
msgid "Failed to download certificate: %{message}"
|
499
499
|
msgstr ""
|
500
500
|
|
501
|
-
#: ../lib/puppet/application/ssl.rb:
|
501
|
+
#: ../lib/puppet/application/ssl.rb:243 ../lib/puppet/application/ssl.rb:246
|
502
502
|
msgid "Failed to connect to the CA to determine if certificate %{certname} has been cleaned"
|
503
503
|
msgstr ""
|
504
504
|
|
505
|
-
#: ../lib/puppet/application/ssl.rb:
|
505
|
+
#: ../lib/puppet/application/ssl.rb:250
|
506
506
|
msgid ""
|
507
507
|
"The certificate %{certname} must be cleaned from the CA first. To fix this,\n"
|
508
508
|
"run the following commands on the CA:\n"
|
@@ -510,7 +510,7 @@ msgid ""
|
|
510
510
|
" puppet ssl clean\n"
|
511
511
|
msgstr ""
|
512
512
|
|
513
|
-
#: ../lib/puppet/application/ssl.rb:
|
513
|
+
#: ../lib/puppet/application/ssl.rb:273
|
514
514
|
msgid "Removed %{label} %{path}"
|
515
515
|
msgstr ""
|
516
516
|
|
@@ -550,81 +550,81 @@ msgstr ""
|
|
550
550
|
msgid "Applied catalog in %{seconds} seconds"
|
551
551
|
msgstr ""
|
552
552
|
|
553
|
-
#: ../lib/puppet/configurer.rb:
|
553
|
+
#: ../lib/puppet/configurer.rb:227
|
554
554
|
msgid "Could not select a functional puppet server from server_list: '%{server_list}'"
|
555
555
|
msgstr ""
|
556
556
|
|
557
557
|
#. TRANSLATORS 'server_list' is the name of a setting and should not be translated
|
558
|
-
#: ../lib/puppet/configurer.rb:
|
558
|
+
#: ../lib/puppet/configurer.rb:241
|
559
559
|
msgid "Selected puppet server from the `server_list` setting: %{server}:%{port}"
|
560
560
|
msgstr ""
|
561
561
|
|
562
|
-
#: ../lib/puppet/configurer.rb:
|
562
|
+
#: ../lib/puppet/configurer.rb:277
|
563
563
|
msgid "Local environment: '%{local_env}' doesn't match the environment of the cached catalog '%{catalog_env}', switching agent to '%{catalog_env}'."
|
564
564
|
msgstr ""
|
565
565
|
|
566
|
-
#: ../lib/puppet/configurer.rb:
|
566
|
+
#: ../lib/puppet/configurer.rb:322
|
567
567
|
msgid "Local environment: '%{local_env}' doesn't match server specified node environment '%{node_env}', switching agent to '%{node_env}'."
|
568
568
|
msgstr ""
|
569
569
|
|
570
|
-
#: ../lib/puppet/configurer.rb:
|
570
|
+
#: ../lib/puppet/configurer.rb:337
|
571
571
|
msgid "Using configured environment '%{env}'"
|
572
572
|
msgstr ""
|
573
573
|
|
574
|
-
#: ../lib/puppet/configurer.rb:
|
574
|
+
#: ../lib/puppet/configurer.rb:341
|
575
575
|
msgid "Unable to fetch my node definition, but the agent run will continue:"
|
576
576
|
msgstr ""
|
577
577
|
|
578
|
-
#: ../lib/puppet/configurer.rb:
|
578
|
+
#: ../lib/puppet/configurer.rb:369
|
579
579
|
msgid "Not using catalog because its environment '%{catalog_env}' does not match agent specified environment '%{local_env}' and strict_environment_mode is set"
|
580
580
|
msgstr ""
|
581
581
|
|
582
|
-
#: ../lib/puppet/configurer.rb:
|
582
|
+
#: ../lib/puppet/configurer.rb:380
|
583
583
|
msgid "Catalog environment didn't stabilize after %{tries} fetches, aborting run"
|
584
584
|
msgstr ""
|
585
585
|
|
586
|
-
#: ../lib/puppet/configurer.rb:
|
586
|
+
#: ../lib/puppet/configurer.rb:382
|
587
587
|
msgid "Local environment: '%{local_env}' doesn't match server specified environment '%{catalog_env}', restarting agent run with environment '%{catalog_env}'"
|
588
588
|
msgstr ""
|
589
589
|
|
590
|
-
#: ../lib/puppet/configurer.rb:
|
590
|
+
#: ../lib/puppet/configurer.rb:436
|
591
591
|
msgid "Failed to apply catalog: %{detail}"
|
592
592
|
msgstr ""
|
593
593
|
|
594
|
-
#: ../lib/puppet/configurer.rb:
|
594
|
+
#: ../lib/puppet/configurer.rb:465 ../lib/puppet/http/resolver/server_list.rb:68 ../lib/puppet/http/resolver/server_list.rb:72
|
595
595
|
msgid "Puppet server %{host}:%{port} is unavailable: %{code} %{reason}"
|
596
596
|
msgstr ""
|
597
597
|
|
598
598
|
#. TRANSLATORS 'server_list' is the name of a setting and should not be translated
|
599
|
-
#: ../lib/puppet/configurer.rb:
|
599
|
+
#: ../lib/puppet/configurer.rb:469 ../lib/puppet/http/resolver/server_list.rb:77 ../lib/puppet/http/resolver/server_list.rb:80
|
600
600
|
msgid "Unable to connect to server from server_list setting: %{detail}"
|
601
601
|
msgstr ""
|
602
602
|
|
603
|
-
#: ../lib/puppet/configurer.rb:
|
603
|
+
#: ../lib/puppet/configurer.rb:480 ../lib/puppet/face/report.rb:47
|
604
604
|
msgid "Could not send report: %{detail}"
|
605
605
|
msgstr ""
|
606
606
|
|
607
|
-
#: ../lib/puppet/configurer.rb:
|
607
|
+
#: ../lib/puppet/configurer.rb:489
|
608
608
|
msgid "Could not save last run local report: %{detail}"
|
609
609
|
msgstr ""
|
610
610
|
|
611
|
-
#: ../lib/puppet/configurer.rb:
|
611
|
+
#: ../lib/puppet/configurer.rb:508
|
612
612
|
msgid "Uploading facts for %{node} to %{server}"
|
613
613
|
msgstr ""
|
614
614
|
|
615
|
-
#: ../lib/puppet/configurer.rb:
|
615
|
+
#: ../lib/puppet/configurer.rb:516
|
616
616
|
msgid "Failed to submit facts: %{detail}"
|
617
617
|
msgstr ""
|
618
618
|
|
619
|
-
#: ../lib/puppet/configurer.rb:
|
619
|
+
#: ../lib/puppet/configurer.rb:531
|
620
620
|
msgid "Could not run command from %{setting}: %{detail}"
|
621
621
|
msgstr ""
|
622
622
|
|
623
|
-
#: ../lib/puppet/configurer.rb:
|
623
|
+
#: ../lib/puppet/configurer.rb:549
|
624
624
|
msgid "Could not retrieve catalog from cache: %{detail}"
|
625
625
|
msgstr ""
|
626
626
|
|
627
|
-
#: ../lib/puppet/configurer.rb:
|
627
|
+
#: ../lib/puppet/configurer.rb:570
|
628
628
|
msgid "Could not retrieve catalog from remote server: %{detail}"
|
629
629
|
msgstr ""
|
630
630
|
|
@@ -692,46 +692,50 @@ msgstr ""
|
|
692
692
|
msgid "a data type can only have one implementation"
|
693
693
|
msgstr ""
|
694
694
|
|
695
|
-
#: ../lib/puppet/defaults.rb:
|
695
|
+
#: ../lib/puppet/defaults.rb:191
|
696
696
|
msgid "Cannot disable unrecognized warning types '%{invalid}'."
|
697
697
|
msgstr ""
|
698
698
|
|
699
|
-
#: ../lib/puppet/defaults.rb:
|
699
|
+
#: ../lib/puppet/defaults.rb:192
|
700
700
|
msgid "Valid values are '%{values}'."
|
701
701
|
msgstr ""
|
702
702
|
|
703
703
|
#. TRANSLATORS 'data_binding_terminus' is a setting and should not be translated
|
704
|
-
#: ../lib/puppet/defaults.rb:
|
704
|
+
#: ../lib/puppet/defaults.rb:559
|
705
705
|
msgid "Setting 'data_binding_terminus' is deprecated."
|
706
706
|
msgstr ""
|
707
707
|
|
708
708
|
#. TRANSLATORS 'hiera' should not be translated
|
709
|
-
#: ../lib/puppet/defaults.rb:
|
709
|
+
#: ../lib/puppet/defaults.rb:561
|
710
710
|
msgid "Convert custom terminus to hiera 5 API."
|
711
711
|
msgstr ""
|
712
712
|
|
713
713
|
#. TRANSLATORS 'environment_data_provider' is a setting and should not be translated
|
714
|
-
#: ../lib/puppet/defaults.rb:
|
714
|
+
#: ../lib/puppet/defaults.rb:774
|
715
715
|
msgid "Setting 'environment_data_provider' is deprecated."
|
716
716
|
msgstr ""
|
717
717
|
|
718
|
-
#: ../lib/puppet/defaults.rb:
|
718
|
+
#: ../lib/puppet/defaults.rb:859
|
719
719
|
msgid "Certificate names must be lower case"
|
720
720
|
msgstr ""
|
721
721
|
|
722
|
-
#: ../lib/puppet/defaults.rb:
|
722
|
+
#: ../lib/puppet/defaults.rb:1054
|
723
723
|
msgid "Setting 'ssl_client_ca_auth' is deprecated."
|
724
724
|
msgstr ""
|
725
725
|
|
726
|
-
#: ../lib/puppet/defaults.rb:
|
726
|
+
#: ../lib/puppet/defaults.rb:1141 ../lib/puppet/settings/enum_setting.rb:13 ../lib/puppet/settings/symbolic_enum_setting.rb:14
|
727
727
|
msgid "Invalid value '%{value}' for parameter %{name}. Allowed values are '%{allowed_values}'"
|
728
728
|
msgstr ""
|
729
729
|
|
730
730
|
#. TRANSLATORS 'pluginsync' is a setting and should not be translated
|
731
|
-
#: ../lib/puppet/defaults.rb:
|
731
|
+
#: ../lib/puppet/defaults.rb:2017
|
732
732
|
msgid "Setting 'pluginsync' is deprecated."
|
733
733
|
msgstr ""
|
734
734
|
|
735
|
+
#: ../lib/puppet/defaults.rb:2252
|
736
|
+
msgid "The 'func3x_check' setting is deprecated and will be removed in a future release."
|
737
|
+
msgstr ""
|
738
|
+
|
735
739
|
#: ../lib/puppet/error.rb:77
|
736
740
|
msgid "Could not parse for environment %{environment}: %{message}"
|
737
741
|
msgstr ""
|
@@ -774,7 +778,7 @@ msgstr ""
|
|
774
778
|
msgid "no matching resources found"
|
775
779
|
msgstr ""
|
776
780
|
|
777
|
-
#: ../lib/puppet/face/config.rb:7 ../lib/puppet/face/epp.rb:8 ../lib/puppet/face/facts.rb:
|
781
|
+
#: ../lib/puppet/face/config.rb:7 ../lib/puppet/face/epp.rb:8 ../lib/puppet/face/facts.rb:22 ../lib/puppet/face/generate.rb:7 ../lib/puppet/face/help.rb:9 ../lib/puppet/face/key.rb:5 ../lib/puppet/face/man.rb:8 ../lib/puppet/face/module.rb:9 ../lib/puppet/face/node.rb:4 ../lib/puppet/face/parser.rb:6 ../lib/puppet/face/plugin.rb:6 ../lib/puppet/face/report.rb:5 ../lib/puppet/face/resource.rb:5 ../lib/puppet/face/status.rb:5
|
778
782
|
msgid "Apache 2 license; see COPYING"
|
779
783
|
msgstr ""
|
780
784
|
|
@@ -840,28 +844,28 @@ msgid ""
|
|
840
844
|
"https://puppet.com/docs/puppet/latest/configuration.html#environment\n"
|
841
845
|
msgstr ""
|
842
846
|
|
843
|
-
#: ../lib/puppet/face/config.rb:
|
847
|
+
#: ../lib/puppet/face/config.rb:186
|
844
848
|
msgid "Deleted setting from '%{section_name}': '%{setting_string}', and adding it to 'server' section"
|
845
849
|
msgstr ""
|
846
850
|
|
847
|
-
#: ../lib/puppet/face/config.rb:
|
851
|
+
#: ../lib/puppet/face/config.rb:201
|
848
852
|
msgid "Delete a Puppet setting."
|
849
853
|
msgstr ""
|
850
854
|
|
851
|
-
#: ../lib/puppet/face/config.rb:
|
855
|
+
#: ../lib/puppet/face/config.rb:202
|
852
856
|
msgid "<setting>"
|
853
857
|
msgstr ""
|
854
858
|
|
855
|
-
#: ../lib/puppet/face/config.rb:
|
859
|
+
#: ../lib/puppet/face/config.rb:236 ../lib/puppet/face/config.rb:240 ../lib/puppet/face/config.rb:251
|
856
860
|
msgid "Deleted setting from '%{section_name}': '%{setting_string}'"
|
857
861
|
msgstr ""
|
858
862
|
|
859
|
-
#: ../lib/puppet/face/config.rb:
|
863
|
+
#: ../lib/puppet/face/config.rb:254
|
860
864
|
msgid "No setting found in configuration file for section '%{section_name}' setting name '%{name}'"
|
861
865
|
msgstr ""
|
862
866
|
|
863
867
|
#. TRANSLATORS the 'puppet.conf' is a specific file and should not be translated
|
864
|
-
#: ../lib/puppet/face/config.rb:
|
868
|
+
#: ../lib/puppet/face/config.rb:262
|
865
869
|
msgid "The puppet.conf file does not exist %{puppet_conf}"
|
866
870
|
msgstr ""
|
867
871
|
|
@@ -1011,26 +1015,86 @@ msgstr ""
|
|
1011
1015
|
msgid "--values option must evaluate to a Hash or undef, got: '%{values_class}'"
|
1012
1016
|
msgstr ""
|
1013
1017
|
|
1014
|
-
#: ../lib/puppet/face/facts.rb:
|
1018
|
+
#: ../lib/puppet/face/facts.rb:24
|
1015
1019
|
msgid "Retrieve and store facts."
|
1016
1020
|
msgstr ""
|
1017
1021
|
|
1018
|
-
#: ../lib/puppet/face/facts.rb:
|
1022
|
+
#: ../lib/puppet/face/facts.rb:32
|
1019
1023
|
msgid "Retrieve a node's facts."
|
1020
1024
|
msgstr ""
|
1021
1025
|
|
1022
|
-
#: ../lib/puppet/face/facts.rb:
|
1026
|
+
#: ../lib/puppet/face/facts.rb:33
|
1023
1027
|
msgid "[<node_certname>]"
|
1024
1028
|
msgstr ""
|
1025
1029
|
|
1026
|
-
#: ../lib/puppet/face/facts.rb:
|
1030
|
+
#: ../lib/puppet/face/facts.rb:56
|
1027
1031
|
msgid "Upload local facts to the puppet master."
|
1028
1032
|
msgstr ""
|
1029
1033
|
|
1030
|
-
#: ../lib/puppet/face/facts.rb:
|
1034
|
+
#: ../lib/puppet/face/facts.rb:98
|
1031
1035
|
msgid "Uploading facts for '%{node}' to '%{server}'"
|
1032
1036
|
msgstr ""
|
1033
1037
|
|
1038
|
+
#: ../lib/puppet/face/facts.rb:108
|
1039
|
+
msgid "Compare Facter 3 output with Facter 4 output"
|
1040
|
+
msgstr ""
|
1041
|
+
|
1042
|
+
#: ../lib/puppet/face/facts.rb:122
|
1043
|
+
msgid "Render the different facts as structured."
|
1044
|
+
msgstr ""
|
1045
|
+
|
1046
|
+
#: ../lib/puppet/face/facts.rb:125
|
1047
|
+
msgid "<regex>"
|
1048
|
+
msgstr ""
|
1049
|
+
|
1050
|
+
#: ../lib/puppet/face/facts.rb:126
|
1051
|
+
msgid "Regex used to exclude specific facts from diff."
|
1052
|
+
msgstr ""
|
1053
|
+
|
1054
|
+
#: ../lib/puppet/face/facts.rb:151
|
1055
|
+
msgid "Already using Facter 4. To use `puppet facts diff` remove facterng from the .conf file or run `puppet config set facterng false`."
|
1056
|
+
msgstr ""
|
1057
|
+
|
1058
|
+
#: ../lib/puppet/face/facts.rb:167
|
1059
|
+
msgid "Retrieve current node's facts."
|
1060
|
+
msgstr ""
|
1061
|
+
|
1062
|
+
#: ../lib/puppet/face/facts.rb:168
|
1063
|
+
msgid "[<facts>]"
|
1064
|
+
msgstr ""
|
1065
|
+
|
1066
|
+
#: ../lib/puppet/face/facts.rb:183 ../lib/puppet/face/facts.rb:188 ../lib/puppet/face/facts.rb:193 ../lib/puppet/face/module/changes.rb:21
|
1067
|
+
msgid "<path>"
|
1068
|
+
msgstr ""
|
1069
|
+
|
1070
|
+
#: ../lib/puppet/face/facts.rb:185
|
1071
|
+
msgid "The location of the config file for Facter."
|
1072
|
+
msgstr ""
|
1073
|
+
|
1074
|
+
#: ../lib/puppet/face/facts.rb:190
|
1075
|
+
msgid "The path to a directory that contains custom facts."
|
1076
|
+
msgstr ""
|
1077
|
+
|
1078
|
+
#: ../lib/puppet/face/facts.rb:195
|
1079
|
+
msgid "The path to a directory that contains external facts."
|
1080
|
+
msgstr ""
|
1081
|
+
|
1082
|
+
#: ../lib/puppet/face/facts.rb:199
|
1083
|
+
msgid "Disable fact blocking mechanism."
|
1084
|
+
msgstr ""
|
1085
|
+
|
1086
|
+
#: ../lib/puppet/face/facts.rb:203
|
1087
|
+
msgid "Disable fact caching mechanism."
|
1088
|
+
msgstr ""
|
1089
|
+
|
1090
|
+
#: ../lib/puppet/face/facts.rb:207
|
1091
|
+
msgid "Show legacy facts when querying all facts."
|
1092
|
+
msgstr ""
|
1093
|
+
|
1094
|
+
#: ../lib/puppet/face/facts.rb:211
|
1095
|
+
msgid "Show only the value when the action is called with a single query"
|
1096
|
+
msgstr ""
|
1097
|
+
|
1034
1098
|
#: ../lib/puppet/face/generate.rb:9
|
1035
1099
|
msgid "Generates Puppet code from Ruby definitions."
|
1036
1100
|
msgstr ""
|
@@ -1194,10 +1258,6 @@ msgstr ""
|
|
1194
1258
|
msgid "Array of strings representing paths of modified files."
|
1195
1259
|
msgstr ""
|
1196
1260
|
|
1197
|
-
#: ../lib/puppet/face/module/changes.rb:21
|
1198
|
-
msgid "<path>"
|
1199
|
-
msgstr ""
|
1200
|
-
|
1201
1261
|
#: ../lib/puppet/face/module/changes.rb:27
|
1202
1262
|
msgid "Could not find a valid module at %{path}"
|
1203
1263
|
msgstr ""
|
@@ -1690,21 +1750,29 @@ msgstr ""
|
|
1690
1750
|
msgid "Fileset paths must be fully qualified: %{path}"
|
1691
1751
|
msgstr ""
|
1692
1752
|
|
1693
|
-
#: ../lib/puppet/file_serving/fileset.rb:
|
1753
|
+
#: ../lib/puppet/file_serving/fileset.rb:51
|
1694
1754
|
msgid "Fileset paths must exist"
|
1695
1755
|
msgstr ""
|
1696
1756
|
|
1697
1757
|
#. TRANSLATORS "recurse" and "recurselimit" are parameter names and should not be translated
|
1698
|
-
#: ../lib/puppet/file_serving/fileset.rb:
|
1758
|
+
#: ../lib/puppet/file_serving/fileset.rb:53
|
1699
1759
|
msgid "Fileset recurse parameter must not be a number anymore, please use recurselimit"
|
1700
1760
|
msgstr ""
|
1701
1761
|
|
1762
|
+
#: ../lib/puppet/file_serving/fileset.rb:69
|
1763
|
+
msgid "The directory '%{path}' contains %{entries} entries, which exceeds the limit of %{munged_max_files} specified by the max_files parameter for this resource. The limit may be increased, but be aware that large number of file resources can result in excessive resource consumption and degraded performance. Consider using an alternate method to manage large directory trees"
|
1764
|
+
msgstr ""
|
1765
|
+
|
1766
|
+
#: ../lib/puppet/file_serving/fileset.rb:71
|
1767
|
+
msgid "The directory '%{path}' contains %{entries} entries, which exceeds the default soft limit %{soft_max_files} and may cause excessive resource consumption and degraded performance. To remove this warning set a value for `max_files` parameter or consider using an alternate method to manage large directory trees"
|
1768
|
+
msgstr ""
|
1769
|
+
|
1702
1770
|
#. TRANSLATORS ":links" is a parameter name and should not be translated
|
1703
|
-
#: ../lib/puppet/file_serving/fileset.rb:
|
1771
|
+
#: ../lib/puppet/file_serving/fileset.rb:92
|
1704
1772
|
msgid "Invalid :links value '%{links}'"
|
1705
1773
|
msgstr ""
|
1706
1774
|
|
1707
|
-
#: ../lib/puppet/file_serving/fileset.rb:
|
1775
|
+
#: ../lib/puppet/file_serving/fileset.rb:105
|
1708
1776
|
msgid "Invalid option '%{option}'"
|
1709
1777
|
msgstr ""
|
1710
1778
|
|
@@ -1832,11 +1900,11 @@ msgstr ""
|
|
1832
1900
|
msgid "%{dest} already exists and the :force option was not specified"
|
1833
1901
|
msgstr ""
|
1834
1902
|
|
1835
|
-
#: ../lib/puppet/file_system/windows.rb:
|
1903
|
+
#: ../lib/puppet/file_system/windows.rb:204
|
1836
1904
|
msgid "This version of Windows does not support symlinks. Windows Vista / 2008 or higher is required."
|
1837
1905
|
msgstr ""
|
1838
1906
|
|
1839
|
-
#: ../lib/puppet/file_system/windows.rb:
|
1907
|
+
#: ../lib/puppet/file_system/windows.rb:209
|
1840
1908
|
msgid "The current user does not have the necessary permission to manage symlinks."
|
1841
1909
|
msgstr ""
|
1842
1910
|
|
@@ -2276,6 +2344,10 @@ msgstr ""
|
|
2276
2344
|
msgid "Location URI is invalid: %{detail}"
|
2277
2345
|
msgstr ""
|
2278
2346
|
|
2347
|
+
#: ../lib/puppet/http/resolver/server_list.rb:70 ../lib/puppet/http/resolver/server_list.rb:78
|
2348
|
+
msgid "Trying with next server from server_list."
|
2349
|
+
msgstr ""
|
2350
|
+
|
2279
2351
|
#: ../lib/puppet/http/retry_after_handler.rb:83
|
2280
2352
|
msgid "Failed to parse Retry-After header '%{retry_after}' as an integer or RFC 2822 date"
|
2281
2353
|
msgstr ""
|
@@ -2350,87 +2422,87 @@ msgstr ""
|
|
2350
2422
|
msgid "Inlining file metadata"
|
2351
2423
|
msgstr ""
|
2352
2424
|
|
2353
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2425
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:260
|
2354
2426
|
msgid "Could not get metadata for %{resource}"
|
2355
2427
|
msgstr ""
|
2356
2428
|
|
2357
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2429
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:281
|
2358
2430
|
msgid "Unable to find a common checksum type between agent '%{agent_type}' and master '%{master_type}'."
|
2359
2431
|
msgstr ""
|
2360
2432
|
|
2361
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2433
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:288
|
2362
2434
|
msgid "Compiled static catalog for %{node} in environment %{environment} in %%{seconds} seconds"
|
2363
2435
|
msgstr ""
|
2364
2436
|
|
2365
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2437
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:289
|
2366
2438
|
msgid "Compiled static catalog for %{node} in environment %{environment}"
|
2367
2439
|
msgstr ""
|
2368
2440
|
|
2369
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2441
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:291
|
2370
2442
|
msgid "Compiled static catalog for %{node} in %%{seconds} seconds"
|
2371
2443
|
msgstr ""
|
2372
2444
|
|
2373
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2445
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:292
|
2374
2446
|
msgid "Compiled static catalog for %{node}"
|
2375
2447
|
msgstr ""
|
2376
2448
|
|
2377
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2449
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:297
|
2378
2450
|
msgid "Compiled catalog for %{node} in environment %{environment} in %%{seconds} seconds"
|
2379
2451
|
msgstr ""
|
2380
2452
|
|
2381
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2453
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:298
|
2382
2454
|
msgid "Compiled catalog for %{node} in environment %{environment}"
|
2383
2455
|
msgstr ""
|
2384
2456
|
|
2385
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2457
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:300
|
2386
2458
|
msgid "Compiled catalog for %{node} in %%{seconds} seconds"
|
2387
2459
|
msgstr ""
|
2388
2460
|
|
2389
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2461
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:301
|
2390
2462
|
msgid "Compiled catalog for %{node}"
|
2391
2463
|
msgstr ""
|
2392
2464
|
|
2393
2465
|
#. TRANSLATORS Inlined refers to adding additional metadata
|
2394
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2466
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:323
|
2395
2467
|
msgid "Inlined resource metadata into static catalog for %{node} in environment %{environment} in %%{seconds} seconds"
|
2396
2468
|
msgstr ""
|
2397
2469
|
|
2398
2470
|
#. TRANSLATORS Inlined refers to adding additional metadata
|
2399
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2471
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:325
|
2400
2472
|
msgid "Inlined resource metadata into static catalog for %{node} in environment %{environment}"
|
2401
2473
|
msgstr ""
|
2402
2474
|
|
2403
2475
|
#. TRANSLATORS Inlined refers to adding additional metadata
|
2404
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2476
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:328
|
2405
2477
|
msgid "Inlined resource metadata into static catalog for %{node} in %%{seconds} seconds"
|
2406
2478
|
msgstr ""
|
2407
2479
|
|
2408
2480
|
#. TRANSLATORS Inlined refers to adding additional metadata
|
2409
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2481
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:330
|
2410
2482
|
msgid "Inlined resource metadata into static catalog for %{node}"
|
2411
2483
|
msgstr ""
|
2412
2484
|
|
2413
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2485
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:347
|
2414
2486
|
msgid "Found node information"
|
2415
2487
|
msgstr ""
|
2416
2488
|
|
2417
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2489
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:355
|
2418
2490
|
msgid "Failed when searching for node %{name}: %{detail}"
|
2419
2491
|
msgstr ""
|
2420
2492
|
|
2421
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2493
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:375
|
2422
2494
|
msgid "Invalid option use_node for a remote request"
|
2423
2495
|
msgstr ""
|
2424
2496
|
|
2425
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2497
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:394
|
2426
2498
|
msgid "Could not find node '%{name}'; cannot compile"
|
2427
2499
|
msgstr ""
|
2428
2500
|
|
2429
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2501
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:427
|
2430
2502
|
msgid "Could not retrieve fact servername"
|
2431
2503
|
msgstr ""
|
2432
2504
|
|
2433
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2505
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:436
|
2434
2506
|
msgid "Could not retrieve either serverip or serverip6 fact"
|
2435
2507
|
msgstr ""
|
2436
2508
|
|
@@ -2534,7 +2606,11 @@ msgstr ""
|
|
2534
2606
|
msgid "You cannot save facts to the code store; it is only used for getting facts from Facter"
|
2535
2607
|
msgstr ""
|
2536
2608
|
|
2537
|
-
#: ../lib/puppet/indirector/facts/facter.rb:
|
2609
|
+
#: ../lib/puppet/indirector/facts/facter.rb:36
|
2610
|
+
msgid "puppet facts show requires version 4.0.40 or greater of Facter."
|
2611
|
+
msgstr ""
|
2612
|
+
|
2613
|
+
#: ../lib/puppet/indirector/facts/facter.rb:62
|
2538
2614
|
msgid "Loading facts"
|
2539
2615
|
msgstr ""
|
2540
2616
|
|
@@ -2708,11 +2784,11 @@ msgstr ""
|
|
2708
2784
|
msgid "invalid key"
|
2709
2785
|
msgstr ""
|
2710
2786
|
|
2711
|
-
#: ../lib/puppet/indirector/json.rb:
|
2787
|
+
#: ../lib/puppet/indirector/json.rb:62
|
2712
2788
|
msgid "Could not read JSON data for %{name} %{key}: %{detail}"
|
2713
2789
|
msgstr ""
|
2714
2790
|
|
2715
|
-
#: ../lib/puppet/indirector/json.rb:
|
2791
|
+
#: ../lib/puppet/indirector/json.rb:68
|
2716
2792
|
msgid "Could not parse JSON data for %{name} %{key}: %{detail}"
|
2717
2793
|
msgstr ""
|
2718
2794
|
|
@@ -2769,6 +2845,14 @@ msgstr ""
|
|
2769
2845
|
msgid "Could not load external node results for %{name}: %{detail}"
|
2770
2846
|
msgstr ""
|
2771
2847
|
|
2848
|
+
#: ../lib/puppet/indirector/report/json.rb:19 ../lib/puppet/indirector/report/yaml.rb:19
|
2849
|
+
msgid "replace_file mode: %{mode} is invalid"
|
2850
|
+
msgstr ""
|
2851
|
+
|
2852
|
+
#: ../lib/puppet/indirector/report/json.rb:31 ../lib/puppet/indirector/report/yaml.rb:31 ../lib/puppet/indirector/yaml.rb:32
|
2853
|
+
msgid "Could not save %{indirection} %{request}: %{detail}"
|
2854
|
+
msgstr ""
|
2855
|
+
|
2772
2856
|
#: ../lib/puppet/indirector/report/processor.rb:39
|
2773
2857
|
msgid "Report %{report} failed: %{detail}"
|
2774
2858
|
msgstr ""
|
@@ -2781,14 +2865,6 @@ msgstr ""
|
|
2781
2865
|
msgid "Server version %{version} does not accept reports in '%{format}', use `preferred_serialization_format=pson`"
|
2782
2866
|
msgstr ""
|
2783
2867
|
|
2784
|
-
#: ../lib/puppet/indirector/report/yaml.rb:19
|
2785
|
-
msgid "replace_file mode: %{mode} is invalid"
|
2786
|
-
msgstr ""
|
2787
|
-
|
2788
|
-
#: ../lib/puppet/indirector/report/yaml.rb:31 ../lib/puppet/indirector/yaml.rb:32
|
2789
|
-
msgid "Could not save %{indirection} %{request}: %{detail}"
|
2790
|
-
msgstr ""
|
2791
|
-
|
2792
2868
|
#: ../lib/puppet/indirector/request.rb:103
|
2793
2869
|
msgid "Could not find indirection '%{indirection}'"
|
2794
2870
|
msgstr ""
|
@@ -2987,8 +3063,8 @@ msgstr ""
|
|
2987
3063
|
msgid "Option %{option} conflicts with existing option %{conflict} on %{face}"
|
2988
3064
|
msgstr ""
|
2989
3065
|
|
2990
|
-
#. TRANSLATORS 'Puppet.settings' should not be translated
|
2991
3066
|
#. TRANSLATORS 'Puppet.settings' references to the Puppet settings options and should not be translated
|
3067
|
+
#. TRANSLATORS 'Puppet.settings' should not be translated
|
2992
3068
|
#: ../lib/puppet/interface/action.rb:315 ../lib/puppet/interface/option_manager.rb:14
|
2993
3069
|
msgid "Global option %{option} does not exist in Puppet.settings"
|
2994
3070
|
msgstr ""
|
@@ -3344,11 +3420,11 @@ msgstr ""
|
|
3344
3420
|
msgid "Resolving dependencies ..."
|
3345
3421
|
msgstr ""
|
3346
3422
|
|
3347
|
-
#: ../lib/puppet/module_tool/applications/installer.rb:
|
3423
|
+
#: ../lib/puppet/module_tool/applications/installer.rb:208
|
3348
3424
|
msgid "Preparing to install ..."
|
3349
3425
|
msgstr ""
|
3350
3426
|
|
3351
|
-
#: ../lib/puppet/module_tool/applications/installer.rb:
|
3427
|
+
#: ../lib/puppet/module_tool/applications/installer.rb:211
|
3352
3428
|
msgid "Installing -- do not interrupt ..."
|
3353
3429
|
msgstr ""
|
3354
3430
|
|
@@ -3392,7 +3468,7 @@ msgstr ""
|
|
3392
3468
|
msgid "'%{module_name}' (%{version}) requested; '%{module_name}' (%{installed_version}) already installed"
|
3393
3469
|
msgstr ""
|
3394
3470
|
|
3395
|
-
#: ../lib/puppet/module_tool/errors/installer.rb:16 ../lib/puppet/module_tool/errors/installer.rb:54 ../lib/puppet/module_tool/errors/installer.rb:72 ../lib/puppet/module_tool/errors/shared.rb:
|
3471
|
+
#: ../lib/puppet/module_tool/errors/installer.rb:16 ../lib/puppet/module_tool/errors/installer.rb:54 ../lib/puppet/module_tool/errors/installer.rb:72 ../lib/puppet/module_tool/errors/shared.rb:79 ../lib/puppet/module_tool/errors/shared.rb:121
|
3396
3472
|
msgid "Could not install module '%{module_name}' (%{version})"
|
3397
3473
|
msgstr ""
|
3398
3474
|
|
@@ -3422,7 +3498,7 @@ msgstr ""
|
|
3422
3498
|
msgid "Could not install '%{requested_package}'"
|
3423
3499
|
msgstr ""
|
3424
3500
|
|
3425
|
-
#: ../lib/puppet/module_tool/errors/installer.rb:38 ../lib/puppet/module_tool/errors/shared.rb:
|
3501
|
+
#: ../lib/puppet/module_tool/errors/installer.rb:38 ../lib/puppet/module_tool/errors/shared.rb:58
|
3426
3502
|
msgid " No releases are available from %{source}"
|
3427
3503
|
msgstr ""
|
3428
3504
|
|
@@ -3467,150 +3543,162 @@ msgstr ""
|
|
3467
3543
|
msgid " Package attempted to install file into %{path} under %{directory}."
|
3468
3544
|
msgstr ""
|
3469
3545
|
|
3470
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3546
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:12
|
3471
3547
|
msgid "Could not %{action} '%{module_name}' (%{version}); no version satisfies all dependencies"
|
3472
3548
|
msgstr ""
|
3473
3549
|
|
3474
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3550
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:17 ../lib/puppet/module_tool/errors/shared.rb:186 ../lib/puppet/module_tool/errors/upgrader.rb:58
|
3475
3551
|
msgid "Could not %{action} module '%{module_name}' (%{version})"
|
3476
3552
|
msgstr ""
|
3477
3553
|
|
3478
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3479
|
-
msgid "
|
3554
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:20
|
3555
|
+
msgid " The requested version cannot satisfy one or more of the following installed modules:"
|
3556
|
+
msgstr ""
|
3557
|
+
|
3558
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:22
|
3559
|
+
msgid " %{name}, installed: %{current_version}, expected: %{constraints}"
|
3560
|
+
msgstr ""
|
3561
|
+
|
3562
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:25
|
3563
|
+
msgid " %{mod}, expects '%{name}': %{range}"
|
3564
|
+
msgstr ""
|
3565
|
+
|
3566
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:30
|
3567
|
+
msgid " The requested version cannot satisfy all dependencies"
|
3480
3568
|
msgstr ""
|
3481
3569
|
|
3482
3570
|
#. TRANSLATORS `puppet module %{action} --ignore-dependencies` is a command line and should not be translated
|
3483
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3484
|
-
msgid "
|
3571
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:34
|
3572
|
+
msgid " Use `puppet module %{action} '%{module_name}' --ignore-dependencies` to %{action} only this module"
|
3485
3573
|
msgstr ""
|
3486
3574
|
|
3487
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3575
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:48
|
3488
3576
|
msgid "Could not %{action} '%{module_name}'; no releases are available from %{source}"
|
3489
3577
|
msgstr ""
|
3490
3578
|
|
3491
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3579
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:50
|
3492
3580
|
msgid "Could not %{action} '%{module_name}'; no releases matching '%{version}' are available from %{source}"
|
3493
3581
|
msgstr ""
|
3494
3582
|
|
3495
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3583
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:56
|
3496
3584
|
msgid "Could not %{action} '%{module_name}' (%{version})"
|
3497
3585
|
msgstr ""
|
3498
3586
|
|
3499
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3587
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:59
|
3500
3588
|
msgid " Does '%{module_name}' have at least one published release?"
|
3501
3589
|
msgstr ""
|
3502
3590
|
|
3503
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3591
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:61
|
3504
3592
|
msgid " No releases matching '%{requested_version}' are available from %{source}"
|
3505
3593
|
msgstr ""
|
3506
3594
|
|
3507
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3595
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:74
|
3508
3596
|
msgid "'%{module_name}' (%{version}) requested; installation conflict"
|
3509
3597
|
msgstr ""
|
3510
3598
|
|
3511
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3599
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:82
|
3512
3600
|
msgid " Dependency '%{name}' (%{version}) would overwrite %{directory}"
|
3513
3601
|
msgstr ""
|
3514
3602
|
|
3515
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3603
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:84
|
3516
3604
|
msgid " Installation would overwrite %{directory}"
|
3517
3605
|
msgstr ""
|
3518
3606
|
|
3519
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3607
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:88
|
3520
3608
|
msgid " Currently, '%{current_name}' (%{current_version}) is installed to that directory"
|
3521
3609
|
msgstr ""
|
3522
3610
|
|
3523
3611
|
#. TRANSLATORS `puppet module install --ignore-dependencies` is a command line and should not be translated
|
3524
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3612
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:93
|
3525
3613
|
msgid " Use `puppet module install --ignore-dependencies` to install only this module"
|
3526
3614
|
msgstr ""
|
3527
3615
|
|
3528
3616
|
#. TRANSLATORS `puppet module install --force` is a command line and should not be translated
|
3529
3617
|
#. TRANSLATORS `puppet module install --force` is a command line and should not be translated
|
3530
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3618
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:96 ../lib/puppet/module_tool/errors/shared.rb:125
|
3531
3619
|
msgid " Use `puppet module install --force` to install this module anyway"
|
3532
3620
|
msgstr ""
|
3533
3621
|
|
3534
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3622
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:110
|
3535
3623
|
msgid "'%{module_name}' (%{version}) requested; Invalid dependency cycle"
|
3536
3624
|
msgstr ""
|
3537
3625
|
|
3538
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3626
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:115
|
3539
3627
|
msgid "You specified '%{name}' (%{version})"
|
3540
3628
|
msgstr ""
|
3541
3629
|
|
3542
3630
|
#. TRANSLATORS This message repeats as separate lines as a list under the heading "You specified '%{name}' (%{version})\n"
|
3543
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3631
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:118
|
3544
3632
|
msgid "This depends on '%{name}' (%{version})"
|
3545
3633
|
msgstr ""
|
3546
3634
|
|
3547
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3635
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:122
|
3548
3636
|
msgid " No version of '%{module_name}' will satisfy dependencies"
|
3549
3637
|
msgstr ""
|
3550
3638
|
|
3551
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3639
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:135
|
3552
3640
|
msgid "Could not %{action} '%{module_name}'; module is not installed"
|
3553
3641
|
msgstr ""
|
3554
3642
|
|
3555
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3643
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:140 ../lib/puppet/module_tool/errors/shared.rb:163 ../lib/puppet/module_tool/errors/shared.rb:204
|
3556
3644
|
msgid "Could not %{action} module '%{module_name}'"
|
3557
3645
|
msgstr ""
|
3558
3646
|
|
3559
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3647
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:141
|
3560
3648
|
msgid " Module '%{module_name}' is not installed"
|
3561
3649
|
msgstr ""
|
3562
3650
|
|
3563
3651
|
#. TRANSLATORS `puppet module %{action} %{suggestion}` is a command line and should not be translated
|
3564
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3652
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:144
|
3565
3653
|
msgid " You may have meant `puppet module %{action} %{suggestion}`"
|
3566
3654
|
msgstr ""
|
3567
3655
|
|
3568
3656
|
#. TRANSLATORS `puppet module install` is a command line and should not be translated
|
3569
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3657
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:147
|
3570
3658
|
msgid " Use `puppet module install` to install this module"
|
3571
3659
|
msgstr ""
|
3572
3660
|
|
3573
3661
|
#. TRANSLATORS "module path" refers to a set of directories where modules may be installed
|
3574
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3662
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:158
|
3575
3663
|
msgid "Could not %{action} '%{module_name}'; module appears in multiple places in the module path"
|
3576
3664
|
msgstr ""
|
3577
3665
|
|
3578
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3666
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:164
|
3579
3667
|
msgid " Module '%{module_name}' appears multiple places in the module path"
|
3580
3668
|
msgstr ""
|
3581
3669
|
|
3582
3670
|
#. TRANSLATORS This is repeats as separate lines as a list under "Module '%{module_name}' appears multiple places in the module path"
|
3583
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3671
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:167
|
3584
3672
|
msgid " '%{module_name}' (%{version}) was found in %{path}"
|
3585
3673
|
msgstr ""
|
3586
3674
|
|
3587
3675
|
#. TRANSLATORS `--modulepath` is command line option and should not be translated
|
3588
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3676
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:170
|
3589
3677
|
msgid " Use the `--modulepath` option to limit the search to specific directories"
|
3590
3678
|
msgstr ""
|
3591
3679
|
|
3592
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3680
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:181
|
3593
3681
|
msgid "Could not %{action} '%{module_name}'; module has had changes made locally"
|
3594
3682
|
msgstr ""
|
3595
3683
|
|
3596
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3684
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:187
|
3597
3685
|
msgid " Installed module has had changes made locally"
|
3598
3686
|
msgstr ""
|
3599
3687
|
|
3600
3688
|
#. TRANSLATORS `puppet module %{action} --ignore-changes` is a command line and should not be translated
|
3601
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3689
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:189
|
3602
3690
|
msgid " Use `puppet module %{action} --ignore-changes` to %{action} this module anyway"
|
3603
3691
|
msgstr ""
|
3604
3692
|
|
3605
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3693
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:199
|
3606
3694
|
msgid "Could not %{action} '%{module_name}'; %{error}"
|
3607
3695
|
msgstr ""
|
3608
3696
|
|
3609
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3697
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:205
|
3610
3698
|
msgid " Failure trying to parse metadata"
|
3611
3699
|
msgstr ""
|
3612
3700
|
|
3613
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3701
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:206
|
3614
3702
|
msgid " Original message was: %{message}"
|
3615
3703
|
msgstr ""
|
3616
3704
|
|
@@ -4201,54 +4289,54 @@ msgstr ""
|
|
4201
4289
|
|
4202
4290
|
#. TRANSLATORS: do not translate the variable names in this error message
|
4203
4291
|
#. TRANSLATORS: do not translate the variable names in this error message
|
4204
|
-
#: ../lib/puppet/pal/pal_impl.rb:75 ../lib/puppet/pal/pal_impl.rb:
|
4292
|
+
#: ../lib/puppet/pal/pal_impl.rb:75 ../lib/puppet/pal/pal_impl.rb:181
|
4205
4293
|
msgid "manifest_file or code_string cannot be given when configured_by_env is true"
|
4206
4294
|
msgstr ""
|
4207
4295
|
|
4208
|
-
#: ../lib/puppet/pal/pal_impl.rb:
|
4296
|
+
#: ../lib/puppet/pal/pal_impl.rb:237
|
4209
4297
|
msgid "temporary environment name"
|
4210
4298
|
msgstr ""
|
4211
4299
|
|
4212
4300
|
#. TRANSLATORS: do not translate variable name string in these assertions
|
4213
|
-
#: ../lib/puppet/pal/pal_impl.rb:
|
4301
|
+
#: ../lib/puppet/pal/pal_impl.rb:242
|
4214
4302
|
msgid "A block must be given to 'in_tmp_environment'"
|
4215
4303
|
msgstr ""
|
4216
4304
|
|
4217
4305
|
#. TRANSLATORS terms in the assertions below are names of terms in code
|
4218
|
-
#: ../lib/puppet/pal/pal_impl.rb:
|
4306
|
+
#: ../lib/puppet/pal/pal_impl.rb:296
|
4219
4307
|
msgid "A block must be given to 'in_environment'"
|
4220
4308
|
msgstr ""
|
4221
4309
|
|
4222
4310
|
#. TRANSLATORS 'in_environment' is a name, do not translate
|
4223
|
-
#: ../lib/puppet/pal/pal_impl.rb:
|
4311
|
+
#: ../lib/puppet/pal/pal_impl.rb:301
|
4224
4312
|
msgid "The environment directory '%{env_dir}' does not exist"
|
4225
4313
|
msgstr ""
|
4226
4314
|
|
4227
|
-
#: ../lib/puppet/pal/pal_impl.rb:
|
4315
|
+
#: ../lib/puppet/pal/pal_impl.rb:324
|
4228
4316
|
msgid "No directory found for the environment '%{env_name}' on the path '%{envpath}'"
|
4229
4317
|
msgstr ""
|
4230
4318
|
|
4231
|
-
#: ../lib/puppet/pal/pal_impl.rb:
|
4319
|
+
#: ../lib/puppet/pal/pal_impl.rb:378
|
4232
4320
|
msgid "Given variables must be a hash, got %{type}"
|
4233
4321
|
msgstr ""
|
4234
4322
|
|
4235
|
-
#: ../lib/puppet/pal/pal_impl.rb:
|
4323
|
+
#: ../lib/puppet/pal/pal_impl.rb:384
|
4236
4324
|
msgid "Given variable '%{varname}' has illegal name"
|
4237
4325
|
msgstr ""
|
4238
4326
|
|
4239
|
-
#: ../lib/puppet/pal/pal_impl.rb:
|
4327
|
+
#: ../lib/puppet/pal/pal_impl.rb:388
|
4240
4328
|
msgid "Given value for '%{varname}' has illegal type - got: %{type}"
|
4241
4329
|
msgstr ""
|
4242
4330
|
|
4243
|
-
#: ../lib/puppet/pal/pal_impl.rb:
|
4331
|
+
#: ../lib/puppet/pal/pal_impl.rb:562
|
4244
4332
|
msgid "Puppet Pal: %{what}"
|
4245
4333
|
msgstr ""
|
4246
4334
|
|
4247
|
-
#: ../lib/puppet/pal/pal_impl.rb:
|
4335
|
+
#: ../lib/puppet/pal/pal_impl.rb:576
|
4248
4336
|
msgid "Cannot use '%{a_term}' and '%{b_term}' at the same time"
|
4249
4337
|
msgstr ""
|
4250
4338
|
|
4251
|
-
#: ../lib/puppet/pal/pal_impl.rb:
|
4339
|
+
#: ../lib/puppet/pal/pal_impl.rb:583
|
4252
4340
|
msgid "A block must be given"
|
4253
4341
|
msgstr ""
|
4254
4342
|
|
@@ -4961,23 +5049,23 @@ msgstr ""
|
|
4961
5049
|
msgid "multi var assignment from class"
|
4962
5050
|
msgstr ""
|
4963
5051
|
|
4964
|
-
#: ../lib/puppet/pops/evaluator/evaluator_impl.rb:
|
5052
|
+
#: ../lib/puppet/pops/evaluator/evaluator_impl.rb:761
|
4965
5053
|
msgid "break() from context where this is illegal"
|
4966
5054
|
msgstr ""
|
4967
5055
|
|
4968
|
-
#: ../lib/puppet/pops/evaluator/evaluator_impl.rb:
|
5056
|
+
#: ../lib/puppet/pops/evaluator/evaluator_impl.rb:1241
|
4969
5057
|
msgid "Can only append Array or Hash to a Hash"
|
4970
5058
|
msgstr ""
|
4971
5059
|
|
4972
|
-
#: ../lib/puppet/pops/evaluator/evaluator_impl.rb:
|
5060
|
+
#: ../lib/puppet/pops/evaluator/evaluator_impl.rb:1245
|
4973
5061
|
msgid "An URI can only be merged with an URI or String"
|
4974
5062
|
msgstr ""
|
4975
5063
|
|
4976
|
-
#: ../lib/puppet/pops/evaluator/evaluator_impl.rb:
|
5064
|
+
#: ../lib/puppet/pops/evaluator/evaluator_impl.rb:1248
|
4977
5065
|
msgid "Can only append Binary to a Binary"
|
4978
5066
|
msgstr ""
|
4979
5067
|
|
4980
|
-
#: ../lib/puppet/pops/evaluator/evaluator_impl.rb:
|
5068
|
+
#: ../lib/puppet/pops/evaluator/evaluator_impl.rb:1281
|
4981
5069
|
msgid "Can only delete from an Array or Hash."
|
4982
5070
|
msgstr ""
|
4983
5071
|
|
@@ -6800,26 +6888,30 @@ msgstr ""
|
|
6800
6888
|
msgid "Mac OS X packages must specify a package source"
|
6801
6889
|
msgstr ""
|
6802
6890
|
|
6803
|
-
#: ../lib/puppet/provider/package/apt.rb:
|
6891
|
+
#: ../lib/puppet/provider/package/apt.rb:89
|
6804
6892
|
msgid "/etc/apt/sources.list contains a cdrom source; not installing. Use 'allowcdrom' to override this failure."
|
6805
6893
|
msgstr ""
|
6806
6894
|
|
6807
|
-
#: ../lib/puppet/provider/package/apt.rb:
|
6895
|
+
#: ../lib/puppet/provider/package/apt.rb:172 ../lib/puppet/provider/package/aptitude.rb:21 ../lib/puppet/provider/package/ports.rb:20 ../lib/puppet/provider/package/portupgrade.rb:94 ../lib/puppet/provider/package/portupgrade.rb:152 ../lib/puppet/provider/package/rug.rb:28 ../lib/puppet/provider/package/up2date.rb:17 ../lib/puppet/provider/package/yum.rb:312 ../lib/puppet/provider/package/zypper.rb:146
|
6896
|
+
msgid "Could not find package %{name}"
|
6897
|
+
msgstr ""
|
6898
|
+
|
6899
|
+
#: ../lib/puppet/provider/package/apt.rb:176 ../lib/puppet/provider/package/yum.rb:317
|
6900
|
+
msgid "Failed to update to version %{should}, got version %{version} instead"
|
6901
|
+
msgstr ""
|
6902
|
+
|
6903
|
+
#: ../lib/puppet/provider/package/apt.rb:189 ../lib/puppet/provider/package/fink.rb:55
|
6808
6904
|
msgid "Could not find latest version"
|
6809
6905
|
msgstr ""
|
6810
6906
|
|
6811
|
-
#: ../lib/puppet/provider/package/apt.rb:
|
6907
|
+
#: ../lib/puppet/provider/package/apt.rb:200 ../lib/puppet/provider/package/fink.rb:66
|
6812
6908
|
msgid "Preseeding %{response} to debconf-set-selections"
|
6813
6909
|
msgstr ""
|
6814
6910
|
|
6815
|
-
#: ../lib/puppet/provider/package/apt.rb:
|
6911
|
+
#: ../lib/puppet/provider/package/apt.rb:204 ../lib/puppet/provider/package/fink.rb:70
|
6816
6912
|
msgid "No responsefile specified or non existent, not preseeding anything"
|
6817
6913
|
msgstr ""
|
6818
6914
|
|
6819
|
-
#: ../lib/puppet/provider/package/aptitude.rb:21 ../lib/puppet/provider/package/ports.rb:20 ../lib/puppet/provider/package/portupgrade.rb:94 ../lib/puppet/provider/package/portupgrade.rb:152 ../lib/puppet/provider/package/rug.rb:28 ../lib/puppet/provider/package/up2date.rb:17 ../lib/puppet/provider/package/yum.rb:312 ../lib/puppet/provider/package/zypper.rb:146
|
6820
|
-
msgid "Could not find package %{name}"
|
6821
|
-
msgstr ""
|
6822
|
-
|
6823
6915
|
#: ../lib/puppet/provider/package/aptrpm.rb:53
|
6824
6916
|
msgid "Could not match version '%{version}'"
|
6825
6917
|
msgstr ""
|
@@ -7155,10 +7247,6 @@ msgstr ""
|
|
7155
7247
|
msgid "Could not find package %{wanted}"
|
7156
7248
|
msgstr ""
|
7157
7249
|
|
7158
|
-
#: ../lib/puppet/provider/package/yum.rb:317
|
7159
|
-
msgid "Failed to update to version %{should}, got version %{version} instead"
|
7160
|
-
msgstr ""
|
7161
|
-
|
7162
7250
|
#: ../lib/puppet/provider/package_targetable.rb:56
|
7163
7251
|
msgid "Provider %{name} package command is not functional on this host"
|
7164
7252
|
msgstr ""
|
@@ -7625,69 +7713,69 @@ msgstr ""
|
|
7625
7713
|
msgid "Downloaded existing certificate request for %{name} from %{server}"
|
7626
7714
|
msgstr ""
|
7627
7715
|
|
7628
|
-
#: ../lib/puppet/settings.rb:
|
7716
|
+
#: ../lib/puppet/settings.rb:99
|
7629
7717
|
msgid "New environment loaders generated from the requested section."
|
7630
7718
|
msgstr ""
|
7631
7719
|
|
7632
|
-
#: ../lib/puppet/settings.rb:
|
7720
|
+
#: ../lib/puppet/settings.rb:301
|
7633
7721
|
msgid "Attempting to initialize global default settings more than once!"
|
7634
7722
|
msgstr ""
|
7635
7723
|
|
7636
|
-
#: ../lib/puppet/settings.rb:
|
7724
|
+
#: ../lib/puppet/settings.rb:501
|
7637
7725
|
msgid "Using --configprint is deprecated. Use 'puppet config <subcommand>' instead."
|
7638
7726
|
msgstr ""
|
7639
7727
|
|
7640
|
-
#: ../lib/puppet/settings.rb:
|
7728
|
+
#: ../lib/puppet/settings.rb:643
|
7641
7729
|
msgid "Could not load %{file}: %{detail}"
|
7642
7730
|
msgstr ""
|
7643
7731
|
|
7644
|
-
#: ../lib/puppet/settings.rb:
|
7732
|
+
#: ../lib/puppet/settings.rb:750
|
7645
7733
|
msgid "Invalid setting type '%{type}'"
|
7646
7734
|
msgstr ""
|
7647
7735
|
|
7648
|
-
#: ../lib/puppet/settings.rb:
|
7736
|
+
#: ../lib/puppet/settings.rb:905
|
7649
7737
|
msgid "Unknown searchpath case: %{source_type} for the %{source} settings path element."
|
7650
7738
|
msgstr ""
|
7651
7739
|
|
7652
|
-
#: ../lib/puppet/settings.rb:
|
7740
|
+
#: ../lib/puppet/settings.rb:978
|
7653
7741
|
msgid "setting definition for '%{name}' is not a hash!"
|
7654
7742
|
msgstr ""
|
7655
7743
|
|
7656
|
-
#: ../lib/puppet/settings.rb:
|
7744
|
+
#: ../lib/puppet/settings.rb:983
|
7657
7745
|
msgid "Setting %{name} is already defined"
|
7658
7746
|
msgstr ""
|
7659
7747
|
|
7660
|
-
#: ../lib/puppet/settings.rb:
|
7748
|
+
#: ../lib/puppet/settings.rb:989
|
7661
7749
|
msgid "Setting %{name} is already using short name '%{short}'"
|
7662
7750
|
msgstr ""
|
7663
7751
|
|
7664
|
-
#: ../lib/puppet/settings.rb:
|
7752
|
+
#: ../lib/puppet/settings.rb:1253
|
7665
7753
|
msgid "Setting %{name} is deprecated."
|
7666
7754
|
msgstr ""
|
7667
7755
|
|
7668
7756
|
#. TRANSLATORS 'puppet.conf' is a file name and should not be translated
|
7669
|
-
#: ../lib/puppet/settings.rb:
|
7757
|
+
#: ../lib/puppet/settings.rb:1258
|
7670
7758
|
msgid "Setting %{name} is deprecated in puppet.conf."
|
7671
7759
|
msgstr ""
|
7672
7760
|
|
7673
|
-
#: ../lib/puppet/settings.rb:
|
7761
|
+
#: ../lib/puppet/settings.rb:1445
|
7674
7762
|
msgid "Error converting value for param '%{name}': %{detail}"
|
7675
7763
|
msgstr ""
|
7676
7764
|
|
7677
|
-
#: ../lib/puppet/settings.rb:
|
7765
|
+
#: ../lib/puppet/settings.rb:1469
|
7678
7766
|
msgid "Could not find value for %{expression}"
|
7679
7767
|
msgstr ""
|
7680
7768
|
|
7681
7769
|
#. TRANSLATORS '$environment' is a Puppet specific variable and should not be translated
|
7682
|
-
#: ../lib/puppet/settings.rb:
|
7770
|
+
#: ../lib/puppet/settings.rb:1479
|
7683
7771
|
msgid "You cannot interpolate $environment within '%{setting_name}' when using directory environments."
|
7684
7772
|
msgstr ""
|
7685
7773
|
|
7686
|
-
#: ../lib/puppet/settings.rb:
|
7774
|
+
#: ../lib/puppet/settings.rb:1480
|
7687
7775
|
msgid "Its value will remain %{value}."
|
7688
7776
|
msgstr ""
|
7689
7777
|
|
7690
|
-
#: ../lib/puppet/settings.rb:
|
7778
|
+
#: ../lib/puppet/settings.rb:1511
|
7691
7779
|
msgid "Attempt to assign a value to unknown setting %{name}"
|
7692
7780
|
msgstr ""
|
7693
7781
|
|
@@ -7700,38 +7788,38 @@ msgid "Invalid autosign value %{value}: must be 'true'/'false' or an absolute pa
|
|
7700
7788
|
msgstr ""
|
7701
7789
|
|
7702
7790
|
#. TRANSLATORS ':%{name}', ':call_hook', and ':on_write_only' should not be translated
|
7703
|
-
#: ../lib/puppet/settings/base_setting.rb:
|
7791
|
+
#: ../lib/puppet/settings/base_setting.rb:37
|
7704
7792
|
msgid "Setting :%{name} :call_hook is nil, defaulting to :on_write_only"
|
7705
7793
|
msgstr ""
|
7706
7794
|
|
7707
7795
|
#. TRANSLATORS 'call_hook' is a Puppet option name and should not be translated
|
7708
|
-
#: ../lib/puppet/settings/base_setting.rb:
|
7796
|
+
#: ../lib/puppet/settings/base_setting.rb:42
|
7709
7797
|
msgid "Invalid option %{value} for call_hook"
|
7710
7798
|
msgstr ""
|
7711
7799
|
|
7712
7800
|
#. TRANSLATORS ':call_hook' and ':hook' are specific setting names and should not be translated
|
7713
|
-
#: ../lib/puppet/settings/base_setting.rb:
|
7801
|
+
#: ../lib/puppet/settings/base_setting.rb:101
|
7714
7802
|
msgid "Cannot reference :call_hook for :%{name} if no :hook is defined"
|
7715
7803
|
msgstr ""
|
7716
7804
|
|
7717
|
-
#: ../lib/puppet/settings/base_setting.rb:
|
7805
|
+
#: ../lib/puppet/settings/base_setting.rb:107
|
7718
7806
|
msgid "%{class_name} (setting '%{setting}') does not accept %{parameter}"
|
7719
7807
|
msgstr ""
|
7720
7808
|
|
7721
|
-
#: ../lib/puppet/settings/base_setting.rb:
|
7809
|
+
#: ../lib/puppet/settings/base_setting.rb:114
|
7722
7810
|
msgid "You must provide a description for the %{class_name} config option"
|
7723
7811
|
msgstr ""
|
7724
7812
|
|
7725
|
-
#: ../lib/puppet/settings/base_setting.rb:
|
7813
|
+
#: ../lib/puppet/settings/base_setting.rb:128
|
7726
7814
|
msgid "Short names can only be one character."
|
7727
7815
|
msgstr ""
|
7728
7816
|
|
7729
7817
|
#. TRANSLATORS 'deprecated' is a Puppet setting and ':completely' and ':allowed_on_commandline' are possible values and should not be translated
|
7730
|
-
#: ../lib/puppet/settings/base_setting.rb:
|
7818
|
+
#: ../lib/puppet/settings/base_setting.rb:197
|
7731
7819
|
msgid "Unsupported deprecated value '%{deprecation}'."
|
7732
7820
|
msgstr ""
|
7733
7821
|
|
7734
|
-
#: ../lib/puppet/settings/base_setting.rb:
|
7822
|
+
#: ../lib/puppet/settings/base_setting.rb:198
|
7735
7823
|
msgid "Supported values for deprecated are ':completely' or ':allowed_on_commandline'"
|
7736
7824
|
msgstr ""
|
7737
7825
|
|
@@ -7781,19 +7869,19 @@ msgid "Invalid duration format '%{value}' for parameter: %{name}"
|
|
7781
7869
|
msgstr ""
|
7782
7870
|
|
7783
7871
|
#. TRANSLATORS 'disable_per_environment_manifest' is a setting and 'environment.conf' is a file name and should not be translated
|
7784
|
-
#: ../lib/puppet/settings/environment_conf.rb:
|
7872
|
+
#: ../lib/puppet/settings/environment_conf.rb:70
|
7785
7873
|
msgid "The 'disable_per_environment_manifest' setting is true, but the environment located at %{path_to_env} has a manifest setting in its environment.conf of '%{environment_conf}' which does not match the default_manifest setting '%{puppet_conf}'."
|
7786
7874
|
msgstr ""
|
7787
7875
|
|
7788
|
-
#: ../lib/puppet/settings/environment_conf.rb:
|
7876
|
+
#: ../lib/puppet/settings/environment_conf.rb:72
|
7789
7877
|
msgid "If this environment is expecting to find modules in '%{environment_conf}', they will not be available!"
|
7790
7878
|
msgstr ""
|
7791
7879
|
|
7792
|
-
#: ../lib/puppet/settings/environment_conf.rb:
|
7880
|
+
#: ../lib/puppet/settings/environment_conf.rb:142
|
7793
7881
|
msgid "Invalid sections in environment.conf at '%{path_to_conf_file}'. Environment conf may not have sections. The following sections are being ignored: '%{sections}'"
|
7794
7882
|
msgstr ""
|
7795
7883
|
|
7796
|
-
#: ../lib/puppet/settings/environment_conf.rb:
|
7884
|
+
#: ../lib/puppet/settings/environment_conf.rb:154
|
7797
7885
|
msgid "Invalid settings in environment.conf at '%{path_to_conf_file}'. The following unknown setting(s) are being ignored: %{ignored_settings}"
|
7798
7886
|
msgstr ""
|
7799
7887
|
|
@@ -8643,74 +8731,74 @@ msgstr ""
|
|
8643
8731
|
msgid "Invalid recurselimit value %{value}"
|
8644
8732
|
msgstr ""
|
8645
8733
|
|
8646
|
-
#: ../lib/puppet/type/file.rb:
|
8734
|
+
#: ../lib/puppet/type/file.rb:435
|
8647
8735
|
msgid "You cannot specify more than one of %{creators}"
|
8648
8736
|
msgstr ""
|
8649
8737
|
|
8650
|
-
#: ../lib/puppet/type/file.rb:
|
8738
|
+
#: ../lib/puppet/type/file.rb:437
|
8651
8739
|
msgid "You cannot specify a remote recursion without a source"
|
8652
8740
|
msgstr ""
|
8653
8741
|
|
8654
|
-
#: ../lib/puppet/type/file.rb:
|
8742
|
+
#: ../lib/puppet/type/file.rb:439
|
8655
8743
|
msgid "You cannot specify source when using checksum 'none'"
|
8656
8744
|
msgstr ""
|
8657
8745
|
|
8658
|
-
#: ../lib/puppet/type/file.rb:
|
8746
|
+
#: ../lib/puppet/type/file.rb:442
|
8659
8747
|
msgid "You cannot specify content when using checksum '%{checksum_type}'"
|
8660
8748
|
msgstr ""
|
8661
8749
|
|
8662
|
-
#: ../lib/puppet/type/file.rb:
|
8750
|
+
#: ../lib/puppet/type/file.rb:445
|
8663
8751
|
msgid "Possible error: recurselimit is set but not recurse, no recursion will happen"
|
8664
8752
|
msgstr ""
|
8665
8753
|
|
8666
|
-
#: ../lib/puppet/type/file.rb:
|
8754
|
+
#: ../lib/puppet/type/file.rb:453
|
8667
8755
|
msgid "Checksum value '%{value}' is not a valid checksum type %{checksum}"
|
8668
8756
|
msgstr ""
|
8669
8757
|
|
8670
|
-
#: ../lib/puppet/type/file.rb:
|
8758
|
+
#: ../lib/puppet/type/file.rb:456
|
8671
8759
|
msgid "Checksum value is ignored unless content or source are specified"
|
8672
8760
|
msgstr ""
|
8673
8761
|
|
8674
|
-
#: ../lib/puppet/type/file.rb:
|
8762
|
+
#: ../lib/puppet/type/file.rb:494
|
8675
8763
|
msgid "Can not find filebucket for backups without a catalog"
|
8676
8764
|
msgstr ""
|
8677
8765
|
|
8678
|
-
#: ../lib/puppet/type/file.rb:
|
8766
|
+
#: ../lib/puppet/type/file.rb:499
|
8679
8767
|
msgid "Could not find filebucket %{backup} specified in backup"
|
8680
8768
|
msgstr ""
|
8681
8769
|
|
8682
|
-
#: ../lib/puppet/type/file.rb:
|
8770
|
+
#: ../lib/puppet/type/file.rb:798
|
8683
8771
|
msgid "Could not back up file of type %{current_type}"
|
8684
8772
|
msgstr ""
|
8685
8773
|
|
8686
|
-
#: ../lib/puppet/type/file.rb:
|
8774
|
+
#: ../lib/puppet/type/file.rb:813
|
8687
8775
|
msgid "Could not remove files of type %{current_type}"
|
8688
8776
|
msgstr ""
|
8689
8777
|
|
8690
8778
|
#. TRANSLATORS "source_permissions => ignore" should not be translated
|
8691
|
-
#: ../lib/puppet/type/file.rb:
|
8779
|
+
#: ../lib/puppet/type/file.rb:824
|
8692
8780
|
msgid "Copying owner/mode/group from the source file on Windows is not supported; use source_permissions => ignore."
|
8693
8781
|
msgstr ""
|
8694
8782
|
|
8695
8783
|
#. TRANSLATORS "stat" is a program name and should not be translated
|
8696
|
-
#: ../lib/puppet/type/file.rb:
|
8784
|
+
#: ../lib/puppet/type/file.rb:905 ../lib/puppet/type/tidy.rb:371
|
8697
8785
|
msgid "Could not stat; permission denied"
|
8698
8786
|
msgstr ""
|
8699
8787
|
|
8700
|
-
#: ../lib/puppet/type/file.rb:
|
8788
|
+
#: ../lib/puppet/type/file.rb:908
|
8701
8789
|
msgid "Could not stat; invalid pathname"
|
8702
8790
|
msgstr ""
|
8703
8791
|
|
8704
|
-
#: ../lib/puppet/type/file.rb:
|
8792
|
+
#: ../lib/puppet/type/file.rb:1036
|
8705
8793
|
msgid "Not removing directory; use 'force' to override"
|
8706
8794
|
msgstr ""
|
8707
8795
|
|
8708
8796
|
#. TRANSLATORS refers to a file which could not be backed up
|
8709
|
-
#: ../lib/puppet/type/file.rb:
|
8797
|
+
#: ../lib/puppet/type/file.rb:1061
|
8710
8798
|
msgid "Could not back up; will not remove"
|
8711
8799
|
msgstr ""
|
8712
8800
|
|
8713
|
-
#: ../lib/puppet/type/file.rb:
|
8801
|
+
#: ../lib/puppet/type/file.rb:1076
|
8714
8802
|
msgid "File written to disk did not match desired checksum; discarding changes (%{content_checksum} vs %{desired_checksum})"
|
8715
8803
|
msgstr ""
|
8716
8804
|
|
@@ -8860,50 +8948,46 @@ msgstr ""
|
|
8860
8948
|
msgid "%{value} is not a valid day of the week"
|
8861
8949
|
msgstr ""
|
8862
8950
|
|
8863
|
-
#: ../lib/puppet/type/service.rb:
|
8864
|
-
msgid "Setting enable to %{value} is only supported on Microsoft Windows."
|
8865
|
-
msgstr ""
|
8866
|
-
|
8867
|
-
#: ../lib/puppet/type/service.rb:166
|
8868
|
-
msgid "The 'logonaccount' parameter is mandatory when setting 'logonpassword'."
|
8869
|
-
msgstr ""
|
8870
|
-
|
8871
|
-
#: ../lib/puppet/type/service.rb:167 ../lib/puppet/type/user.rb:271
|
8951
|
+
#: ../lib/puppet/type/service.rb:151 ../lib/puppet/type/user.rb:271
|
8872
8952
|
msgid "Passwords cannot include ':'"
|
8873
8953
|
msgstr ""
|
8874
8954
|
|
8875
|
-
#: ../lib/puppet/type/service.rb:
|
8955
|
+
#: ../lib/puppet/type/service.rb:278
|
8876
8956
|
msgid "\"%{value}\" is not a positive integer: the timeout parameter must be specified as a positive integer"
|
8877
8957
|
msgstr ""
|
8878
8958
|
|
8879
|
-
#: ../lib/puppet/type/
|
8959
|
+
#: ../lib/puppet/type/service.rb:300
|
8960
|
+
msgid "The 'logonaccount' parameter is mandatory when setting 'logonpassword'."
|
8961
|
+
msgstr ""
|
8962
|
+
|
8963
|
+
#: ../lib/puppet/type/tidy.rb:101
|
8880
8964
|
msgid "Tidy can't use matches with recurse 0, false, or undef"
|
8881
8965
|
msgstr ""
|
8882
8966
|
|
8883
|
-
#: ../lib/puppet/type/tidy.rb:
|
8967
|
+
#: ../lib/puppet/type/tidy.rb:141
|
8884
8968
|
msgid "Invalid age unit '%{unit}'"
|
8885
8969
|
msgstr ""
|
8886
8970
|
|
8887
8971
|
#. TRANSLATORS tidy is the name of a program and should not be translated
|
8888
|
-
#: ../lib/puppet/type/tidy.rb:
|
8972
|
+
#: ../lib/puppet/type/tidy.rb:161
|
8889
8973
|
msgid "Invalid tidy age %{age}"
|
8890
8974
|
msgstr ""
|
8891
8975
|
|
8892
|
-
#: ../lib/puppet/type/tidy.rb:
|
8976
|
+
#: ../lib/puppet/type/tidy.rb:183
|
8893
8977
|
msgid "Invalid size unit '%{unit}'"
|
8894
8978
|
msgstr ""
|
8895
8979
|
|
8896
8980
|
#. TRANSLATORS tidy is the name of a program and should not be translated
|
8897
|
-
#: ../lib/puppet/type/tidy.rb:
|
8981
|
+
#: ../lib/puppet/type/tidy.rb:201
|
8898
8982
|
msgid "Invalid tidy size %{age}"
|
8899
8983
|
msgstr ""
|
8900
8984
|
|
8901
8985
|
#. TRANSLATORS "Tidy" is a program name and should not be translated
|
8902
|
-
#: ../lib/puppet/type/tidy.rb:
|
8986
|
+
#: ../lib/puppet/type/tidy.rb:294
|
8903
8987
|
msgid "Tidying %{count} files"
|
8904
8988
|
msgstr ""
|
8905
8989
|
|
8906
|
-
#: ../lib/puppet/type/tidy.rb:
|
8990
|
+
#: ../lib/puppet/type/tidy.rb:367
|
8907
8991
|
msgid "File does not exist"
|
8908
8992
|
msgstr ""
|
8909
8993
|
|
@@ -9084,7 +9168,7 @@ msgstr ""
|
|
9084
9168
|
msgid "Could not autoload %{name}: %{detail}"
|
9085
9169
|
msgstr ""
|
9086
9170
|
|
9087
|
-
#: ../lib/puppet/util/autoload.rb:
|
9171
|
+
#: ../lib/puppet/util/autoload.rb:177
|
9088
9172
|
msgid "Autoload paths cannot be fully qualified"
|
9089
9173
|
msgstr ""
|
9090
9174
|
|
@@ -9668,19 +9752,19 @@ msgstr ""
|
|
9668
9752
|
msgid "Unable to write the file %{file_path}. %{error}"
|
9669
9753
|
msgstr ""
|
9670
9754
|
|
9671
|
-
#: ../lib/puppet/util/posix.rb:
|
9755
|
+
#: ../lib/puppet/util/posix.rb:29
|
9672
9756
|
msgid "Removing any duplicate group entries"
|
9673
9757
|
msgstr ""
|
9674
9758
|
|
9675
|
-
#: ../lib/puppet/util/posix.rb:
|
9759
|
+
#: ../lib/puppet/util/posix.rb:75
|
9676
9760
|
msgid "Did not get id from caller"
|
9677
9761
|
msgstr ""
|
9678
9762
|
|
9679
|
-
#: ../lib/puppet/util/posix.rb:
|
9763
|
+
#: ../lib/puppet/util/posix.rb:79 ../lib/puppet/util/posix.rb:104
|
9680
9764
|
msgid "Tried to get %{field} field for silly id %{id}"
|
9681
9765
|
msgstr ""
|
9682
9766
|
|
9683
|
-
#: ../lib/puppet/util/posix.rb:
|
9767
|
+
#: ../lib/puppet/util/posix.rb:132 ../lib/puppet/util/posix.rb:142 ../lib/puppet/util/posix.rb:152
|
9684
9768
|
msgid "Can only handle users and groups"
|
9685
9769
|
msgstr ""
|
9686
9770
|
|
@@ -9740,31 +9824,31 @@ msgstr ""
|
|
9740
9824
|
msgid "Caught exception %{klass}:%{error} retrying"
|
9741
9825
|
msgstr ""
|
9742
9826
|
|
9743
|
-
#: ../lib/puppet/util/selinux.rb:
|
9827
|
+
#: ../lib/puppet/util/selinux.rb:81
|
9744
9828
|
msgid "Invalid context to parse: %{context}"
|
9745
9829
|
msgstr ""
|
9746
9830
|
|
9747
|
-
#: ../lib/puppet/util/selinux.rb:
|
9831
|
+
#: ../lib/puppet/util/selinux.rb:93
|
9748
9832
|
msgid "Invalid SELinux parameter type"
|
9749
9833
|
msgstr ""
|
9750
9834
|
|
9751
|
-
#: ../lib/puppet/util/selinux.rb:
|
9835
|
+
#: ../lib/puppet/util/selinux.rb:114
|
9752
9836
|
msgid "Can't set SELinux context on file unless the file already has some kind of context"
|
9753
9837
|
msgstr ""
|
9754
9838
|
|
9755
|
-
#: ../lib/puppet/util/selinux.rb:
|
9839
|
+
#: ../lib/puppet/util/selinux.rb:128
|
9756
9840
|
msgid "set_selinux_context component must be one of :seluser, :selrole, :seltype, or :selrange"
|
9757
9841
|
msgstr ""
|
9758
9842
|
|
9759
|
-
#: ../lib/puppet/util/selinux.rb:
|
9843
|
+
#: ../lib/puppet/util/selinux.rb:139
|
9760
9844
|
msgid "Failed to set SELinux context %{context} on %{file}"
|
9761
9845
|
msgstr ""
|
9762
9846
|
|
9763
|
-
#: ../lib/puppet/util/selinux.rb:
|
9847
|
+
#: ../lib/puppet/util/selinux.rb:190
|
9764
9848
|
msgid "Could not open SELinux category translation file %{path}."
|
9765
9849
|
msgstr ""
|
9766
9850
|
|
9767
|
-
#: ../lib/puppet/util/selinux.rb:
|
9851
|
+
#: ../lib/puppet/util/selinux.rb:276
|
9768
9852
|
msgid "got a relative path in SELinux find_fs: %{path}"
|
9769
9853
|
msgstr ""
|
9770
9854
|
|
@@ -9888,15 +9972,15 @@ msgstr ""
|
|
9888
9972
|
msgid "Unrecognized ADS UserFlags: %{unrecognized_flags}"
|
9889
9973
|
msgstr ""
|
9890
9974
|
|
9891
|
-
#: ../lib/puppet/util/windows/adsi.rb:497
|
9975
|
+
#: ../lib/puppet/util/windows/adsi.rb:497 ../lib/puppet/util/windows/adsi.rb:530
|
9892
9976
|
msgid "Failed to get user name"
|
9893
9977
|
msgstr ""
|
9894
9978
|
|
9895
|
-
#: ../lib/puppet/util/windows/adsi.rb:
|
9979
|
+
#: ../lib/puppet/util/windows/adsi.rb:580
|
9896
9980
|
msgid "Cannot delete user profile for '%{sid}' prior to Vista SP1"
|
9897
9981
|
msgstr ""
|
9898
9982
|
|
9899
|
-
#: ../lib/puppet/util/windows/adsi.rb:
|
9983
|
+
#: ../lib/puppet/util/windows/adsi.rb:598
|
9900
9984
|
msgid "Cannot create group if user '%{name}' exists."
|
9901
9985
|
msgstr ""
|
9902
9986
|
|
@@ -9959,20 +10043,20 @@ msgstr ""
|
|
9959
10043
|
msgid "Failed to call GetLongPathName"
|
9960
10044
|
msgstr ""
|
9961
10045
|
|
9962
|
-
#: ../lib/puppet/util/windows/principal.rb:
|
10046
|
+
#: ../lib/puppet/util/windows/principal.rb:68 ../lib/puppet/util/windows/principal.rb:75
|
9963
10047
|
msgid "Failed to call LookupAccountNameW with account: %{account_name}"
|
9964
10048
|
msgstr ""
|
9965
10049
|
|
9966
10050
|
#. TRANSLATORS `lookup_account_sid` is a variable name and should not be translated
|
9967
|
-
#: ../lib/puppet/util/windows/principal.rb:
|
10051
|
+
#: ../lib/puppet/util/windows/principal.rb:98
|
9968
10052
|
msgid "Byte array for lookup_account_sid must not be nil and must be at least 1 byte long"
|
9969
10053
|
msgstr ""
|
9970
10054
|
|
9971
|
-
#: ../lib/puppet/util/windows/principal.rb:
|
10055
|
+
#: ../lib/puppet/util/windows/principal.rb:115
|
9972
10056
|
msgid "Byte array for lookup_account_sid is invalid: %{sid_bytes}"
|
9973
10057
|
msgstr ""
|
9974
10058
|
|
9975
|
-
#: ../lib/puppet/util/windows/principal.rb:
|
10059
|
+
#: ../lib/puppet/util/windows/principal.rb:123 ../lib/puppet/util/windows/principal.rb:130
|
9976
10060
|
msgid "Failed to call LookupAccountSidW with bytes: %{sid_bytes}"
|
9977
10061
|
msgstr ""
|
9978
10062
|
|
@@ -10082,7 +10166,7 @@ msgstr ""
|
|
10082
10166
|
msgid "An attempt to set mode %{mode} on item %{path} would result in the group, SYSTEM, to have less than Full Control rights. This attempt has been corrected to Full Control"
|
10083
10167
|
msgstr ""
|
10084
10168
|
|
10085
|
-
#: ../lib/puppet/util/windows/security.rb:433 ../lib/puppet/util/windows/security.rb:450 ../lib/puppet/util/windows/sid.rb:
|
10169
|
+
#: ../lib/puppet/util/windows/security.rb:433 ../lib/puppet/util/windows/security.rb:450 ../lib/puppet/util/windows/sid.rb:157 ../lib/puppet/util/windows/sid.rb:219 ../lib/puppet/util/windows/user.rb:59
|
10086
10170
|
msgid "Invalid SID"
|
10087
10171
|
msgstr ""
|
10088
10172
|
|
@@ -10238,19 +10322,19 @@ msgstr ""
|
|
10238
10322
|
msgid "Timed out while waiting for the pending transition from %{pending_state} to %{final_state} to finish. The current state is %{current_state}."
|
10239
10323
|
msgstr ""
|
10240
10324
|
|
10241
|
-
#: ../lib/puppet/util/windows/sid.rb:
|
10325
|
+
#: ../lib/puppet/util/windows/sid.rb:96
|
10242
10326
|
msgid "Octet string must be an array of bytes"
|
10243
10327
|
msgstr ""
|
10244
10328
|
|
10245
|
-
#: ../lib/puppet/util/windows/sid.rb:
|
10329
|
+
#: ../lib/puppet/util/windows/sid.rb:163
|
10246
10330
|
msgid "Failed to convert binary SID"
|
10247
10331
|
msgstr ""
|
10248
10332
|
|
10249
|
-
#: ../lib/puppet/util/windows/sid.rb:
|
10333
|
+
#: ../lib/puppet/util/windows/sid.rb:168
|
10250
10334
|
msgid "ConvertSidToStringSidW failed to allocate buffer for sid"
|
10251
10335
|
msgstr ""
|
10252
10336
|
|
10253
|
-
#: ../lib/puppet/util/windows/sid.rb:
|
10337
|
+
#: ../lib/puppet/util/windows/sid.rb:188
|
10254
10338
|
msgid "Failed to convert string SID: %{string_sid}"
|
10255
10339
|
msgstr ""
|
10256
10340
|
|