puppet 7.8.0 → 7.9.0
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/CONTRIBUTING.md +5 -5
- data/Gemfile.lock +9 -9
- data/README.md +4 -4
- data/ext/project_data.yaml +1 -0
- data/install.rb +0 -4
- data/lib/puppet.rb +3 -3
- data/lib/puppet/application/filebucket.rb +1 -0
- data/lib/puppet/application/resource.rb +15 -2
- data/lib/puppet/application/ssl.rb +1 -0
- data/lib/puppet/defaults.rb +7 -0
- data/lib/puppet/environments.rb +10 -0
- data/lib/puppet/face/help/action.erb +1 -0
- data/lib/puppet/face/help/face.erb +1 -0
- data/lib/puppet/face/node/clean.rb +1 -1
- data/lib/puppet/file_system/file_impl.rb +1 -1
- data/lib/puppet/file_system/windows.rb +2 -2
- data/lib/puppet/forge.rb +3 -3
- data/lib/puppet/forge/cache.rb +1 -1
- data/lib/puppet/functions/empty.rb +8 -0
- data/lib/puppet/functions/strftime.rb +1 -0
- data/lib/puppet/functions/unwrap.rb +17 -2
- data/lib/puppet/indirector/resource/ral.rb +6 -1
- data/lib/puppet/interface/documentation.rb +1 -0
- data/lib/puppet/module_tool/applications/installer.rb +4 -0
- data/lib/puppet/module_tool/errors/shared.rb +17 -0
- data/lib/puppet/module_tool/tar/mini.rb +1 -1
- data/lib/puppet/pops/types/type_mismatch_describer.rb +1 -1
- data/lib/puppet/provider/exec/posix.rb +16 -4
- data/lib/puppet/provider/package/pip.rb +15 -3
- data/lib/puppet/provider/package/windows.rb +14 -1
- data/lib/puppet/provider/package/windows/exe_package.rb +30 -1
- data/lib/puppet/provider/package/windows/package.rb +2 -1
- data/lib/puppet/provider/parsedfile.rb +3 -0
- data/lib/puppet/resource/type_collection.rb +2 -0
- data/lib/puppet/settings.rb +30 -7
- data/lib/puppet/settings/config_file.rb +1 -8
- data/lib/puppet/settings/value_translator.rb +0 -1
- data/lib/puppet/type/exec.rb +16 -3
- data/lib/puppet/type/file/mode.rb +6 -0
- data/lib/puppet/type/tidy.rb +1 -1
- data/lib/puppet/type/user.rb +1 -1
- data/lib/puppet/util/monkey_patches.rb +2 -17
- data/lib/puppet/util/symbolic_file_mode.rb +29 -17
- data/lib/puppet/util/windows/sid.rb +3 -1
- data/lib/puppet/version.rb +1 -1
- data/lib/puppet/x509/cert_provider.rb +3 -21
- data/locales/puppet.pot +207 -171
- data/man/man5/puppet.conf.5 +2 -2
- data/man/man8/puppet-agent.8 +1 -1
- data/man/man8/puppet-apply.8 +1 -1
- data/man/man8/puppet-catalog.8 +9 -9
- data/man/man8/puppet-config.8 +1 -1
- data/man/man8/puppet-describe.8 +1 -1
- data/man/man8/puppet-device.8 +1 -1
- data/man/man8/puppet-doc.8 +1 -1
- data/man/man8/puppet-epp.8 +1 -1
- data/man/man8/puppet-facts.8 +7 -7
- data/man/man8/puppet-filebucket.8 +1 -1
- data/man/man8/puppet-generate.8 +1 -1
- data/man/man8/puppet-help.8 +1 -1
- data/man/man8/puppet-lookup.8 +1 -1
- data/man/man8/puppet-module.8 +1 -1
- data/man/man8/puppet-node.8 +5 -5
- data/man/man8/puppet-parser.8 +1 -1
- data/man/man8/puppet-plugin.8 +1 -1
- data/man/man8/puppet-report.8 +5 -5
- data/man/man8/puppet-resource.8 +1 -1
- data/man/man8/puppet-script.8 +1 -1
- data/man/man8/puppet-ssl.8 +1 -1
- data/man/man8/puppet.8 +2 -2
- data/spec/fixtures/ssl/127.0.0.1-key.pem +106 -106
- data/spec/fixtures/ssl/127.0.0.1.pem +48 -48
- data/spec/fixtures/ssl/bad-basic-constraints.pem +54 -54
- data/spec/fixtures/ssl/bad-int-basic-constraints.pem +51 -51
- data/spec/fixtures/ssl/ca.pem +52 -52
- data/spec/fixtures/ssl/crl.pem +25 -25
- data/spec/fixtures/ssl/ec-key-openssl.pem +8 -0
- data/spec/fixtures/ssl/ec-key-pk8.pem +5 -0
- data/spec/fixtures/ssl/ec-key.pem +11 -11
- data/spec/fixtures/ssl/ec.pem +32 -32
- data/spec/fixtures/ssl/encrypted-ec-key.pem +12 -12
- data/spec/fixtures/ssl/encrypted-key.pem +107 -107
- data/spec/fixtures/ssl/intermediate-agent-crl.pem +25 -25
- data/spec/fixtures/ssl/intermediate-agent.pem +54 -54
- data/spec/fixtures/ssl/intermediate-crl.pem +28 -28
- data/spec/fixtures/ssl/intermediate.pem +51 -51
- data/spec/fixtures/ssl/oid-key.pem +117 -0
- data/spec/fixtures/ssl/oid.pem +69 -0
- data/spec/fixtures/ssl/pluto-key.pem +106 -106
- data/spec/fixtures/ssl/pluto.pem +50 -50
- data/spec/fixtures/ssl/request-key.pem +106 -106
- data/spec/fixtures/ssl/request.pem +45 -45
- data/spec/fixtures/ssl/revoked-key.pem +106 -106
- data/spec/fixtures/ssl/revoked.pem +49 -49
- data/spec/fixtures/ssl/signed-key.pem +106 -106
- data/spec/fixtures/ssl/signed.pem +47 -47
- data/spec/fixtures/ssl/tampered-cert.pem +49 -49
- data/spec/fixtures/ssl/tampered-csr.pem +45 -45
- data/spec/fixtures/ssl/trusted_oid_mapping.yaml +5 -0
- data/spec/fixtures/ssl/unknown-127.0.0.1-key.pem +106 -106
- data/spec/fixtures/ssl/unknown-127.0.0.1.pem +48 -48
- data/spec/fixtures/ssl/unknown-ca-key.pem +106 -106
- data/spec/fixtures/ssl/unknown-ca.pem +52 -52
- data/spec/integration/application/filebucket_spec.rb +11 -0
- data/spec/integration/application/module_spec.rb +21 -0
- data/spec/integration/application/resource_spec.rb +35 -1
- data/spec/integration/application/ssl_spec.rb +20 -0
- data/spec/integration/defaults_spec.rb +5 -0
- data/spec/integration/environments/settings_interpolation_spec.rb +0 -4
- data/spec/integration/indirector/facts/facter_spec.rb +90 -36
- data/spec/integration/type/exec_spec.rb +70 -45
- data/spec/lib/puppet/test_ca.rb +5 -0
- data/spec/lib/puppet_spec/settings.rb +1 -0
- data/spec/unit/environments_spec.rb +35 -0
- data/spec/unit/file_system_spec.rb +6 -0
- data/spec/unit/functions/assert_type_spec.rb +1 -1
- data/spec/unit/functions/empty_spec.rb +10 -0
- data/spec/unit/functions/lookup_spec.rb +23 -0
- data/spec/unit/functions/unwrap_spec.rb +8 -0
- data/spec/unit/functions4_spec.rb +2 -2
- data/spec/unit/indirector/resource/ral_spec.rb +40 -75
- data/spec/unit/module_tool/applications/installer_spec.rb +13 -2
- data/spec/unit/parser/compiler_spec.rb +29 -0
- data/spec/unit/parser/templatewrapper_spec.rb +12 -2
- data/spec/unit/pops/loaders/dependency_loader_spec.rb +0 -9
- data/spec/unit/pops/parser/lexer2_spec.rb +0 -4
- data/spec/unit/provider/package/pip_spec.rb +37 -0
- data/spec/unit/provider/package/windows/exe_package_spec.rb +17 -0
- data/spec/unit/provider/parsedfile_spec.rb +10 -0
- data/spec/unit/resource/type_collection_spec.rb +16 -0
- data/spec/unit/resource/type_spec.rb +2 -2
- data/spec/unit/settings/config_file_spec.rb +1 -11
- data/spec/unit/settings/value_translator_spec.rb +4 -5
- data/spec/unit/settings_spec.rb +120 -79
- data/spec/unit/ssl/ssl_provider_spec.rb +18 -16
- data/spec/unit/type/exec_spec.rb +76 -29
- data/spec/unit/type/file/source_spec.rb +4 -4
- data/spec/unit/type/tidy_spec.rb +7 -0
- data/spec/unit/util/ldap/connection_spec.rb +10 -10
- data/spec/unit/util/ldap/manager_spec.rb +2 -2
- data/spec/unit/util/windows/sid_spec.rb +39 -4
- data/spec/unit/util_spec.rb +1 -3
- data/spec/unit/x509/cert_provider_spec.rb +9 -1
- data/tasks/generate_cert_fixtures.rake +10 -1
- metadata +16 -3
data/lib/puppet/type/user.rb
CHANGED
@@ -695,7 +695,7 @@ module Puppet
|
|
695
695
|
end
|
696
696
|
|
697
697
|
def generate
|
698
|
-
if !self[:purge_ssh_keys].empty?
|
698
|
+
if !self[:purge_ssh_keys].empty? && self[:purge_ssh_keys] != :false
|
699
699
|
return [] if self[:ensure] == :present && !provider.exists?
|
700
700
|
if Puppet::Type.type(:ssh_authorized_key).nil?
|
701
701
|
warning _("Ssh_authorized_key type is not available. Cannot purge SSH keys.")
|
@@ -32,13 +32,6 @@ end
|
|
32
32
|
# (#19151) Reject all SSLv2 ciphers and handshakes
|
33
33
|
require_relative '../../puppet/ssl/openssl_loader'
|
34
34
|
unless Puppet::Util::Platform.jruby_fips?
|
35
|
-
unless defined?(OpenSSL::SSL::TLS1_VERSION)
|
36
|
-
module OpenSSL::SSL
|
37
|
-
# see https://github.com/ruby/ruby/commit/609103dbb5fb182eec12f052226c43e39b907682#diff-09f822c26289f5347111795ca22ed7ed1cfadd6ebd28f987991d1d414eef565aR2755-R2759
|
38
|
-
OpenSSL::SSL::TLS1_VERSION = 0x301
|
39
|
-
end
|
40
|
-
end
|
41
|
-
|
42
35
|
class OpenSSL::SSL::SSLContext
|
43
36
|
if DEFAULT_PARAMS[:options]
|
44
37
|
DEFAULT_PARAMS[:options] |= OpenSSL::SSL::OP_NO_SSLv2 | OpenSSL::SSL::OP_NO_SSLv3
|
@@ -94,20 +87,12 @@ unless Puppet::Util::Platform.jruby_fips?
|
|
94
87
|
OpenSSL::X509.const_set(:V_ERR_HOSTNAME_MISMATCH, 62)
|
95
88
|
end
|
96
89
|
|
90
|
+
# jruby-openssl doesn't support this
|
97
91
|
unless OpenSSL::X509::Name.instance_methods.include?(:to_utf8)
|
98
92
|
class OpenSSL::X509::Name
|
99
|
-
# https://github.com/openssl/openssl/blob/OpenSSL_1_1_0j/include/openssl/asn1.h#L362
|
100
|
-
ASN1_STRFLGS_ESC_MSB = 4
|
101
|
-
|
102
|
-
FLAGS = if RUBY_PLATFORM == 'java'
|
103
|
-
OpenSSL::X509::Name::RFC2253
|
104
|
-
else
|
105
|
-
OpenSSL::X509::Name::RFC2253 & ~ASN1_STRFLGS_ESC_MSB
|
106
|
-
end
|
107
|
-
|
108
93
|
def to_utf8
|
109
94
|
# https://github.com/ruby/ruby/blob/v2_5_5/ext/openssl/ossl_x509name.c#L317
|
110
|
-
str = to_s(
|
95
|
+
str = to_s(OpenSSL::X509::Name::RFC2253)
|
111
96
|
str.force_encoding(Encoding::UTF_8)
|
112
97
|
end
|
113
98
|
end
|
@@ -19,25 +19,37 @@ module SymbolicFileMode
|
|
19
19
|
return false
|
20
20
|
end
|
21
21
|
|
22
|
+
def display_mode(value)
|
23
|
+
if value =~ /^0?[0-7]{1,4}$/
|
24
|
+
value.rjust(4, "0")
|
25
|
+
else
|
26
|
+
value
|
27
|
+
end
|
28
|
+
end
|
29
|
+
|
22
30
|
def normalize_symbolic_mode(value)
|
23
31
|
return nil if value.nil?
|
24
32
|
|
25
33
|
# We need to treat integers as octal numbers.
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
34
|
+
#
|
35
|
+
# "A numeric mode is from one to four octal digits (0-7), derived by adding
|
36
|
+
# up the bits with values 4, 2, and 1. Omitted digits are assumed to be
|
37
|
+
# leading zeros."
|
38
|
+
if value.is_a? Numeric
|
39
|
+
value.to_s(8)
|
40
|
+
elsif value =~ /^0?[0-7]{1,4}$/
|
41
|
+
value.to_i(8).to_s(8) # strip leading 0's
|
30
42
|
else
|
31
|
-
|
43
|
+
value
|
32
44
|
end
|
33
45
|
end
|
34
46
|
|
35
47
|
def symbolic_mode_to_int(modification, to_mode = 0, is_a_directory = false)
|
36
|
-
if modification.nil? or modification == ''
|
48
|
+
if modification.nil? or modification == ''
|
37
49
|
raise Puppet::Error, _("An empty mode string is illegal")
|
38
|
-
|
39
|
-
|
40
|
-
|
50
|
+
elsif modification =~ /^[0-7]+$/
|
51
|
+
return modification.to_i(8)
|
52
|
+
elsif modification =~ /^\d+$/
|
41
53
|
raise Puppet::Error, _("Numeric modes must be in octal, not decimal!")
|
42
54
|
end
|
43
55
|
|
@@ -84,31 +96,31 @@ module SymbolicFileMode
|
|
84
96
|
|
85
97
|
dsl.split('').each do |op|
|
86
98
|
case op
|
87
|
-
when /[-+=]/
|
99
|
+
when /[-+=]/
|
88
100
|
action = op
|
89
101
|
# Clear all bits, if this is assignment
|
90
102
|
value = 0 if op == '='
|
91
103
|
|
92
|
-
when /[ugo]/
|
104
|
+
when /[ugo]/
|
93
105
|
value = actions[action].call(value, snapshot_mode[op])
|
94
106
|
|
95
|
-
when /[rwx]/
|
107
|
+
when /[rwx]/
|
96
108
|
value = actions[action].call(value, SymbolicMode[op])
|
97
109
|
|
98
|
-
when 'X'
|
110
|
+
when 'X'
|
99
111
|
# Only meaningful in combination with "set" actions.
|
100
|
-
if action != '+'
|
112
|
+
if action != '+'
|
101
113
|
raise Puppet::Error, _("X only works with the '+' operator")
|
102
114
|
end
|
103
115
|
|
104
116
|
# As per the BSD manual page, set if this is a directory, or if
|
105
117
|
# any execute bit is set on the original (unmodified) mode.
|
106
118
|
# Ignored otherwise; it is "add if", not "add or clear".
|
107
|
-
if is_a_directory or original_mode['any x?']
|
119
|
+
if is_a_directory or original_mode['any x?']
|
108
120
|
value = actions[action].call(value, ExecBit)
|
109
121
|
end
|
110
122
|
|
111
|
-
when /[st]/
|
123
|
+
when /[st]/
|
112
124
|
bit = SymbolicSpecialToBit[op][who] or fail _("internal error")
|
113
125
|
final_mode['s'] = actions[action].call(final_mode['s'], bit)
|
114
126
|
|
@@ -122,7 +134,7 @@ module SymbolicFileMode
|
|
122
134
|
end
|
123
135
|
|
124
136
|
rescue Puppet::Error => e
|
125
|
-
if part.inspect != modification.inspect
|
137
|
+
if part.inspect != modification.inspect
|
126
138
|
rest = " at #{part.inspect}"
|
127
139
|
else
|
128
140
|
rest = ''
|
@@ -75,7 +75,9 @@ module Puppet::Util::Windows
|
|
75
75
|
raw_sid_bytes = sid_ptr.read_array_of_uchar(get_length_sid(sid_ptr))
|
76
76
|
end
|
77
77
|
rescue => e
|
78
|
-
|
78
|
+
# Avoid debug logs pollution with valid account names
|
79
|
+
# https://docs.microsoft.com/en-us/windows/win32/api/sddl/nf-sddl-convertstringsidtosidw#return-value
|
80
|
+
Puppet.debug("Could not retrieve raw SID bytes from '#{name}': #{e.message}") unless e.code == ERROR_INVALID_SID_STRUCTURE
|
79
81
|
end
|
80
82
|
|
81
83
|
raw_sid_bytes ? Principal.lookup_account_sid(raw_sid_bytes) : Principal.lookup_account_name(name)
|
data/lib/puppet/version.rb
CHANGED
@@ -15,7 +15,6 @@ class Puppet::X509::CertProvider
|
|
15
15
|
VALID_CERTNAME = /\A[ -.0-~]+\Z/
|
16
16
|
CERT_DELIMITERS = /-----BEGIN CERTIFICATE-----.*?-----END CERTIFICATE-----/m
|
17
17
|
CRL_DELIMITERS = /-----BEGIN X509 CRL-----.*?-----END X509 CRL-----/m
|
18
|
-
EC_HEADER = /-----BEGIN EC PRIVATE KEY-----/
|
19
18
|
|
20
19
|
def initialize(capath: Puppet[:localcacert],
|
21
20
|
crlpath: Puppet[:hostcrl],
|
@@ -207,26 +206,9 @@ class Puppet::X509::CertProvider
|
|
207
206
|
# @api private
|
208
207
|
def load_private_key_from_pem(pem, password: nil)
|
209
208
|
# set a non-nil password to ensure openssl doesn't prompt
|
210
|
-
|
211
|
-
|
212
|
-
|
213
|
-
password ||= ' '
|
214
|
-
|
215
|
-
# Can't use OpenSSL::PKey.read, because it's broken in MRI 2.3, doesn't exist
|
216
|
-
# in JRuby 9.1, and is broken in JRuby 9.2
|
217
|
-
begin
|
218
|
-
if pem =~ EC_HEADER
|
219
|
-
OpenSSL::PKey::EC.new(pem, password)
|
220
|
-
else
|
221
|
-
OpenSSL::PKey::RSA.new(pem, password)
|
222
|
-
end
|
223
|
-
rescue OpenSSL::PKey::PKeyError => e
|
224
|
-
if e.message =~ /Neither PUB key nor PRIV key/
|
225
|
-
raise OpenSSL::PKey::PKeyError, "Could not parse PKey: no start line"
|
226
|
-
else
|
227
|
-
raise e
|
228
|
-
end
|
229
|
-
end
|
209
|
+
password ||= ''
|
210
|
+
|
211
|
+
OpenSSL::PKey.read(pem, password)
|
230
212
|
end
|
231
213
|
|
232
214
|
# Load the private key password.
|
data/locales/puppet.pot
CHANGED
@@ -6,11 +6,11 @@
|
|
6
6
|
#, fuzzy
|
7
7
|
msgid ""
|
8
8
|
msgstr ""
|
9
|
-
"Project-Id-Version: Puppet automation framework 7.
|
9
|
+
"Project-Id-Version: Puppet automation framework 7.8.0-115-g2e290b736f\n"
|
10
10
|
"\n"
|
11
11
|
"Report-Msgid-Bugs-To: https://tickets.puppetlabs.com\n"
|
12
|
-
"POT-Creation-Date: 2021-
|
13
|
-
"PO-Revision-Date: 2021-
|
12
|
+
"POT-Creation-Date: 2021-07-06 12:22+0000\n"
|
13
|
+
"PO-Revision-Date: 2021-07-06 12:22+0000\n"
|
14
14
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
15
15
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
16
16
|
"Language: \n"
|
@@ -282,11 +282,11 @@ msgstr ""
|
|
282
282
|
msgid "starting applying configuration to %{target} at %{scheme}%{url_host}%{port}%{url_path}"
|
283
283
|
msgstr ""
|
284
284
|
|
285
|
-
#: ../lib/puppet/application/device.rb:390 ../lib/puppet/application/resource.rb:
|
285
|
+
#: ../lib/puppet/application/device.rb:390 ../lib/puppet/application/resource.rb:201
|
286
286
|
msgid "You must specify the type to display"
|
287
287
|
msgstr ""
|
288
288
|
|
289
|
-
#: ../lib/puppet/application/device.rb:391 ../lib/puppet/application/resource.rb:
|
289
|
+
#: ../lib/puppet/application/device.rb:391 ../lib/puppet/application/resource.rb:202
|
290
290
|
msgid "Could not find type %{type}"
|
291
291
|
msgstr ""
|
292
292
|
|
@@ -348,31 +348,31 @@ msgstr ""
|
|
348
348
|
msgid "Try 'puppet help %{face} %{action}' for usage"
|
349
349
|
msgstr ""
|
350
350
|
|
351
|
-
#: ../lib/puppet/application/filebucket.rb:
|
351
|
+
#: ../lib/puppet/application/filebucket.rb:17
|
352
352
|
msgid "Store and retrieve files in a filebucket"
|
353
353
|
msgstr ""
|
354
354
|
|
355
|
-
#: ../lib/puppet/application/filebucket.rb:
|
355
|
+
#: ../lib/puppet/application/filebucket.rb:226
|
356
356
|
msgid "You must specify a file to back up"
|
357
357
|
msgstr ""
|
358
358
|
|
359
|
-
#: ../lib/puppet/application/filebucket.rb:
|
359
|
+
#: ../lib/puppet/application/filebucket.rb:230
|
360
360
|
msgid "%{file}: no such file"
|
361
361
|
msgstr ""
|
362
362
|
|
363
|
-
#: ../lib/puppet/application/filebucket.rb:
|
363
|
+
#: ../lib/puppet/application/filebucket.rb:234
|
364
364
|
msgid "%{file}: cannot read file"
|
365
365
|
msgstr ""
|
366
366
|
|
367
|
-
#: ../lib/puppet/application/filebucket.rb:
|
367
|
+
#: ../lib/puppet/application/filebucket.rb:256 ../lib/puppet/application/filebucket.rb:279
|
368
368
|
msgid "Need exactly two arguments: filebucket diff <file_a> <file_b>"
|
369
369
|
msgstr ""
|
370
370
|
|
371
|
-
#: ../lib/puppet/application/filebucket.rb:
|
371
|
+
#: ../lib/puppet/application/filebucket.rb:276
|
372
372
|
msgid "Comparing %{checksum_a} %{checksum_b} %{file_a} %{file_b}"
|
373
373
|
msgstr ""
|
374
374
|
|
375
|
-
#: ../lib/puppet/application/filebucket.rb:
|
375
|
+
#: ../lib/puppet/application/filebucket.rb:290
|
376
376
|
msgid "Cancelling"
|
377
377
|
msgstr ""
|
378
378
|
|
@@ -414,19 +414,19 @@ msgstr ""
|
|
414
414
|
msgid "Incorrect formatted data in %{fact_file} given via the --facts flag"
|
415
415
|
msgstr ""
|
416
416
|
|
417
|
-
#: ../lib/puppet/application/resource.rb:
|
417
|
+
#: ../lib/puppet/application/resource.rb:34
|
418
418
|
msgid "The resource abstraction layer shell"
|
419
419
|
msgstr ""
|
420
420
|
|
421
|
-
#: ../lib/puppet/application/resource.rb:
|
421
|
+
#: ../lib/puppet/application/resource.rb:145
|
422
422
|
msgid "Editing with Yaml output is not supported"
|
423
423
|
msgstr ""
|
424
424
|
|
425
|
-
#: ../lib/puppet/application/resource.rb:
|
425
|
+
#: ../lib/puppet/application/resource.rb:209
|
426
426
|
msgid "Invalid parameter setting %{setting}"
|
427
427
|
msgstr ""
|
428
428
|
|
429
|
-
#: ../lib/puppet/application/resource.rb:
|
429
|
+
#: ../lib/puppet/application/resource.rb:240
|
430
430
|
msgid "Listing all file instances is not supported. Please specify a file or directory, e.g. puppet resource file /etc"
|
431
431
|
msgstr ""
|
432
432
|
|
@@ -450,55 +450,55 @@ msgstr ""
|
|
450
450
|
msgid "An action must be specified."
|
451
451
|
msgstr ""
|
452
452
|
|
453
|
-
#: ../lib/puppet/application/ssl.rb:
|
453
|
+
#: ../lib/puppet/application/ssl.rb:130 ../lib/puppet/application/ssl.rb:137
|
454
454
|
msgid "The certificate for '%{name}' has not yet been signed"
|
455
455
|
msgstr ""
|
456
456
|
|
457
|
-
#: ../lib/puppet/application/ssl.rb:
|
457
|
+
#: ../lib/puppet/application/ssl.rb:148
|
458
458
|
msgid "Completed SSL initialization"
|
459
459
|
msgstr ""
|
460
460
|
|
461
|
-
#: ../lib/puppet/application/ssl.rb:
|
461
|
+
#: ../lib/puppet/application/ssl.rb:152
|
462
462
|
msgid "Unknown action '%{action}'"
|
463
463
|
msgstr ""
|
464
464
|
|
465
|
-
#: ../lib/puppet/application/ssl.rb:
|
465
|
+
#: ../lib/puppet/application/ssl.rb:166 ../lib/puppet/ssl/state_machine.rb:180
|
466
466
|
msgid "Creating a new EC SSL key for %{name} using curve %{curve}"
|
467
467
|
msgstr ""
|
468
468
|
|
469
|
-
#: ../lib/puppet/application/ssl.rb:
|
469
|
+
#: ../lib/puppet/application/ssl.rb:169
|
470
470
|
msgid "Creating a new SSL key for %{name}"
|
471
471
|
msgstr ""
|
472
472
|
|
473
|
-
#: ../lib/puppet/application/ssl.rb:
|
473
|
+
#: ../lib/puppet/application/ssl.rb:179
|
474
474
|
msgid "Submitted certificate request for '%{name}' to %{url}"
|
475
475
|
msgstr ""
|
476
476
|
|
477
|
-
#: ../lib/puppet/application/ssl.rb:
|
477
|
+
#: ../lib/puppet/application/ssl.rb:182
|
478
478
|
msgid "Could not submit certificate request for '%{name}' to %{url} due to a conflict on the server"
|
479
479
|
msgstr ""
|
480
480
|
|
481
|
-
#: ../lib/puppet/application/ssl.rb:
|
481
|
+
#: ../lib/puppet/application/ssl.rb:184 ../lib/puppet/application/ssl.rb:187
|
482
482
|
msgid "Failed to submit certificate request: %{message}"
|
483
483
|
msgstr ""
|
484
484
|
|
485
|
-
#: ../lib/puppet/application/ssl.rb:
|
485
|
+
#: ../lib/puppet/application/ssl.rb:195
|
486
486
|
msgid "Downloading certificate '%{name}' from %{url}"
|
487
487
|
msgstr ""
|
488
488
|
|
489
|
-
#: ../lib/puppet/application/ssl.rb:
|
489
|
+
#: ../lib/puppet/application/ssl.rb:199
|
490
490
|
msgid "Downloaded certificate '%{name}' with fingerprint %{fingerprint}"
|
491
491
|
msgstr ""
|
492
492
|
|
493
|
-
#: ../lib/puppet/application/ssl.rb:
|
493
|
+
#: ../lib/puppet/application/ssl.rb:212 ../lib/puppet/application/ssl.rb:215
|
494
494
|
msgid "Failed to download certificate: %{message}"
|
495
495
|
msgstr ""
|
496
496
|
|
497
|
-
#: ../lib/puppet/application/ssl.rb:
|
497
|
+
#: ../lib/puppet/application/ssl.rb:244 ../lib/puppet/application/ssl.rb:247
|
498
498
|
msgid "Failed to connect to the CA to determine if certificate %{certname} has been cleaned"
|
499
499
|
msgstr ""
|
500
500
|
|
501
|
-
#: ../lib/puppet/application/ssl.rb:
|
501
|
+
#: ../lib/puppet/application/ssl.rb:251
|
502
502
|
msgid ""
|
503
503
|
"The certificate %{certname} must be cleaned from the CA first. To fix this,\n"
|
504
504
|
"run the following commands on the CA:\n"
|
@@ -506,7 +506,7 @@ msgid ""
|
|
506
506
|
" puppet ssl clean\n"
|
507
507
|
msgstr ""
|
508
508
|
|
509
|
-
#: ../lib/puppet/application/ssl.rb:
|
509
|
+
#: ../lib/puppet/application/ssl.rb:274
|
510
510
|
msgid "Removed %{label} %{path}"
|
511
511
|
msgstr ""
|
512
512
|
|
@@ -697,30 +697,30 @@ msgid "Valid values are '%{values}'."
|
|
697
697
|
msgstr ""
|
698
698
|
|
699
699
|
#. TRANSLATORS 'data_binding_terminus' is a setting and should not be translated
|
700
|
-
#: ../lib/puppet/defaults.rb:
|
700
|
+
#: ../lib/puppet/defaults.rb:539
|
701
701
|
msgid "Setting 'data_binding_terminus' is deprecated."
|
702
702
|
msgstr ""
|
703
703
|
|
704
704
|
#. TRANSLATORS 'hiera' should not be translated
|
705
|
-
#: ../lib/puppet/defaults.rb:
|
705
|
+
#: ../lib/puppet/defaults.rb:541
|
706
706
|
msgid "Convert custom terminus to hiera 5 API."
|
707
707
|
msgstr ""
|
708
708
|
|
709
709
|
#. TRANSLATORS 'environment_data_provider' is a setting and should not be translated
|
710
|
-
#: ../lib/puppet/defaults.rb:
|
710
|
+
#: ../lib/puppet/defaults.rb:735
|
711
711
|
msgid "Setting 'environment_data_provider' is deprecated."
|
712
712
|
msgstr ""
|
713
713
|
|
714
|
-
#: ../lib/puppet/defaults.rb:
|
714
|
+
#: ../lib/puppet/defaults.rb:820
|
715
715
|
msgid "Certificate names must be lower case"
|
716
716
|
msgstr ""
|
717
717
|
|
718
|
-
#: ../lib/puppet/defaults.rb:
|
718
|
+
#: ../lib/puppet/defaults.rb:1079 ../lib/puppet/settings/enum_setting.rb:13 ../lib/puppet/settings/symbolic_enum_setting.rb:14
|
719
719
|
msgid "Invalid value '%{value}' for parameter %{name}. Allowed values are '%{allowed_values}'"
|
720
720
|
msgstr ""
|
721
721
|
|
722
722
|
#. TRANSLATORS 'pluginsync' is a setting and should not be translated
|
723
|
-
#: ../lib/puppet/defaults.rb:
|
723
|
+
#: ../lib/puppet/defaults.rb:1919
|
724
724
|
msgid "Setting 'pluginsync' is deprecated."
|
725
725
|
msgstr ""
|
726
726
|
|
@@ -2027,7 +2027,7 @@ msgstr ""
|
|
2027
2027
|
msgid "The given data requires an Integer index at %{walked_path}, got '%{type}'"
|
2028
2028
|
msgstr ""
|
2029
2029
|
|
2030
|
-
#: ../lib/puppet/functions/empty.rb:
|
2030
|
+
#: ../lib/puppet/functions/empty.rb:82
|
2031
2031
|
msgid "Calling function empty() with %{arg_type} value is deprecated."
|
2032
2032
|
msgstr ""
|
2033
2033
|
|
@@ -2117,7 +2117,7 @@ msgstr ""
|
|
2117
2117
|
msgid "slice(): block must define one parameter, or the same number of parameters as the given size of the slice (%{slice_size}). Block has %{serving_size}; %{parameter_names}"
|
2118
2118
|
msgstr ""
|
2119
2119
|
|
2120
|
-
#: ../lib/puppet/functions/strftime.rb:
|
2120
|
+
#: ../lib/puppet/functions/strftime.rb:208
|
2121
2121
|
msgid "The argument signature (String format, [String timezone]) is deprecated for #strftime. See #strftime documentation and Timespan type for more info"
|
2122
2122
|
msgstr ""
|
2123
2123
|
|
@@ -2752,7 +2752,7 @@ msgstr ""
|
|
2752
2752
|
msgid "Could not understand URL %{key}: %{detail}"
|
2753
2753
|
msgstr ""
|
2754
2754
|
|
2755
|
-
#: ../lib/puppet/indirector/resource/ral.rb:
|
2755
|
+
#: ../lib/puppet/indirector/resource/ral.rb:64
|
2756
2756
|
msgid "Could not find type %{request_type}"
|
2757
2757
|
msgstr ""
|
2758
2758
|
|
@@ -2905,43 +2905,43 @@ msgid "Face summary should be a single line; put the long text in 'description'
|
|
2905
2905
|
msgstr ""
|
2906
2906
|
|
2907
2907
|
#. TRANSLATORS 'author' is an attribute name and should not be translated
|
2908
|
-
#: ../lib/puppet/interface/documentation.rb:
|
2908
|
+
#: ../lib/puppet/interface/documentation.rb:206
|
2909
2909
|
msgid "author must be a string; use multiple statements for multiple authors"
|
2910
2910
|
msgstr ""
|
2911
2911
|
|
2912
2912
|
#. TRANSLATORS 'author' is an attribute name and should not be translated
|
2913
|
-
#: ../lib/puppet/interface/documentation.rb:
|
2913
|
+
#: ../lib/puppet/interface/documentation.rb:211
|
2914
2914
|
msgid "author should be a single line; use multiple statements for multiple authors"
|
2915
2915
|
msgstr ""
|
2916
2916
|
|
2917
2917
|
#. TRANSLATORS 'author' is an attribute name and should not be translated
|
2918
|
-
#: ../lib/puppet/interface/documentation.rb:
|
2918
|
+
#: ../lib/puppet/interface/documentation.rb:231
|
2919
2919
|
msgid "author should be a single line; use multiple statements"
|
2920
2920
|
msgstr ""
|
2921
2921
|
|
2922
2922
|
#. TRANSLATORS 'copyright' is an attribute name and should not be translated
|
2923
|
-
#: ../lib/puppet/interface/documentation.rb:
|
2923
|
+
#: ../lib/puppet/interface/documentation.rb:252
|
2924
2924
|
msgid "copyright takes the owners names, then the years covered"
|
2925
2925
|
msgstr ""
|
2926
2926
|
|
2927
2927
|
#. TRANSLATORS 'copyright' is an attribute name and should not be translated
|
2928
|
-
#: ../lib/puppet/interface/documentation.rb:
|
2928
|
+
#: ../lib/puppet/interface/documentation.rb:276
|
2929
2929
|
msgid "copyright owner must be a string or an array of strings"
|
2930
2930
|
msgstr ""
|
2931
2931
|
|
2932
2932
|
#. TRANSLATORS 'copyright' is an attribute name and should not be translated
|
2933
|
-
#: ../lib/puppet/interface/documentation.rb:
|
2933
|
+
#: ../lib/puppet/interface/documentation.rb:313
|
2934
2934
|
msgid "copyright with a year %{value} is very strange; did you accidentally add or subtract two years?"
|
2935
2935
|
msgstr ""
|
2936
2936
|
|
2937
2937
|
#. TRANSLATORS 'copyright' is an attribute name and should not be translated
|
2938
2938
|
#. TRANSLATORS 'copyright' is an attribute name and should not be translated
|
2939
|
-
#: ../lib/puppet/interface/documentation.rb:
|
2939
|
+
#: ../lib/puppet/interface/documentation.rb:329 ../lib/puppet/interface/documentation.rb:334
|
2940
2940
|
msgid "%{value} is not a good copyright year or range"
|
2941
2941
|
msgstr ""
|
2942
2942
|
|
2943
2943
|
#. TRANSLATORS 'copyright' is an attribute name and should not be translated
|
2944
|
-
#: ../lib/puppet/interface/documentation.rb:
|
2944
|
+
#: ../lib/puppet/interface/documentation.rb:353
|
2945
2945
|
msgid "%{value} is not a good copyright year, set, or range"
|
2946
2946
|
msgstr ""
|
2947
2947
|
|
@@ -3202,19 +3202,19 @@ msgstr ""
|
|
3202
3202
|
msgid "No file containing checksums found."
|
3203
3203
|
msgstr ""
|
3204
3204
|
|
3205
|
-
#: ../lib/puppet/module_tool/applications/installer.rb:
|
3205
|
+
#: ../lib/puppet/module_tool/applications/installer.rb:88 ../lib/puppet/module_tool/applications/upgrader.rb:102
|
3206
3206
|
msgid "Downloading from %{host} ..."
|
3207
3207
|
msgstr ""
|
3208
3208
|
|
3209
|
-
#: ../lib/puppet/module_tool/applications/installer.rb:
|
3209
|
+
#: ../lib/puppet/module_tool/applications/installer.rb:136 ../lib/puppet/module_tool/applications/upgrader.rb:140
|
3210
3210
|
msgid "Resolving dependencies ..."
|
3211
3211
|
msgstr ""
|
3212
3212
|
|
3213
|
-
#: ../lib/puppet/module_tool/applications/installer.rb:
|
3213
|
+
#: ../lib/puppet/module_tool/applications/installer.rb:212
|
3214
3214
|
msgid "Preparing to install ..."
|
3215
3215
|
msgstr ""
|
3216
3216
|
|
3217
|
-
#: ../lib/puppet/module_tool/applications/installer.rb:
|
3217
|
+
#: ../lib/puppet/module_tool/applications/installer.rb:215
|
3218
3218
|
msgid "Installing -- do not interrupt ..."
|
3219
3219
|
msgstr ""
|
3220
3220
|
|
@@ -3333,7 +3333,7 @@ msgstr ""
|
|
3333
3333
|
msgid "Could not %{action} '%{module_name}' (%{version}); no version satisfies all dependencies"
|
3334
3334
|
msgstr ""
|
3335
3335
|
|
3336
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:17 ../lib/puppet/module_tool/errors/shared.rb:
|
3336
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:17 ../lib/puppet/module_tool/errors/shared.rb:203 ../lib/puppet/module_tool/errors/upgrader.rb:58
|
3337
3337
|
msgid "Could not %{action} module '%{module_name}' (%{version})"
|
3338
3338
|
msgstr ""
|
3339
3339
|
|
@@ -3423,68 +3423,80 @@ msgid " No version of '%{module_name}' will satisfy dependencies"
|
|
3423
3423
|
msgstr ""
|
3424
3424
|
|
3425
3425
|
#: ../lib/puppet/module_tool/errors/shared.rb:135
|
3426
|
-
msgid "Could not %{action} '%{module_name}'
|
3426
|
+
msgid "Could not %{action} '%{module_name}', did you mean '%{suggestion}'?"
|
3427
3427
|
msgstr ""
|
3428
3428
|
|
3429
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:140 ../lib/puppet/module_tool/errors/shared.rb:
|
3429
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:140 ../lib/puppet/module_tool/errors/shared.rb:157 ../lib/puppet/module_tool/errors/shared.rb:180 ../lib/puppet/module_tool/errors/shared.rb:221
|
3430
3430
|
msgid "Could not %{action} module '%{module_name}'"
|
3431
3431
|
msgstr ""
|
3432
3432
|
|
3433
3433
|
#: ../lib/puppet/module_tool/errors/shared.rb:141
|
3434
|
+
msgid " The name '%{module_name}' is invalid"
|
3435
|
+
msgstr ""
|
3436
|
+
|
3437
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:142
|
3438
|
+
msgid " Did you mean `puppet module %{action} %{suggestion}`?"
|
3439
|
+
msgstr ""
|
3440
|
+
|
3441
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:152
|
3442
|
+
msgid "Could not %{action} '%{module_name}'; module is not installed"
|
3443
|
+
msgstr ""
|
3444
|
+
|
3445
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:158
|
3434
3446
|
msgid " Module '%{module_name}' is not installed"
|
3435
3447
|
msgstr ""
|
3436
3448
|
|
3437
3449
|
#. TRANSLATORS `puppet module %{action} %{suggestion}` is a command line and should not be translated
|
3438
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3450
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:161
|
3439
3451
|
msgid " You may have meant `puppet module %{action} %{suggestion}`"
|
3440
3452
|
msgstr ""
|
3441
3453
|
|
3442
3454
|
#. TRANSLATORS `puppet module install` is a command line and should not be translated
|
3443
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3455
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:164
|
3444
3456
|
msgid " Use `puppet module install` to install this module"
|
3445
3457
|
msgstr ""
|
3446
3458
|
|
3447
3459
|
#. TRANSLATORS "module path" refers to a set of directories where modules may be installed
|
3448
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3460
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:175
|
3449
3461
|
msgid "Could not %{action} '%{module_name}'; module appears in multiple places in the module path"
|
3450
3462
|
msgstr ""
|
3451
3463
|
|
3452
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3464
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:181
|
3453
3465
|
msgid " Module '%{module_name}' appears multiple places in the module path"
|
3454
3466
|
msgstr ""
|
3455
3467
|
|
3456
3468
|
#. TRANSLATORS This is repeats as separate lines as a list under "Module '%{module_name}' appears multiple places in the module path"
|
3457
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3469
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:184
|
3458
3470
|
msgid " '%{module_name}' (%{version}) was found in %{path}"
|
3459
3471
|
msgstr ""
|
3460
3472
|
|
3461
3473
|
#. TRANSLATORS `--modulepath` is command line option and should not be translated
|
3462
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3474
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:187
|
3463
3475
|
msgid " Use the `--modulepath` option to limit the search to specific directories"
|
3464
3476
|
msgstr ""
|
3465
3477
|
|
3466
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3478
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:198
|
3467
3479
|
msgid "Could not %{action} '%{module_name}'; module has had changes made locally"
|
3468
3480
|
msgstr ""
|
3469
3481
|
|
3470
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3482
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:204
|
3471
3483
|
msgid " Installed module has had changes made locally"
|
3472
3484
|
msgstr ""
|
3473
3485
|
|
3474
3486
|
#. TRANSLATORS `puppet module %{action} --ignore-changes` is a command line and should not be translated
|
3475
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3487
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:206
|
3476
3488
|
msgid " Use `puppet module %{action} --ignore-changes` to %{action} this module anyway"
|
3477
3489
|
msgstr ""
|
3478
3490
|
|
3479
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3491
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:216
|
3480
3492
|
msgid "Could not %{action} '%{module_name}'; %{error}"
|
3481
3493
|
msgstr ""
|
3482
3494
|
|
3483
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3495
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:222
|
3484
3496
|
msgid " Failure trying to parse metadata"
|
3485
3497
|
msgstr ""
|
3486
3498
|
|
3487
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3499
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:223
|
3488
3500
|
msgid " Original message was: %{message}"
|
3489
3501
|
msgstr ""
|
3490
3502
|
|
@@ -6190,15 +6202,15 @@ msgstr ""
|
|
6190
6202
|
msgid "'%{exe}' is not qualified and no path was specified. Please qualify the command or specify a path."
|
6191
6203
|
msgstr ""
|
6192
6204
|
|
6193
|
-
#: ../lib/puppet/provider/exec/posix.rb:
|
6205
|
+
#: ../lib/puppet/provider/exec/posix.rb:33 ../lib/puppet/provider/exec/posix.rb:50 ../lib/puppet/provider/exec/windows.rb:40 ../lib/puppet/provider/exec/windows.rb:53
|
6194
6206
|
msgid "Could not find command '%{exe}'"
|
6195
6207
|
msgstr ""
|
6196
6208
|
|
6197
|
-
#: ../lib/puppet/provider/exec/posix.rb:
|
6209
|
+
#: ../lib/puppet/provider/exec/posix.rb:35 ../lib/puppet/provider/exec/windows.rb:42
|
6198
6210
|
msgid "'%{exe}' is a %{klass}, not a file"
|
6199
6211
|
msgstr ""
|
6200
6212
|
|
6201
|
-
#: ../lib/puppet/provider/exec/posix.rb:
|
6213
|
+
#: ../lib/puppet/provider/exec/posix.rb:37
|
6202
6214
|
msgid "'%{exe}' is not executable"
|
6203
6215
|
msgstr ""
|
6204
6216
|
|
@@ -6474,31 +6486,31 @@ msgstr ""
|
|
6474
6486
|
msgid "NIM package provider is unable to downgrade packages"
|
6475
6487
|
msgstr ""
|
6476
6488
|
|
6477
|
-
#: ../lib/puppet/provider/package/nim.rb:
|
6489
|
+
#: ../lib/puppet/provider/package/nim.rb:217
|
6478
6490
|
msgid ""
|
6479
6491
|
"Unable to parse output from nimclient showres: line does not match expected package header format:\n"
|
6480
6492
|
"'%{line}'"
|
6481
6493
|
msgstr ""
|
6482
6494
|
|
6483
|
-
#: ../lib/puppet/provider/package/nim.rb:
|
6495
|
+
#: ../lib/puppet/provider/package/nim.rb:224
|
6484
6496
|
msgid ""
|
6485
6497
|
"Unable to parse output from nimclient showres: package string does not match expected installp package string format:\n"
|
6486
6498
|
"'%{package_string}'"
|
6487
6499
|
msgstr ""
|
6488
6500
|
|
6489
|
-
#: ../lib/puppet/provider/package/nim.rb:
|
6501
|
+
#: ../lib/puppet/provider/package/nim.rb:234
|
6490
6502
|
msgid ""
|
6491
6503
|
"Unable to parse output from nimclient showres: package string does not match expected rpm package string format:\n"
|
6492
6504
|
"'%{package_string}'"
|
6493
6505
|
msgstr ""
|
6494
6506
|
|
6495
|
-
#: ../lib/puppet/provider/package/nim.rb:
|
6507
|
+
#: ../lib/puppet/provider/package/nim.rb:244
|
6496
6508
|
msgid ""
|
6497
6509
|
"Unable to parse output from nimclient showres: line does not match expected package line format:\n"
|
6498
6510
|
"'%{line}'"
|
6499
6511
|
msgstr ""
|
6500
6512
|
|
6501
|
-
#: ../lib/puppet/provider/package/nim.rb:
|
6513
|
+
#: ../lib/puppet/provider/package/nim.rb:256
|
6502
6514
|
msgid ""
|
6503
6515
|
"Unrecognized package type specifier: '%{package_type_flag}' in package line:\n"
|
6504
6516
|
"'%{line}'"
|
@@ -6673,22 +6685,30 @@ msgstr ""
|
|
6673
6685
|
msgid "Package %{name} was not present after trying to install it"
|
6674
6686
|
msgstr ""
|
6675
6687
|
|
6676
|
-
#: ../lib/puppet/provider/package/windows.rb:
|
6688
|
+
#: ../lib/puppet/provider/package/windows.rb:42
|
6689
|
+
msgid "Error when unlinking %{path}: %{detail}"
|
6690
|
+
msgstr ""
|
6691
|
+
|
6692
|
+
#: ../lib/puppet/provider/package/windows.rb:110
|
6677
6693
|
msgid "The package %{operation}ed successfully and the system is rebooting now."
|
6678
6694
|
msgstr ""
|
6679
6695
|
|
6680
|
-
#: ../lib/puppet/provider/package/windows.rb:
|
6696
|
+
#: ../lib/puppet/provider/package/windows.rb:112
|
6681
6697
|
msgid "The package %{operation}ed successfully, but the system must be rebooted."
|
6682
6698
|
msgstr ""
|
6683
6699
|
|
6684
|
-
#: ../lib/puppet/provider/package/windows.rb:
|
6700
|
+
#: ../lib/puppet/provider/package/windows.rb:114
|
6685
6701
|
msgid "Failed to %{operation}"
|
6686
6702
|
msgstr ""
|
6687
6703
|
|
6688
|
-
#: ../lib/puppet/provider/package/windows.rb:
|
6704
|
+
#: ../lib/puppet/provider/package/windows.rb:120
|
6689
6705
|
msgid "The source parameter cannot be empty when using the Windows provider."
|
6690
6706
|
msgstr ""
|
6691
6707
|
|
6708
|
+
#: ../lib/puppet/provider/package/windows/exe_package.rb:79
|
6709
|
+
msgid "Error when installing %{package}: %{detail}"
|
6710
|
+
msgstr ""
|
6711
|
+
|
6692
6712
|
#: ../lib/puppet/provider/package/windows/package.rb:62
|
6693
6713
|
msgid "The source parameter is required when using the Windows provider."
|
6694
6714
|
msgstr ""
|
@@ -6697,7 +6717,7 @@ msgstr ""
|
|
6697
6717
|
msgid "The source does not exist: '%{source}'"
|
6698
6718
|
msgstr ""
|
6699
6719
|
|
6700
|
-
#: ../lib/puppet/provider/package/windows/package.rb:
|
6720
|
+
#: ../lib/puppet/provider/package/windows/package.rb:74
|
6701
6721
|
msgid "Don't know how to install '%{source}'"
|
6702
6722
|
msgstr ""
|
6703
6723
|
|
@@ -6733,19 +6753,19 @@ msgstr ""
|
|
6733
6753
|
msgid "Failed to read %{target}'s records when prefetching them. Reason: %{detail}"
|
6734
6754
|
msgstr ""
|
6735
6755
|
|
6736
|
-
#: ../lib/puppet/provider/parsedfile.rb:
|
6737
|
-
msgid "
|
6756
|
+
#: ../lib/puppet/provider/parsedfile.rb:284 ../lib/puppet/provider/parsedfile.rb:308
|
6757
|
+
msgid "Prefetching %{target} for provider %{name} returned nil"
|
6738
6758
|
msgstr ""
|
6739
6759
|
|
6740
|
-
#: ../lib/puppet/provider/parsedfile.rb:
|
6741
|
-
msgid "
|
6760
|
+
#: ../lib/puppet/provider/parsedfile.rb:294
|
6761
|
+
msgid "Could not prefetch %{resource} provider '%{name}' target '%{target}': %{detail}. Treating as empty"
|
6742
6762
|
msgstr ""
|
6743
6763
|
|
6744
|
-
#: ../lib/puppet/provider/parsedfile.rb:
|
6764
|
+
#: ../lib/puppet/provider/parsedfile.rb:381
|
6745
6765
|
msgid "Parsed Providers must define a default target"
|
6746
6766
|
msgstr ""
|
6747
6767
|
|
6748
|
-
#: ../lib/puppet/provider/parsedfile.rb:
|
6768
|
+
#: ../lib/puppet/provider/parsedfile.rb:472
|
6749
6769
|
msgid "Somehow got told to prefetch with no resource set"
|
6750
6770
|
msgstr ""
|
6751
6771
|
|
@@ -7052,26 +7072,34 @@ msgid "Class '%{klass}' is already defined%{error}; cannot redefine"
|
|
7052
7072
|
msgstr ""
|
7053
7073
|
|
7054
7074
|
#: ../lib/puppet/resource/type_collection.rb:64
|
7075
|
+
msgid "Node '%{klass}' is already defined%{error}; cannot be redefined as a class"
|
7076
|
+
msgstr ""
|
7077
|
+
|
7078
|
+
#: ../lib/puppet/resource/type_collection.rb:65
|
7055
7079
|
msgid "Definition '%{klass}' is already defined%{error}; cannot be redefined as a class"
|
7056
7080
|
msgstr ""
|
7057
7081
|
|
7058
|
-
#: ../lib/puppet/resource/type_collection.rb:
|
7082
|
+
#: ../lib/puppet/resource/type_collection.rb:96
|
7059
7083
|
msgid "Node '%{name}' is already defined%{error}; cannot redefine"
|
7060
7084
|
msgstr ""
|
7061
7085
|
|
7062
|
-
#: ../lib/puppet/resource/type_collection.rb:
|
7086
|
+
#: ../lib/puppet/resource/type_collection.rb:97
|
7087
|
+
msgid "Class '%{klass}' is already defined%{error}; cannot be redefined as a node"
|
7088
|
+
msgstr ""
|
7089
|
+
|
7090
|
+
#: ../lib/puppet/resource/type_collection.rb:132
|
7063
7091
|
msgid "'%{name}' is already defined%{error} as a class; cannot redefine as a definition"
|
7064
7092
|
msgstr ""
|
7065
7093
|
|
7066
|
-
#: ../lib/puppet/resource/type_collection.rb:
|
7094
|
+
#: ../lib/puppet/resource/type_collection.rb:133
|
7067
7095
|
msgid "Definition '%{name}' is already defined%{error}; cannot be redefined"
|
7068
7096
|
msgstr ""
|
7069
7097
|
|
7070
|
-
#: ../lib/puppet/resource/type_collection.rb:
|
7098
|
+
#: ../lib/puppet/resource/type_collection.rb:177
|
7071
7099
|
msgid "Execution of config_version command `%{cmd}` failed: %{message}"
|
7072
7100
|
msgstr ""
|
7073
7101
|
|
7074
|
-
#: ../lib/puppet/resource/type_collection.rb:
|
7102
|
+
#: ../lib/puppet/resource/type_collection.rb:198
|
7075
7103
|
msgid "Not attempting to load %{type} %{fqname} as this object was missing during a prior compilation"
|
7076
7104
|
msgstr ""
|
7077
7105
|
|
@@ -7095,49 +7123,57 @@ msgstr ""
|
|
7095
7123
|
msgid "Invalid setting type '%{type}'"
|
7096
7124
|
msgstr ""
|
7097
7125
|
|
7098
|
-
#: ../lib/puppet/settings.rb:
|
7126
|
+
#: ../lib/puppet/settings.rb:874
|
7127
|
+
msgid "Cannot manage owner permissions, because the provider for '%{name}' is not functional"
|
7128
|
+
msgstr ""
|
7129
|
+
|
7130
|
+
#: ../lib/puppet/settings.rb:890
|
7131
|
+
msgid "Cannot manage group permissions, because the provider for '%{name}' is not functional"
|
7132
|
+
msgstr ""
|
7133
|
+
|
7134
|
+
#: ../lib/puppet/settings.rb:926
|
7099
7135
|
msgid "Unknown searchpath case: %{source_type} for the %{source} settings path element."
|
7100
7136
|
msgstr ""
|
7101
7137
|
|
7102
|
-
#: ../lib/puppet/settings.rb:
|
7138
|
+
#: ../lib/puppet/settings.rb:1007
|
7103
7139
|
msgid "setting definition for '%{name}' is not a hash!"
|
7104
7140
|
msgstr ""
|
7105
7141
|
|
7106
|
-
#: ../lib/puppet/settings.rb:
|
7142
|
+
#: ../lib/puppet/settings.rb:1012
|
7107
7143
|
msgid "Setting %{name} is already defined"
|
7108
7144
|
msgstr ""
|
7109
7145
|
|
7110
|
-
#: ../lib/puppet/settings.rb:
|
7146
|
+
#: ../lib/puppet/settings.rb:1018
|
7111
7147
|
msgid "Setting %{name} is already using short name '%{short}'"
|
7112
7148
|
msgstr ""
|
7113
7149
|
|
7114
|
-
#: ../lib/puppet/settings.rb:
|
7150
|
+
#: ../lib/puppet/settings.rb:1289
|
7115
7151
|
msgid "Setting %{name} is deprecated."
|
7116
7152
|
msgstr ""
|
7117
7153
|
|
7118
7154
|
#. TRANSLATORS 'puppet.conf' is a file name and should not be translated
|
7119
|
-
#: ../lib/puppet/settings.rb:
|
7155
|
+
#: ../lib/puppet/settings.rb:1294
|
7120
7156
|
msgid "Setting %{name} is deprecated in puppet.conf."
|
7121
7157
|
msgstr ""
|
7122
7158
|
|
7123
|
-
#: ../lib/puppet/settings.rb:
|
7159
|
+
#: ../lib/puppet/settings.rb:1481
|
7124
7160
|
msgid "Error converting value for param '%{name}': %{detail}"
|
7125
7161
|
msgstr ""
|
7126
7162
|
|
7127
|
-
#: ../lib/puppet/settings.rb:
|
7163
|
+
#: ../lib/puppet/settings.rb:1505
|
7128
7164
|
msgid "Could not find value for %{expression}"
|
7129
7165
|
msgstr ""
|
7130
7166
|
|
7131
7167
|
#. TRANSLATORS '$environment' is a Puppet specific variable and should not be translated
|
7132
|
-
#: ../lib/puppet/settings.rb:
|
7168
|
+
#: ../lib/puppet/settings.rb:1515
|
7133
7169
|
msgid "You cannot interpolate $environment within '%{setting_name}' when using directory environments."
|
7134
7170
|
msgstr ""
|
7135
7171
|
|
7136
|
-
#: ../lib/puppet/settings.rb:
|
7172
|
+
#: ../lib/puppet/settings.rb:1516
|
7137
7173
|
msgid "Its value will remain %{value}."
|
7138
7174
|
msgstr ""
|
7139
7175
|
|
7140
|
-
#: ../lib/puppet/settings.rb:
|
7176
|
+
#: ../lib/puppet/settings.rb:1547
|
7141
7177
|
msgid "Attempt to assign a value to unknown setting %{name}"
|
7142
7178
|
msgstr ""
|
7143
7179
|
|
@@ -7214,15 +7250,15 @@ msgstr ""
|
|
7214
7250
|
msgid "(See https://puppet.com/docs/puppet/latest/environments_about.html)"
|
7215
7251
|
msgstr ""
|
7216
7252
|
|
7217
|
-
#: ../lib/puppet/settings/config_file.rb:
|
7253
|
+
#: ../lib/puppet/settings/config_file.rb:131
|
7218
7254
|
msgid "Invalid file option '%{parameter}'"
|
7219
7255
|
msgstr ""
|
7220
7256
|
|
7221
|
-
#: ../lib/puppet/settings/config_file.rb:
|
7257
|
+
#: ../lib/puppet/settings/config_file.rb:135
|
7222
7258
|
msgid "File modes must be numbers"
|
7223
7259
|
msgstr ""
|
7224
7260
|
|
7225
|
-
#: ../lib/puppet/settings/config_file.rb:
|
7261
|
+
#: ../lib/puppet/settings/config_file.rb:138
|
7226
7262
|
msgid "Could not parse '%{string}'"
|
7227
7263
|
msgstr ""
|
7228
7264
|
|
@@ -7291,7 +7327,7 @@ msgstr ""
|
|
7291
7327
|
msgid "%{name} has not declared what class it wraps"
|
7292
7328
|
msgstr ""
|
7293
7329
|
|
7294
|
-
#: ../lib/puppet/ssl/base.rb:31 ../lib/puppet/x509/cert_provider.rb:
|
7330
|
+
#: ../lib/puppet/ssl/base.rb:31 ../lib/puppet/x509/cert_provider.rb:352
|
7295
7331
|
msgid "Certname %{name} must not contain unprintable or non-ASCII characters"
|
7296
7332
|
msgstr ""
|
7297
7333
|
|
@@ -7948,56 +7984,56 @@ msgstr ""
|
|
7948
7984
|
msgid "'%{cmd}' returned %{status} instead of one of [%{expected}]"
|
7949
7985
|
msgstr ""
|
7950
7986
|
|
7951
|
-
#: ../lib/puppet/type/exec.rb:
|
7952
|
-
msgid "Command must be a String
|
7987
|
+
#: ../lib/puppet/type/exec.rb:205
|
7988
|
+
msgid "Command must be a String or Array<String>, got value of class %{klass}"
|
7953
7989
|
msgstr ""
|
7954
7990
|
|
7955
|
-
#: ../lib/puppet/type/exec.rb:
|
7991
|
+
#: ../lib/puppet/type/exec.rb:238
|
7956
7992
|
msgid "Unable to execute commands as other users on Windows"
|
7957
7993
|
msgstr ""
|
7958
7994
|
|
7959
|
-
#: ../lib/puppet/type/exec.rb:
|
7995
|
+
#: ../lib/puppet/type/exec.rb:240
|
7960
7996
|
msgid "Only root can execute commands as other users"
|
7961
7997
|
msgstr ""
|
7962
7998
|
|
7963
|
-
#: ../lib/puppet/type/exec.rb:
|
7999
|
+
#: ../lib/puppet/type/exec.rb:296
|
7964
8000
|
msgid "Invalid environment setting '%{value}'"
|
7965
8001
|
msgstr ""
|
7966
8002
|
|
7967
|
-
#: ../lib/puppet/type/exec.rb:
|
8003
|
+
#: ../lib/puppet/type/exec.rb:309
|
7968
8004
|
msgid "The umask specification is invalid: %{value}"
|
7969
8005
|
msgstr ""
|
7970
8006
|
|
7971
|
-
#: ../lib/puppet/type/exec.rb:
|
8007
|
+
#: ../lib/puppet/type/exec.rb:325
|
7972
8008
|
msgid "The timeout must be a number."
|
7973
8009
|
msgstr ""
|
7974
8010
|
|
7975
|
-
#: ../lib/puppet/type/exec.rb:
|
8011
|
+
#: ../lib/puppet/type/exec.rb:342
|
7976
8012
|
msgid "Tries must be an integer"
|
7977
8013
|
msgstr ""
|
7978
8014
|
|
7979
|
-
#: ../lib/puppet/type/exec.rb:
|
8015
|
+
#: ../lib/puppet/type/exec.rb:346
|
7980
8016
|
msgid "Tries must be an integer >= 1"
|
7981
8017
|
msgstr ""
|
7982
8018
|
|
7983
|
-
#: ../lib/puppet/type/exec.rb:
|
8019
|
+
#: ../lib/puppet/type/exec.rb:359
|
7984
8020
|
msgid "try_sleep must be a number"
|
7985
8021
|
msgstr ""
|
7986
8022
|
|
7987
|
-
#: ../lib/puppet/type/exec.rb:
|
8023
|
+
#: ../lib/puppet/type/exec.rb:363
|
7988
8024
|
msgid "try_sleep cannot be a negative number"
|
7989
8025
|
msgstr ""
|
7990
8026
|
|
7991
8027
|
#. TRANSLATORS 'creates' is a parameter name and should not be translated
|
7992
|
-
#: ../lib/puppet/type/exec.rb:
|
8028
|
+
#: ../lib/puppet/type/exec.rb:435
|
7993
8029
|
msgid "Checking that 'creates' path '%{creates_path}' exists"
|
7994
8030
|
msgstr ""
|
7995
8031
|
|
7996
|
-
#: ../lib/puppet/type/exec.rb:
|
8032
|
+
#: ../lib/puppet/type/exec.rb:484 ../lib/puppet/type/exec.rb:544
|
7997
8033
|
msgid "Check %{value} exceeded timeout"
|
7998
8034
|
msgstr ""
|
7999
8035
|
|
8000
|
-
#: ../lib/puppet/type/exec.rb:
|
8036
|
+
#: ../lib/puppet/type/exec.rb:636
|
8001
8037
|
msgid "'%{cmd}' won't be executed because of failed check '%{check}'"
|
8002
8038
|
msgstr ""
|
8003
8039
|
|
@@ -8121,7 +8157,7 @@ msgstr ""
|
|
8121
8157
|
msgid "Ensure set to :present but file type is %{file_type} so no content will be synced"
|
8122
8158
|
msgstr ""
|
8123
8159
|
|
8124
|
-
#: ../lib/puppet/type/file/mode.rb:
|
8160
|
+
#: ../lib/puppet/type/file/mode.rb:132
|
8125
8161
|
msgid "Not managing symlink mode"
|
8126
8162
|
msgstr ""
|
8127
8163
|
|
@@ -8234,7 +8270,7 @@ msgstr ""
|
|
8234
8270
|
msgid "%{value} is not a valid day of the week"
|
8235
8271
|
msgstr ""
|
8236
8272
|
|
8237
|
-
#: ../lib/puppet/type/service.rb:151 ../lib/puppet/type/user.rb:
|
8273
|
+
#: ../lib/puppet/type/service.rb:151 ../lib/puppet/type/user.rb:272
|
8238
8274
|
msgid "Passwords cannot include ':'"
|
8239
8275
|
msgstr ""
|
8240
8276
|
|
@@ -8277,81 +8313,81 @@ msgstr ""
|
|
8277
8313
|
msgid "File does not exist"
|
8278
8314
|
msgstr ""
|
8279
8315
|
|
8280
|
-
#: ../lib/puppet/type/user.rb:
|
8316
|
+
#: ../lib/puppet/type/user.rb:183
|
8281
8317
|
msgid "Could not find group(s) %{groups}"
|
8282
8318
|
msgstr ""
|
8283
8319
|
|
8284
|
-
#: ../lib/puppet/type/user.rb:
|
8320
|
+
#: ../lib/puppet/type/user.rb:292
|
8285
8321
|
msgid "Password minimum age must be provided as a number."
|
8286
8322
|
msgstr ""
|
8287
8323
|
|
8288
|
-
#: ../lib/puppet/type/user.rb:
|
8324
|
+
#: ../lib/puppet/type/user.rb:311
|
8289
8325
|
msgid "Password maximum age must be provided as a number."
|
8290
8326
|
msgstr ""
|
8291
8327
|
|
8292
|
-
#: ../lib/puppet/type/user.rb:
|
8328
|
+
#: ../lib/puppet/type/user.rb:342
|
8293
8329
|
msgid "Group names must be provided, not GID numbers."
|
8294
8330
|
msgstr ""
|
8295
8331
|
|
8296
|
-
#: ../lib/puppet/type/user.rb:
|
8332
|
+
#: ../lib/puppet/type/user.rb:344
|
8297
8333
|
msgid "Group names must be provided as an array, not a comma-separated list."
|
8298
8334
|
msgstr ""
|
8299
8335
|
|
8300
|
-
#: ../lib/puppet/type/user.rb:
|
8336
|
+
#: ../lib/puppet/type/user.rb:345
|
8301
8337
|
msgid "Group names must not be empty. If you want to specify \"no groups\" pass an empty array"
|
8302
8338
|
msgstr ""
|
8303
8339
|
|
8304
|
-
#: ../lib/puppet/type/user.rb:
|
8340
|
+
#: ../lib/puppet/type/user.rb:438
|
8305
8341
|
msgid "User provider %{name} can not manage home directories"
|
8306
8342
|
msgstr ""
|
8307
8343
|
|
8308
8344
|
#. TRANSLATORS YYYY-MM-DD represents a date with a four-digit year, a two-digit month, and a two-digit day,
|
8309
8345
|
#. TRANSLATORS separated by dashes.
|
8310
|
-
#: ../lib/puppet/type/user.rb:
|
8346
|
+
#: ../lib/puppet/type/user.rb:455
|
8311
8347
|
msgid "Expiry dates must be YYYY-MM-DD or the string \"absent\""
|
8312
8348
|
msgstr ""
|
8313
8349
|
|
8314
|
-
#: ../lib/puppet/type/user.rb:
|
8350
|
+
#: ../lib/puppet/type/user.rb:522
|
8315
8351
|
msgid "Role names must be provided, not numbers"
|
8316
8352
|
msgstr ""
|
8317
8353
|
|
8318
|
-
#: ../lib/puppet/type/user.rb:
|
8354
|
+
#: ../lib/puppet/type/user.rb:524
|
8319
8355
|
msgid "Role names must be provided as an array, not a comma-separated list"
|
8320
8356
|
msgstr ""
|
8321
8357
|
|
8322
|
-
#: ../lib/puppet/type/user.rb:
|
8358
|
+
#: ../lib/puppet/type/user.rb:561
|
8323
8359
|
msgid "Auth names must be provided, not numbers"
|
8324
8360
|
msgstr ""
|
8325
8361
|
|
8326
|
-
#: ../lib/puppet/type/user.rb:
|
8362
|
+
#: ../lib/puppet/type/user.rb:563
|
8327
8363
|
msgid "Auth names must be provided as an array, not a comma-separated list"
|
8328
8364
|
msgstr ""
|
8329
8365
|
|
8330
|
-
#: ../lib/puppet/type/user.rb:
|
8366
|
+
#: ../lib/puppet/type/user.rb:587
|
8331
8367
|
msgid "Profile names must be provided, not numbers"
|
8332
8368
|
msgstr ""
|
8333
8369
|
|
8334
|
-
#: ../lib/puppet/type/user.rb:
|
8370
|
+
#: ../lib/puppet/type/user.rb:589
|
8335
8371
|
msgid "Profile names must be provided as an array, not a comma-separated list"
|
8336
8372
|
msgstr ""
|
8337
8373
|
|
8338
|
-
#: ../lib/puppet/type/user.rb:
|
8374
|
+
#: ../lib/puppet/type/user.rb:701
|
8339
8375
|
msgid "Ssh_authorized_key type is not available. Cannot purge SSH keys."
|
8340
8376
|
msgstr ""
|
8341
8377
|
|
8342
|
-
#: ../lib/puppet/type/user.rb:
|
8378
|
+
#: ../lib/puppet/type/user.rb:739
|
8343
8379
|
msgid "Each entry for purge_ssh_keys must be a string, not a %{klass}"
|
8344
8380
|
msgstr ""
|
8345
8381
|
|
8346
|
-
#: ../lib/puppet/type/user.rb:
|
8382
|
+
#: ../lib/puppet/type/user.rb:742
|
8347
8383
|
msgid "Paths to keyfiles must be absolute, not %{entry}"
|
8348
8384
|
msgstr ""
|
8349
8385
|
|
8350
|
-
#: ../lib/puppet/type/user.rb:
|
8386
|
+
#: ../lib/puppet/type/user.rb:746
|
8351
8387
|
msgid "purge_ssh_keys must be true, false, or an array of file names, not %{value}"
|
8352
8388
|
msgstr ""
|
8353
8389
|
|
8354
|
-
#: ../lib/puppet/type/user.rb:
|
8390
|
+
#: ../lib/puppet/type/user.rb:755
|
8355
8391
|
msgid "Class name must be provided."
|
8356
8392
|
msgstr ""
|
8357
8393
|
|
@@ -9147,39 +9183,39 @@ msgstr ""
|
|
9147
9183
|
msgid "Invalid %{klass}: %{id}"
|
9148
9184
|
msgstr ""
|
9149
9185
|
|
9150
|
-
#: ../lib/puppet/util/symbolic_file_mode.rb:
|
9186
|
+
#: ../lib/puppet/util/symbolic_file_mode.rb:49
|
9151
9187
|
msgid "An empty mode string is illegal"
|
9152
9188
|
msgstr ""
|
9153
9189
|
|
9154
|
-
#: ../lib/puppet/util/symbolic_file_mode.rb:
|
9190
|
+
#: ../lib/puppet/util/symbolic_file_mode.rb:53
|
9155
9191
|
msgid "Numeric modes must be in octal, not decimal!"
|
9156
9192
|
msgstr ""
|
9157
9193
|
|
9158
|
-
#: ../lib/puppet/util/symbolic_file_mode.rb:
|
9194
|
+
#: ../lib/puppet/util/symbolic_file_mode.rb:56
|
9159
9195
|
msgid "non-numeric current mode (%{mode})"
|
9160
9196
|
msgstr ""
|
9161
9197
|
|
9162
|
-
#: ../lib/puppet/util/symbolic_file_mode.rb:
|
9198
|
+
#: ../lib/puppet/util/symbolic_file_mode.rb:76
|
9163
9199
|
msgid "Missing action"
|
9164
9200
|
msgstr ""
|
9165
9201
|
|
9166
|
-
#: ../lib/puppet/util/symbolic_file_mode.rb:
|
9202
|
+
#: ../lib/puppet/util/symbolic_file_mode.rb:91
|
9167
9203
|
msgid "Missing operation (-, =, or +)"
|
9168
9204
|
msgstr ""
|
9169
9205
|
|
9170
|
-
#: ../lib/puppet/util/symbolic_file_mode.rb:
|
9206
|
+
#: ../lib/puppet/util/symbolic_file_mode.rb:113
|
9171
9207
|
msgid "X only works with the '+' operator"
|
9172
9208
|
msgstr ""
|
9173
9209
|
|
9174
|
-
#: ../lib/puppet/util/symbolic_file_mode.rb:
|
9210
|
+
#: ../lib/puppet/util/symbolic_file_mode.rb:124
|
9175
9211
|
msgid "internal error"
|
9176
9212
|
msgstr ""
|
9177
9213
|
|
9178
|
-
#: ../lib/puppet/util/symbolic_file_mode.rb:
|
9214
|
+
#: ../lib/puppet/util/symbolic_file_mode.rb:128
|
9179
9215
|
msgid "Unknown operation"
|
9180
9216
|
msgstr ""
|
9181
9217
|
|
9182
|
-
#: ../lib/puppet/util/symbolic_file_mode.rb:
|
9218
|
+
#: ../lib/puppet/util/symbolic_file_mode.rb:143
|
9183
9219
|
msgid "%{error}%{rest} in symbolic mode %{modification}"
|
9184
9220
|
msgstr ""
|
9185
9221
|
|
@@ -9413,7 +9449,7 @@ msgstr ""
|
|
9413
9449
|
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"
|
9414
9450
|
msgstr ""
|
9415
9451
|
|
9416
|
-
#: ../lib/puppet/util/windows/security.rb:433 ../lib/puppet/util/windows/security.rb:450 ../lib/puppet/util/windows/sid.rb:
|
9452
|
+
#: ../lib/puppet/util/windows/security.rb:433 ../lib/puppet/util/windows/security.rb:450 ../lib/puppet/util/windows/sid.rb:159 ../lib/puppet/util/windows/sid.rb:221 ../lib/puppet/util/windows/user.rb:59
|
9417
9453
|
msgid "Invalid SID"
|
9418
9454
|
msgstr ""
|
9419
9455
|
|
@@ -9569,19 +9605,19 @@ msgstr ""
|
|
9569
9605
|
msgid "Timed out while waiting for the pending transition from %{pending_state} to %{final_state} to finish. The current state is %{current_state}."
|
9570
9606
|
msgstr ""
|
9571
9607
|
|
9572
|
-
#: ../lib/puppet/util/windows/sid.rb:
|
9608
|
+
#: ../lib/puppet/util/windows/sid.rb:98
|
9573
9609
|
msgid "Octet string must be an array of bytes"
|
9574
9610
|
msgstr ""
|
9575
9611
|
|
9576
|
-
#: ../lib/puppet/util/windows/sid.rb:
|
9612
|
+
#: ../lib/puppet/util/windows/sid.rb:165
|
9577
9613
|
msgid "Failed to convert binary SID"
|
9578
9614
|
msgstr ""
|
9579
9615
|
|
9580
|
-
#: ../lib/puppet/util/windows/sid.rb:
|
9616
|
+
#: ../lib/puppet/util/windows/sid.rb:170
|
9581
9617
|
msgid "ConvertSidToStringSidW failed to allocate buffer for sid"
|
9582
9618
|
msgstr ""
|
9583
9619
|
|
9584
|
-
#: ../lib/puppet/util/windows/sid.rb:
|
9620
|
+
#: ../lib/puppet/util/windows/sid.rb:190
|
9585
9621
|
msgid "Failed to convert string SID: %{string_sid}"
|
9586
9622
|
msgstr ""
|
9587
9623
|
|
@@ -9605,72 +9641,72 @@ msgstr ""
|
|
9605
9641
|
msgid "Failed to unload user profile %{user}"
|
9606
9642
|
msgstr ""
|
9607
9643
|
|
9608
|
-
#: ../lib/puppet/x509/cert_provider.rb:
|
9644
|
+
#: ../lib/puppet/x509/cert_provider.rb:44
|
9609
9645
|
msgid "Failed to save CA certificates to '%{capath}'"
|
9610
9646
|
msgstr ""
|
9611
9647
|
|
9612
|
-
#: ../lib/puppet/x509/cert_provider.rb:
|
9648
|
+
#: ../lib/puppet/x509/cert_provider.rb:58
|
9613
9649
|
msgid "The CA certificates are missing from '%{path}'"
|
9614
9650
|
msgstr ""
|
9615
9651
|
|
9616
|
-
#: ../lib/puppet/x509/cert_provider.rb:
|
9652
|
+
#: ../lib/puppet/x509/cert_provider.rb:62
|
9617
9653
|
msgid "Failed to load CA certificates from '%{capath}'"
|
9618
9654
|
msgstr ""
|
9619
9655
|
|
9620
9656
|
#. TRANSLATORS 'PEM' is an acronym and shouldn't be translated
|
9621
|
-
#: ../lib/puppet/x509/cert_provider.rb:
|
9657
|
+
#: ../lib/puppet/x509/cert_provider.rb:74
|
9622
9658
|
msgid "Failed to parse CA certificates as PEM"
|
9623
9659
|
msgstr ""
|
9624
9660
|
|
9625
|
-
#: ../lib/puppet/x509/cert_provider.rb:
|
9661
|
+
#: ../lib/puppet/x509/cert_provider.rb:90
|
9626
9662
|
msgid "Failed to save CRLs to '%{crlpath}'"
|
9627
9663
|
msgstr ""
|
9628
9664
|
|
9629
|
-
#: ../lib/puppet/x509/cert_provider.rb:
|
9665
|
+
#: ../lib/puppet/x509/cert_provider.rb:104
|
9630
9666
|
msgid "The CRL is missing from '%{path}'"
|
9631
9667
|
msgstr ""
|
9632
9668
|
|
9633
|
-
#: ../lib/puppet/x509/cert_provider.rb:
|
9669
|
+
#: ../lib/puppet/x509/cert_provider.rb:108
|
9634
9670
|
msgid "Failed to load CRLs from '%{crlpath}'"
|
9635
9671
|
msgstr ""
|
9636
9672
|
|
9637
9673
|
#. TRANSLATORS 'PEM' is an acronym and shouldn't be translated
|
9638
|
-
#: ../lib/puppet/x509/cert_provider.rb:
|
9674
|
+
#: ../lib/puppet/x509/cert_provider.rb:120
|
9639
9675
|
msgid "Failed to parse CRLs as PEM"
|
9640
9676
|
msgstr ""
|
9641
9677
|
|
9642
|
-
#: ../lib/puppet/x509/cert_provider.rb:
|
9678
|
+
#: ../lib/puppet/x509/cert_provider.rb:170
|
9643
9679
|
msgid "Failed to save private key for '%{name}'"
|
9644
9680
|
msgstr ""
|
9645
9681
|
|
9646
|
-
#: ../lib/puppet/x509/cert_provider.rb:
|
9682
|
+
#: ../lib/puppet/x509/cert_provider.rb:190
|
9647
9683
|
msgid "The private key is missing from '%{path}'"
|
9648
9684
|
msgstr ""
|
9649
9685
|
|
9650
|
-
#: ../lib/puppet/x509/cert_provider.rb:
|
9686
|
+
#: ../lib/puppet/x509/cert_provider.rb:194
|
9651
9687
|
msgid "Failed to load private key for '%{name}'"
|
9652
9688
|
msgstr ""
|
9653
9689
|
|
9654
|
-
#: ../lib/puppet/x509/cert_provider.rb:
|
9690
|
+
#: ../lib/puppet/x509/cert_provider.rb:237
|
9655
9691
|
msgid "Failed to save client certificate for '%{name}'"
|
9656
9692
|
msgstr ""
|
9657
9693
|
|
9658
|
-
#: ../lib/puppet/x509/cert_provider.rb:
|
9694
|
+
#: ../lib/puppet/x509/cert_provider.rb:253
|
9659
9695
|
msgid "The client certificate is missing from '%{path}'"
|
9660
9696
|
msgstr ""
|
9661
9697
|
|
9662
|
-
#: ../lib/puppet/x509/cert_provider.rb:
|
9698
|
+
#: ../lib/puppet/x509/cert_provider.rb:257
|
9663
9699
|
msgid "Failed to load client certificate for '%{name}'"
|
9664
9700
|
msgstr ""
|
9665
9701
|
|
9666
|
-
#: ../lib/puppet/x509/cert_provider.rb:
|
9702
|
+
#: ../lib/puppet/x509/cert_provider.rb:306
|
9667
9703
|
msgid "Failed to save certificate request for '%{name}'"
|
9668
9704
|
msgstr ""
|
9669
9705
|
|
9670
|
-
#: ../lib/puppet/x509/cert_provider.rb:
|
9706
|
+
#: ../lib/puppet/x509/cert_provider.rb:322
|
9671
9707
|
msgid "Failed to load certificate request for '%{name}'"
|
9672
9708
|
msgstr ""
|
9673
9709
|
|
9674
|
-
#: ../lib/puppet/x509/cert_provider.rb:
|
9710
|
+
#: ../lib/puppet/x509/cert_provider.rb:335
|
9675
9711
|
msgid "Failed to delete certificate request for '%{name}'"
|
9676
9712
|
msgstr ""
|