puppet 5.5.10-x86-mingw32 → 5.5.12-x86-mingw32
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of puppet might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/CODEOWNERS +30 -0
- data/Gemfile.lock +13 -13
- data/lib/puppet.rb +4 -4
- data/lib/puppet/application.rb +1 -1
- data/lib/puppet/application/filebucket.rb +6 -1
- data/lib/puppet/configurer.rb +4 -7
- data/lib/puppet/confine/boolean.rb +45 -0
- data/lib/puppet/confine/false.rb +7 -1
- data/lib/puppet/confine/true.rb +7 -1
- data/lib/puppet/defaults.rb +0 -18
- data/lib/puppet/functions/call.rb +2 -1
- data/lib/puppet/network/http/connection.rb +15 -5
- data/lib/puppet/pops/issues.rb +4 -0
- data/lib/puppet/pops/model/factory.rb +38 -4
- data/lib/puppet/pops/parser/egrammar.ra +2 -2
- data/lib/puppet/pops/parser/eparser.rb +628 -627
- data/lib/puppet/pops/parser/heredoc_support.rb +17 -7
- data/lib/puppet/pops/parser/lexer2.rb +6 -1
- data/lib/puppet/pops/parser/locator.rb +106 -86
- data/lib/puppet/pops/parser/parser_support.rb +11 -2
- data/lib/puppet/pops/types/type_mismatch_describer.rb +1 -1
- data/lib/puppet/provider/file/windows.rb +49 -1
- data/lib/puppet/provider/group/windows_adsi.rb +4 -1
- data/lib/puppet/provider/mount/parsed.rb +3 -0
- data/lib/puppet/provider/package/windows.rb +5 -1
- data/lib/puppet/provider/service/systemd.rb +1 -1
- data/lib/puppet/provider/service/upstart.rb +8 -6
- data/lib/puppet/settings.rb +10 -5
- data/lib/puppet/transaction.rb +8 -6
- data/lib/puppet/transaction/resource_harness.rb +1 -0
- data/lib/puppet/type/exec.rb +27 -5
- data/lib/puppet/type/file/mode.rb +6 -1
- data/lib/puppet/type/filebucket.rb +12 -8
- data/lib/puppet/util/command_line.rb +5 -1
- data/lib/puppet/util/log.rb +7 -2
- data/lib/puppet/util/windows/security.rb +29 -8
- data/lib/puppet/version.rb +1 -1
- data/locales/puppet.pot +196 -151
- 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-ca.8 +1 -1
- data/man/man8/puppet-catalog.8 +1 -1
- data/man/man8/puppet-cert.8 +1 -1
- data/man/man8/puppet-certificate.8 +1 -1
- data/man/man8/puppet-certificate_request.8 +1 -1
- data/man/man8/puppet-certificate_revocation_list.8 +1 -1
- data/man/man8/puppet-config.8 +1 -1
- data/man/man8/puppet-describe.8 +1 -1
- data/man/man8/puppet-device.8 +1 -1
- data/man/man8/puppet-doc.8 +1 -1
- data/man/man8/puppet-epp.8 +1 -1
- data/man/man8/puppet-facts.8 +1 -1
- data/man/man8/puppet-filebucket.8 +6 -2
- 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-master.8 +1 -1
- data/man/man8/puppet-module.8 +1 -1
- data/man/man8/puppet-node.8 +1 -1
- data/man/man8/puppet-parser.8 +1 -1
- data/man/man8/puppet-plugin.8 +1 -1
- data/man/man8/puppet-report.8 +1 -1
- data/man/man8/puppet-resource.8 +1 -1
- data/man/man8/puppet-script.8 +1 -1
- data/man/man8/puppet-status.8 +1 -1
- data/man/man8/puppet.8 +2 -2
- data/spec/fixtures/unit/provider/mount/parsed/freebsd.fstab +1 -0
- data/spec/fixtures/unit/provider/mount/parsed/freebsd.mount +1 -0
- data/spec/fixtures/unit/provider/mount/parsed/linux.fstab +1 -0
- data/spec/fixtures/unit/provider/mount/parsed/linux.mount +1 -0
- data/spec/fixtures/unit/provider/mount/parsed/netbsd.fstab +1 -0
- data/spec/fixtures/unit/provider/mount/parsed/netbsd.mount +1 -0
- data/spec/fixtures/unit/provider/mount/parsed/openbsd.fstab +1 -0
- data/spec/fixtures/unit/provider/mount/parsed/openbsd.mount +1 -0
- data/spec/integration/provider/file/windows_spec.rb +162 -0
- data/spec/integration/type/file_spec.rb +0 -19
- data/spec/unit/application_spec.rb +8 -1
- data/spec/unit/configurer_spec.rb +2 -4
- data/spec/unit/confine/false_spec.rb +27 -0
- data/spec/unit/confine/true_spec.rb +27 -0
- data/spec/unit/defaults_spec.rb +0 -14
- data/spec/unit/network/http/connection_spec.rb +1 -1
- data/spec/unit/pops/loaders/loaders_spec.rb +5 -0
- data/spec/unit/pops/parser/locator_spec.rb +45 -0
- data/spec/unit/pops/parser/parse_heredoc_spec.rb +111 -15
- data/spec/unit/pops/types/type_mismatch_describer_spec.rb +9 -0
- data/spec/unit/provider/group/windows_adsi_spec.rb +7 -1
- data/spec/unit/provider/mount/parsed_spec.rb +8 -1
- data/spec/unit/provider/package/windows_spec.rb +12 -1
- data/spec/unit/provider/service/systemd_spec.rb +6 -4
- data/spec/unit/settings_spec.rb +36 -0
- data/spec/unit/transaction/resource_harness_spec.rb +26 -0
- data/spec/unit/transaction_spec.rb +29 -0
- data/spec/unit/type/exec_spec.rb +47 -0
- data/spec/unit/type/filebucket_spec.rb +8 -6
- data/spec/unit/util/command_line_spec.rb +23 -2
- data/spec/unit/util/log_spec.rb +15 -0
- data/spec/unit/util/storage_spec.rb +19 -19
- metadata +6 -3
- data/MAINTAINERS +0 -47
data/lib/puppet/settings.rb
CHANGED
@@ -255,7 +255,7 @@ class Puppet::Settings
|
|
255
255
|
@global_defaults_initialized
|
256
256
|
end
|
257
257
|
|
258
|
-
def initialize_global_settings(args = [])
|
258
|
+
def initialize_global_settings(args = [], require_config = true)
|
259
259
|
raise Puppet::DevError, _("Attempting to initialize global default settings more than once!") if global_defaults_initialized?
|
260
260
|
|
261
261
|
# The first two phases of the lifecycle of a puppet application are:
|
@@ -264,7 +264,7 @@ class Puppet::Settings
|
|
264
264
|
# 2) Parse the puppet config file(s).
|
265
265
|
|
266
266
|
parse_global_options(args)
|
267
|
-
parse_config_files
|
267
|
+
parse_config_files(require_config)
|
268
268
|
|
269
269
|
@global_defaults_initialized = true
|
270
270
|
end
|
@@ -590,14 +590,19 @@ class Puppet::Settings
|
|
590
590
|
end
|
591
591
|
|
592
592
|
# Parse the configuration file. Just provides thread safety.
|
593
|
-
def parse_config_files
|
593
|
+
def parse_config_files(require_config = true)
|
594
594
|
file = which_configuration_file
|
595
595
|
if Puppet::FileSystem.exist?(file)
|
596
596
|
begin
|
597
597
|
text = read_file(file)
|
598
598
|
rescue => detail
|
599
|
-
|
600
|
-
|
599
|
+
message = _("Could not load %{file}: %{detail}") % { file: file, detail: detail}
|
600
|
+
if require_config
|
601
|
+
Puppet.log_and_raise(detail, message)
|
602
|
+
else
|
603
|
+
Puppet.log_exception(detail, message)
|
604
|
+
return
|
605
|
+
end
|
601
606
|
end
|
602
607
|
else
|
603
608
|
return
|
data/lib/puppet/transaction.rb
CHANGED
@@ -358,15 +358,17 @@ class Puppet::Transaction
|
|
358
358
|
Puppet.debug "Prefetching #{provider_class.name} resources for #{type_name}"
|
359
359
|
begin
|
360
360
|
provider_class.prefetch(resources)
|
361
|
-
rescue
|
362
|
-
if !detail.is_a?(LoadError) && !detail.is_a?(Puppet::MissingCommand)
|
363
|
-
raise unless Puppet.settings[:future_features]
|
364
|
-
|
365
|
-
@prefetch_failed_providers[type_name][provider_class.name] = true
|
366
|
-
end
|
361
|
+
rescue LoadError, Puppet::MissingCommand => detail
|
367
362
|
#TRANSLATORS `prefetch` is a function name and should not be translated
|
368
363
|
message = _("Could not prefetch %{type_name} provider '%{name}': %{detail}") % { type_name: type_name, name: provider_class.name, detail: detail }
|
369
364
|
Puppet.log_exception(detail, message)
|
365
|
+
rescue StandardError => detail
|
366
|
+
message = _("Could not prefetch %{type_name} provider '%{name}': %{detail}") % { type_name: type_name, name: provider_class.name, detail: detail }
|
367
|
+
Puppet.log_exception(detail, message)
|
368
|
+
|
369
|
+
raise unless Puppet.settings[:future_features]
|
370
|
+
|
371
|
+
@prefetch_failed_providers[type_name][provider_class.name] = true
|
370
372
|
end
|
371
373
|
@prefetched_providers[type_name][provider_class.name] = true
|
372
374
|
end
|
@@ -161,6 +161,7 @@ class Puppet::Transaction::ResourceHarness
|
|
161
161
|
name = param.name.to_s
|
162
162
|
event.message ||= _("could not create change error message for %{name}") % { name: name }
|
163
163
|
event.calculate_corrective_change(@persistence.get_system_value(context.resource.ref, name))
|
164
|
+
event.message << ' (corrective)' if event.corrective_change
|
164
165
|
context.record(event)
|
165
166
|
event.send_log
|
166
167
|
context.synced_params << param.name
|
data/lib/puppet/type/exec.rb
CHANGED
@@ -581,7 +581,15 @@ module Puppet
|
|
581
581
|
val = @parameters[check].value
|
582
582
|
val = [val] unless val.is_a? Array
|
583
583
|
val.each do |value|
|
584
|
-
|
584
|
+
if !@parameters[check].check(value)
|
585
|
+
# Give a debug message so users can figure out what command would have been
|
586
|
+
# but don't print sensitive commands or parameters in the clear
|
587
|
+
cmdstring = @parameters[:command].sensitive ? "[command redacted]" : @parameters[:command].value
|
588
|
+
|
589
|
+
debug(_("'%{cmd}' won't be executed because of failed check '%{check}'") % { cmd: cmdstring, check: check })
|
590
|
+
|
591
|
+
return false
|
592
|
+
end
|
585
593
|
end
|
586
594
|
end
|
587
595
|
}
|
@@ -614,11 +622,25 @@ module Puppet
|
|
614
622
|
|
615
623
|
private
|
616
624
|
def set_sensitive_parameters(sensitive_parameters)
|
617
|
-
#
|
618
|
-
|
619
|
-
|
620
|
-
|
625
|
+
# If any are sensitive, mark all as sensitive
|
626
|
+
sensitive = false
|
627
|
+
parameters_to_check = [:command, :unless, :onlyif]
|
628
|
+
|
629
|
+
parameters_to_check.each do |p|
|
630
|
+
if sensitive_parameters.include?(p)
|
631
|
+
sensitive_parameters.delete(p)
|
632
|
+
sensitive = true
|
633
|
+
end
|
621
634
|
end
|
635
|
+
|
636
|
+
if sensitive
|
637
|
+
parameters_to_check.each do |p|
|
638
|
+
if parameters.include?(p)
|
639
|
+
parameter(p).sensitive = true
|
640
|
+
end
|
641
|
+
end
|
642
|
+
end
|
643
|
+
|
622
644
|
super(sensitive_parameters)
|
623
645
|
end
|
624
646
|
end
|
@@ -116,8 +116,13 @@ module Puppet
|
|
116
116
|
# If we're not following links and we're a link, then we just turn
|
117
117
|
# off mode management entirely.
|
118
118
|
def insync?(currentvalue)
|
119
|
+
if provider.respond_to?(:munge_windows_system_group)
|
120
|
+
munged_mode = provider.munge_windows_system_group(currentvalue, @should)
|
121
|
+
return false if munged_mode.nil?
|
122
|
+
currentvalue = munged_mode
|
123
|
+
end
|
119
124
|
if stat = @resource.stat and stat.ftype == "link" and @resource[:links] != :follow
|
120
|
-
self.debug "Not managing symlink mode"
|
125
|
+
self.debug _("Not managing symlink mode")
|
121
126
|
return true
|
122
127
|
else
|
123
128
|
return super(currentvalue)
|
@@ -42,19 +42,23 @@ module Puppet
|
|
42
42
|
end
|
43
43
|
|
44
44
|
newparam(:server) do
|
45
|
-
desc "The server providing the remote filebucket service.
|
46
|
-
value of the `server` setting (that is, the currently configured
|
47
|
-
puppet master server).
|
45
|
+
desc "The server providing the remote filebucket service.
|
48
46
|
|
49
|
-
This setting is _only_ consulted if the `path` attribute is set to `false`.
|
50
|
-
|
47
|
+
This setting is _only_ consulted if the `path` attribute is set to `false`.
|
48
|
+
|
49
|
+
If this attribute is not specified, the first entry in the `server_list`
|
50
|
+
configuration setting is used, followed by the value of the `server` setting
|
51
|
+
if `server_list` is not set."
|
51
52
|
end
|
52
53
|
|
53
54
|
newparam(:port) do
|
54
|
-
desc "The port on which the remote server is listening.
|
55
|
-
|
55
|
+
desc "The port on which the remote server is listening.
|
56
|
+
|
57
|
+
This setting is _only_ consulted if the `path` attribute is set to `false`.
|
56
58
|
|
57
|
-
|
59
|
+
If this attribute is not specified, the first entry in the `server_list`
|
60
|
+
configuration setting is used, followed by the value of the `masterport`
|
61
|
+
setting if `server_list` is not set."
|
58
62
|
end
|
59
63
|
|
60
64
|
newparam(:path) do
|
@@ -64,8 +64,12 @@ module Puppet
|
|
64
64
|
#
|
65
65
|
# @return [void]
|
66
66
|
def execute
|
67
|
+
require_config = true
|
68
|
+
if @argv.first =~ /help|-h|--help|-V|--version/
|
69
|
+
require_config = false
|
70
|
+
end
|
67
71
|
Puppet::Util.exit_on_fail(_("Could not initialize global default settings")) do
|
68
|
-
Puppet.initialize_settings(args)
|
72
|
+
Puppet.initialize_settings(args, require_config)
|
69
73
|
end
|
70
74
|
|
71
75
|
setpriority(Puppet[:priority])
|
data/lib/puppet/util/log.rb
CHANGED
@@ -60,7 +60,7 @@ class Puppet::Util::Log
|
|
60
60
|
end
|
61
61
|
|
62
62
|
def self.close_all
|
63
|
-
destinations.keys.each { |dest|
|
63
|
+
@destinations.keys.each { |dest|
|
64
64
|
close(dest)
|
65
65
|
}
|
66
66
|
#TRANSLATORS "Log.close_all" is a method name and should not be translated
|
@@ -147,7 +147,12 @@ class Puppet::Util::Log
|
|
147
147
|
Puppet.log_exception(detail)
|
148
148
|
|
149
149
|
# If this was our only destination, then add the console back in.
|
150
|
-
|
150
|
+
if destinations.empty? && dest.intern != :console
|
151
|
+
newdestination(:console)
|
152
|
+
end
|
153
|
+
|
154
|
+
# Re-raise (end exit Puppet) because we could not set up logging correctly.
|
155
|
+
raise detail
|
151
156
|
end
|
152
157
|
end
|
153
158
|
|
@@ -274,7 +274,7 @@ module Puppet::Util::Windows::Security
|
|
274
274
|
# mode. Only a user with the SE_BACKUP_NAME and SE_RESTORE_NAME
|
275
275
|
# privileges in their process token can change the mode for objects
|
276
276
|
# that they do not have read and write access to.
|
277
|
-
def set_mode(mode, path, protected = true)
|
277
|
+
def set_mode(mode, path, protected = true, managing_owner = false, managing_group = false)
|
278
278
|
sd = get_security_descriptor(path)
|
279
279
|
well_known_world_sid = Puppet::Util::Windows::SID::Everyone
|
280
280
|
well_known_nobody_sid = Puppet::Util::Windows::SID::Nobody
|
@@ -319,6 +319,8 @@ module Puppet::Util::Windows::Security
|
|
319
319
|
nobody_allow |= FILE::FILE_APPEND_DATA;
|
320
320
|
end
|
321
321
|
|
322
|
+
isownergroup = sd.owner == sd.group
|
323
|
+
|
322
324
|
# caller is NOT managing SYSTEM by using group or owner, so set to FULL
|
323
325
|
if ! [sd.owner, sd.group].include? well_known_system_sid
|
324
326
|
# we don't check S_ISYSTEM_MISSING bit, but automatically carry over existing SYSTEM perms
|
@@ -328,15 +330,35 @@ module Puppet::Util::Windows::Security
|
|
328
330
|
# It is possible to set SYSTEM with a mode other than Full Control (7) however this makes no sense and in practical terms
|
329
331
|
# should not be done. We can trap these instances and correct them before being applied.
|
330
332
|
if (sd.owner == well_known_system_sid) && (owner_allow != FILE::FILE_ALL_ACCESS)
|
331
|
-
#
|
332
|
-
|
333
|
-
|
333
|
+
# If owner and group are both SYSTEM but group is unmanaged the control rights of system will be set to FullControl by
|
334
|
+
# the unmanaged group, so there is no need for the warning
|
335
|
+
if managing_owner && (!isownergroup || managing_group)
|
336
|
+
#TRANSLATORS 'SYSTEM' is a Windows name and should not be translated
|
337
|
+
Puppet.warning _("Setting control rights for %{path} owner SYSTEM to less than Full Control rights. Setting SYSTEM rights to less than Full Control may have unintented consequences for operations on this file") % { path: path }
|
338
|
+
elsif managing_owner && isownergroup
|
339
|
+
#TRANSLATORS 'SYSTEM' is a Windows name and should not be translated
|
340
|
+
Puppet.debug _("%{path} owner and group both set to user SYSTEM, but group is not managed directly: SYSTEM user rights will be set to FullControl by group") % { path: path }
|
341
|
+
else
|
342
|
+
#TRANSLATORS 'SYSTEM' is a Windows name and should not be translated
|
343
|
+
Puppet.debug _("An attempt to set mode %{mode} on item %{path} would result in the owner, SYSTEM, to have less than Full Control rights. This attempt has been corrected to Full Control") % { mode: mode.to_s(8), path: path }
|
344
|
+
owner_allow = FILE::FILE_ALL_ACCESS
|
345
|
+
end
|
334
346
|
end
|
335
347
|
|
336
348
|
if (sd.group == well_known_system_sid) && (group_allow != FILE::FILE_ALL_ACCESS)
|
337
|
-
#
|
338
|
-
|
339
|
-
|
349
|
+
# If owner and group are both SYSTEM but owner is unmanaged the control rights of system will be set to FullControl by
|
350
|
+
# the unmanaged owner, so there is no need for the warning.
|
351
|
+
if managing_group && (!isownergroup || managing_owner)
|
352
|
+
#TRANSLATORS 'SYSTEM' is a Windows name and should not be translated
|
353
|
+
Puppet.warning _("Setting control rights for %{path} group SYSTEM to less than Full Control rights. Setting SYSTEM rights to less than Full Control may have unintented consequences for operations on this file") % { path: path }
|
354
|
+
elsif managing_group && isownergroup
|
355
|
+
#TRANSLATORS 'SYSTEM' is a Windows name and should not be translated
|
356
|
+
Puppet.debug _("%{path} owner and group both set to user SYSTEM, but owner is not managed directly: SYSTEM user rights will be set to FullControl by owner") % { path: path }
|
357
|
+
else
|
358
|
+
#TRANSLATORS 'SYSTEM' is a Windows name and should not be translated
|
359
|
+
Puppet.debug _("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") % { mode: mode.to_s(8), path: path }
|
360
|
+
group_allow = FILE::FILE_ALL_ACCESS
|
361
|
+
end
|
340
362
|
end
|
341
363
|
end
|
342
364
|
|
@@ -353,7 +375,6 @@ module Puppet::Util::Windows::Security
|
|
353
375
|
end
|
354
376
|
|
355
377
|
# if owner and group the same, then map group permissions to the one owner ACE
|
356
|
-
isownergroup = sd.owner == sd.group
|
357
378
|
if isownergroup
|
358
379
|
owner_allow |= group_allow
|
359
380
|
end
|
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) 2019 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>, 2019.
|
5
5
|
#
|
6
6
|
#, fuzzy
|
7
7
|
msgid ""
|
8
8
|
msgstr ""
|
9
|
-
"Project-Id-Version: Puppet automation framework 5.5.
|
9
|
+
"Project-Id-Version: Puppet automation framework 5.5.9-83-g3fc951a\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: 2019-03-08 19:30+0000\n"
|
13
|
+
"PO-Revision-Date: 2019-03-08 19:30+0000\n"
|
14
14
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
15
15
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
16
16
|
"Language: \n"
|
@@ -164,6 +164,10 @@ msgstr ""
|
|
164
164
|
msgid "No valid command or main"
|
165
165
|
msgstr ""
|
166
166
|
|
167
|
+
#: ../lib/puppet/application.rb:421
|
168
|
+
msgid "Could not set logdest to %{dest}."
|
169
|
+
msgstr ""
|
170
|
+
|
167
171
|
#: ../lib/puppet/application.rb:497
|
168
172
|
msgid "No help available for puppet %{app_name}"
|
169
173
|
msgstr ""
|
@@ -355,27 +359,27 @@ msgstr ""
|
|
355
359
|
msgid "Store and retrieve files in a filebucket"
|
356
360
|
msgstr ""
|
357
361
|
|
358
|
-
#: ../lib/puppet/application/filebucket.rb:
|
362
|
+
#: ../lib/puppet/application/filebucket.rb:208
|
359
363
|
msgid "You must specify a file to back up"
|
360
364
|
msgstr ""
|
361
365
|
|
362
|
-
#: ../lib/puppet/application/filebucket.rb:
|
366
|
+
#: ../lib/puppet/application/filebucket.rb:212
|
363
367
|
msgid "%{file}: no such file"
|
364
368
|
msgstr ""
|
365
369
|
|
366
|
-
#: ../lib/puppet/application/filebucket.rb:
|
370
|
+
#: ../lib/puppet/application/filebucket.rb:216
|
367
371
|
msgid "%{file}: cannot read file"
|
368
372
|
msgstr ""
|
369
373
|
|
370
|
-
#: ../lib/puppet/application/filebucket.rb:
|
374
|
+
#: ../lib/puppet/application/filebucket.rb:238 ../lib/puppet/application/filebucket.rb:261
|
371
375
|
msgid "Need exactly two arguments: filebucket diff <file_a> <file_b>"
|
372
376
|
msgstr ""
|
373
377
|
|
374
|
-
#: ../lib/puppet/application/filebucket.rb:
|
378
|
+
#: ../lib/puppet/application/filebucket.rb:258
|
375
379
|
msgid "Comparing %{checksum_a} %{checksum_b} %{file_a} %{file_b}"
|
376
380
|
msgstr ""
|
377
381
|
|
378
|
-
#: ../lib/puppet/application/filebucket.rb:
|
382
|
+
#: ../lib/puppet/application/filebucket.rb:272
|
379
383
|
msgid "Cancelling"
|
380
384
|
msgstr ""
|
381
385
|
|
@@ -522,58 +526,58 @@ msgid "Applied catalog in %{seconds} seconds"
|
|
522
526
|
msgstr ""
|
523
527
|
|
524
528
|
#: ../lib/puppet/configurer.rb:225
|
525
|
-
msgid "Could not select a functional puppet master"
|
529
|
+
msgid "Could not select a functional puppet master from server_list: '%{server_list}'"
|
526
530
|
msgstr ""
|
527
531
|
|
528
|
-
#: ../lib/puppet/configurer.rb:
|
532
|
+
#: ../lib/puppet/configurer.rb:259
|
529
533
|
msgid "Local environment: '%{local_env}' doesn't match the environment of the cached catalog '%{catalog_env}', switching agent to '%{catalog_env}'."
|
530
534
|
msgstr ""
|
531
535
|
|
532
|
-
#: ../lib/puppet/configurer.rb:
|
536
|
+
#: ../lib/puppet/configurer.rb:304
|
533
537
|
msgid "Local environment: '%{local_env}' doesn't match server specified node environment '%{node_env}', switching agent to '%{node_env}'."
|
534
538
|
msgstr ""
|
535
539
|
|
536
|
-
#: ../lib/puppet/configurer.rb:
|
540
|
+
#: ../lib/puppet/configurer.rb:309
|
537
541
|
msgid "Using configured environment '%{env}'"
|
538
542
|
msgstr ""
|
539
543
|
|
540
|
-
#: ../lib/puppet/configurer.rb:
|
544
|
+
#: ../lib/puppet/configurer.rb:313
|
541
545
|
msgid "Unable to fetch my node definition, but the agent run will continue:"
|
542
546
|
msgstr ""
|
543
547
|
|
544
|
-
#: ../lib/puppet/configurer.rb:
|
548
|
+
#: ../lib/puppet/configurer.rb:337
|
545
549
|
msgid "Not using catalog because its environment '%{catalog_env}' does not match agent specified environment '%{local_env}' and strict_environment_mode is set"
|
546
550
|
msgstr ""
|
547
551
|
|
548
|
-
#: ../lib/puppet/configurer.rb:
|
552
|
+
#: ../lib/puppet/configurer.rb:348
|
549
553
|
msgid "Catalog environment didn't stabilize after %{tries} fetches, aborting run"
|
550
554
|
msgstr ""
|
551
555
|
|
552
|
-
#: ../lib/puppet/configurer.rb:
|
556
|
+
#: ../lib/puppet/configurer.rb:350
|
553
557
|
msgid "Local environment: '%{local_env}' doesn't match server specified environment '%{catalog_env}', restarting agent run with environment '%{catalog_env}'"
|
554
558
|
msgstr ""
|
555
559
|
|
556
|
-
#: ../lib/puppet/configurer.rb:
|
560
|
+
#: ../lib/puppet/configurer.rb:369
|
557
561
|
msgid "Failed to apply catalog: %{detail}"
|
558
562
|
msgstr ""
|
559
563
|
|
560
|
-
#: ../lib/puppet/configurer.rb:
|
564
|
+
#: ../lib/puppet/configurer.rb:418 ../lib/puppet/face/report.rb:47
|
561
565
|
msgid "Could not send report: %{detail}"
|
562
566
|
msgstr ""
|
563
567
|
|
564
|
-
#: ../lib/puppet/configurer.rb:
|
568
|
+
#: ../lib/puppet/configurer.rb:427
|
565
569
|
msgid "Could not save last run local report: %{detail}"
|
566
570
|
msgstr ""
|
567
571
|
|
568
|
-
#: ../lib/puppet/configurer.rb:
|
572
|
+
#: ../lib/puppet/configurer.rb:439
|
569
573
|
msgid "Could not run command from %{setting}: %{detail}"
|
570
574
|
msgstr ""
|
571
575
|
|
572
|
-
#: ../lib/puppet/configurer.rb:
|
576
|
+
#: ../lib/puppet/configurer.rb:457
|
573
577
|
msgid "Could not retrieve catalog from cache: %{detail}"
|
574
578
|
msgstr ""
|
575
579
|
|
576
|
-
#: ../lib/puppet/configurer.rb:
|
580
|
+
#: ../lib/puppet/configurer.rb:477
|
577
581
|
msgid "Could not retrieve catalog from remote server: %{detail}"
|
578
582
|
msgstr ""
|
579
583
|
|
@@ -680,20 +684,12 @@ msgstr ""
|
|
680
684
|
msgid "The 'ca' setting is deprecated and will be removed in Puppet 6."
|
681
685
|
msgstr ""
|
682
686
|
|
683
|
-
#: ../lib/puppet/defaults.rb:
|
684
|
-
msgid "Attempted to set both server and server_list."
|
685
|
-
msgstr ""
|
686
|
-
|
687
|
-
#: ../lib/puppet/defaults.rb:1543 ../lib/puppet/defaults.rb:1558
|
688
|
-
msgid "Server setting will not be used."
|
689
|
-
msgstr ""
|
690
|
-
|
691
|
-
#: ../lib/puppet/defaults.rb:1828 ../lib/puppet/settings.rb:1167
|
687
|
+
#: ../lib/puppet/defaults.rb:1810 ../lib/puppet/settings.rb:1172
|
692
688
|
msgid "Setting %{name} is deprecated."
|
693
689
|
msgstr ""
|
694
690
|
|
695
691
|
#. TRANSLATORS 'pluginsync' is a setting and should not be translated
|
696
|
-
#: ../lib/puppet/defaults.rb:
|
692
|
+
#: ../lib/puppet/defaults.rb:1861
|
697
693
|
msgid "Setting 'pluginsync' is deprecated."
|
698
694
|
msgstr ""
|
699
695
|
|
@@ -2063,23 +2059,23 @@ msgstr ""
|
|
2063
2059
|
msgid "The current user does not have the necessary permission to manage symlinks."
|
2064
2060
|
msgstr ""
|
2065
2061
|
|
2066
|
-
#: ../lib/puppet/forge.rb:
|
2062
|
+
#: ../lib/puppet/forge.rb:140
|
2067
2063
|
msgid "Malformed dependency: %{name}."
|
2068
2064
|
msgstr ""
|
2069
2065
|
|
2070
|
-
#: ../lib/puppet/forge.rb:
|
2066
|
+
#: ../lib/puppet/forge.rb:141
|
2071
2067
|
msgid "Exception was: %{detail}"
|
2072
2068
|
msgstr ""
|
2073
2069
|
|
2074
|
-
#: ../lib/puppet/forge.rb:
|
2070
|
+
#: ../lib/puppet/forge.rb:207
|
2075
2071
|
msgid "Downloaded release for %{name} did not match expected checksum"
|
2076
2072
|
msgstr ""
|
2077
2073
|
|
2078
|
-
#: ../lib/puppet/forge.rb:
|
2074
|
+
#: ../lib/puppet/forge.rb:215 ../lib/puppet/module_tool/applications/unpacker.rb:58 ../lib/puppet/module_tool/local_tarball.rb:86
|
2079
2075
|
msgid "Could not extract contents of module archive: %{message}"
|
2080
2076
|
msgstr ""
|
2081
2077
|
|
2082
|
-
#: ../lib/puppet/forge.rb:
|
2078
|
+
#: ../lib/puppet/forge.rb:232
|
2083
2079
|
msgid "Cannot consider release %{name}-%{version}: %{error}"
|
2084
2080
|
msgstr ""
|
2085
2081
|
|
@@ -4065,19 +4061,27 @@ msgstr ""
|
|
4065
4061
|
msgid "Received a %{status_code} response from %{server_hostname}. Sleeping for %{retry_sleep} seconds before retrying the request."
|
4066
4062
|
msgstr ""
|
4067
4063
|
|
4068
|
-
#: ../lib/puppet/network/http/connection.rb:
|
4064
|
+
#: ../lib/puppet/network/http/connection.rb:310
|
4069
4065
|
msgid "request %{uri} interrupted after %{elapsed} seconds"
|
4070
4066
|
msgstr ""
|
4071
4067
|
|
4072
|
-
#: ../lib/puppet/network/http/connection.rb:
|
4068
|
+
#: ../lib/puppet/network/http/connection.rb:312
|
4069
|
+
msgid "request %{uri} timed out after %{elapsed} seconds"
|
4070
|
+
msgstr ""
|
4071
|
+
|
4072
|
+
#: ../lib/puppet/network/http/connection.rb:314
|
4073
|
+
msgid "request %{uri} failed: %{msg}"
|
4074
|
+
msgstr ""
|
4075
|
+
|
4076
|
+
#: ../lib/puppet/network/http/connection.rb:338
|
4073
4077
|
msgid "expected one of %{certnames}"
|
4074
4078
|
msgstr ""
|
4075
4079
|
|
4076
|
-
#: ../lib/puppet/network/http/connection.rb:
|
4080
|
+
#: ../lib/puppet/network/http/connection.rb:340
|
4077
4081
|
msgid "expected %{certname}"
|
4078
4082
|
msgstr ""
|
4079
4083
|
|
4080
|
-
#: ../lib/puppet/network/http/connection.rb:
|
4084
|
+
#: ../lib/puppet/network/http/connection.rb:343
|
4081
4085
|
msgid "Server hostname '%{host}' did not match server certificate; %{expected_certnames}"
|
4082
4086
|
msgstr ""
|
4083
4087
|
|
@@ -5575,142 +5579,146 @@ msgid "An escape char for @() may only appear once. Got '%{escapes}'"
|
|
5575
5579
|
msgstr ""
|
5576
5580
|
|
5577
5581
|
#: ../lib/puppet/pops/issues.rb:764
|
5578
|
-
msgid "
|
5582
|
+
msgid "Heredoc with text in the margin is not allowed (line %{heredoc_line} in this heredoc)"
|
5579
5583
|
msgstr ""
|
5580
5584
|
|
5581
5585
|
#: ../lib/puppet/pops/issues.rb:768
|
5582
|
-
msgid "
|
5586
|
+
msgid "Illegal %{format} Byte Order mark at beginning of input: %{bom} - remove these from the puppet source"
|
5583
5587
|
msgstr ""
|
5584
5588
|
|
5585
5589
|
#: ../lib/puppet/pops/issues.rb:772
|
5590
|
+
msgid "No such file or directory: %{file}"
|
5591
|
+
msgstr ""
|
5592
|
+
|
5593
|
+
#: ../lib/puppet/pops/issues.rb:776
|
5586
5594
|
msgid "%{file} is not a file"
|
5587
5595
|
msgstr ""
|
5588
5596
|
|
5589
|
-
#: ../lib/puppet/pops/issues.rb:
|
5597
|
+
#: ../lib/puppet/pops/issues.rb:781
|
5590
5598
|
msgid "%{expression} resulted in a value outside of Puppet Integer max range, got '%{value}'"
|
5591
5599
|
msgstr ""
|
5592
5600
|
|
5593
|
-
#: ../lib/puppet/pops/issues.rb:
|
5601
|
+
#: ../lib/puppet/pops/issues.rb:783
|
5594
5602
|
msgid "%{expression} resulted in a value outside of Puppet Integer min range, got '%{value}'"
|
5595
5603
|
msgstr ""
|
5596
5604
|
|
5597
|
-
#: ../lib/puppet/pops/issues.rb:
|
5605
|
+
#: ../lib/puppet/pops/issues.rb:788
|
5598
5606
|
msgid "This runtime does not support hiera.yaml version %{version}"
|
5599
5607
|
msgstr ""
|
5600
5608
|
|
5601
|
-
#: ../lib/puppet/pops/issues.rb:
|
5609
|
+
#: ../lib/puppet/pops/issues.rb:792
|
5602
5610
|
msgid "hiera.yaml version 3 cannot be used in %{location}"
|
5603
5611
|
msgstr ""
|
5604
5612
|
|
5605
|
-
#: ../lib/puppet/pops/issues.rb:
|
5613
|
+
#: ../lib/puppet/pops/issues.rb:796
|
5606
5614
|
msgid "hiera.yaml version 4 cannot be used in the global layer"
|
5607
5615
|
msgstr ""
|
5608
5616
|
|
5609
|
-
#: ../lib/puppet/pops/issues.rb:
|
5617
|
+
#: ../lib/puppet/pops/issues.rb:800
|
5610
5618
|
msgid "Undefined variable '%{name}'"
|
5611
5619
|
msgstr ""
|
5612
5620
|
|
5613
|
-
#: ../lib/puppet/pops/issues.rb:
|
5621
|
+
#: ../lib/puppet/pops/issues.rb:804
|
5614
5622
|
msgid "Backend '%{name}' is defined more than once."
|
5615
5623
|
msgstr ""
|
5616
5624
|
|
5617
|
-
#: ../lib/puppet/pops/issues.rb:
|
5625
|
+
#: ../lib/puppet/pops/issues.rb:807 ../lib/puppet/pops/issues.rb:820
|
5618
5626
|
msgid "First defined at %{error_location}"
|
5619
5627
|
msgstr ""
|
5620
5628
|
|
5621
|
-
#: ../lib/puppet/pops/issues.rb:
|
5629
|
+
#: ../lib/puppet/pops/issues.rb:813
|
5622
5630
|
msgid "No data provider is registered for backend '%{name}'"
|
5623
5631
|
msgstr ""
|
5624
5632
|
|
5625
|
-
#: ../lib/puppet/pops/issues.rb:
|
5633
|
+
#: ../lib/puppet/pops/issues.rb:817
|
5626
5634
|
msgid "Hierarchy name '%{name}' defined more than once."
|
5627
5635
|
msgstr ""
|
5628
5636
|
|
5629
|
-
#: ../lib/puppet/pops/issues.rb:
|
5637
|
+
#: ../lib/puppet/pops/issues.rb:826
|
5630
5638
|
msgid "'hiera3_backend' is only allowed in the global layer"
|
5631
5639
|
msgstr ""
|
5632
5640
|
|
5633
|
-
#: ../lib/puppet/pops/issues.rb:
|
5641
|
+
#: ../lib/puppet/pops/issues.rb:830
|
5634
5642
|
msgid "'default_hierarchy' is only allowed in the module layer"
|
5635
5643
|
msgstr ""
|
5636
5644
|
|
5637
|
-
#: ../lib/puppet/pops/issues.rb:
|
5645
|
+
#: ../lib/puppet/pops/issues.rb:834
|
5638
5646
|
msgid "Use \"data_hash: %{function_name}_data\" instead of \"hiera3_backend: %{function_name}\""
|
5639
5647
|
msgstr ""
|
5640
5648
|
|
5641
|
-
#: ../lib/puppet/pops/issues.rb:
|
5649
|
+
#: ../lib/puppet/pops/issues.rb:838
|
5642
5650
|
msgid "One of %{keys} must be defined in hierarchy '%{name}'"
|
5643
5651
|
msgstr ""
|
5644
5652
|
|
5645
|
-
#: ../lib/puppet/pops/issues.rb:
|
5653
|
+
#: ../lib/puppet/pops/issues.rb:842 ../lib/puppet/pops/issues.rb:850
|
5646
5654
|
msgid "Only one of %{keys} can be defined in hierarchy '%{name}'"
|
5647
5655
|
msgstr ""
|
5648
5656
|
|
5649
|
-
#: ../lib/puppet/pops/issues.rb:
|
5657
|
+
#: ../lib/puppet/pops/issues.rb:846
|
5650
5658
|
msgid "Only one of %{keys} can be defined in defaults"
|
5651
5659
|
msgstr ""
|
5652
5660
|
|
5653
|
-
#: ../lib/puppet/pops/issues.rb:
|
5661
|
+
#: ../lib/puppet/pops/issues.rb:854
|
5654
5662
|
msgid "Option key '%{key}' used in hierarchy '%{name}' is reserved by Puppet"
|
5655
5663
|
msgstr ""
|
5656
5664
|
|
5657
|
-
#: ../lib/puppet/pops/issues.rb:
|
5665
|
+
#: ../lib/puppet/pops/issues.rb:858
|
5658
5666
|
msgid "Option key '%{key}' used in defaults is reserved by Puppet"
|
5659
5667
|
msgstr ""
|
5660
5668
|
|
5661
|
-
#: ../lib/puppet/pops/issues.rb:
|
5669
|
+
#: ../lib/puppet/pops/issues.rb:862
|
5662
5670
|
msgid "Unable to find '%{function_type}' function named '%{function_name}'"
|
5663
5671
|
msgstr ""
|
5664
5672
|
|
5665
|
-
#: ../lib/puppet/pops/issues.rb:
|
5673
|
+
#: ../lib/puppet/pops/issues.rb:866
|
5666
5674
|
msgid "'alias' interpolation is only permitted if the expression is equal to the entire string"
|
5667
5675
|
msgstr ""
|
5668
5676
|
|
5669
|
-
#: ../lib/puppet/pops/issues.rb:
|
5677
|
+
#: ../lib/puppet/pops/issues.rb:870
|
5670
5678
|
msgid "Unknown interpolation method '%{name}'"
|
5671
5679
|
msgstr ""
|
5672
5680
|
|
5673
|
-
#: ../lib/puppet/pops/issues.rb:
|
5681
|
+
#: ../lib/puppet/pops/issues.rb:874
|
5674
5682
|
msgid "Interpolation using method syntax is not allowed in this context"
|
5675
5683
|
msgstr ""
|
5676
5684
|
|
5677
|
-
#: ../lib/puppet/pops/issues.rb:
|
5685
|
+
#: ../lib/puppet/pops/issues.rb:878
|
5678
5686
|
msgid "Endless recursion detected when attempting to serialize value of class %{type_name}"
|
5679
5687
|
msgstr ""
|
5680
5688
|
|
5681
|
-
#: ../lib/puppet/pops/issues.rb:
|
5689
|
+
#: ../lib/puppet/pops/issues.rb:882
|
5682
5690
|
msgid "%{path} contains the special value default. It will be converted to the String 'default'"
|
5683
5691
|
msgstr ""
|
5684
5692
|
|
5685
|
-
#: ../lib/puppet/pops/issues.rb:
|
5693
|
+
#: ../lib/puppet/pops/issues.rb:886
|
5686
5694
|
msgid "%{path} contains %{klass} value. It will be converted to the String '%{value}'"
|
5687
5695
|
msgstr ""
|
5688
5696
|
|
5689
|
-
#: ../lib/puppet/pops/issues.rb:
|
5697
|
+
#: ../lib/puppet/pops/issues.rb:890
|
5690
5698
|
msgid "%{path} contains a hash with %{klass} key. It will be converted to the String '%{value}'"
|
5691
5699
|
msgstr ""
|
5692
5700
|
|
5693
|
-
#: ../lib/puppet/pops/issues.rb:
|
5701
|
+
#: ../lib/puppet/pops/issues.rb:894
|
5694
5702
|
msgid "The feature '%{feature}' is only available when compiling a catalog"
|
5695
5703
|
msgstr ""
|
5696
5704
|
|
5697
|
-
#: ../lib/puppet/pops/issues.rb:
|
5705
|
+
#: ../lib/puppet/pops/issues.rb:898
|
5698
5706
|
msgid "The catalog operation '%{operation}' is only available when compiling a catalog"
|
5699
5707
|
msgstr ""
|
5700
5708
|
|
5701
|
-
#: ../lib/puppet/pops/issues.rb:
|
5709
|
+
#: ../lib/puppet/pops/issues.rb:902
|
5702
5710
|
msgid "The task operation '%{operation}' is not available when compiling a catalog"
|
5703
5711
|
msgstr ""
|
5704
5712
|
|
5705
|
-
#: ../lib/puppet/pops/issues.rb:
|
5713
|
+
#: ../lib/puppet/pops/issues.rb:906
|
5706
5714
|
msgid "The 'bolt' library is required to %{action}"
|
5707
5715
|
msgstr ""
|
5708
5716
|
|
5709
|
-
#: ../lib/puppet/pops/issues.rb:
|
5717
|
+
#: ../lib/puppet/pops/issues.rb:910
|
5710
5718
|
msgid "Task not found: %{type_name}"
|
5711
5719
|
msgstr ""
|
5712
5720
|
|
5713
|
-
#: ../lib/puppet/pops/issues.rb:
|
5721
|
+
#: ../lib/puppet/pops/issues.rb:914
|
5714
5722
|
msgid "Failed to load: %{type_name}"
|
5715
5723
|
msgstr ""
|
5716
5724
|
|
@@ -6031,19 +6039,19 @@ msgid "Unacceptable transform - found an Object without a rule: %{klass}"
|
|
6031
6039
|
msgstr ""
|
6032
6040
|
|
6033
6041
|
#. TRANSLATORS 'NUMBER' refers to a method name and the 'name_or_numeric' was the passed in value and should not be translated
|
6034
|
-
#: ../lib/puppet/pops/model/factory.rb:
|
6042
|
+
#: ../lib/puppet/pops/model/factory.rb:843
|
6035
6043
|
msgid "Internal Error, NUMBER token does not contain a valid number, %{name_or_numeric}"
|
6036
6044
|
msgstr ""
|
6037
6045
|
|
6038
|
-
#: ../lib/puppet/pops/model/factory.rb:
|
6046
|
+
#: ../lib/puppet/pops/model/factory.rb:1151
|
6039
6047
|
msgid "can only concatenate strings, got %{class_name}"
|
6040
6048
|
msgstr ""
|
6041
6049
|
|
6042
|
-
#: ../lib/puppet/pops/parser/parser_support.rb:
|
6050
|
+
#: ../lib/puppet/pops/parser/parser_support.rb:204
|
6043
6051
|
msgid "attempt to pass argument list to the function '%{name}' which cannot be called without parentheses"
|
6044
6052
|
msgstr ""
|
6045
6053
|
|
6046
|
-
#: ../lib/puppet/pops/parser/parser_support.rb:
|
6054
|
+
#: ../lib/puppet/pops/parser/parser_support.rb:206
|
6047
6055
|
msgid "illegal comma separated argument list"
|
6048
6056
|
msgstr ""
|
6049
6057
|
|
@@ -6668,14 +6676,19 @@ msgstr ""
|
|
6668
6676
|
msgid "Failed to set group to '%{should}': %{detail}"
|
6669
6677
|
msgstr ""
|
6670
6678
|
|
6671
|
-
#: ../lib/puppet/provider/file/posix.rb:131 ../lib/puppet/provider/file/windows.rb:
|
6679
|
+
#: ../lib/puppet/provider/file/posix.rb:131 ../lib/puppet/provider/file/windows.rb:78
|
6672
6680
|
msgid "failed to set mode %{mode} on %{path}: %{message}"
|
6673
6681
|
msgstr ""
|
6674
6682
|
|
6675
|
-
#: ../lib/puppet/provider/file/windows.rb:
|
6683
|
+
#: ../lib/puppet/provider/file/windows.rb:87
|
6676
6684
|
msgid "Can only manage owner, group, and mode on filesystems that support Windows ACLs, such as NTFS"
|
6677
6685
|
msgstr ""
|
6678
6686
|
|
6687
|
+
#. TRANSLATORS 'SYSTEM' is a Windows name and should not be translated
|
6688
|
+
#: ../lib/puppet/provider/file/windows.rb:129
|
6689
|
+
msgid "%{resource_name}: %{mode_part_type} set to SYSTEM. SYSTEM permissions cannot be set below FullControl ('7')"
|
6690
|
+
msgstr ""
|
6691
|
+
|
6679
6692
|
#: ../lib/puppet/provider/group/aix.rb:47
|
6680
6693
|
msgid "No AIX group exists with a group name or gid of %{group}!"
|
6681
6694
|
msgstr ""
|
@@ -6783,7 +6796,7 @@ msgstr ""
|
|
6783
6796
|
msgid "Mount[%{name}]: Field 'fstype' is required"
|
6784
6797
|
msgstr ""
|
6785
6798
|
|
6786
|
-
#: ../lib/puppet/provider/mount/parsed.rb:
|
6799
|
+
#: ../lib/puppet/provider/mount/parsed.rb:274
|
6787
6800
|
msgid "Could not understand line %{line} from mount output"
|
6788
6801
|
msgstr ""
|
6789
6802
|
|
@@ -7201,19 +7214,19 @@ msgstr ""
|
|
7201
7214
|
msgid "Package %{name} was not present after trying to install it"
|
7202
7215
|
msgstr ""
|
7203
7216
|
|
7204
|
-
#: ../lib/puppet/provider/package/windows.rb:
|
7217
|
+
#: ../lib/puppet/provider/package/windows.rb:97
|
7205
7218
|
msgid "The package %{operation}ed successfully and the system is rebooting now."
|
7206
7219
|
msgstr ""
|
7207
7220
|
|
7208
|
-
#: ../lib/puppet/provider/package/windows.rb:
|
7221
|
+
#: ../lib/puppet/provider/package/windows.rb:99
|
7209
7222
|
msgid "The package %{operation}ed successfully, but the system must be rebooted."
|
7210
7223
|
msgstr ""
|
7211
7224
|
|
7212
|
-
#: ../lib/puppet/provider/package/windows.rb:
|
7225
|
+
#: ../lib/puppet/provider/package/windows.rb:101
|
7213
7226
|
msgid "Failed to %{operation}"
|
7214
7227
|
msgstr ""
|
7215
7228
|
|
7216
|
-
#: ../lib/puppet/provider/package/windows.rb:
|
7229
|
+
#: ../lib/puppet/provider/package/windows.rb:107
|
7217
7230
|
msgid "The source parameter cannot be empty when using the Windows provider."
|
7218
7231
|
msgstr ""
|
7219
7232
|
|
@@ -7587,7 +7600,7 @@ msgstr ""
|
|
7587
7600
|
msgid "Could not find resource %{resource} when converting %{message} resources"
|
7588
7601
|
msgstr ""
|
7589
7602
|
|
7590
|
-
#: ../lib/puppet/resource/status.rb:139 ../lib/puppet/transaction.rb:
|
7603
|
+
#: ../lib/puppet/resource/status.rb:139 ../lib/puppet/transaction.rb:266
|
7591
7604
|
msgid "Could not evaluate: %{detail}"
|
7592
7605
|
msgstr ""
|
7593
7606
|
|
@@ -7715,49 +7728,53 @@ msgstr ""
|
|
7715
7728
|
msgid "Using --configprint is deprecated. Use 'puppet config <subcommand>' instead."
|
7716
7729
|
msgstr ""
|
7717
7730
|
|
7718
|
-
#: ../lib/puppet/settings.rb:
|
7731
|
+
#: ../lib/puppet/settings.rb:599
|
7732
|
+
msgid "Could not load %{file}: %{detail}"
|
7733
|
+
msgstr ""
|
7734
|
+
|
7735
|
+
#: ../lib/puppet/settings.rb:700
|
7719
7736
|
msgid "Invalid setting type '%{type}'"
|
7720
7737
|
msgstr ""
|
7721
7738
|
|
7722
|
-
#: ../lib/puppet/settings.rb:
|
7739
|
+
#: ../lib/puppet/settings.rb:844
|
7723
7740
|
msgid "Unknown searchpath case: %{source_type} for the %{source} settings path element."
|
7724
7741
|
msgstr ""
|
7725
7742
|
|
7726
|
-
#: ../lib/puppet/settings.rb:
|
7743
|
+
#: ../lib/puppet/settings.rb:906
|
7727
7744
|
msgid "setting definition for '%{name}' is not a hash!"
|
7728
7745
|
msgstr ""
|
7729
7746
|
|
7730
|
-
#: ../lib/puppet/settings.rb:
|
7747
|
+
#: ../lib/puppet/settings.rb:911
|
7731
7748
|
msgid "Setting %{name} is already defined"
|
7732
7749
|
msgstr ""
|
7733
7750
|
|
7734
|
-
#: ../lib/puppet/settings.rb:
|
7751
|
+
#: ../lib/puppet/settings.rb:915
|
7735
7752
|
msgid "Setting %{name} is already using short name '%{short}'"
|
7736
7753
|
msgstr ""
|
7737
7754
|
|
7738
7755
|
#. TRANSLATORS 'puppet.conf' is a file name and should not be translated
|
7739
|
-
#: ../lib/puppet/settings.rb:
|
7756
|
+
#: ../lib/puppet/settings.rb:1177
|
7740
7757
|
msgid "Setting %{name} is deprecated in puppet.conf."
|
7741
7758
|
msgstr ""
|
7742
7759
|
|
7743
|
-
#: ../lib/puppet/settings.rb:
|
7760
|
+
#: ../lib/puppet/settings.rb:1344
|
7744
7761
|
msgid "Error converting value for param '%{name}': %{detail}"
|
7745
7762
|
msgstr ""
|
7746
7763
|
|
7747
|
-
#: ../lib/puppet/settings.rb:
|
7764
|
+
#: ../lib/puppet/settings.rb:1368
|
7748
7765
|
msgid "Could not find value for %{expression}"
|
7749
7766
|
msgstr ""
|
7750
7767
|
|
7751
7768
|
#. TRANSLATORS '$environment' is a Puppet specific variable and should not be translated
|
7752
|
-
#: ../lib/puppet/settings.rb:
|
7769
|
+
#: ../lib/puppet/settings.rb:1378
|
7753
7770
|
msgid "You cannot interpolate $environment within '%{setting_name}' when using directory environments."
|
7754
7771
|
msgstr ""
|
7755
7772
|
|
7756
|
-
#: ../lib/puppet/settings.rb:
|
7773
|
+
#: ../lib/puppet/settings.rb:1379
|
7757
7774
|
msgid "Its value will remain %{value}."
|
7758
7775
|
msgstr ""
|
7759
7776
|
|
7760
|
-
#: ../lib/puppet/settings.rb:
|
7777
|
+
#: ../lib/puppet/settings.rb:1410
|
7761
7778
|
msgid "Attempt to assign a value to unknown setting %{name}"
|
7762
7779
|
msgstr ""
|
7763
7780
|
|
@@ -8261,64 +8278,64 @@ msgstr ""
|
|
8261
8278
|
msgid "JSON syntax checker: Cannot parse invalid JSON string. \"%{message}\""
|
8262
8279
|
msgstr ""
|
8263
8280
|
|
8264
|
-
#: ../lib/puppet/transaction.rb:
|
8281
|
+
#: ../lib/puppet/transaction.rb:86
|
8265
8282
|
msgid "Some pre-run checks failed"
|
8266
8283
|
msgstr ""
|
8267
8284
|
|
8268
|
-
#: ../lib/puppet/transaction.rb:
|
8285
|
+
#: ../lib/puppet/transaction.rb:102
|
8269
8286
|
msgid "Applying configuration version '%{version}'"
|
8270
8287
|
msgstr ""
|
8271
8288
|
|
8272
|
-
#: ../lib/puppet/transaction.rb:
|
8289
|
+
#: ../lib/puppet/transaction.rb:125
|
8273
8290
|
msgid "Provider %{name} is not functional on this host"
|
8274
8291
|
msgstr ""
|
8275
8292
|
|
8276
|
-
#: ../lib/puppet/transaction.rb:
|
8293
|
+
#: ../lib/puppet/transaction.rb:141
|
8277
8294
|
msgid "Could not find a suitable provider for %{type}"
|
8278
8295
|
msgstr ""
|
8279
8296
|
|
8280
|
-
#: ../lib/puppet/transaction.rb:
|
8297
|
+
#: ../lib/puppet/transaction.rb:148
|
8281
8298
|
msgid "post_resource_eval failed for provider %{provider}"
|
8282
8299
|
msgstr ""
|
8283
8300
|
|
8284
|
-
#: ../lib/puppet/transaction.rb:
|
8301
|
+
#: ../lib/puppet/transaction.rb:165
|
8285
8302
|
msgid "resource is part of a dependency cycle"
|
8286
8303
|
msgstr ""
|
8287
8304
|
|
8288
|
-
#: ../lib/puppet/transaction.rb:
|
8305
|
+
#: ../lib/puppet/transaction.rb:167
|
8289
8306
|
msgid "One or more resource dependency cycles detected in graph"
|
8290
8307
|
msgstr ""
|
8291
8308
|
|
8292
|
-
#: ../lib/puppet/transaction.rb:
|
8309
|
+
#: ../lib/puppet/transaction.rb:180
|
8293
8310
|
msgid "Somehow left a component in the relationship graph"
|
8294
8311
|
msgstr ""
|
8295
8312
|
|
8296
|
-
#: ../lib/puppet/transaction.rb:
|
8313
|
+
#: ../lib/puppet/transaction.rb:182
|
8297
8314
|
msgid "Starting to evaluate the resource"
|
8298
8315
|
msgstr ""
|
8299
8316
|
|
8300
|
-
#: ../lib/puppet/transaction.rb:
|
8317
|
+
#: ../lib/puppet/transaction.rb:184
|
8301
8318
|
msgid "Evaluated in %{seconds} seconds"
|
8302
8319
|
msgstr ""
|
8303
8320
|
|
8304
|
-
#: ../lib/puppet/transaction.rb:
|
8321
|
+
#: ../lib/puppet/transaction.rb:297
|
8305
8322
|
msgid "Dependency %{dep} has failures: %{status}"
|
8306
8323
|
msgstr ""
|
8307
8324
|
|
8308
|
-
#: ../lib/puppet/transaction.rb:
|
8325
|
+
#: ../lib/puppet/transaction.rb:318
|
8309
8326
|
msgid "Prefetch failed for %{type_name} provider '%{name}'"
|
8310
8327
|
msgstr ""
|
8311
8328
|
|
8312
8329
|
#. TRANSLATORS `prefetch` is a function name and should not be translated
|
8313
|
-
#: ../lib/puppet/transaction.rb:
|
8330
|
+
#: ../lib/puppet/transaction.rb:363 ../lib/puppet/transaction.rb:366
|
8314
8331
|
msgid "Could not prefetch %{type_name} provider '%{name}': %{detail}"
|
8315
8332
|
msgstr ""
|
8316
8333
|
|
8317
|
-
#: ../lib/puppet/transaction.rb:
|
8334
|
+
#: ../lib/puppet/transaction.rb:399
|
8318
8335
|
msgid "Skipping because of failed dependencies"
|
8319
8336
|
msgstr ""
|
8320
8337
|
|
8321
|
-
#: ../lib/puppet/transaction.rb:
|
8338
|
+
#: ../lib/puppet/transaction.rb:404
|
8322
8339
|
msgid "Skipping because provider prefetch failed"
|
8323
8340
|
msgstr ""
|
8324
8341
|
|
@@ -8357,11 +8374,11 @@ msgid_plural "Triggered '%{callback}' from %{count} events"
|
|
8357
8374
|
msgstr[0] ""
|
8358
8375
|
msgstr[1] ""
|
8359
8376
|
|
8360
|
-
#: ../lib/puppet/transaction/event_manager.rb:
|
8377
|
+
#: ../lib/puppet/transaction/event_manager.rb:157
|
8361
8378
|
msgid "Failed to call %{callback}: %{detail}"
|
8362
8379
|
msgstr ""
|
8363
8380
|
|
8364
|
-
#: ../lib/puppet/transaction/event_manager.rb:
|
8381
|
+
#: ../lib/puppet/transaction/event_manager.rb:176
|
8365
8382
|
msgid "Would have triggered '%{callback}' from %{count} event"
|
8366
8383
|
msgid_plural "Would have triggered '%{callback}' from %{count} events"
|
8367
8384
|
msgstr[0] ""
|
@@ -8407,23 +8424,23 @@ msgstr ""
|
|
8407
8424
|
msgid "could not create change error message for %{name}"
|
8408
8425
|
msgstr ""
|
8409
8426
|
|
8410
|
-
#: ../lib/puppet/transaction/resource_harness.rb:
|
8427
|
+
#: ../lib/puppet/transaction/resource_harness.rb:215
|
8411
8428
|
msgid "audit change: previously recorded value %s has been changed to %s"
|
8412
8429
|
msgstr ""
|
8413
8430
|
|
8414
|
-
#: ../lib/puppet/transaction/resource_harness.rb:
|
8431
|
+
#: ../lib/puppet/transaction/resource_harness.rb:225
|
8415
8432
|
msgid " (previously recorded value was %s)"
|
8416
8433
|
msgstr ""
|
8417
8434
|
|
8418
|
-
#: ../lib/puppet/transaction/resource_harness.rb:
|
8435
|
+
#: ../lib/puppet/transaction/resource_harness.rb:232
|
8419
8436
|
msgid "current_value %s, should be %s (noop)"
|
8420
8437
|
msgstr ""
|
8421
8438
|
|
8422
|
-
#: ../lib/puppet/transaction/resource_harness.rb:
|
8439
|
+
#: ../lib/puppet/transaction/resource_harness.rb:241
|
8423
8440
|
msgid "changed %s to %s"
|
8424
8441
|
msgstr ""
|
8425
8442
|
|
8426
|
-
#: ../lib/puppet/transaction/resource_harness.rb:
|
8443
|
+
#: ../lib/puppet/transaction/resource_harness.rb:264
|
8427
8444
|
msgid "audit change: newly-recorded value %s"
|
8428
8445
|
msgstr ""
|
8429
8446
|
|
@@ -8581,6 +8598,10 @@ msgstr ""
|
|
8581
8598
|
msgid "Check %{value} exceeded timeout"
|
8582
8599
|
msgstr ""
|
8583
8600
|
|
8601
|
+
#: ../lib/puppet/type/exec.rb:589
|
8602
|
+
msgid "'%{cmd}' won't be executed because of failed check '%{check}'"
|
8603
|
+
msgstr ""
|
8604
|
+
|
8584
8605
|
#: ../lib/puppet/type/file.rb:56
|
8585
8606
|
msgid "File paths must be fully qualified, not '%{path}'"
|
8586
8607
|
msgstr ""
|
@@ -8697,6 +8718,10 @@ msgstr ""
|
|
8697
8718
|
msgid "Ensure set to :present but file type is %{file_type} so no content will be synced"
|
8698
8719
|
msgstr ""
|
8699
8720
|
|
8721
|
+
#: ../lib/puppet/type/file/mode.rb:125
|
8722
|
+
msgid "Not managing symlink mode"
|
8723
|
+
msgstr ""
|
8724
|
+
|
8700
8725
|
#: ../lib/puppet/type/file/source.rb:135
|
8701
8726
|
msgid "No source for content was stored with the metadata"
|
8702
8727
|
msgstr ""
|
@@ -8706,15 +8731,15 @@ msgstr ""
|
|
8706
8731
|
msgid "The `source_permissions` parameter is deprecated. Explicitly set `owner`, `group`, and `mode`."
|
8707
8732
|
msgstr ""
|
8708
8733
|
|
8709
|
-
#: ../lib/puppet/type/filebucket.rb:
|
8734
|
+
#: ../lib/puppet/type/filebucket.rb:73
|
8710
8735
|
msgid "You can only have one filebucket path"
|
8711
8736
|
msgstr ""
|
8712
8737
|
|
8713
|
-
#: ../lib/puppet/type/filebucket.rb:
|
8738
|
+
#: ../lib/puppet/type/filebucket.rb:77
|
8714
8739
|
msgid "Filebucket paths must be absolute"
|
8715
8740
|
msgstr ""
|
8716
8741
|
|
8717
|
-
#: ../lib/puppet/type/filebucket.rb:
|
8742
|
+
#: ../lib/puppet/type/filebucket.rb:113
|
8718
8743
|
msgid "Could not create %{type} filebucket: %{detail}"
|
8719
8744
|
msgstr ""
|
8720
8745
|
|
@@ -9250,19 +9275,19 @@ msgstr ""
|
|
9250
9275
|
msgid "Already a generated class named %{klassname}"
|
9251
9276
|
msgstr ""
|
9252
9277
|
|
9253
|
-
#: ../lib/puppet/util/command_line.rb:
|
9278
|
+
#: ../lib/puppet/util/command_line.rb:71
|
9254
9279
|
msgid "Could not initialize global default settings"
|
9255
9280
|
msgstr ""
|
9256
9281
|
|
9257
|
-
#: ../lib/puppet/util/command_line.rb:
|
9282
|
+
#: ../lib/puppet/util/command_line.rb:169
|
9258
9283
|
msgid "Error: Could not parse application options: invalid option: %{opt}"
|
9259
9284
|
msgstr ""
|
9260
9285
|
|
9261
|
-
#: ../lib/puppet/util/command_line.rb:
|
9286
|
+
#: ../lib/puppet/util/command_line.rb:172
|
9262
9287
|
msgid "See 'puppet help' for help on available puppet subcommands"
|
9263
9288
|
msgstr ""
|
9264
9289
|
|
9265
|
-
#: ../lib/puppet/util/command_line.rb:
|
9290
|
+
#: ../lib/puppet/util/command_line.rb:185
|
9266
9291
|
msgid "Error: Unknown Puppet subcommand '%{cmd}'"
|
9267
9292
|
msgstr ""
|
9268
9293
|
|
@@ -9629,7 +9654,7 @@ msgstr ""
|
|
9629
9654
|
msgid "Logs require a level"
|
9630
9655
|
msgstr ""
|
9631
9656
|
|
9632
|
-
#: ../lib/puppet/util/log.rb:87 ../lib/puppet/util/log.rb:
|
9657
|
+
#: ../lib/puppet/util/log.rb:87 ../lib/puppet/util/log.rb:375 ../lib/puppet/util/windows/eventlog.rb:99
|
9633
9658
|
msgid "Invalid log level %{level}"
|
9634
9659
|
msgstr ""
|
9635
9660
|
|
@@ -9641,40 +9666,40 @@ msgstr ""
|
|
9641
9666
|
msgid "Unknown destination type %{dest}"
|
9642
9667
|
msgstr ""
|
9643
9668
|
|
9644
|
-
#: ../lib/puppet/util/log.rb:
|
9669
|
+
#: ../lib/puppet/util/log.rb:176
|
9645
9670
|
msgid "Received a Log attribute with invalid encoding:%{log_message}"
|
9646
9671
|
msgstr ""
|
9647
9672
|
|
9648
|
-
#: ../lib/puppet/util/log.rb:
|
9673
|
+
#: ../lib/puppet/util/log.rb:178
|
9649
9674
|
msgid ""
|
9650
9675
|
"Backtrace:\n"
|
9651
9676
|
"%{backtrace}"
|
9652
9677
|
msgstr ""
|
9653
9678
|
|
9654
|
-
#: ../lib/puppet/util/log.rb:
|
9679
|
+
#: ../lib/puppet/util/log.rb:232
|
9655
9680
|
msgid "Reopening log files"
|
9656
9681
|
msgstr ""
|
9657
9682
|
|
9658
9683
|
#. TRANSLATORS 'Puppet::Util::Log' refers to a Puppet source code class
|
9659
|
-
#: ../lib/puppet/util/log.rb:
|
9684
|
+
#: ../lib/puppet/util/log.rb:365
|
9660
9685
|
msgid "Puppet::Util::Log requires a message"
|
9661
9686
|
msgstr ""
|
9662
9687
|
|
9663
9688
|
#. TRANSLATORS 'Puppet::Util::Log' refers to a Puppet source code class
|
9664
|
-
#: ../lib/puppet/util/log.rb:
|
9689
|
+
#: ../lib/puppet/util/log.rb:371
|
9665
9690
|
msgid "Puppet::Util::Log requires a log level"
|
9666
9691
|
msgstr ""
|
9667
9692
|
|
9668
9693
|
#. TRANSLATORS 'Puppet::Util::Log' refers to a Puppet source code class
|
9669
|
-
#: ../lib/puppet/util/log.rb:
|
9694
|
+
#: ../lib/puppet/util/log.rb:373
|
9670
9695
|
msgid "Puppet::Util::Log requires a symbol or string"
|
9671
9696
|
msgstr ""
|
9672
9697
|
|
9673
|
-
#: ../lib/puppet/util/log.rb:
|
9698
|
+
#: ../lib/puppet/util/log.rb:404
|
9674
9699
|
msgid "Could not parse for environment %{environment}: %{msg}"
|
9675
9700
|
msgstr ""
|
9676
9701
|
|
9677
|
-
#: ../lib/puppet/util/log.rb:
|
9702
|
+
#: ../lib/puppet/util/log.rb:406
|
9678
9703
|
msgid "%{msg} on node %{node}"
|
9679
9704
|
msgstr ""
|
9680
9705
|
|
@@ -10186,52 +10211,72 @@ msgid "Failed to get volume information"
|
|
10186
10211
|
msgstr ""
|
10187
10212
|
|
10188
10213
|
#. TRANSLATORS 'SYSTEM' is a Windows name and should not be translated
|
10189
|
-
#: ../lib/puppet/util/windows/security.rb:
|
10214
|
+
#: ../lib/puppet/util/windows/security.rb:337
|
10215
|
+
msgid "Setting control rights for %{path} owner SYSTEM to less than Full Control rights. Setting SYSTEM rights to less than Full Control may have unintented consequences for operations on this file"
|
10216
|
+
msgstr ""
|
10217
|
+
|
10218
|
+
#. TRANSLATORS 'SYSTEM' is a Windows name and should not be translated
|
10219
|
+
#: ../lib/puppet/util/windows/security.rb:340
|
10220
|
+
msgid "%{path} owner and group both set to user SYSTEM, but group is not managed directly: SYSTEM user rights will be set to FullControl by group"
|
10221
|
+
msgstr ""
|
10222
|
+
|
10223
|
+
#. TRANSLATORS 'SYSTEM' is a Windows name and should not be translated
|
10224
|
+
#: ../lib/puppet/util/windows/security.rb:343
|
10190
10225
|
msgid "An attempt to set mode %{mode} on item %{path} would result in the owner, SYSTEM, to have less than Full Control rights. This attempt has been corrected to Full Control"
|
10191
10226
|
msgstr ""
|
10192
10227
|
|
10193
10228
|
#. TRANSLATORS 'SYSTEM' is a Windows name and should not be translated
|
10194
|
-
#: ../lib/puppet/util/windows/security.rb:
|
10229
|
+
#: ../lib/puppet/util/windows/security.rb:353
|
10230
|
+
msgid "Setting control rights for %{path} group SYSTEM to less than Full Control rights. Setting SYSTEM rights to less than Full Control may have unintented consequences for operations on this file"
|
10231
|
+
msgstr ""
|
10232
|
+
|
10233
|
+
#. TRANSLATORS 'SYSTEM' is a Windows name and should not be translated
|
10234
|
+
#: ../lib/puppet/util/windows/security.rb:356
|
10235
|
+
msgid "%{path} owner and group both set to user SYSTEM, but owner is not managed directly: SYSTEM user rights will be set to FullControl by owner"
|
10236
|
+
msgstr ""
|
10237
|
+
|
10238
|
+
#. TRANSLATORS 'SYSTEM' is a Windows name and should not be translated
|
10239
|
+
#: ../lib/puppet/util/windows/security.rb:359
|
10195
10240
|
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"
|
10196
10241
|
msgstr ""
|
10197
10242
|
|
10198
|
-
#: ../lib/puppet/util/windows/security.rb:
|
10243
|
+
#: ../lib/puppet/util/windows/security.rb:430 ../lib/puppet/util/windows/security.rb:447 ../lib/puppet/util/windows/sid.rb:154 ../lib/puppet/util/windows/sid.rb:216 ../lib/puppet/util/windows/user.rb:43
|
10199
10244
|
msgid "Invalid SID"
|
10200
10245
|
msgstr ""
|
10201
10246
|
|
10202
|
-
#: ../lib/puppet/util/windows/security.rb:
|
10247
|
+
#: ../lib/puppet/util/windows/security.rb:434 ../lib/puppet/util/windows/security.rb:451
|
10203
10248
|
msgid "Failed to add access control entry"
|
10204
10249
|
msgstr ""
|
10205
10250
|
|
10206
|
-
#: ../lib/puppet/util/windows/security.rb:
|
10251
|
+
#: ../lib/puppet/util/windows/security.rb:462 ../lib/puppet/util/windows/security.rb:644
|
10207
10252
|
msgid "Invalid DACL"
|
10208
10253
|
msgstr ""
|
10209
10254
|
|
10210
|
-
#: ../lib/puppet/util/windows/security.rb:
|
10255
|
+
#: ../lib/puppet/util/windows/security.rb:485
|
10211
10256
|
msgid "Unsupported access control entry type: 0x%{type}"
|
10212
10257
|
msgstr ""
|
10213
10258
|
|
10214
|
-
#: ../lib/puppet/util/windows/security.rb:
|
10259
|
+
#: ../lib/puppet/util/windows/security.rb:519
|
10215
10260
|
msgid "Failed to open '%{path}'"
|
10216
10261
|
msgstr ""
|
10217
10262
|
|
10218
|
-
#: ../lib/puppet/util/windows/security.rb:
|
10263
|
+
#: ../lib/puppet/util/windows/security.rb:566
|
10219
10264
|
msgid "Failed to adjust process privileges"
|
10220
10265
|
msgstr ""
|
10221
10266
|
|
10222
|
-
#: ../lib/puppet/util/windows/security.rb:
|
10267
|
+
#: ../lib/puppet/util/windows/security.rb:596
|
10223
10268
|
msgid "Failed to get security information"
|
10224
10269
|
msgstr ""
|
10225
10270
|
|
10226
|
-
#: ../lib/puppet/util/windows/security.rb:
|
10271
|
+
#: ../lib/puppet/util/windows/security.rb:607
|
10227
10272
|
msgid "Failed to get security descriptor control"
|
10228
10273
|
msgstr ""
|
10229
10274
|
|
10230
|
-
#: ../lib/puppet/util/windows/security.rb:
|
10275
|
+
#: ../lib/puppet/util/windows/security.rb:640
|
10231
10276
|
msgid "Failed to initialize ACL"
|
10232
10277
|
msgstr ""
|
10233
10278
|
|
10234
|
-
#: ../lib/puppet/util/windows/security.rb:
|
10279
|
+
#: ../lib/puppet/util/windows/security.rb:679
|
10235
10280
|
msgid "Failed to set security information"
|
10236
10281
|
msgstr ""
|
10237
10282
|
|