puppet 6.16.0-x64-mingw32 → 6.17.0-x64-mingw32
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of puppet might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/Gemfile +4 -2
- data/Gemfile.lock +10 -10
- data/README.md +2 -2
- data/lib/puppet/agent.rb +2 -2
- data/lib/puppet/application/agent.rb +14 -3
- data/lib/puppet/configurer.rb +20 -12
- data/lib/puppet/confine.rb +1 -1
- data/lib/puppet/defaults.rb +25 -8
- data/lib/puppet/file_serving/http_metadata.rb +13 -1
- data/lib/puppet/file_serving/metadata.rb +4 -1
- data/lib/puppet/file_serving/terminus_selector.rb +7 -8
- data/lib/puppet/file_system/file_impl.rb +1 -1
- data/lib/puppet/file_system/uniquefile.rb +8 -16
- data/lib/puppet/forge.rb +1 -1
- data/lib/puppet/forge/cache.rb +1 -1
- data/lib/puppet/forge/repository.rb +3 -7
- data/lib/puppet/http/client.rb +5 -0
- data/lib/puppet/http/redirector.rb +9 -7
- data/lib/puppet/http/response.rb +19 -0
- data/lib/puppet/indirector.rb +1 -1
- data/lib/puppet/indirector/file_content/rest.rb +1 -1
- data/lib/puppet/indirector/file_metadata/http.rb +24 -5
- data/lib/puppet/indirector/file_metadata/rest.rb +2 -2
- data/lib/puppet/indirector/request.rb +1 -1
- data/lib/puppet/network/http/api/indirected_routes.rb +1 -1
- data/lib/puppet/network/http/api/master/v3/environment.rb +3 -0
- data/lib/puppet/network/http/connection_adapter.rb +6 -4
- data/lib/puppet/parser/ast/leaf.rb +5 -5
- data/lib/puppet/parser/ast/pops_bridge.rb +0 -4
- data/lib/puppet/parser/compiler.rb +1 -1
- data/lib/puppet/parser/compiler/catalog_validator/env_relationship_validator.rb +2 -0
- data/lib/puppet/parser/compiler/catalog_validator/site_validator.rb +2 -0
- data/lib/puppet/parser/environment_compiler.rb +4 -1
- data/lib/puppet/parser/resource.rb +3 -2
- data/lib/puppet/parser/resource/param.rb +6 -0
- data/lib/puppet/pops/evaluator/evaluator_impl.rb +5 -5
- data/lib/puppet/pops/issues.rb +5 -0
- data/lib/puppet/pops/resource/resource_type_impl.rb +2 -0
- data/lib/puppet/pops/validation/checker4_0.rb +10 -0
- data/lib/puppet/pops/validation/validator_factory_4_0.rb +1 -0
- data/lib/puppet/provider/package/aptitude.rb +1 -1
- data/lib/puppet/provider/package/yum.rb +1 -1
- data/lib/puppet/provider/service/windows.rb +23 -7
- data/lib/puppet/provider/user/useradd.rb +11 -4
- data/lib/puppet/reports/http.rb +2 -0
- data/lib/puppet/resource.rb +2 -1
- data/lib/puppet/resource/type.rb +8 -0
- data/lib/puppet/ssl/ssl_context.rb +2 -2
- data/lib/puppet/ssl/ssl_provider.rb +20 -1
- data/lib/puppet/test/test_helper.rb +8 -10
- data/lib/puppet/trusted_external.rb +29 -1
- data/lib/puppet/type.rb +12 -5
- data/lib/puppet/type/file.rb +38 -13
- data/lib/puppet/type/file/checksum.rb +4 -4
- data/lib/puppet/type/file/source.rb +4 -4
- data/lib/puppet/type/service.rb +49 -0
- data/lib/puppet/util.rb +39 -15
- data/lib/puppet/util/checksums.rb +19 -4
- data/lib/puppet/util/fileparsing.rb +2 -2
- data/lib/puppet/util/provider_features.rb +1 -1
- data/lib/puppet/util/reference.rb +1 -1
- data/lib/puppet/util/windows/api_types.rb +45 -32
- data/lib/puppet/util/windows/eventlog.rb +1 -6
- data/lib/puppet/util/windows/principal.rb +8 -6
- data/lib/puppet/util/windows/registry.rb +11 -11
- data/lib/puppet/util/windows/service.rb +43 -26
- data/lib/puppet/util/windows/user.rb +23 -8
- data/lib/puppet/version.rb +1 -1
- data/locales/puppet.pot +249 -221
- data/man/man5/puppet.conf.5 +19 -8
- data/man/man8/puppet-agent.8 +2 -2
- data/man/man8/puppet-apply.8 +1 -1
- data/man/man8/puppet-catalog.8 +1 -1
- data/man/man8/puppet-config.8 +1 -1
- data/man/man8/puppet-describe.8 +1 -1
- data/man/man8/puppet-device.8 +1 -1
- data/man/man8/puppet-doc.8 +1 -1
- data/man/man8/puppet-epp.8 +1 -1
- data/man/man8/puppet-facts.8 +1 -1
- data/man/man8/puppet-filebucket.8 +1 -1
- data/man/man8/puppet-generate.8 +1 -1
- data/man/man8/puppet-help.8 +1 -1
- data/man/man8/puppet-key.8 +1 -1
- data/man/man8/puppet-lookup.8 +1 -1
- data/man/man8/puppet-man.8 +1 -1
- data/man/man8/puppet-module.8 +1 -1
- data/man/man8/puppet-node.8 +1 -1
- data/man/man8/puppet-parser.8 +1 -1
- data/man/man8/puppet-plugin.8 +1 -1
- data/man/man8/puppet-report.8 +1 -1
- data/man/man8/puppet-resource.8 +1 -1
- data/man/man8/puppet-script.8 +1 -1
- data/man/man8/puppet-ssl.8 +1 -1
- data/man/man8/puppet-status.8 +1 -1
- data/man/man8/puppet.8 +2 -2
- data/spec/integration/application/agent_spec.rb +89 -0
- data/spec/integration/defaults_spec.rb +1 -2
- data/spec/integration/network/http_pool_spec.rb +26 -9
- data/spec/integration/parser/compiler_spec.rb +11 -0
- data/spec/integration/type/file_spec.rb +1 -1
- data/spec/integration/util/windows/registry_spec.rb +7 -7
- data/spec/integration/util/windows/user_spec.rb +40 -5
- data/spec/unit/configurer/fact_handler_spec.rb +4 -4
- data/spec/unit/context/trusted_information_spec.rb +10 -4
- data/spec/unit/file_serving/http_metadata_spec.rb +37 -14
- data/spec/unit/file_serving/terminus_selector_spec.rb +45 -26
- data/spec/unit/http/client_spec.rb +64 -8
- data/spec/unit/http/response_spec.rb +6 -0
- data/spec/unit/indirector/file_metadata/http_spec.rb +27 -0
- data/spec/unit/indirector/request_spec.rb +1 -1
- data/spec/unit/interface_spec.rb +3 -3
- data/spec/unit/network/http/api/indirected_routes_spec.rb +2 -1
- data/spec/unit/network/http/connection_spec.rb +42 -32
- data/spec/unit/parser/ast/block_expression_spec.rb +1 -1
- data/spec/unit/parser/environment_compiler_spec.rb +7 -0
- data/spec/unit/parser/scope_spec.rb +1 -1
- data/spec/unit/pops/evaluator/evaluating_parser_spec.rb +15 -1
- data/spec/unit/pops/loaders/loaders_spec.rb +1 -1
- data/spec/unit/pops/types/type_calculator_spec.rb +1 -11
- data/spec/unit/provider/service/windows_spec.rb +22 -14
- data/spec/unit/provider/user/openbsd_spec.rb +1 -0
- data/spec/unit/provider/user/useradd_spec.rb +22 -16
- data/spec/unit/resource_spec.rb +3 -3
- data/spec/unit/ssl/ssl_provider_spec.rb +69 -43
- data/spec/unit/test/test_helper_spec.rb +17 -0
- data/spec/unit/transaction/report_spec.rb +1 -1
- data/spec/unit/type/file/source_spec.rb +3 -3
- data/spec/unit/type/file_spec.rb +122 -96
- data/spec/unit/type/service_spec.rb +176 -0
- data/spec/unit/type_spec.rb +50 -0
- data/spec/unit/util/checksums_spec.rb +16 -0
- data/spec/unit/util/windows/api_types_spec.rb +104 -40
- data/spec/unit/util/windows/service_spec.rb +4 -4
- data/spec/unit/util_spec.rb +3 -3
- data/spec/unit/x509/cert_provider_spec.rb +1 -1
- metadata +5 -5
- data/spec/integration/test/test_helper_spec.rb +0 -31
@@ -16,6 +16,22 @@ module Puppet::Util::Windows::User
|
|
16
16
|
end
|
17
17
|
module_function :admin?
|
18
18
|
|
19
|
+
# The name of the account in all locales is `LocalSystem`. `.\LocalSystem` or `ComputerName\LocalSystem' can also be used.
|
20
|
+
# This account is not recognized by the security subsystem, so you cannot specify its name in a call to the `LookupAccountName` function.
|
21
|
+
# https://docs.microsoft.com/en-us/windows/win32/services/localsystem-account
|
22
|
+
def localsystem?(name)
|
23
|
+
["LocalSystem", ".\\LocalSystem", "#{Puppet::Util::Windows::ADSI.computer_name}\\LocalSystem"].any?{ |s| s.casecmp(name) == 0 }
|
24
|
+
end
|
25
|
+
module_function :localsystem?
|
26
|
+
|
27
|
+
# Check if a given user is one of the default system accounts
|
28
|
+
# These accounts do not have a password and all checks done through logon attempt will fail
|
29
|
+
# https://docs.microsoft.com/en-us/windows/security/identity-protection/access-control/local-accounts#default-local-system-accounts
|
30
|
+
def default_system_account?(name)
|
31
|
+
user_sid = Puppet::Util::Windows::SID.name_to_sid(name)
|
32
|
+
[Puppet::Util::Windows::SID::LocalSystem, Puppet::Util::Windows::SID::NtLocal, Puppet::Util::Windows::SID::NtNetwork].include?(user_sid)
|
33
|
+
end
|
34
|
+
module_function :default_system_account?
|
19
35
|
|
20
36
|
# https://msdn.microsoft.com/en-us/library/windows/desktop/ee207397(v=vs.85).aspx
|
21
37
|
SECURITY_MAX_SID_SIZE = 68
|
@@ -57,9 +73,9 @@ module Puppet::Util::Windows::User
|
|
57
73
|
end
|
58
74
|
module_function :check_token_membership
|
59
75
|
|
60
|
-
def password_is?(name, password)
|
76
|
+
def password_is?(name, password, domain = '.')
|
61
77
|
begin
|
62
|
-
logon_user(name, password) { |token| }
|
78
|
+
logon_user(name, password, domain) { |token| }
|
63
79
|
rescue Puppet::Util::Windows::Error => detail
|
64
80
|
|
65
81
|
authenticated_error_codes = Set[
|
@@ -74,7 +90,7 @@ module Puppet::Util::Windows::User
|
|
74
90
|
end
|
75
91
|
module_function :password_is?
|
76
92
|
|
77
|
-
def logon_user(name, password, &block)
|
93
|
+
def logon_user(name, password, domain = '.', &block)
|
78
94
|
fLOGON32_PROVIDER_DEFAULT = 0
|
79
95
|
fLOGON32_LOGON_INTERACTIVE = 2
|
80
96
|
fLOGON32_LOGON_NETWORK = 3
|
@@ -83,8 +99,8 @@ module Puppet::Util::Windows::User
|
|
83
99
|
begin
|
84
100
|
FFI::MemoryPointer.new(:handle, 1) do |token_pointer|
|
85
101
|
#try logon using network else try logon using interactive mode
|
86
|
-
if logon_user_by_logon_type(name, password, fLOGON32_LOGON_NETWORK, fLOGON32_PROVIDER_DEFAULT, token_pointer) == FFI::WIN32_FALSE
|
87
|
-
if logon_user_by_logon_type(name, password, fLOGON32_LOGON_INTERACTIVE, fLOGON32_PROVIDER_DEFAULT, token_pointer) == FFI::WIN32_FALSE
|
102
|
+
if logon_user_by_logon_type(name, domain, password, fLOGON32_LOGON_NETWORK, fLOGON32_PROVIDER_DEFAULT, token_pointer) == FFI::WIN32_FALSE
|
103
|
+
if logon_user_by_logon_type(name, domain, password, fLOGON32_LOGON_INTERACTIVE, fLOGON32_PROVIDER_DEFAULT, token_pointer) == FFI::WIN32_FALSE
|
88
104
|
raise Puppet::Util::Windows::Error.new(_("Failed to logon user %{name}") % {name: name.inspect})
|
89
105
|
end
|
90
106
|
end
|
@@ -98,11 +114,10 @@ module Puppet::Util::Windows::User
|
|
98
114
|
# token has been closed by this point
|
99
115
|
true
|
100
116
|
end
|
101
|
-
|
102
117
|
module_function :logon_user
|
103
118
|
|
104
|
-
def self.logon_user_by_logon_type(name, password, logon_type, logon_provider, token)
|
105
|
-
LogonUserW(wide_string(name), wide_string(
|
119
|
+
def self.logon_user_by_logon_type(name, domain, password, logon_type, logon_provider, token)
|
120
|
+
LogonUserW(wide_string(name), wide_string(domain), password.nil? ? FFI::Pointer::NULL : wide_string(password), logon_type, logon_provider, token)
|
106
121
|
end
|
107
122
|
|
108
123
|
private_class_method :logon_user_by_logon_type
|
data/lib/puppet/version.rb
CHANGED
data/locales/puppet.pot
CHANGED
@@ -6,11 +6,11 @@
|
|
6
6
|
#, fuzzy
|
7
7
|
msgid ""
|
8
8
|
msgstr ""
|
9
|
-
"Project-Id-Version: Puppet automation framework 6.
|
9
|
+
"Project-Id-Version: Puppet automation framework 6.16.0-141-g9bc4af5078\n"
|
10
10
|
"\n"
|
11
11
|
"Report-Msgid-Bugs-To: https://tickets.puppetlabs.com\n"
|
12
|
-
"POT-Creation-Date: 2020-
|
13
|
-
"PO-Revision-Date: 2020-
|
12
|
+
"POT-Creation-Date: 2020-07-08 11:31+0000\n"
|
13
|
+
"PO-Revision-Date: 2020-07-08 11:31+0000\n"
|
14
14
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
15
15
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
16
16
|
"Language: \n"
|
@@ -72,39 +72,39 @@ msgid ""
|
|
72
72
|
"Use 'puppet agent --enable' to re-enable."
|
73
73
|
msgstr ""
|
74
74
|
|
75
|
-
#: ../lib/puppet/agent.rb:
|
75
|
+
#: ../lib/puppet/agent.rb:68
|
76
76
|
msgid "Run of %{client_class} already in progress; skipping (%{lockfile_path} exists)"
|
77
77
|
msgstr ""
|
78
78
|
|
79
|
-
#: ../lib/puppet/agent.rb:
|
79
|
+
#: ../lib/puppet/agent.rb:71
|
80
80
|
msgid "Exiting now because the maxwaitforlock timeout has been exceeded."
|
81
81
|
msgstr ""
|
82
82
|
|
83
|
-
#: ../lib/puppet/agent.rb:
|
83
|
+
#: ../lib/puppet/agent.rb:74
|
84
84
|
msgid "Another puppet instance is already running; --waitforlock flag used, waiting for running instance to finish."
|
85
85
|
msgstr ""
|
86
86
|
|
87
|
-
#: ../lib/puppet/agent.rb:
|
87
|
+
#: ../lib/puppet/agent.rb:75 ../lib/puppet/ssl/state_machine.rb:279 ../lib/puppet/ssl/state_machine.rb:310
|
88
88
|
msgid "Will try again in %{time} seconds."
|
89
89
|
msgstr ""
|
90
90
|
|
91
|
-
#: ../lib/puppet/agent.rb:
|
91
|
+
#: ../lib/puppet/agent.rb:80
|
92
92
|
msgid "Execution of %{client_class} did not complete within %{runtimeout} seconds and was terminated."
|
93
93
|
msgstr ""
|
94
94
|
|
95
|
-
#: ../lib/puppet/agent.rb:
|
95
|
+
#: ../lib/puppet/agent.rb:85
|
96
96
|
msgid "Could not run %{client_class}: %{detail}"
|
97
97
|
msgstr ""
|
98
98
|
|
99
|
-
#: ../lib/puppet/agent.rb:
|
99
|
+
#: ../lib/puppet/agent.rb:92
|
100
100
|
msgid "Shutdown/restart in progress (%{status}); skipping run"
|
101
101
|
msgstr ""
|
102
102
|
|
103
|
-
#: ../lib/puppet/agent.rb:
|
103
|
+
#: ../lib/puppet/agent.rb:110
|
104
104
|
msgid "puppet agent: applying configuration"
|
105
105
|
msgstr ""
|
106
106
|
|
107
|
-
#: ../lib/puppet/agent.rb:
|
107
|
+
#: ../lib/puppet/agent.rb:133
|
108
108
|
msgid "Could not create instance of %{client_class}: %{detail}"
|
109
109
|
msgstr ""
|
110
110
|
|
@@ -194,19 +194,19 @@ msgstr ""
|
|
194
194
|
msgid "The puppet agent daemon"
|
195
195
|
msgstr ""
|
196
196
|
|
197
|
-
#: ../lib/puppet/application/agent.rb:
|
197
|
+
#: ../lib/puppet/application/agent.rb:409
|
198
198
|
msgid "Fingerprint asked but neither the certificate, nor the certificate request have been issued"
|
199
199
|
msgstr ""
|
200
200
|
|
201
|
-
#: ../lib/puppet/application/agent.rb:
|
201
|
+
#: ../lib/puppet/application/agent.rb:414
|
202
202
|
msgid "Failed to generate fingerprint: %{message}"
|
203
203
|
msgstr ""
|
204
204
|
|
205
|
-
#: ../lib/puppet/application/agent.rb:
|
205
|
+
#: ../lib/puppet/application/agent.rb:437
|
206
206
|
msgid "Starting Puppet client version %{version}"
|
207
207
|
msgstr ""
|
208
208
|
|
209
|
-
#: ../lib/puppet/application/agent.rb:
|
209
|
+
#: ../lib/puppet/application/agent.rb:453
|
210
210
|
msgid "The puppet agent command does not take parameters"
|
211
211
|
msgstr ""
|
212
212
|
|
@@ -572,65 +572,65 @@ msgstr ""
|
|
572
572
|
msgid "Local environment: '%{local_env}' doesn't match server specified node environment '%{node_env}', switching agent to '%{node_env}'."
|
573
573
|
msgstr ""
|
574
574
|
|
575
|
-
#: ../lib/puppet/configurer.rb:
|
575
|
+
#: ../lib/puppet/configurer.rb:316
|
576
576
|
msgid "Using configured environment '%{env}'"
|
577
577
|
msgstr ""
|
578
578
|
|
579
|
-
#: ../lib/puppet/configurer.rb:
|
579
|
+
#: ../lib/puppet/configurer.rb:320
|
580
580
|
msgid "Unable to fetch my node definition, but the agent run will continue:"
|
581
581
|
msgstr ""
|
582
582
|
|
583
|
-
#: ../lib/puppet/configurer.rb:
|
583
|
+
#: ../lib/puppet/configurer.rb:348
|
584
584
|
msgid "Not using catalog because its environment '%{catalog_env}' does not match agent specified environment '%{local_env}' and strict_environment_mode is set"
|
585
585
|
msgstr ""
|
586
586
|
|
587
|
-
#: ../lib/puppet/configurer.rb:
|
587
|
+
#: ../lib/puppet/configurer.rb:359
|
588
588
|
msgid "Catalog environment didn't stabilize after %{tries} fetches, aborting run"
|
589
589
|
msgstr ""
|
590
590
|
|
591
|
-
#: ../lib/puppet/configurer.rb:
|
591
|
+
#: ../lib/puppet/configurer.rb:361
|
592
592
|
msgid "Local environment: '%{local_env}' doesn't match server specified environment '%{catalog_env}', restarting agent run with environment '%{catalog_env}'"
|
593
593
|
msgstr ""
|
594
594
|
|
595
|
-
#: ../lib/puppet/configurer.rb:
|
595
|
+
#: ../lib/puppet/configurer.rb:402
|
596
596
|
msgid "Failed to apply catalog: %{detail}"
|
597
597
|
msgstr ""
|
598
598
|
|
599
|
-
#: ../lib/puppet/configurer.rb:
|
599
|
+
#: ../lib/puppet/configurer.rb:431 ../lib/puppet/http/resolver/server_list.rb:89
|
600
600
|
msgid "Puppet server %{host}:%{port} is unavailable: %{code} %{reason}"
|
601
601
|
msgstr ""
|
602
602
|
|
603
603
|
#. TRANSLATORS 'server_list' is the name of a setting and should not be translated
|
604
604
|
#. TRANSLATORS 'server_list' is the name of a setting and should not be translated
|
605
|
-
#: ../lib/puppet/configurer.rb:
|
605
|
+
#: ../lib/puppet/configurer.rb:435 ../lib/puppet/http/resolver/server_list.rb:95
|
606
606
|
msgid "Unable to connect to server from server_list setting: %{detail}"
|
607
607
|
msgstr ""
|
608
608
|
|
609
|
-
#: ../lib/puppet/configurer.rb:
|
609
|
+
#: ../lib/puppet/configurer.rb:446 ../lib/puppet/face/report.rb:47
|
610
610
|
msgid "Could not send report: %{detail}"
|
611
611
|
msgstr ""
|
612
612
|
|
613
|
-
#: ../lib/puppet/configurer.rb:
|
613
|
+
#: ../lib/puppet/configurer.rb:455
|
614
614
|
msgid "Could not save last run local report: %{detail}"
|
615
615
|
msgstr ""
|
616
616
|
|
617
|
-
#: ../lib/puppet/configurer.rb:
|
617
|
+
#: ../lib/puppet/configurer.rb:474
|
618
618
|
msgid "Uploading facts for %{node} to %{server}"
|
619
619
|
msgstr ""
|
620
620
|
|
621
|
-
#: ../lib/puppet/configurer.rb:
|
621
|
+
#: ../lib/puppet/configurer.rb:482
|
622
622
|
msgid "Failed to submit facts: %{detail}"
|
623
623
|
msgstr ""
|
624
624
|
|
625
|
-
#: ../lib/puppet/configurer.rb:
|
625
|
+
#: ../lib/puppet/configurer.rb:497
|
626
626
|
msgid "Could not run command from %{setting}: %{detail}"
|
627
627
|
msgstr ""
|
628
628
|
|
629
|
-
#: ../lib/puppet/configurer.rb:
|
629
|
+
#: ../lib/puppet/configurer.rb:515
|
630
630
|
msgid "Could not retrieve catalog from cache: %{detail}"
|
631
631
|
msgstr ""
|
632
632
|
|
633
|
-
#: ../lib/puppet/configurer.rb:
|
633
|
+
#: ../lib/puppet/configurer.rb:536
|
634
634
|
msgid "Could not retrieve catalog from remote server: %{detail}"
|
635
635
|
msgstr ""
|
636
636
|
|
@@ -703,29 +703,29 @@ msgid "Valid values are '%{values}'."
|
|
703
703
|
msgstr ""
|
704
704
|
|
705
705
|
#. TRANSLATORS 'data_binding_terminus' is a setting and should not be translated
|
706
|
-
#: ../lib/puppet/defaults.rb:
|
706
|
+
#: ../lib/puppet/defaults.rb:546
|
707
707
|
msgid "Setting 'data_binding_terminus' is deprecated."
|
708
708
|
msgstr ""
|
709
709
|
|
710
710
|
#. TRANSLATORS 'hiera' should not be translated
|
711
|
-
#: ../lib/puppet/defaults.rb:
|
711
|
+
#: ../lib/puppet/defaults.rb:548
|
712
712
|
msgid "Convert custom terminus to hiera 5 API."
|
713
713
|
msgstr ""
|
714
714
|
|
715
715
|
#. TRANSLATORS 'environment_data_provider' is a setting and should not be translated
|
716
|
-
#: ../lib/puppet/defaults.rb:
|
716
|
+
#: ../lib/puppet/defaults.rb:747
|
717
717
|
msgid "Setting 'environment_data_provider' is deprecated."
|
718
718
|
msgstr ""
|
719
719
|
|
720
|
-
#: ../lib/puppet/defaults.rb:
|
720
|
+
#: ../lib/puppet/defaults.rb:828
|
721
721
|
msgid "Certificate names must be lower case"
|
722
722
|
msgstr ""
|
723
723
|
|
724
|
-
#: ../lib/puppet/defaults.rb:
|
724
|
+
#: ../lib/puppet/defaults.rb:1022
|
725
725
|
msgid "Setting 'ssl_client_ca_auth' is deprecated."
|
726
726
|
msgstr ""
|
727
727
|
|
728
|
-
#: ../lib/puppet/defaults.rb:
|
728
|
+
#: ../lib/puppet/defaults.rb:1101 ../lib/puppet/settings/enum_setting.rb:13 ../lib/puppet/settings/symbolic_enum_setting.rb:14
|
729
729
|
msgid "Invalid value '%{value}' for parameter %{name}. Allowed values are '%{allowed_values}'"
|
730
730
|
msgstr ""
|
731
731
|
|
@@ -1762,7 +1762,7 @@ msgstr ""
|
|
1762
1762
|
msgid "No task specified"
|
1763
1763
|
msgstr ""
|
1764
1764
|
|
1765
|
-
#: ../lib/puppet/file_serving/terminus_selector.rb:
|
1765
|
+
#: ../lib/puppet/file_serving/terminus_selector.rb:28
|
1766
1766
|
msgid "URI protocol '%{protocol}' is not currently supported for file serving"
|
1767
1767
|
msgstr ""
|
1768
1768
|
|
@@ -1782,7 +1782,7 @@ msgstr ""
|
|
1782
1782
|
msgid "Timeout waiting for exclusive lock on %{path}"
|
1783
1783
|
msgstr ""
|
1784
1784
|
|
1785
|
-
#: ../lib/puppet/file_system/jruby.rb:18 ../lib/puppet/file_system/windows.rb:127 ../lib/puppet/util.rb:
|
1785
|
+
#: ../lib/puppet/file_system/jruby.rb:18 ../lib/puppet/file_system/windows.rb:127 ../lib/puppet/util.rb:705
|
1786
1786
|
msgid "Is a directory: %{directory}"
|
1787
1787
|
msgstr ""
|
1788
1788
|
|
@@ -1818,7 +1818,7 @@ msgstr ""
|
|
1818
1818
|
msgid "unexpected prefix_suffix: %{value}"
|
1819
1819
|
msgstr ""
|
1820
1820
|
|
1821
|
-
#: ../lib/puppet/file_system/uniquefile.rb:
|
1821
|
+
#: ../lib/puppet/file_system/uniquefile.rb:136
|
1822
1822
|
msgid "cannot generate temporary name using `%{basename}' under `%{tmpdir}'"
|
1823
1823
|
msgstr ""
|
1824
1824
|
|
@@ -2246,11 +2246,11 @@ msgstr ""
|
|
2246
2246
|
msgid "Request to %{uri} failed after %{elapsed} seconds: %{message}"
|
2247
2247
|
msgstr ""
|
2248
2248
|
|
2249
|
-
#: ../lib/puppet/http/client.rb:
|
2249
|
+
#: ../lib/puppet/http/client.rb:326
|
2250
2250
|
msgid "Sleeping for %{interval} seconds before retrying the request"
|
2251
2251
|
msgstr ""
|
2252
2252
|
|
2253
|
-
#: ../lib/puppet/http/client.rb:
|
2253
|
+
#: ../lib/puppet/http/client.rb:369 ../lib/puppet/indirector/request.rb:142
|
2254
2254
|
msgid "HTTP REST queries cannot handle values of type '%{klass}'"
|
2255
2255
|
msgstr ""
|
2256
2256
|
|
@@ -2262,11 +2262,11 @@ msgstr ""
|
|
2262
2262
|
msgid "Too many HTTP retries for %{addr}"
|
2263
2263
|
msgstr ""
|
2264
2264
|
|
2265
|
-
#: ../lib/puppet/http/redirector.rb:
|
2265
|
+
#: ../lib/puppet/http/redirector.rb:78
|
2266
2266
|
msgid "Location response header is missing"
|
2267
2267
|
msgstr ""
|
2268
2268
|
|
2269
|
-
#: ../lib/puppet/http/redirector.rb:
|
2269
|
+
#: ../lib/puppet/http/redirector.rb:82
|
2270
2270
|
msgid "Location URI is invalid: %{detail}"
|
2271
2271
|
msgstr ""
|
2272
2272
|
|
@@ -2595,7 +2595,7 @@ msgstr ""
|
|
2595
2595
|
msgid "Puppet::Indirector::FileContent::Http is deprecated. Use Puppet::HTTP::Client instead."
|
2596
2596
|
msgstr ""
|
2597
2597
|
|
2598
|
-
#: ../lib/puppet/indirector/file_metadata/http.rb:
|
2598
|
+
#: ../lib/puppet/indirector/file_metadata/http.rb:31
|
2599
2599
|
msgid "cannot lookup multiple files"
|
2600
2600
|
msgstr ""
|
2601
2601
|
|
@@ -3951,19 +3951,19 @@ msgstr ""
|
|
3951
3951
|
msgid "Not a valid indirection type"
|
3952
3952
|
msgstr ""
|
3953
3953
|
|
3954
|
-
#: ../lib/puppet/network/http/api/master/v3/environment.rb:
|
3954
|
+
#: ../lib/puppet/network/http/api/master/v3/environment.rb:14
|
3955
3955
|
msgid "%{env_name} is not a known environment"
|
3956
3956
|
msgstr ""
|
3957
3957
|
|
3958
|
-
#: ../lib/puppet/network/http/api/master/v3/environment.rb:
|
3958
|
+
#: ../lib/puppet/network/http/api/master/v3/environment.rb:43
|
3959
3959
|
msgid "Application %{application} assigns nodes to non-existent components: %{component_list}"
|
3960
3960
|
msgstr ""
|
3961
3961
|
|
3962
|
-
#: ../lib/puppet/network/http/api/master/v3/environment.rb:
|
3962
|
+
#: ../lib/puppet/network/http/api/master/v3/environment.rb:49
|
3963
3963
|
msgid "Application %{application} has components without assigned nodes: %{component_list}"
|
3964
3964
|
msgstr ""
|
3965
3965
|
|
3966
|
-
#: ../lib/puppet/network/http/api/master/v3/environment.rb:
|
3966
|
+
#: ../lib/puppet/network/http/api/master/v3/environment.rb:58
|
3967
3967
|
msgid "Application %{app} assigns multiple nodes to component %{comp}"
|
3968
3968
|
msgstr ""
|
3969
3969
|
|
@@ -4003,7 +4003,7 @@ msgstr ""
|
|
4003
4003
|
msgid "Expected an instance of Puppet::SSL::Verifier but was passed a %{klass}"
|
4004
4004
|
msgstr ""
|
4005
4005
|
|
4006
|
-
#: ../lib/puppet/network/http/connection.rb:229 ../lib/puppet/network/http/connection_adapter.rb:
|
4006
|
+
#: ../lib/puppet/network/http/connection.rb:229 ../lib/puppet/network/http/connection_adapter.rb:174
|
4007
4007
|
msgid "Too many HTTP redirections for %{host}:%{port}"
|
4008
4008
|
msgstr ""
|
4009
4009
|
|
@@ -4307,7 +4307,7 @@ msgstr ""
|
|
4307
4307
|
msgid "Node inheritance is removed in Puppet 4.0.0. See http://links.puppet.com/puppet-node-inheritance-deprecation"
|
4308
4308
|
msgstr ""
|
4309
4309
|
|
4310
|
-
#: ../lib/puppet/parser/ast/pops_bridge.rb:
|
4310
|
+
#: ../lib/puppet/parser/ast/pops_bridge.rb:186
|
4311
4311
|
msgid "Instantiating Resource with type checked parameters - scope is missing, skipping type checking."
|
4312
4312
|
msgstr ""
|
4313
4313
|
|
@@ -4332,7 +4332,7 @@ msgid "For more information, see https://puppet.com/docs/puppet/latest/environme
|
|
4332
4332
|
msgstr ""
|
4333
4333
|
|
4334
4334
|
#. TRANSLATORS "stage" is a keyword in Puppet and should not be translated
|
4335
|
-
#: ../lib/puppet/parser/compiler.rb:98 ../lib/puppet/parser/environment_compiler.rb:
|
4335
|
+
#: ../lib/puppet/parser/compiler.rb:98 ../lib/puppet/parser/environment_compiler.rb:137
|
4336
4336
|
msgid "Only classes can set 'stage'; normal resources like %{resource} cannot change run stage"
|
4337
4337
|
msgstr ""
|
4338
4338
|
|
@@ -4467,11 +4467,11 @@ msgstr ""
|
|
4467
4467
|
msgid "For initializing compiler"
|
4468
4468
|
msgstr ""
|
4469
4469
|
|
4470
|
-
#: ../lib/puppet/parser/compiler/catalog_validator/env_relationship_validator.rb:
|
4470
|
+
#: ../lib/puppet/parser/compiler/catalog_validator/env_relationship_validator.rb:19
|
4471
4471
|
msgid "Capability '%{cap}' referenced by '%{param}' is never exported"
|
4472
4472
|
msgstr ""
|
4473
4473
|
|
4474
|
-
#: ../lib/puppet/parser/compiler/catalog_validator/env_relationship_validator.rb:
|
4474
|
+
#: ../lib/puppet/parser/compiler/catalog_validator/env_relationship_validator.rb:58
|
4475
4475
|
msgid "'%{value}' is exported by both '%{hash}' and '%{resource}'"
|
4476
4476
|
msgstr ""
|
4477
4477
|
|
@@ -4483,55 +4483,55 @@ msgstr ""
|
|
4483
4483
|
msgid "Could not find resource '%{res}' in parameter '%{param}'"
|
4484
4484
|
msgstr ""
|
4485
4485
|
|
4486
|
-
#: ../lib/puppet/parser/compiler/catalog_validator/site_validator.rb:
|
4486
|
+
#: ../lib/puppet/parser/compiler/catalog_validator/site_validator.rb:16
|
4487
4487
|
msgid "Only application components can appear inside a site - %{res} is not allowed"
|
4488
4488
|
msgstr ""
|
4489
4489
|
|
4490
|
-
#: ../lib/puppet/parser/environment_compiler.rb:
|
4490
|
+
#: ../lib/puppet/parser/environment_compiler.rb:13
|
4491
4491
|
msgid "%{detail} in environment %{env}"
|
4492
4492
|
msgstr ""
|
4493
4493
|
|
4494
|
-
#: ../lib/puppet/parser/environment_compiler.rb:
|
4494
|
+
#: ../lib/puppet/parser/environment_compiler.rb:62
|
4495
4495
|
msgid "For compiling environment catalog %{env}"
|
4496
4496
|
msgstr ""
|
4497
4497
|
|
4498
|
-
#: ../lib/puppet/parser/environment_compiler.rb:
|
4498
|
+
#: ../lib/puppet/parser/environment_compiler.rb:65
|
4499
4499
|
msgid "Env Compile: Created settings scope"
|
4500
4500
|
msgstr ""
|
4501
4501
|
|
4502
|
-
#: ../lib/puppet/parser/environment_compiler.rb:
|
4502
|
+
#: ../lib/puppet/parser/environment_compiler.rb:67
|
4503
4503
|
msgid "Env Compile: Evaluated main"
|
4504
4504
|
msgstr ""
|
4505
4505
|
|
4506
|
-
#: ../lib/puppet/parser/environment_compiler.rb:
|
4506
|
+
#: ../lib/puppet/parser/environment_compiler.rb:69
|
4507
4507
|
msgid "Env Compile: Evaluated site"
|
4508
4508
|
msgstr ""
|
4509
4509
|
|
4510
|
-
#: ../lib/puppet/parser/environment_compiler.rb:
|
4510
|
+
#: ../lib/puppet/parser/environment_compiler.rb:71
|
4511
4511
|
msgid "Env Compile: Evaluated application instances"
|
4512
4512
|
msgstr ""
|
4513
4513
|
|
4514
|
-
#: ../lib/puppet/parser/environment_compiler.rb:
|
4514
|
+
#: ../lib/puppet/parser/environment_compiler.rb:73
|
4515
4515
|
msgid "Env Compile: Prune"
|
4516
4516
|
msgstr ""
|
4517
4517
|
|
4518
|
-
#: ../lib/puppet/parser/environment_compiler.rb:
|
4518
|
+
#: ../lib/puppet/parser/environment_compiler.rb:75
|
4519
4519
|
msgid "Env Compile: Validate Catalog pre-finish"
|
4520
4520
|
msgstr ""
|
4521
4521
|
|
4522
|
-
#: ../lib/puppet/parser/environment_compiler.rb:
|
4522
|
+
#: ../lib/puppet/parser/environment_compiler.rb:79
|
4523
4523
|
msgid "Env Compile: Finished catalog"
|
4524
4524
|
msgstr ""
|
4525
4525
|
|
4526
|
-
#: ../lib/puppet/parser/environment_compiler.rb:
|
4526
|
+
#: ../lib/puppet/parser/environment_compiler.rb:83
|
4527
4527
|
msgid "Env Compile: Validate Catalog final"
|
4528
4528
|
msgstr ""
|
4529
4529
|
|
4530
|
-
#: ../lib/puppet/parser/environment_compiler.rb:
|
4530
|
+
#: ../lib/puppet/parser/environment_compiler.rb:159
|
4531
4531
|
msgid "Environment Compiler: Could not find a site definition to evaluate"
|
4532
4532
|
msgstr ""
|
4533
4533
|
|
4534
|
-
#: ../lib/puppet/parser/environment_compiler.rb:
|
4534
|
+
#: ../lib/puppet/parser/environment_compiler.rb:165
|
4535
4535
|
msgid "Evaluated application %{resource}"
|
4536
4536
|
msgstr ""
|
4537
4537
|
|
@@ -4701,23 +4701,23 @@ msgstr ""
|
|
4701
4701
|
msgid "Attempt to reassign attribute '%{name}' in '%{resource}' caused by multiple consumed mappings to the same attribute"
|
4702
4702
|
msgstr ""
|
4703
4703
|
|
4704
|
-
#: ../lib/puppet/parser/resource.rb:
|
4704
|
+
#: ../lib/puppet/parser/resource.rb:365
|
4705
4705
|
msgid "Parameter '%{name}' is already set on %{resource}; cannot redefine"
|
4706
4706
|
msgstr ""
|
4707
4707
|
|
4708
|
-
#: ../lib/puppet/parser/resource.rb:
|
4708
|
+
#: ../lib/puppet/parser/resource.rb:368
|
4709
4709
|
msgid "Parameter '%{name}' is already set on %{resource} at %{error_location}; cannot redefine"
|
4710
4710
|
msgstr ""
|
4711
4711
|
|
4712
|
-
#: ../lib/puppet/parser/resource.rb:
|
4712
|
+
#: ../lib/puppet/parser/resource.rb:373
|
4713
4713
|
msgid "Parameter '%{name}' is already set on %{resource} by %{source}; cannot redefine"
|
4714
4714
|
msgstr ""
|
4715
4715
|
|
4716
|
-
#: ../lib/puppet/parser/resource.rb:
|
4716
|
+
#: ../lib/puppet/parser/resource.rb:376
|
4717
4717
|
msgid "Parameter '%{name}' is already set on %{resource} by %{source} at %{error_location}; cannot redefine"
|
4718
4718
|
msgstr ""
|
4719
4719
|
|
4720
|
-
#: ../lib/puppet/parser/resource.rb:
|
4720
|
+
#: ../lib/puppet/parser/resource.rb:415
|
4721
4721
|
msgid "Duplicate parameter '%{param}' for on %{resource}"
|
4722
4722
|
msgstr ""
|
4723
4723
|
|
@@ -5743,6 +5743,10 @@ msgstr ""
|
|
5743
5743
|
msgid "Failed to load: %{type_name}"
|
5744
5744
|
msgstr ""
|
5745
5745
|
|
5746
|
+
#: ../lib/puppet/pops/issues.rb:925
|
5747
|
+
msgid "Use of the application-orchestration %{expr} is deprecated. See https://puppet.com/docs/puppet/5.5/deprecated_language.html"
|
5748
|
+
msgstr ""
|
5749
|
+
|
5746
5750
|
#: ../lib/puppet/pops/label_provider.rb:76
|
5747
5751
|
msgid "<%{string}> does not appear to contain a word"
|
5748
5752
|
msgstr ""
|
@@ -6133,7 +6137,7 @@ msgstr ""
|
|
6133
6137
|
msgid "digit expected"
|
6134
6138
|
msgstr ""
|
6135
6139
|
|
6136
|
-
#: ../lib/puppet/pops/resource/resource_type_impl.rb:167 ../lib/puppet/type.rb:
|
6140
|
+
#: ../lib/puppet/pops/resource/resource_type_impl.rb:167 ../lib/puppet/type.rb:444
|
6137
6141
|
msgid "you must specify title patterns when there are two or more key attributes"
|
6138
6142
|
msgstr ""
|
6139
6143
|
|
@@ -7219,35 +7223,35 @@ msgstr ""
|
|
7219
7223
|
msgid "The %{service} service is incomplete so its status will be reported as :stopped. See `svcs -xv %{fmri}` for more details."
|
7220
7224
|
msgstr ""
|
7221
7225
|
|
7222
|
-
#: ../lib/puppet/provider/service/windows.rb:
|
7226
|
+
#: ../lib/puppet/provider/service/windows.rb:22
|
7223
7227
|
msgid "Cannot enable %{resource_name}, error was: %{detail}"
|
7224
7228
|
msgstr ""
|
7225
7229
|
|
7226
|
-
#: ../lib/puppet/provider/service/windows.rb:
|
7230
|
+
#: ../lib/puppet/provider/service/windows.rb:28
|
7227
7231
|
msgid "Cannot disable %{resource_name}, error was: %{detail}"
|
7228
7232
|
msgstr ""
|
7229
7233
|
|
7230
|
-
#: ../lib/puppet/provider/service/windows.rb:
|
7234
|
+
#: ../lib/puppet/provider/service/windows.rb:34
|
7231
7235
|
msgid "Cannot enable %{resource_name} for manual start, error was: %{detail}"
|
7232
7236
|
msgstr ""
|
7233
7237
|
|
7234
|
-
#: ../lib/puppet/provider/service/windows.rb:
|
7238
|
+
#: ../lib/puppet/provider/service/windows.rb:40
|
7235
7239
|
msgid "Cannot enable %{resource_name} for delayed start, error was: %{detail}"
|
7236
7240
|
msgstr ""
|
7237
7241
|
|
7238
|
-
#: ../lib/puppet/provider/service/windows.rb:
|
7242
|
+
#: ../lib/puppet/provider/service/windows.rb:60
|
7239
7243
|
msgid "Unknown start type: %{start_type}"
|
7240
7244
|
msgstr ""
|
7241
7245
|
|
7242
|
-
#: ../lib/puppet/provider/service/windows.rb:
|
7246
|
+
#: ../lib/puppet/provider/service/windows.rb:63
|
7243
7247
|
msgid "Cannot get start type %{resource_name}, error was: %{detail}"
|
7244
7248
|
msgstr ""
|
7245
7249
|
|
7246
|
-
#: ../lib/puppet/provider/service/windows.rb:
|
7250
|
+
#: ../lib/puppet/provider/service/windows.rb:77
|
7247
7251
|
msgid "Will not start disabled service %{resource_name} without managing enable. Specify 'enable => false' to override."
|
7248
7252
|
msgstr ""
|
7249
7253
|
|
7250
|
-
#: ../lib/puppet/provider/service/windows.rb:
|
7254
|
+
#: ../lib/puppet/provider/service/windows.rb:109
|
7251
7255
|
msgid "Unknown service state '%{current_state}' for service '%{resource_name}'"
|
7252
7256
|
msgstr ""
|
7253
7257
|
|
@@ -7332,7 +7336,7 @@ msgstr ""
|
|
7332
7336
|
msgid "You must pass a callback for non-NONE events"
|
7333
7337
|
msgstr ""
|
7334
7338
|
|
7335
|
-
#: ../lib/puppet/reports/http.rb:
|
7339
|
+
#: ../lib/puppet/reports/http.rb:40
|
7336
7340
|
msgid "Unable to submit report to %{url} [%{code}] %{message}"
|
7337
7341
|
msgstr ""
|
7338
7342
|
|
@@ -7389,11 +7393,11 @@ msgstr ""
|
|
7389
7393
|
msgid "no parameter named '%{name}'"
|
7390
7394
|
msgstr ""
|
7391
7395
|
|
7392
|
-
#: ../lib/puppet/resource.rb:
|
7396
|
+
#: ../lib/puppet/resource.rb:635
|
7393
7397
|
msgid "No title provided and %{type} is not a valid resource reference"
|
7394
7398
|
msgstr ""
|
7395
7399
|
|
7396
|
-
#: ../lib/puppet/resource.rb:
|
7400
|
+
#: ../lib/puppet/resource.rb:709
|
7397
7401
|
msgid "No set of title patterns matched the title \"%{title}\"."
|
7398
7402
|
msgstr ""
|
7399
7403
|
|
@@ -7483,67 +7487,67 @@ msgstr ""
|
|
7483
7487
|
msgid "Could not evaluate: %{detail}"
|
7484
7488
|
msgstr ""
|
7485
7489
|
|
7486
|
-
#: ../lib/puppet/resource/type.rb:
|
7490
|
+
#: ../lib/puppet/resource/type.rb:81
|
7487
7491
|
msgid "Invalid export in %{reference}: %{ex} is not a resource"
|
7488
7492
|
msgstr ""
|
7489
7493
|
|
7490
|
-
#: ../lib/puppet/resource/type.rb:
|
7494
|
+
#: ../lib/puppet/resource/type.rb:82
|
7491
7495
|
msgid "Invalid export in %{reference}: %{ex} is not a capability resource"
|
7492
7496
|
msgstr ""
|
7493
7497
|
|
7494
|
-
#: ../lib/puppet/resource/type.rb:
|
7498
|
+
#: ../lib/puppet/resource/type.rb:86
|
7495
7499
|
msgid "Resource type %{res_type} does not produce %{ex_type}"
|
7496
7500
|
msgstr ""
|
7497
7501
|
|
7498
|
-
#: ../lib/puppet/resource/type.rb:
|
7502
|
+
#: ../lib/puppet/resource/type.rb:147
|
7499
7503
|
msgid "Invalid resource supertype '%{type}'"
|
7500
7504
|
msgstr ""
|
7501
7505
|
|
7502
|
-
#: ../lib/puppet/resource/type.rb:
|
7506
|
+
#: ../lib/puppet/resource/type.rb:199
|
7503
7507
|
msgid "%{name} is not a class; cannot add code to it"
|
7504
7508
|
msgstr ""
|
7505
7509
|
|
7506
|
-
#: ../lib/puppet/resource/type.rb:
|
7510
|
+
#: ../lib/puppet/resource/type.rb:200
|
7507
7511
|
msgid "%{name} is not a class; cannot add code from it"
|
7508
7512
|
msgstr ""
|
7509
7513
|
|
7510
|
-
#: ../lib/puppet/resource/type.rb:
|
7514
|
+
#: ../lib/puppet/resource/type.rb:204
|
7511
7515
|
msgid "Cannot have code outside of a class/node/define because 'freeze_main' is enabled"
|
7512
7516
|
msgstr ""
|
7513
7517
|
|
7514
|
-
#: ../lib/puppet/resource/type.rb:
|
7518
|
+
#: ../lib/puppet/resource/type.rb:208
|
7515
7519
|
msgid "Cannot merge classes with different parent classes (%{name} => %{parent} vs. %{other_name} => %{other_parent})"
|
7516
7520
|
msgstr ""
|
7517
7521
|
|
7518
|
-
#: ../lib/puppet/resource/type.rb:
|
7522
|
+
#: ../lib/puppet/resource/type.rb:239
|
7519
7523
|
msgid "Cannot create resources for defined resource types"
|
7520
7524
|
msgstr ""
|
7521
7525
|
|
7522
|
-
#: ../lib/puppet/resource/type.rb:
|
7526
|
+
#: ../lib/puppet/resource/type.rb:294
|
7523
7527
|
msgid "The method Puppet::Resource::Type.assign_parameter_values is deprecated and will be removed in the next major release of Puppet."
|
7524
7528
|
msgstr ""
|
7525
7529
|
|
7526
|
-
#: ../lib/puppet/resource/type.rb:
|
7530
|
+
#: ../lib/puppet/resource/type.rb:310
|
7527
7531
|
msgid "Could not find parent resource type '%{parent}' of type %{parent_type} in %{env}"
|
7528
7532
|
msgstr ""
|
7529
7533
|
|
7530
|
-
#: ../lib/puppet/resource/type.rb:
|
7534
|
+
#: ../lib/puppet/resource/type.rb:437
|
7531
7535
|
msgid "Parameter '%{name}' is given a type, but is not a valid parameter."
|
7532
7536
|
msgstr ""
|
7533
7537
|
|
7534
|
-
#: ../lib/puppet/resource/type.rb:
|
7538
|
+
#: ../lib/puppet/resource/type.rb:440
|
7535
7539
|
msgid "Parameter '%{name}' is given a type that is not a Puppet Type, got %{class_name}"
|
7536
7540
|
msgstr ""
|
7537
7541
|
|
7538
|
-
#: ../lib/puppet/resource/type.rb:
|
7542
|
+
#: ../lib/puppet/resource/type.rb:482
|
7539
7543
|
msgid "Could not find scope for %{class_name}"
|
7540
7544
|
msgstr ""
|
7541
7545
|
|
7542
|
-
#: ../lib/puppet/resource/type.rb:
|
7546
|
+
#: ../lib/puppet/resource/type.rb:503
|
7543
7547
|
msgid "%{param} is a metaparam; this value will inherit to all contained resources in the %{name} definition"
|
7544
7548
|
msgstr ""
|
7545
7549
|
|
7546
|
-
#: ../lib/puppet/resource/type.rb:
|
7550
|
+
#: ../lib/puppet/resource/type.rb:505
|
7547
7551
|
msgid "%{param} is a metaparameter; please choose another parameter name in the %{name} definition"
|
7548
7552
|
msgstr ""
|
7549
7553
|
|
@@ -8031,79 +8035,87 @@ msgstr ""
|
|
8031
8035
|
msgid "Error registering ssl custom OIDs mapping from file '%{custom_oid_file}': %{err}"
|
8032
8036
|
msgstr ""
|
8033
8037
|
|
8034
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
8038
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:66
|
8039
|
+
msgid "Failed to add '%{path}' as a trusted CA file: %{detail}"
|
8040
|
+
msgstr ""
|
8041
|
+
|
8042
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:70
|
8043
|
+
msgid "The 'ssl_trust_store' setting does not refer to a file and will be ignored: '%{path}'"
|
8044
|
+
msgstr ""
|
8045
|
+
|
8046
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:104
|
8035
8047
|
msgid "CA certs are missing"
|
8036
8048
|
msgstr ""
|
8037
8049
|
|
8038
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
8050
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:105
|
8039
8051
|
msgid "CRLs are missing"
|
8040
8052
|
msgstr ""
|
8041
8053
|
|
8042
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
8054
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:106
|
8043
8055
|
msgid "Private key is missing"
|
8044
8056
|
msgstr ""
|
8045
8057
|
|
8046
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
8058
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:107
|
8047
8059
|
msgid "Client cert is missing"
|
8048
8060
|
msgstr ""
|
8049
8061
|
|
8050
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
8062
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:113
|
8051
8063
|
msgid "Unsupported key '%{type}'"
|
8052
8064
|
msgstr ""
|
8053
8065
|
|
8054
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
8066
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:117
|
8055
8067
|
msgid "The certificate for '%{name}' does not match its private key"
|
8056
8068
|
msgstr ""
|
8057
8069
|
|
8058
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
8070
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:156
|
8059
8071
|
msgid "Failed to load private key for host '%{name}': %{message}"
|
8060
8072
|
msgstr ""
|
8061
8073
|
|
8062
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
8074
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:170
|
8063
8075
|
msgid "The CSR for host '%{name}' does not match the public key"
|
8064
8076
|
msgstr ""
|
8065
8077
|
|
8066
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
8078
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:234
|
8067
8079
|
msgid "The issuer '%{issuer}' of certificate '%{subject}' cannot be found locally"
|
8068
8080
|
msgstr ""
|
8069
8081
|
|
8070
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
8082
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:250
|
8071
8083
|
msgid "The certificate '%{subject}' is not yet valid, verify time is synchronized"
|
8072
8084
|
msgstr ""
|
8073
8085
|
|
8074
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
8086
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:252
|
8075
8087
|
msgid "The certificate '%{subject}' has expired, verify time is synchronized"
|
8076
8088
|
msgstr ""
|
8077
8089
|
|
8078
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
8090
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:254
|
8079
8091
|
msgid "The CRL issued by '%{issuer}' is not yet valid, verify time is synchronized"
|
8080
8092
|
msgstr ""
|
8081
8093
|
|
8082
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
8094
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:256
|
8083
8095
|
msgid "The CRL issued by '%{issuer}' has expired, verify time is synchronized"
|
8084
8096
|
msgstr ""
|
8085
8097
|
|
8086
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
8098
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:258
|
8087
8099
|
msgid "Invalid signature for certificate '%{subject}'"
|
8088
8100
|
msgstr ""
|
8089
8101
|
|
8090
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
8102
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:260
|
8091
8103
|
msgid "Invalid signature for CRL issued by '%{issuer}'"
|
8092
8104
|
msgstr ""
|
8093
8105
|
|
8094
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
8106
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:262
|
8095
8107
|
msgid "The issuer '%{issuer}' of certificate '%{subject}' is missing"
|
8096
8108
|
msgstr ""
|
8097
8109
|
|
8098
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
8110
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:265
|
8099
8111
|
msgid "The CRL issued by '%{issuer}' is missing"
|
8100
8112
|
msgstr ""
|
8101
8113
|
|
8102
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
8114
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:267
|
8103
8115
|
msgid "Certificate '%{subject}' is revoked"
|
8104
8116
|
msgstr ""
|
8105
8117
|
|
8106
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
8118
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:271
|
8107
8119
|
msgid "Certificate '%{subject}' failed verification (%{err}): %{err_utf8}"
|
8108
8120
|
msgstr ""
|
8109
8121
|
|
@@ -8454,77 +8466,89 @@ msgstr ""
|
|
8454
8466
|
msgid "audit change: newly-recorded value %s"
|
8455
8467
|
msgstr ""
|
8456
8468
|
|
8457
|
-
#: ../lib/puppet/
|
8469
|
+
#: ../lib/puppet/trusted_external.rb:6
|
8470
|
+
msgid "Retrieving trusted external data from %{command}"
|
8471
|
+
msgstr ""
|
8472
|
+
|
8473
|
+
#: ../lib/puppet/trusted_external.rb:20
|
8474
|
+
msgid "Skipping non-executable file %{file}"
|
8475
|
+
msgstr ""
|
8476
|
+
|
8477
|
+
#: ../lib/puppet/trusted_external.rb:25
|
8478
|
+
msgid "There is more than one '%{basename}' script in %{dir}"
|
8479
|
+
msgstr ""
|
8480
|
+
|
8481
|
+
#: ../lib/puppet/type.rb:519
|
8458
8482
|
msgid "Options must be a hash, not %{type}"
|
8459
8483
|
msgstr ""
|
8460
8484
|
|
8461
|
-
#: ../lib/puppet/type.rb:
|
8485
|
+
#: ../lib/puppet/type.rb:522
|
8462
8486
|
msgid "Class %{class_name} already has a property named %{property}"
|
8463
8487
|
msgstr ""
|
8464
8488
|
|
8465
|
-
#: ../lib/puppet/type.rb:
|
8489
|
+
#: ../lib/puppet/type.rb:609
|
8466
8490
|
msgid "Class %{class_name} has not defined parameters"
|
8467
8491
|
msgstr ""
|
8468
8492
|
|
8469
|
-
#: ../lib/puppet/type.rb:
|
8493
|
+
#: ../lib/puppet/type.rb:696
|
8470
8494
|
msgid "Parameter %{name} failed on %{ref}: %{detail}"
|
8471
8495
|
msgstr ""
|
8472
8496
|
|
8473
|
-
#: ../lib/puppet/type.rb:
|
8497
|
+
#: ../lib/puppet/type.rb:719
|
8474
8498
|
msgid "Undefined attribute '%{attribute}' in %{name}"
|
8475
8499
|
msgstr ""
|
8476
8500
|
|
8477
8501
|
#. TRANSLATORS 'is' is a variable name and should not be translated
|
8478
8502
|
#. TRANSLATORS 'is' is a variable name and should not be translated
|
8479
|
-
#: ../lib/puppet/type.rb:
|
8503
|
+
#: ../lib/puppet/type.rb:1062 ../lib/puppet/type.rb:1073
|
8480
8504
|
msgid "The 'is' value is not in the 'is' array for '%{name}'"
|
8481
8505
|
msgstr ""
|
8482
8506
|
|
8483
|
-
#: ../lib/puppet/type.rb:
|
8507
|
+
#: ../lib/puppet/type.rb:1204
|
8484
8508
|
msgid "%{name} has no providers and has not overridden 'instances'"
|
8485
8509
|
msgstr ""
|
8486
8510
|
|
8487
|
-
#: ../lib/puppet/type.rb:
|
8511
|
+
#: ../lib/puppet/type.rb:1467
|
8488
8512
|
msgid "Cannot add aliases without a catalog"
|
8489
8513
|
msgstr ""
|
8490
8514
|
|
8491
|
-
#: ../lib/puppet/type.rb:
|
8515
|
+
#: ../lib/puppet/type.rb:1547
|
8492
8516
|
msgid "Could not find %{description} %{ref} for %{resource}"
|
8493
8517
|
msgstr ""
|
8494
8518
|
|
8495
|
-
#: ../lib/puppet/type.rb:
|
8519
|
+
#: ../lib/puppet/type.rb:1824
|
8496
8520
|
msgid "Found multiple default providers for %{name}: %{provider_list}; using %{selected_provider}"
|
8497
8521
|
msgstr ""
|
8498
8522
|
|
8499
|
-
#: ../lib/puppet/type.rb:
|
8523
|
+
#: ../lib/puppet/type.rb:1911
|
8500
8524
|
msgid "Could not find parent provider %{parent} of %{name}"
|
8501
8525
|
msgstr ""
|
8502
8526
|
|
8503
|
-
#: ../lib/puppet/type.rb:
|
8527
|
+
#: ../lib/puppet/type.rb:1985
|
8504
8528
|
msgid "Invalid %{resource} provider '%{provider_class}'"
|
8505
8529
|
msgstr ""
|
8506
8530
|
|
8507
|
-
#: ../lib/puppet/type.rb:
|
8531
|
+
#: ../lib/puppet/type.rb:2070
|
8508
8532
|
msgid "Could not find %{name} provider of %{provider}"
|
8509
8533
|
msgstr ""
|
8510
8534
|
|
8511
|
-
#: ../lib/puppet/type.rb:
|
8535
|
+
#: ../lib/puppet/type.rb:2188
|
8512
8536
|
msgid "You cannot add relationships without a catalog"
|
8513
8537
|
msgstr ""
|
8514
8538
|
|
8515
|
-
#: ../lib/puppet/type.rb:
|
8539
|
+
#: ../lib/puppet/type.rb:2491
|
8516
8540
|
msgid "Unable to mark '%{name}' as sensitive: %{name} is a parameter and not a property, and cannot be automatically redacted."
|
8517
8541
|
msgstr ""
|
8518
8542
|
|
8519
|
-
#: ../lib/puppet/type.rb:
|
8543
|
+
#: ../lib/puppet/type.rb:2494
|
8520
8544
|
msgid "Unable to mark '%{name}' as sensitive: the property itself was not assigned a value."
|
8521
8545
|
msgstr ""
|
8522
8546
|
|
8523
|
-
#: ../lib/puppet/type.rb:
|
8547
|
+
#: ../lib/puppet/type.rb:2496
|
8524
8548
|
msgid "Unable to mark '%{name}' as sensitive: the property itself is not defined on %{type}."
|
8525
8549
|
msgstr ""
|
8526
8550
|
|
8527
|
-
#: ../lib/puppet/type.rb:
|
8551
|
+
#: ../lib/puppet/type.rb:2554
|
8528
8552
|
msgid "Could not set %{attribute} on %{class_name}: %{detail}"
|
8529
8553
|
msgstr ""
|
8530
8554
|
|
@@ -8613,75 +8637,75 @@ msgstr ""
|
|
8613
8637
|
msgid "Invalid recurselimit value %{value}"
|
8614
8638
|
msgstr ""
|
8615
8639
|
|
8616
|
-
#: ../lib/puppet/type/file.rb:
|
8640
|
+
#: ../lib/puppet/type/file.rb:418
|
8617
8641
|
msgid "You cannot specify more than one of %{creators}"
|
8618
8642
|
msgstr ""
|
8619
8643
|
|
8620
|
-
#: ../lib/puppet/type/file.rb:
|
8644
|
+
#: ../lib/puppet/type/file.rb:420
|
8621
8645
|
msgid "You cannot specify a remote recursion without a source"
|
8622
8646
|
msgstr ""
|
8623
8647
|
|
8624
|
-
#: ../lib/puppet/type/file.rb:
|
8648
|
+
#: ../lib/puppet/type/file.rb:422
|
8625
8649
|
msgid "You cannot specify source when using checksum 'none'"
|
8626
8650
|
msgstr ""
|
8627
8651
|
|
8628
|
-
#: ../lib/puppet/type/file.rb:
|
8652
|
+
#: ../lib/puppet/type/file.rb:425
|
8629
8653
|
msgid "You cannot specify content when using checksum '%{checksum_type}'"
|
8630
8654
|
msgstr ""
|
8631
8655
|
|
8632
|
-
#: ../lib/puppet/type/file.rb:
|
8656
|
+
#: ../lib/puppet/type/file.rb:428
|
8633
8657
|
msgid "Possible error: recurselimit is set but not recurse, no recursion will happen"
|
8634
8658
|
msgstr ""
|
8635
8659
|
|
8636
|
-
#: ../lib/puppet/type/file.rb:
|
8660
|
+
#: ../lib/puppet/type/file.rb:436
|
8637
8661
|
msgid "Checksum value '%{value}' is not a valid checksum type %{checksum}"
|
8638
8662
|
msgstr ""
|
8639
8663
|
|
8640
|
-
#: ../lib/puppet/type/file.rb:
|
8664
|
+
#: ../lib/puppet/type/file.rb:439
|
8641
8665
|
msgid "Checksum value is ignored unless content or source are specified"
|
8642
8666
|
msgstr ""
|
8643
8667
|
|
8644
|
-
#: ../lib/puppet/type/file.rb:
|
8668
|
+
#: ../lib/puppet/type/file.rb:477
|
8645
8669
|
msgid "Can not find filebucket for backups without a catalog"
|
8646
8670
|
msgstr ""
|
8647
8671
|
|
8648
|
-
#: ../lib/puppet/type/file.rb:
|
8672
|
+
#: ../lib/puppet/type/file.rb:482
|
8649
8673
|
msgid "Could not find filebucket %{backup} specified in backup"
|
8650
8674
|
msgstr ""
|
8651
8675
|
|
8652
|
-
#: ../lib/puppet/type/file.rb:
|
8676
|
+
#: ../lib/puppet/type/file.rb:780
|
8653
8677
|
msgid "Could not back up file of type %{current_type}"
|
8654
8678
|
msgstr ""
|
8655
8679
|
|
8656
|
-
#: ../lib/puppet/type/file.rb:
|
8680
|
+
#: ../lib/puppet/type/file.rb:795
|
8657
8681
|
msgid "Could not remove files of type %{current_type}"
|
8658
8682
|
msgstr ""
|
8659
8683
|
|
8660
8684
|
#. TRANSLATORS "source_permissions => ignore" should not be translated
|
8661
|
-
#: ../lib/puppet/type/file.rb:
|
8685
|
+
#: ../lib/puppet/type/file.rb:806
|
8662
8686
|
msgid "Copying owner/mode/group from the source file on Windows is not supported; use source_permissions => ignore."
|
8663
8687
|
msgstr ""
|
8664
8688
|
|
8665
8689
|
#. TRANSLATORS "stat" is a program name and should not be translated
|
8666
|
-
#: ../lib/puppet/type/file.rb:
|
8690
|
+
#: ../lib/puppet/type/file.rb:887 ../lib/puppet/type/tidy.rb:352
|
8667
8691
|
msgid "Could not stat; permission denied"
|
8668
8692
|
msgstr ""
|
8669
8693
|
|
8670
|
-
#: ../lib/puppet/type/file.rb:
|
8694
|
+
#: ../lib/puppet/type/file.rb:890
|
8671
8695
|
msgid "Could not stat; invalid pathname"
|
8672
8696
|
msgstr ""
|
8673
8697
|
|
8674
|
-
#: ../lib/puppet/type/file.rb:
|
8698
|
+
#: ../lib/puppet/type/file.rb:1018
|
8675
8699
|
msgid "Not removing directory; use 'force' to override"
|
8676
8700
|
msgstr ""
|
8677
8701
|
|
8678
8702
|
#. TRANSLATORS refers to a file which could not be backed up
|
8679
|
-
#: ../lib/puppet/type/file.rb:
|
8703
|
+
#: ../lib/puppet/type/file.rb:1043
|
8680
8704
|
msgid "Could not back up; will not remove"
|
8681
8705
|
msgstr ""
|
8682
8706
|
|
8683
|
-
#: ../lib/puppet/type/file.rb:
|
8684
|
-
msgid "File written to disk did not match checksum; discarding changes (%{content_checksum} vs %{
|
8707
|
+
#: ../lib/puppet/type/file.rb:1058
|
8708
|
+
msgid "File written to disk did not match desired checksum; discarding changes (%{content_checksum} vs %{desired_checksum})"
|
8685
8709
|
msgstr ""
|
8686
8710
|
|
8687
8711
|
#: ../lib/puppet/type/file/checksum.rb:20
|
@@ -8830,11 +8854,19 @@ msgstr ""
|
|
8830
8854
|
msgid "%{value} is not a valid day of the week"
|
8831
8855
|
msgstr ""
|
8832
8856
|
|
8833
|
-
#: ../lib/puppet/type/service.rb:
|
8857
|
+
#: ../lib/puppet/type/service.rb:96
|
8834
8858
|
msgid "Setting enable to %{value} is only supported on Microsoft Windows."
|
8835
8859
|
msgstr ""
|
8836
8860
|
|
8837
|
-
#: ../lib/puppet/type/service.rb:
|
8861
|
+
#: ../lib/puppet/type/service.rb:162
|
8862
|
+
msgid "The 'logonaccount' parameter is mandatory when setting 'logonpassword'."
|
8863
|
+
msgstr ""
|
8864
|
+
|
8865
|
+
#: ../lib/puppet/type/service.rb:163 ../lib/puppet/type/user.rb:256
|
8866
|
+
msgid "Passwords cannot include ':'"
|
8867
|
+
msgstr ""
|
8868
|
+
|
8869
|
+
#: ../lib/puppet/type/service.rb:300
|
8838
8870
|
msgid "\"%{value}\" is not a positive integer: the timeout parameter must be specified as a positive integer"
|
8839
8871
|
msgstr ""
|
8840
8872
|
|
@@ -8873,10 +8905,6 @@ msgstr ""
|
|
8873
8905
|
msgid "Could not find group(s) %{groups}"
|
8874
8906
|
msgstr ""
|
8875
8907
|
|
8876
|
-
#: ../lib/puppet/type/user.rb:256
|
8877
|
-
msgid "Passwords cannot include ':'"
|
8878
|
-
msgstr ""
|
8879
|
-
|
8880
8908
|
#: ../lib/puppet/type/user.rb:276
|
8881
8909
|
msgid "Password minimum age must be provided as a number."
|
8882
8910
|
msgstr ""
|
@@ -8951,70 +8979,70 @@ msgstr ""
|
|
8951
8979
|
msgid "Class name must be provided."
|
8952
8980
|
msgstr ""
|
8953
8981
|
|
8954
|
-
#: ../lib/puppet/util.rb:
|
8982
|
+
#: ../lib/puppet/util.rb:63
|
8955
8983
|
msgid "Unable to retrieve the environment for mode %{mode}"
|
8956
8984
|
msgstr ""
|
8957
8985
|
|
8958
|
-
#: ../lib/puppet/util.rb:
|
8986
|
+
#: ../lib/puppet/util.rb:80
|
8959
8987
|
msgid "Unable to clear the environment for mode %{mode}"
|
8960
8988
|
msgstr ""
|
8961
8989
|
|
8962
|
-
#: ../lib/puppet/util.rb:
|
8990
|
+
#: ../lib/puppet/util.rb:96
|
8963
8991
|
msgid "Unable to set the environment variable %{name} for mode %{mode}"
|
8964
8992
|
msgstr ""
|
8965
8993
|
|
8966
|
-
#: ../lib/puppet/util.rb:
|
8994
|
+
#: ../lib/puppet/util.rb:113
|
8967
8995
|
msgid "Unable to merge given values into the current environment for mode %{mode}"
|
8968
8996
|
msgstr ""
|
8969
8997
|
|
8970
|
-
#: ../lib/puppet/util.rb:
|
8998
|
+
#: ../lib/puppet/util.rb:155
|
8971
8999
|
msgid "could not change to group %{group}: %{detail}"
|
8972
9000
|
msgstr ""
|
8973
9001
|
|
8974
|
-
#: ../lib/puppet/util.rb:
|
9002
|
+
#: ../lib/puppet/util.rb:156
|
8975
9003
|
msgid "could not change to group %{group}"
|
8976
9004
|
msgstr ""
|
8977
9005
|
|
8978
|
-
#: ../lib/puppet/util.rb:
|
9006
|
+
#: ../lib/puppet/util.rb:169
|
8979
9007
|
msgid "Could not change to user %{user}: %{detail}"
|
8980
9008
|
msgstr ""
|
8981
9009
|
|
8982
9010
|
#. TRANSLATORS 'benchmark' is a method name and should not be translated
|
8983
|
-
#: ../lib/puppet/util.rb:
|
9011
|
+
#: ../lib/puppet/util.rb:223
|
8984
9012
|
msgid "Failed to provide level to benchmark"
|
8985
9013
|
msgstr ""
|
8986
9014
|
|
8987
|
-
#: ../lib/puppet/util.rb:
|
9015
|
+
#: ../lib/puppet/util.rb:226
|
8988
9016
|
msgid "Benchmarked object does not respond to %{value}"
|
8989
9017
|
msgstr ""
|
8990
9018
|
|
8991
9019
|
#. TRANSLATORS PATH and HOME are environment variables and should not be translated
|
8992
|
-
#: ../lib/puppet/util.rb:
|
9020
|
+
#: ../lib/puppet/util.rb:266
|
8993
9021
|
msgid "PATH contains a ~ character, and HOME is not set; ignoring PATH element '%{dir}'."
|
8994
9022
|
msgstr ""
|
8995
9023
|
|
8996
9024
|
#. TRANSLATORS PATH is an environment variable and should not be translated
|
8997
|
-
#: ../lib/puppet/util.rb:
|
9025
|
+
#: ../lib/puppet/util.rb:270
|
8998
9026
|
msgid "Couldn't expand PATH containing a ~ character; ignoring PATH element '%{dir}'."
|
8999
9027
|
msgstr ""
|
9000
9028
|
|
9001
|
-
#: ../lib/puppet/util.rb:
|
9029
|
+
#: ../lib/puppet/util.rb:317
|
9002
9030
|
msgid "unknown platform %{platform} in absolute_path"
|
9003
9031
|
msgstr ""
|
9004
9032
|
|
9005
|
-
#: ../lib/puppet/util.rb:
|
9033
|
+
#: ../lib/puppet/util.rb:352
|
9006
9034
|
msgid "Failed to convert '%{path}' to URI: %{detail}"
|
9007
9035
|
msgstr ""
|
9008
9036
|
|
9009
|
-
#: ../lib/puppet/util.rb:
|
9037
|
+
#: ../lib/puppet/util.rb:452
|
9010
9038
|
msgid "path may not be nil"
|
9011
9039
|
msgstr ""
|
9012
9040
|
|
9013
|
-
#: ../lib/puppet/util.rb:
|
9041
|
+
#: ../lib/puppet/util.rb:620
|
9014
9042
|
msgid "replace_file requires a block"
|
9015
9043
|
msgstr ""
|
9016
9044
|
|
9017
|
-
#: ../lib/puppet/util.rb:
|
9045
|
+
#: ../lib/puppet/util.rb:624
|
9018
9046
|
msgid "replace_file default_mode: %{default_mode} is invalid"
|
9019
9047
|
msgstr ""
|
9020
9048
|
|
@@ -9866,11 +9894,11 @@ msgstr ""
|
|
9866
9894
|
msgid "Cannot create group if user '%{name}' exists."
|
9867
9895
|
msgstr ""
|
9868
9896
|
|
9869
|
-
#: ../lib/puppet/util/windows/api_types.rb:
|
9897
|
+
#: ../lib/puppet/util/windows/api_types.rb:85
|
9870
9898
|
msgid "Unable to read wide strings with %{null_terminator} terminal nulls"
|
9871
9899
|
msgstr ""
|
9872
9900
|
|
9873
|
-
#: ../lib/puppet/util/windows/api_types.rb:
|
9901
|
+
#: ../lib/puppet/util/windows/api_types.rb:216
|
9874
9902
|
msgid "Bad GUID format."
|
9875
9903
|
msgstr ""
|
9876
9904
|
|
@@ -9925,16 +9953,20 @@ msgstr ""
|
|
9925
9953
|
msgid "Failed to call GetLongPathName"
|
9926
9954
|
msgstr ""
|
9927
9955
|
|
9928
|
-
#: ../lib/puppet/util/windows/principal.rb:
|
9956
|
+
#: ../lib/puppet/util/windows/principal.rb:67 ../lib/puppet/util/windows/principal.rb:74
|
9929
9957
|
msgid "Failed to call LookupAccountNameW with account: %{account_name}"
|
9930
9958
|
msgstr ""
|
9931
9959
|
|
9932
9960
|
#. TRANSLATORS `lookup_account_sid` is a variable name and should not be translated
|
9933
|
-
#: ../lib/puppet/util/windows/principal.rb:
|
9961
|
+
#: ../lib/puppet/util/windows/principal.rb:97
|
9934
9962
|
msgid "Byte array for lookup_account_sid must not be nil and must be at least 1 byte long"
|
9935
9963
|
msgstr ""
|
9936
9964
|
|
9937
|
-
#: ../lib/puppet/util/windows/principal.rb:
|
9965
|
+
#: ../lib/puppet/util/windows/principal.rb:114
|
9966
|
+
msgid "Byte array for lookup_account_sid is invalid: %{sid_bytes}"
|
9967
|
+
msgstr ""
|
9968
|
+
|
9969
|
+
#: ../lib/puppet/util/windows/principal.rb:122 ../lib/puppet/util/windows/principal.rb:129
|
9938
9970
|
msgid "Failed to call LookupAccountSidW with bytes: %{sid_bytes}"
|
9939
9971
|
msgstr ""
|
9940
9972
|
|
@@ -9970,39 +10002,39 @@ msgstr ""
|
|
9970
10002
|
msgid "Failed to open registry key '%{key}\\%{path}'"
|
9971
10003
|
msgstr ""
|
9972
10004
|
|
9973
|
-
#: ../lib/puppet/util/windows/registry.rb:
|
10005
|
+
#: ../lib/puppet/util/windows/registry.rb:133
|
9974
10006
|
msgid "Failed to enumerate %{key} registry keys at index %{index}"
|
9975
10007
|
msgstr ""
|
9976
10008
|
|
9977
|
-
#: ../lib/puppet/util/windows/registry.rb:
|
10009
|
+
#: ../lib/puppet/util/windows/registry.rb:167
|
9978
10010
|
msgid "Failed to enumerate %{key} registry values at index %{index}"
|
9979
10011
|
msgstr ""
|
9980
10012
|
|
9981
|
-
#: ../lib/puppet/util/windows/registry.rb:
|
10013
|
+
#: ../lib/puppet/util/windows/registry.rb:197
|
9982
10014
|
msgid "Failed to query registry %{key} for sizes"
|
9983
10015
|
msgstr ""
|
9984
10016
|
|
9985
|
-
#: ../lib/puppet/util/windows/registry.rb:
|
10017
|
+
#: ../lib/puppet/util/windows/registry.rb:233
|
9986
10018
|
msgid "Type mismatch (expect %{rtype} but %{type} present)"
|
9987
10019
|
msgstr ""
|
9988
10020
|
|
9989
|
-
#: ../lib/puppet/util/windows/registry.rb:
|
10021
|
+
#: ../lib/puppet/util/windows/registry.rb:255
|
9990
10022
|
msgid "Type %{type} is not supported."
|
9991
10023
|
msgstr ""
|
9992
10024
|
|
9993
|
-
#: ../lib/puppet/util/windows/registry.rb:
|
10025
|
+
#: ../lib/puppet/util/windows/registry.rb:260
|
9994
10026
|
msgid "A value in the registry key %{parent_key_name}%{key} is corrupt or invalid"
|
9995
10027
|
msgstr ""
|
9996
10028
|
|
9997
|
-
#: ../lib/puppet/util/windows/registry.rb:
|
10029
|
+
#: ../lib/puppet/util/windows/registry.rb:282
|
9998
10030
|
msgid "Failed to read registry value %{value} at %{key}"
|
9999
10031
|
msgstr ""
|
10000
10032
|
|
10001
|
-
#: ../lib/puppet/util/windows/registry.rb:
|
10033
|
+
#: ../lib/puppet/util/windows/registry.rb:300
|
10002
10034
|
msgid "Failed to delete registry value %{name} at %{key}"
|
10003
10035
|
msgstr ""
|
10004
10036
|
|
10005
|
-
#: ../lib/puppet/util/windows/registry.rb:
|
10037
|
+
#: ../lib/puppet/util/windows/registry.rb:315
|
10006
10038
|
msgid "Failed to delete registry key %{name} at %{key}"
|
10007
10039
|
msgstr ""
|
10008
10040
|
|
@@ -10044,7 +10076,7 @@ msgstr ""
|
|
10044
10076
|
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"
|
10045
10077
|
msgstr ""
|
10046
10078
|
|
10047
|
-
#: ../lib/puppet/util/windows/security.rb:433 ../lib/puppet/util/windows/security.rb:450 ../lib/puppet/util/windows/sid.rb:155 ../lib/puppet/util/windows/sid.rb:217 ../lib/puppet/util/windows/user.rb:
|
10079
|
+
#: ../lib/puppet/util/windows/security.rb:433 ../lib/puppet/util/windows/security.rb:450 ../lib/puppet/util/windows/sid.rb:155 ../lib/puppet/util/windows/sid.rb:217 ../lib/puppet/util/windows/user.rb:59
|
10048
10080
|
msgid "Invalid SID"
|
10049
10081
|
msgstr ""
|
10050
10082
|
|
@@ -10120,87 +10152,83 @@ msgstr ""
|
|
10120
10152
|
msgid "Unknown start type '%{start_type}' for '%{service_name}'"
|
10121
10153
|
msgstr ""
|
10122
10154
|
|
10123
|
-
#: ../lib/puppet/util/windows/service.rb:
|
10124
|
-
msgid "Unknown start type %{start_type}"
|
10125
|
-
msgstr ""
|
10126
|
-
|
10127
|
-
#: ../lib/puppet/util/windows/service.rb:474
|
10155
|
+
#: ../lib/puppet/util/windows/service.rb:487
|
10128
10156
|
msgid "Failed to update service configuration"
|
10129
10157
|
msgstr ""
|
10130
10158
|
|
10131
|
-
#: ../lib/puppet/util/windows/service.rb:
|
10159
|
+
#: ../lib/puppet/util/windows/service.rb:552
|
10132
10160
|
msgid "Failed to fetch services"
|
10133
10161
|
msgstr ""
|
10134
10162
|
|
10135
|
-
#: ../lib/puppet/util/windows/service.rb:
|
10163
|
+
#: ../lib/puppet/util/windows/service.rb:601
|
10136
10164
|
msgid "Failed to open a handle to the service"
|
10137
10165
|
msgstr ""
|
10138
10166
|
|
10139
|
-
#: ../lib/puppet/util/windows/service.rb:
|
10167
|
+
#: ../lib/puppet/util/windows/service.rb:618
|
10140
10168
|
msgid "Failed to open a handle to the service control manager"
|
10141
10169
|
msgstr ""
|
10142
10170
|
|
10143
|
-
#: ../lib/puppet/util/windows/service.rb:
|
10171
|
+
#: ../lib/puppet/util/windows/service.rb:641
|
10144
10172
|
msgid "The service is already in the %{final_state} state. No further work needs to be done."
|
10145
10173
|
msgstr ""
|
10146
10174
|
|
10147
|
-
#: ../lib/puppet/util/windows/service.rb:
|
10175
|
+
#: ../lib/puppet/util/windows/service.rb:653
|
10148
10176
|
msgid "The service must be in one of the %{valid_initial_states} states to perform this transition. It is currently in the %{current_state} state."
|
10149
10177
|
msgstr ""
|
10150
10178
|
|
10151
|
-
#: ../lib/puppet/util/windows/service.rb:
|
10179
|
+
#: ../lib/puppet/util/windows/service.rb:664
|
10152
10180
|
msgid "There is already a pending transition to the %{final_state} state for the %{service_name} service."
|
10153
10181
|
msgstr ""
|
10154
10182
|
|
10155
|
-
#: ../lib/puppet/util/windows/service.rb:
|
10183
|
+
#: ../lib/puppet/util/windows/service.rb:680
|
10156
10184
|
msgid "The service is in the %{pending_state} state, which is an unsafe pending state."
|
10157
10185
|
msgstr ""
|
10158
10186
|
|
10159
|
-
#: ../lib/puppet/util/windows/service.rb:
|
10187
|
+
#: ../lib/puppet/util/windows/service.rb:685
|
10160
10188
|
msgid "Transitioning the %{service_name} service from %{initial_state} to %{final_state}"
|
10161
10189
|
msgstr ""
|
10162
10190
|
|
10163
|
-
#: ../lib/puppet/util/windows/service.rb:
|
10191
|
+
#: ../lib/puppet/util/windows/service.rb:689
|
10164
10192
|
msgid "Waiting for the transition to finish"
|
10165
10193
|
msgstr ""
|
10166
10194
|
|
10167
|
-
#: ../lib/puppet/util/windows/service.rb:
|
10195
|
+
#: ../lib/puppet/util/windows/service.rb:694
|
10168
10196
|
msgid "Failed to transition the %{service_name} service to the %{final_state} state. Detail: %{detail}"
|
10169
10197
|
msgstr ""
|
10170
10198
|
|
10171
|
-
#: ../lib/puppet/util/windows/service.rb:
|
10199
|
+
#: ../lib/puppet/util/windows/service.rb:733 ../lib/puppet/util/windows/service.rb:769
|
10172
10200
|
msgid "Service query failed"
|
10173
10201
|
msgstr ""
|
10174
10202
|
|
10175
|
-
#: ../lib/puppet/util/windows/service.rb:
|
10203
|
+
#: ../lib/puppet/util/windows/service.rb:812
|
10176
10204
|
msgid "Service query for %{parameter_name} failed"
|
10177
10205
|
msgstr ""
|
10178
10206
|
|
10179
|
-
#: ../lib/puppet/util/windows/service.rb:
|
10207
|
+
#: ../lib/puppet/util/windows/service.rb:835
|
10180
10208
|
msgid "Failed to update service %{change} configuration"
|
10181
10209
|
msgstr ""
|
10182
10210
|
|
10183
|
-
#: ../lib/puppet/util/windows/service.rb:
|
10211
|
+
#: ../lib/puppet/util/windows/service.rb:862
|
10184
10212
|
msgid "Failed to send the %{control_signal} signal to the service. Its current state is %{current_state}. Reason for failure:"
|
10185
10213
|
msgstr ""
|
10186
10214
|
|
10187
|
-
#: ../lib/puppet/util/windows/service.rb:
|
10215
|
+
#: ../lib/puppet/util/windows/service.rb:897
|
10188
10216
|
msgid "The service transitioned to the %{pending_state} state."
|
10189
10217
|
msgstr ""
|
10190
10218
|
|
10191
|
-
#: ../lib/puppet/util/windows/service.rb:
|
10219
|
+
#: ../lib/puppet/util/windows/service.rb:911
|
10192
10220
|
msgid "Timed out while waiting for the service to transition from %{initial_state} to %{final_state} OR from %{initial_state} to %{pending_state} to %{final_state}. The service's current state is %{current_state}."
|
10193
10221
|
msgstr ""
|
10194
10222
|
|
10195
|
-
#: ../lib/puppet/util/windows/service.rb:
|
10223
|
+
#: ../lib/puppet/util/windows/service.rb:926
|
10196
10224
|
msgid "Waiting for the pending transition to the %{final_state} state to finish."
|
10197
10225
|
msgstr ""
|
10198
10226
|
|
10199
|
-
#: ../lib/puppet/util/windows/service.rb:
|
10227
|
+
#: ../lib/puppet/util/windows/service.rb:940
|
10200
10228
|
msgid "Unexpected transition to the %{current_state} state while waiting for the pending transition from %{pending_state} to %{final_state} to finish."
|
10201
10229
|
msgstr ""
|
10202
10230
|
|
10203
|
-
#: ../lib/puppet/util/windows/service.rb:
|
10231
|
+
#: ../lib/puppet/util/windows/service.rb:954
|
10204
10232
|
msgid "Timed out while waiting for the pending transition from %{pending_state} to %{final_state} to finish. The current state is %{current_state}."
|
10205
10233
|
msgstr ""
|
10206
10234
|
|
@@ -10220,23 +10248,23 @@ msgstr ""
|
|
10220
10248
|
msgid "Failed to convert string SID: %{string_sid}"
|
10221
10249
|
msgstr ""
|
10222
10250
|
|
10223
|
-
#: ../lib/puppet/util/windows/user.rb:
|
10251
|
+
#: ../lib/puppet/util/windows/user.rb:54
|
10224
10252
|
msgid "Failed to create administrators SID"
|
10225
10253
|
msgstr ""
|
10226
10254
|
|
10227
|
-
#: ../lib/puppet/util/windows/user.rb:
|
10255
|
+
#: ../lib/puppet/util/windows/user.rb:64
|
10228
10256
|
msgid "Failed to check membership"
|
10229
10257
|
msgstr ""
|
10230
10258
|
|
10231
|
-
#: ../lib/puppet/util/windows/user.rb:
|
10259
|
+
#: ../lib/puppet/util/windows/user.rb:104
|
10232
10260
|
msgid "Failed to logon user %{name}"
|
10233
10261
|
msgstr ""
|
10234
10262
|
|
10235
|
-
#: ../lib/puppet/util/windows/user.rb:
|
10263
|
+
#: ../lib/puppet/util/windows/user.rb:135
|
10236
10264
|
msgid "Failed to load user profile %{user}"
|
10237
10265
|
msgstr ""
|
10238
10266
|
|
10239
|
-
#: ../lib/puppet/util/windows/user.rb:
|
10267
|
+
#: ../lib/puppet/util/windows/user.rb:141
|
10240
10268
|
msgid "Failed to unload user profile %{user}"
|
10241
10269
|
msgstr ""
|
10242
10270
|
|