puppet 6.18.0-universal-darwin → 6.21.1-universal-darwin
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of puppet might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/CODEOWNERS +2 -16
- data/Gemfile +2 -0
- data/Gemfile.lock +37 -34
- data/README.md +1 -2
- data/Rakefile +4 -12
- data/lib/puppet/agent/locker.rb +0 -7
- data/lib/puppet/application.rb +10 -6
- data/lib/puppet/application/agent.rb +9 -3
- data/lib/puppet/application/apply.rb +3 -2
- data/lib/puppet/application/device.rb +1 -0
- data/lib/puppet/application/doc.rb +1 -1
- data/lib/puppet/application/filebucket.rb +2 -2
- data/lib/puppet/application/lookup.rb +5 -5
- data/lib/puppet/application/script.rb +1 -0
- data/lib/puppet/application_support.rb +7 -0
- data/lib/puppet/configurer.rb +50 -8
- data/lib/puppet/defaults.rb +67 -35
- data/lib/puppet/environments.rb +84 -59
- data/lib/puppet/face/catalog.rb +1 -1
- data/lib/puppet/face/config.rb +56 -16
- data/lib/puppet/face/epp.rb +12 -2
- data/lib/puppet/face/facts.rb +60 -0
- data/lib/puppet/face/node.rb +3 -3
- data/lib/puppet/face/node/clean.rb +2 -2
- data/lib/puppet/face/status.rb +1 -1
- data/lib/puppet/ffi/posix.rb +10 -0
- data/lib/puppet/ffi/posix/constants.rb +14 -0
- data/lib/puppet/ffi/posix/functions.rb +24 -0
- data/lib/puppet/file_bucket/dipper.rb +1 -1
- data/lib/puppet/functions/epp.rb +1 -0
- data/lib/puppet/functions/inline_epp.rb +1 -0
- data/lib/puppet/functions/new.rb +8 -3
- data/lib/puppet/http.rb +1 -0
- data/lib/puppet/http/client.rb +1 -1
- data/lib/puppet/http/resolver.rb +5 -8
- data/lib/puppet/http/resolver/server_list.rb +18 -36
- data/lib/puppet/http/resolver/settings.rb +4 -4
- data/lib/puppet/http/resolver/srv.rb +5 -5
- data/lib/puppet/http/service.rb +3 -1
- data/lib/puppet/http/service/compiler.rb +1 -1
- data/lib/puppet/http/service/file_server.rb +1 -1
- data/lib/puppet/http/service/puppetserver.rb +39 -0
- data/lib/puppet/http/session.rb +5 -4
- data/lib/puppet/indirector/catalog/compiler.rb +1 -1
- data/lib/puppet/indirector/fact_search.rb +60 -0
- data/lib/puppet/indirector/facts/json.rb +27 -0
- data/lib/puppet/indirector/facts/yaml.rb +4 -59
- data/lib/puppet/indirector/json.rb +5 -1
- data/lib/puppet/indirector/msgpack.rb +1 -1
- data/lib/puppet/indirector/node/json.rb +8 -0
- data/lib/puppet/indirector/report/json.rb +34 -0
- data/lib/puppet/indirector/request.rb +4 -4
- data/lib/puppet/indirector/yaml.rb +1 -1
- data/lib/puppet/module_tool/applications/installer.rb +48 -2
- data/lib/puppet/module_tool/errors/shared.rb +17 -2
- data/lib/puppet/network/formats.rb +2 -1
- data/lib/puppet/network/http/api/master/v3/environments.rb +0 -1
- data/lib/puppet/node/facts.rb +17 -0
- data/lib/puppet/pal/pal_impl.rb +70 -17
- data/lib/puppet/parser/ast/leaf.rb +3 -2
- data/lib/puppet/parser/templatewrapper.rb +1 -1
- data/lib/puppet/pops/evaluator/collectors/abstract_collector.rb +1 -3
- data/lib/puppet/pops/evaluator/deferred_resolver.rb +5 -3
- data/lib/puppet/pops/evaluator/evaluator_impl.rb +22 -3
- data/lib/puppet/pops/evaluator/runtime3_converter.rb +2 -2
- data/lib/puppet/pops/model/ast_transformer.rb +1 -1
- data/lib/puppet/pops/types/p_meta_type.rb +1 -1
- data/lib/puppet/pops/types/p_type_set_type.rb +4 -0
- data/lib/puppet/property/list.rb +1 -1
- data/lib/puppet/provider/group/groupadd.rb +13 -8
- data/lib/puppet/provider/package/apt.rb +34 -2
- data/lib/puppet/provider/package/aptitude.rb +6 -0
- data/lib/puppet/provider/package/dpkg.rb +1 -1
- data/lib/puppet/provider/package/pip2.rb +17 -0
- data/lib/puppet/provider/package/puppetserver_gem.rb +180 -0
- data/lib/puppet/provider/package/yum.rb +1 -0
- data/lib/puppet/provider/service/debian.rb +2 -0
- data/lib/puppet/provider/user/aix.rb +2 -2
- data/lib/puppet/provider/user/useradd.rb +62 -8
- data/lib/puppet/reference/configuration.rb +6 -5
- data/lib/puppet/resource/type.rb +2 -1
- data/lib/puppet/rest/route.rb +2 -2
- data/lib/puppet/settings.rb +62 -20
- data/lib/puppet/settings/alias_setting.rb +37 -0
- data/lib/puppet/settings/base_setting.rb +26 -2
- data/lib/puppet/transaction/report.rb +11 -7
- data/lib/puppet/type/file/source.rb +1 -1
- data/lib/puppet/type/filebucket.rb +1 -1
- data/lib/puppet/type/package.rb +3 -3
- data/lib/puppet/util/autoload.rb +1 -8
- data/lib/puppet/util/connection.rb +8 -8
- data/lib/puppet/util/fact_dif.rb +62 -0
- data/lib/puppet/util/posix.rb +54 -5
- data/lib/puppet/util/rubygems.rb +5 -1
- data/lib/puppet/util/run_mode.rb +5 -1
- data/lib/puppet/util/windows/service.rb +1 -1
- data/lib/puppet/version.rb +1 -1
- data/locales/puppet.pot +289 -268
- data/man/man5/puppet.conf.5 +33 -17
- data/man/man8/puppet-agent.8 +7 -4
- data/man/man8/puppet-apply.8 +2 -2
- data/man/man8/puppet-catalog.8 +1 -1
- data/man/man8/puppet-config.8 +6 -6
- data/man/man8/puppet-describe.8 +1 -1
- data/man/man8/puppet-device.8 +2 -2
- data/man/man8/puppet-doc.8 +1 -1
- data/man/man8/puppet-epp.8 +1 -1
- data/man/man8/puppet-facts.8 +32 -1
- data/man/man8/puppet-filebucket.8 +3 -3
- data/man/man8/puppet-generate.8 +1 -1
- data/man/man8/puppet-help.8 +1 -1
- data/man/man8/puppet-key.8 +1 -1
- data/man/man8/puppet-lookup.8 +1 -1
- data/man/man8/puppet-man.8 +1 -1
- data/man/man8/puppet-module.8 +1 -1
- data/man/man8/puppet-node.8 +7 -4
- data/man/man8/puppet-parser.8 +1 -1
- data/man/man8/puppet-plugin.8 +1 -1
- data/man/man8/puppet-report.8 +4 -1
- data/man/man8/puppet-resource.8 +1 -1
- data/man/man8/puppet-script.8 +2 -2
- data/man/man8/puppet-ssl.8 +1 -1
- data/man/man8/puppet-status.8 +2 -2
- data/man/man8/puppet.8 +2 -2
- data/spec/fixtures/integration/application/agent/cached_deferred_catalog.json +91 -0
- data/spec/fixtures/unit/provider/package/puppetserver_gem/gem-list-local-packages +30 -0
- data/spec/fixtures/unit/provider/user/aix/aix_passwd_file.out +4 -0
- data/spec/integration/application/agent_spec.rb +183 -22
- data/spec/integration/application/apply_spec.rb +19 -0
- data/spec/integration/application/filebucket_spec.rb +7 -7
- data/spec/integration/application/plugin_spec.rb +3 -3
- data/spec/integration/configurer_spec.rb +14 -0
- data/spec/integration/defaults_spec.rb +19 -1
- data/spec/integration/environments/setting_hooks_spec.rb +1 -1
- data/spec/integration/resource/type_collection_spec.rb +2 -6
- data/spec/integration/transaction_spec.rb +4 -9
- data/spec/integration/util/windows/adsi_spec.rb +5 -3
- data/spec/integration/util/windows/registry_spec.rb +0 -10
- data/spec/lib/puppet_spec/settings.rb +6 -1
- data/spec/shared_contexts/types_setup.rb +2 -0
- data/spec/spec_helper.rb +1 -4
- data/spec/unit/agent_spec.rb +8 -6
- data/spec/unit/application/agent_spec.rb +0 -1
- data/spec/unit/application/config_spec.rb +224 -4
- data/spec/unit/application/doc_spec.rb +2 -2
- data/spec/unit/application/facts_spec.rb +3 -1
- data/spec/unit/application/filebucket_spec.rb +0 -2
- data/spec/unit/application_spec.rb +60 -13
- data/spec/unit/configurer_spec.rb +39 -6
- data/spec/unit/confine/feature_spec.rb +1 -1
- data/spec/unit/confine_spec.rb +8 -2
- data/spec/unit/defaults_spec.rb +20 -1
- data/spec/unit/environments_spec.rb +176 -32
- data/spec/unit/face/config_spec.rb +62 -11
- data/spec/unit/face/node_spec.rb +2 -13
- data/spec/unit/file_serving/configuration/parser_spec.rb +0 -1
- data/spec/unit/file_serving/metadata_spec.rb +3 -3
- data/spec/unit/file_serving/terminus_helper_spec.rb +11 -4
- data/spec/unit/file_system_spec.rb +1 -2
- data/spec/unit/forge/module_release_spec.rb +2 -7
- data/spec/unit/functions/inline_epp_spec.rb +26 -1
- data/spec/unit/http/resolver_spec.rb +24 -4
- data/spec/unit/http/service/ca_spec.rb +2 -2
- data/spec/unit/http/service/compiler_spec.rb +51 -2
- data/spec/unit/http/service/file_server_spec.rb +2 -2
- data/spec/unit/http/service/puppetserver_spec.rb +82 -0
- data/spec/unit/http/service/report_spec.rb +2 -2
- data/spec/unit/http/service_spec.rb +1 -1
- data/spec/unit/http/session_spec.rb +8 -20
- data/spec/unit/indirector/catalog/json_spec.rb +1 -1
- data/spec/unit/indirector/catalog/rest_spec.rb +1 -1
- data/spec/unit/indirector/face_spec.rb +0 -1
- data/spec/unit/indirector/facts/facter_spec.rb +0 -1
- data/spec/unit/indirector/facts/json_spec.rb +255 -0
- data/spec/unit/indirector/facts/rest_spec.rb +1 -1
- data/spec/unit/indirector/file_bucket_file/selector_spec.rb +26 -8
- data/spec/unit/indirector/indirection_spec.rb +8 -12
- data/spec/unit/indirector/json_spec.rb +8 -8
- data/spec/unit/indirector/key/file_spec.rb +0 -1
- data/spec/unit/indirector/msgpack_spec.rb +8 -8
- data/spec/unit/indirector/node/json_spec.rb +33 -0
- data/spec/unit/indirector/node/rest_spec.rb +1 -1
- data/spec/{integration/indirector/report/yaml.rb → unit/indirector/report/json_spec.rb} +13 -24
- data/spec/unit/indirector/report/yaml_spec.rb +72 -8
- data/spec/unit/indirector/request_spec.rb +4 -4
- data/spec/unit/indirector/rest_spec.rb +1 -1
- data/spec/unit/indirector/status/rest_spec.rb +1 -1
- data/spec/unit/indirector/yaml_spec.rb +7 -7
- data/spec/unit/indirector_spec.rb +2 -2
- data/spec/unit/module_tool/applications/installer_spec.rb +66 -0
- data/spec/unit/network/authconfig_spec.rb +0 -3
- data/spec/unit/network/http/api/indirected_routes_spec.rb +0 -9
- data/spec/unit/network/http/api/master/v3/environments_spec.rb +12 -23
- data/spec/unit/network/http/handler_spec.rb +0 -5
- data/spec/unit/parser/compiler_spec.rb +3 -19
- data/spec/unit/parser/resource_spec.rb +14 -8
- data/spec/unit/parser/templatewrapper_spec.rb +4 -3
- data/spec/unit/pops/evaluator/deferred_resolver_spec.rb +20 -0
- data/spec/unit/property_spec.rb +1 -0
- data/spec/unit/provider/exec_spec.rb +4 -3
- data/spec/unit/provider/group/groupadd_spec.rb +5 -2
- data/spec/unit/provider/nameservice_spec.rb +66 -65
- data/spec/unit/provider/package/apt_spec.rb +28 -23
- data/spec/unit/provider/package/aptitude_spec.rb +1 -1
- data/spec/unit/provider/package/base_spec.rb +6 -5
- data/spec/unit/provider/package/dpkg_spec.rb +22 -7
- data/spec/unit/provider/package/openbsd_spec.rb +2 -0
- data/spec/unit/provider/package/pacman_spec.rb +18 -12
- data/spec/unit/provider/package/pip2_spec.rb +36 -0
- data/spec/unit/provider/package/pip_spec.rb +6 -11
- data/spec/unit/provider/package/pkgdmg_spec.rb +0 -4
- data/spec/unit/provider/package/puppetserver_gem_spec.rb +137 -0
- data/spec/unit/provider/package/yum_spec.rb +31 -0
- data/spec/unit/provider/service/base_spec.rb +2 -4
- data/spec/unit/provider/service/bsd_spec.rb +5 -1
- data/spec/unit/provider/service/daemontools_spec.rb +1 -1
- data/spec/unit/provider/service/debian_spec.rb +3 -5
- data/spec/unit/provider/service/freebsd_spec.rb +1 -1
- data/spec/unit/provider/service/gentoo_spec.rb +4 -5
- data/spec/unit/provider/service/init_spec.rb +4 -5
- data/spec/unit/provider/service/launchd_spec.rb +5 -6
- data/spec/unit/provider/service/openrc_spec.rb +4 -5
- data/spec/unit/provider/service/openwrt_spec.rb +1 -1
- data/spec/unit/provider/service/redhat_spec.rb +1 -1
- data/spec/unit/provider/service/runit_spec.rb +2 -1
- data/spec/unit/provider/service/smf_spec.rb +1 -1
- data/spec/unit/provider/service/src_spec.rb +3 -5
- data/spec/unit/provider/service/systemd_spec.rb +3 -1
- data/spec/unit/provider/service/upstart_spec.rb +4 -5
- data/spec/unit/provider/user/aix_spec.rb +5 -0
- data/spec/unit/provider/user/hpux_spec.rb +1 -1
- data/spec/unit/provider/user/pw_spec.rb +2 -0
- data/spec/unit/provider/user/useradd_spec.rb +56 -3
- data/spec/unit/provider_spec.rb +8 -10
- data/spec/unit/puppet_pal_catalog_spec.rb +45 -0
- data/spec/unit/resource/capability_finder_spec.rb +6 -1
- data/spec/unit/resource/type_spec.rb +1 -1
- data/spec/unit/resource_spec.rb +11 -10
- data/spec/unit/rest/route_spec.rb +4 -4
- data/spec/unit/settings_spec.rb +576 -239
- data/spec/unit/ssl/base_spec.rb +0 -1
- data/spec/unit/ssl/host_spec.rb +0 -5
- data/spec/unit/ssl/ssl_provider_spec.rb +14 -8
- data/spec/unit/transaction/additional_resource_generator_spec.rb +3 -7
- data/spec/unit/transaction/event_manager_spec.rb +14 -11
- data/spec/unit/transaction/report_spec.rb +2 -0
- data/spec/unit/transaction_spec.rb +13 -4
- data/spec/unit/type/file/content_spec.rb +0 -1
- data/spec/unit/type/file/selinux_spec.rb +0 -2
- data/spec/unit/type/file/source_spec.rb +1 -1
- data/spec/unit/type/file_spec.rb +0 -6
- data/spec/unit/type/filebucket_spec.rb +1 -1
- data/spec/unit/type/group_spec.rb +13 -6
- data/spec/unit/type/resources_spec.rb +7 -7
- data/spec/unit/type/service_spec.rb +1 -1
- data/spec/unit/type/tidy_spec.rb +0 -1
- data/spec/unit/type_spec.rb +2 -2
- data/spec/unit/util/at_fork_spec.rb +2 -2
- data/spec/unit/util/autoload_spec.rb +5 -1
- data/spec/unit/util/backups_spec.rb +1 -2
- data/spec/unit/util/execution_spec.rb +15 -11
- data/spec/unit/util/inifile_spec.rb +6 -14
- data/spec/unit/util/log_spec.rb +8 -7
- data/spec/unit/util/logging_spec.rb +3 -3
- data/spec/unit/util/posix_spec.rb +363 -15
- data/spec/unit/util/rubygems_spec.rb +2 -2
- data/spec/unit/util/run_mode_spec.rb +6 -6
- data/spec/unit/util/selinux_spec.rb +76 -52
- data/spec/unit/util/storage_spec.rb +3 -1
- data/spec/unit/util/suidmanager_spec.rb +44 -41
- data/spec/unit/util_spec.rb +13 -6
- metadata +32 -10
- data/spec/integration/application/config_spec.rb +0 -74
- data/spec/unit/face/catalog_spec.rb +0 -6
- data/spec/unit/face/module_spec.rb +0 -3
data/locales/puppet.pot
CHANGED
@@ -1,16 +1,16 @@
|
|
1
1
|
# SOME DESCRIPTIVE TITLE.
|
2
|
-
# Copyright (C)
|
2
|
+
# Copyright (C) 2021 Puppet, Inc.
|
3
3
|
# This file is distributed under the same license as the Puppet automation framework package.
|
4
|
-
# FIRST AUTHOR <EMAIL@ADDRESS>,
|
4
|
+
# FIRST AUTHOR <EMAIL@ADDRESS>, 2021.
|
5
5
|
#
|
6
6
|
#, fuzzy
|
7
7
|
msgid ""
|
8
8
|
msgstr ""
|
9
|
-
"Project-Id-Version: Puppet automation framework 6.
|
9
|
+
"Project-Id-Version: Puppet automation framework 6.19.1-133-gcc65fe8151\n"
|
10
10
|
"\n"
|
11
11
|
"Report-Msgid-Bugs-To: https://tickets.puppetlabs.com\n"
|
12
|
-
"POT-Creation-Date:
|
13
|
-
"PO-Revision-Date:
|
12
|
+
"POT-Creation-Date: 2021-01-14 12:33+0000\n"
|
13
|
+
"PO-Revision-Date: 2021-01-14 12:33+0000\n"
|
14
14
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
15
15
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
16
16
|
"Language: \n"
|
@@ -120,16 +120,6 @@ msgstr ""
|
|
120
120
|
msgid "Failed to acquire lock"
|
121
121
|
msgstr ""
|
122
122
|
|
123
|
-
#. TRANSLATORS 'Puppet::Agent::Locker.running?' is a method name and should not be translated
|
124
|
-
#: ../lib/puppet/agent/locker.rb:33
|
125
|
-
msgid "Puppet::Agent::Locker.running? is deprecated as it is inherently unsafe."
|
126
|
-
msgstr ""
|
127
|
-
|
128
|
-
#. TRANSLATORS 'LockError' should not be translated
|
129
|
-
#: ../lib/puppet/agent/locker.rb:35
|
130
|
-
msgid "The only safe way to know if the lock is locked is to try lock and perform some action and then handle the LockError that may result."
|
131
|
-
msgstr ""
|
132
|
-
|
133
123
|
#: ../lib/puppet/application.rb:238
|
134
124
|
msgid "Unable to find application '%{application_name}'. %{error}"
|
135
125
|
msgstr ""
|
@@ -178,11 +168,11 @@ msgstr ""
|
|
178
168
|
msgid "No valid command or main"
|
179
169
|
msgstr ""
|
180
170
|
|
181
|
-
#: ../lib/puppet/application.rb:
|
171
|
+
#: ../lib/puppet/application.rb:431
|
182
172
|
msgid "Could not set logdest to %{dest}."
|
183
173
|
msgstr ""
|
184
174
|
|
185
|
-
#: ../lib/puppet/application.rb:
|
175
|
+
#: ../lib/puppet/application.rb:508
|
186
176
|
msgid "No help available for puppet %{app_name}"
|
187
177
|
msgstr ""
|
188
178
|
|
@@ -194,19 +184,19 @@ msgstr ""
|
|
194
184
|
msgid "The puppet agent daemon"
|
195
185
|
msgstr ""
|
196
186
|
|
197
|
-
#: ../lib/puppet/application/agent.rb:
|
187
|
+
#: ../lib/puppet/application/agent.rb:415
|
198
188
|
msgid "Fingerprint asked but neither the certificate, nor the certificate request have been issued"
|
199
189
|
msgstr ""
|
200
190
|
|
201
|
-
#: ../lib/puppet/application/agent.rb:
|
191
|
+
#: ../lib/puppet/application/agent.rb:420
|
202
192
|
msgid "Failed to generate fingerprint: %{message}"
|
203
193
|
msgstr ""
|
204
194
|
|
205
|
-
#: ../lib/puppet/application/agent.rb:
|
195
|
+
#: ../lib/puppet/application/agent.rb:443
|
206
196
|
msgid "Starting Puppet client version %{version}"
|
207
197
|
msgstr ""
|
208
198
|
|
209
|
-
#: ../lib/puppet/application/agent.rb:
|
199
|
+
#: ../lib/puppet/application/agent.rb:459
|
210
200
|
msgid "The puppet agent command does not take parameters"
|
211
201
|
msgstr ""
|
212
202
|
|
@@ -216,35 +206,35 @@ msgstr ""
|
|
216
206
|
|
217
207
|
#. TRANSLATORS "puppet apply" is a program command and should not be translated
|
218
208
|
#. TRANSLATORS "puppet apply" is a program command and should not be translated
|
219
|
-
#: ../lib/puppet/application/apply.rb:
|
209
|
+
#: ../lib/puppet/application/apply.rb:208 ../lib/puppet/application/apply.rb:321
|
220
210
|
msgid "For puppet apply"
|
221
211
|
msgstr ""
|
222
212
|
|
223
|
-
#: ../lib/puppet/application/apply.rb:
|
213
|
+
#: ../lib/puppet/application/apply.rb:216
|
224
214
|
msgid "%{file} is not readable"
|
225
215
|
msgstr ""
|
226
216
|
|
227
|
-
#: ../lib/puppet/application/apply.rb:
|
217
|
+
#: ../lib/puppet/application/apply.rb:287 ../lib/puppet/application/script.rb:240
|
228
218
|
msgid "Exiting"
|
229
219
|
msgstr ""
|
230
220
|
|
231
|
-
#: ../lib/puppet/application/apply.rb:
|
221
|
+
#: ../lib/puppet/application/apply.rb:331
|
232
222
|
msgid "Could not deserialize catalog from %{format}: %{detail}"
|
233
223
|
msgstr ""
|
234
224
|
|
235
|
-
#: ../lib/puppet/application/apply.rb:
|
225
|
+
#: ../lib/puppet/application/apply.rb:352 ../lib/puppet/application/script.rb:145
|
236
226
|
msgid "Could not find facts for %{node}"
|
237
227
|
msgstr ""
|
238
228
|
|
239
|
-
#: ../lib/puppet/application/apply.rb:
|
229
|
+
#: ../lib/puppet/application/apply.rb:364 ../lib/puppet/application/script.rb:153
|
240
230
|
msgid "Could not find node %{node}"
|
241
231
|
msgstr ""
|
242
232
|
|
243
|
-
#: ../lib/puppet/application/apply.rb:
|
233
|
+
#: ../lib/puppet/application/apply.rb:377 ../lib/puppet/application/script.rb:138
|
244
234
|
msgid "Could not find file %{manifest}"
|
245
235
|
msgstr ""
|
246
236
|
|
247
|
-
#: ../lib/puppet/application/apply.rb:
|
237
|
+
#: ../lib/puppet/application/apply.rb:378
|
248
238
|
msgid "Only one file can be applied per run. Skipping %{files}"
|
249
239
|
msgstr ""
|
250
240
|
|
@@ -260,47 +250,47 @@ msgstr ""
|
|
260
250
|
msgid "Manage remote network devices"
|
261
251
|
msgstr ""
|
262
252
|
|
263
|
-
#: ../lib/puppet/application/device.rb:
|
253
|
+
#: ../lib/puppet/application/device.rb:231
|
264
254
|
msgid "resource command requires target"
|
265
255
|
msgstr ""
|
266
256
|
|
267
|
-
#: ../lib/puppet/application/device.rb:
|
257
|
+
#: ../lib/puppet/application/device.rb:234
|
268
258
|
msgid "facts command requires target"
|
269
259
|
msgstr ""
|
270
260
|
|
271
|
-
#: ../lib/puppet/application/device.rb:
|
261
|
+
#: ../lib/puppet/application/device.rb:237
|
272
262
|
msgid "missing argument: --target is required when using --apply"
|
273
263
|
msgstr ""
|
274
264
|
|
275
|
-
#: ../lib/puppet/application/device.rb:
|
265
|
+
#: ../lib/puppet/application/device.rb:238
|
276
266
|
msgid "%{file} does not exist, cannot apply"
|
277
267
|
msgstr ""
|
278
268
|
|
279
|
-
#: ../lib/puppet/application/device.rb:
|
269
|
+
#: ../lib/puppet/application/device.rb:256
|
280
270
|
msgid "Target device / certificate '%{target}' not found in %{config}"
|
281
271
|
msgstr ""
|
282
272
|
|
283
|
-
#: ../lib/puppet/application/device.rb:
|
273
|
+
#: ../lib/puppet/application/device.rb:258
|
284
274
|
msgid "No device found in %{config}"
|
285
275
|
msgstr ""
|
286
276
|
|
287
|
-
#: ../lib/puppet/application/device.rb:
|
277
|
+
#: ../lib/puppet/application/device.rb:317
|
288
278
|
msgid "retrieving resource: %{resource} from %{target} at %{scheme}%{url_host}%{port}%{url_path}"
|
289
279
|
msgstr ""
|
290
280
|
|
291
|
-
#: ../lib/puppet/application/device.rb:
|
281
|
+
#: ../lib/puppet/application/device.rb:332
|
292
282
|
msgid "retrieving facts from %{target} at %{scheme}%{url_host}%{port}%{url_path}"
|
293
283
|
msgstr ""
|
294
284
|
|
295
|
-
#: ../lib/puppet/application/device.rb:
|
285
|
+
#: ../lib/puppet/application/device.rb:355
|
296
286
|
msgid "starting applying configuration to %{target} at %{scheme}%{url_host}%{port}%{url_path}"
|
297
287
|
msgstr ""
|
298
288
|
|
299
|
-
#: ../lib/puppet/application/device.rb:
|
289
|
+
#: ../lib/puppet/application/device.rb:393 ../lib/puppet/application/resource.rb:196
|
300
290
|
msgid "You must specify the type to display"
|
301
291
|
msgstr ""
|
302
292
|
|
303
|
-
#: ../lib/puppet/application/device.rb:
|
293
|
+
#: ../lib/puppet/application/device.rb:394 ../lib/puppet/application/resource.rb:197
|
304
294
|
msgid "Could not find type %{type}"
|
305
295
|
msgstr ""
|
306
296
|
|
@@ -400,31 +390,31 @@ msgid ""
|
|
400
390
|
"%{run_help}"
|
401
391
|
msgstr ""
|
402
392
|
|
403
|
-
#: ../lib/puppet/application/lookup.rb:
|
393
|
+
#: ../lib/puppet/application/lookup.rb:105
|
404
394
|
msgid "Interactive Hiera lookup"
|
405
395
|
msgstr ""
|
406
396
|
|
407
|
-
#: ../lib/puppet/application/lookup.rb:
|
397
|
+
#: ../lib/puppet/application/lookup.rb:272
|
408
398
|
msgid ""
|
409
399
|
"The options %{deep_merge_opts} are only available with '--merge deep'\n"
|
410
400
|
"%{run_help}"
|
411
401
|
msgstr ""
|
412
402
|
|
413
|
-
#: ../lib/puppet/application/lookup.rb:
|
403
|
+
#: ../lib/puppet/application/lookup.rb:283
|
414
404
|
msgid ""
|
415
405
|
"The --merge option only accepts %{strategies}, or %{last_strategy}\n"
|
416
406
|
"%{run_help}"
|
417
407
|
msgstr ""
|
418
408
|
|
419
|
-
#: ../lib/puppet/application/lookup.rb:
|
409
|
+
#: ../lib/puppet/application/lookup.rb:308
|
420
410
|
msgid "No keys were given to lookup."
|
421
411
|
msgstr ""
|
422
412
|
|
423
|
-
#: ../lib/puppet/application/lookup.rb:
|
413
|
+
#: ../lib/puppet/application/lookup.rb:316
|
424
414
|
msgid "Unknown rendering format '%{format}'"
|
425
415
|
msgstr ""
|
426
416
|
|
427
|
-
#: ../lib/puppet/application/lookup.rb:
|
417
|
+
#: ../lib/puppet/application/lookup.rb:366 ../lib/puppet/face/epp.rb:530
|
428
418
|
msgid "Incorrect formatted data in %{fact_file} given via the --facts flag"
|
429
419
|
msgstr ""
|
430
420
|
|
@@ -448,11 +438,11 @@ msgstr ""
|
|
448
438
|
msgid "Run a puppet manifests as a script without compiling a catalog"
|
449
439
|
msgstr ""
|
450
440
|
|
451
|
-
#: ../lib/puppet/application/script.rb:
|
441
|
+
#: ../lib/puppet/application/script.rb:125
|
452
442
|
msgid "Bolt must be installed to use the script application"
|
453
443
|
msgstr ""
|
454
444
|
|
455
|
-
#: ../lib/puppet/application/script.rb:
|
445
|
+
#: ../lib/puppet/application/script.rb:139
|
456
446
|
msgid "Only one file can be used per run. Skipping %{files}"
|
457
447
|
msgstr ""
|
458
448
|
|
@@ -536,101 +526,105 @@ msgstr ""
|
|
536
526
|
msgid "Cannot remove %{file}: %{detail}"
|
537
527
|
msgstr ""
|
538
528
|
|
539
|
-
#: ../lib/puppet/configurer.rb:
|
529
|
+
#: ../lib/puppet/configurer.rb:80
|
540
530
|
msgid "Using cached catalog from environment '%{environment}'"
|
541
531
|
msgstr ""
|
542
532
|
|
543
|
-
#: ../lib/puppet/configurer.rb:
|
533
|
+
#: ../lib/puppet/configurer.rb:86
|
544
534
|
msgid "Not using cache on failed catalog"
|
545
535
|
msgstr ""
|
546
536
|
|
547
|
-
#: ../lib/puppet/configurer.rb:
|
537
|
+
#: ../lib/puppet/configurer.rb:95
|
548
538
|
msgid "Not using cached catalog because its environment '%{catalog_env}' does not match '%{local_env}'"
|
549
539
|
msgstr ""
|
550
540
|
|
551
|
-
#: ../lib/puppet/configurer.rb:
|
541
|
+
#: ../lib/puppet/configurer.rb:100 ../lib/puppet/configurer.rb:182
|
552
542
|
msgid "Using cached catalog from environment '%{catalog_env}'"
|
553
543
|
msgstr ""
|
554
544
|
|
555
|
-
#: ../lib/puppet/configurer.rb:
|
545
|
+
#: ../lib/puppet/configurer.rb:175
|
556
546
|
msgid "Could not retrieve catalog; skipping run"
|
557
547
|
msgstr ""
|
558
548
|
|
559
|
-
#: ../lib/puppet/configurer.rb:
|
549
|
+
#: ../lib/puppet/configurer.rb:191
|
560
550
|
msgid "Applied catalog in %{seconds} seconds"
|
561
551
|
msgstr ""
|
562
552
|
|
563
|
-
#: ../lib/puppet/configurer.rb:
|
564
|
-
msgid "Could not select a functional puppet
|
553
|
+
#: ../lib/puppet/configurer.rb:227
|
554
|
+
msgid "Could not select a functional puppet server from server_list: '%{server_list}'"
|
565
555
|
msgstr ""
|
566
556
|
|
567
|
-
|
557
|
+
#. TRANSLATORS 'server_list' is the name of a setting and should not be translated
|
558
|
+
#: ../lib/puppet/configurer.rb:241
|
559
|
+
msgid "Selected puppet server from the `server_list` setting: %{server}:%{port}"
|
560
|
+
msgstr ""
|
561
|
+
|
562
|
+
#: ../lib/puppet/configurer.rb:277
|
568
563
|
msgid "Local environment: '%{local_env}' doesn't match the environment of the cached catalog '%{catalog_env}', switching agent to '%{catalog_env}'."
|
569
564
|
msgstr ""
|
570
565
|
|
571
|
-
#: ../lib/puppet/configurer.rb:
|
566
|
+
#: ../lib/puppet/configurer.rb:322
|
572
567
|
msgid "Local environment: '%{local_env}' doesn't match server specified node environment '%{node_env}', switching agent to '%{node_env}'."
|
573
568
|
msgstr ""
|
574
569
|
|
575
|
-
#: ../lib/puppet/configurer.rb:
|
570
|
+
#: ../lib/puppet/configurer.rb:337
|
576
571
|
msgid "Using configured environment '%{env}'"
|
577
572
|
msgstr ""
|
578
573
|
|
579
|
-
#: ../lib/puppet/configurer.rb:
|
574
|
+
#: ../lib/puppet/configurer.rb:341
|
580
575
|
msgid "Unable to fetch my node definition, but the agent run will continue:"
|
581
576
|
msgstr ""
|
582
577
|
|
583
|
-
#: ../lib/puppet/configurer.rb:
|
578
|
+
#: ../lib/puppet/configurer.rb:369
|
584
579
|
msgid "Not using catalog because its environment '%{catalog_env}' does not match agent specified environment '%{local_env}' and strict_environment_mode is set"
|
585
580
|
msgstr ""
|
586
581
|
|
587
|
-
#: ../lib/puppet/configurer.rb:
|
582
|
+
#: ../lib/puppet/configurer.rb:380
|
588
583
|
msgid "Catalog environment didn't stabilize after %{tries} fetches, aborting run"
|
589
584
|
msgstr ""
|
590
585
|
|
591
|
-
#: ../lib/puppet/configurer.rb:
|
586
|
+
#: ../lib/puppet/configurer.rb:382
|
592
587
|
msgid "Local environment: '%{local_env}' doesn't match server specified environment '%{catalog_env}', restarting agent run with environment '%{catalog_env}'"
|
593
588
|
msgstr ""
|
594
589
|
|
595
|
-
#: ../lib/puppet/configurer.rb:
|
590
|
+
#: ../lib/puppet/configurer.rb:426
|
596
591
|
msgid "Failed to apply catalog: %{detail}"
|
597
592
|
msgstr ""
|
598
593
|
|
599
|
-
#: ../lib/puppet/configurer.rb:
|
594
|
+
#: ../lib/puppet/configurer.rb:455 ../lib/puppet/http/resolver/server_list.rb:67
|
600
595
|
msgid "Puppet server %{host}:%{port} is unavailable: %{code} %{reason}"
|
601
596
|
msgstr ""
|
602
597
|
|
603
598
|
#. TRANSLATORS 'server_list' is the name of a setting and should not be translated
|
604
|
-
|
605
|
-
#: ../lib/puppet/configurer.rb:435 ../lib/puppet/http/resolver/server_list.rb:95
|
599
|
+
#: ../lib/puppet/configurer.rb:459 ../lib/puppet/http/resolver/server_list.rb:70
|
606
600
|
msgid "Unable to connect to server from server_list setting: %{detail}"
|
607
601
|
msgstr ""
|
608
602
|
|
609
|
-
#: ../lib/puppet/configurer.rb:
|
603
|
+
#: ../lib/puppet/configurer.rb:470 ../lib/puppet/face/report.rb:47
|
610
604
|
msgid "Could not send report: %{detail}"
|
611
605
|
msgstr ""
|
612
606
|
|
613
|
-
#: ../lib/puppet/configurer.rb:
|
607
|
+
#: ../lib/puppet/configurer.rb:479
|
614
608
|
msgid "Could not save last run local report: %{detail}"
|
615
609
|
msgstr ""
|
616
610
|
|
617
|
-
#: ../lib/puppet/configurer.rb:
|
611
|
+
#: ../lib/puppet/configurer.rb:498
|
618
612
|
msgid "Uploading facts for %{node} to %{server}"
|
619
613
|
msgstr ""
|
620
614
|
|
621
|
-
#: ../lib/puppet/configurer.rb:
|
615
|
+
#: ../lib/puppet/configurer.rb:506
|
622
616
|
msgid "Failed to submit facts: %{detail}"
|
623
617
|
msgstr ""
|
624
618
|
|
625
|
-
#: ../lib/puppet/configurer.rb:
|
619
|
+
#: ../lib/puppet/configurer.rb:521
|
626
620
|
msgid "Could not run command from %{setting}: %{detail}"
|
627
621
|
msgstr ""
|
628
622
|
|
629
|
-
#: ../lib/puppet/configurer.rb:
|
623
|
+
#: ../lib/puppet/configurer.rb:539
|
630
624
|
msgid "Could not retrieve catalog from cache: %{detail}"
|
631
625
|
msgstr ""
|
632
626
|
|
633
|
-
#: ../lib/puppet/configurer.rb:
|
627
|
+
#: ../lib/puppet/configurer.rb:560
|
634
628
|
msgid "Could not retrieve catalog from remote server: %{detail}"
|
635
629
|
msgstr ""
|
636
630
|
|
@@ -698,46 +692,50 @@ msgstr ""
|
|
698
692
|
msgid "a data type can only have one implementation"
|
699
693
|
msgstr ""
|
700
694
|
|
701
|
-
#: ../lib/puppet/defaults.rb:
|
695
|
+
#: ../lib/puppet/defaults.rb:179
|
702
696
|
msgid "Cannot disable unrecognized warning types '%{invalid}'."
|
703
697
|
msgstr ""
|
704
698
|
|
705
|
-
#: ../lib/puppet/defaults.rb:
|
699
|
+
#: ../lib/puppet/defaults.rb:180
|
706
700
|
msgid "Valid values are '%{values}'."
|
707
701
|
msgstr ""
|
708
702
|
|
709
703
|
#. TRANSLATORS 'data_binding_terminus' is a setting and should not be translated
|
710
|
-
#: ../lib/puppet/defaults.rb:
|
704
|
+
#: ../lib/puppet/defaults.rb:547
|
711
705
|
msgid "Setting 'data_binding_terminus' is deprecated."
|
712
706
|
msgstr ""
|
713
707
|
|
714
708
|
#. TRANSLATORS 'hiera' should not be translated
|
715
|
-
#: ../lib/puppet/defaults.rb:
|
709
|
+
#: ../lib/puppet/defaults.rb:549
|
716
710
|
msgid "Convert custom terminus to hiera 5 API."
|
717
711
|
msgstr ""
|
718
712
|
|
719
713
|
#. TRANSLATORS 'environment_data_provider' is a setting and should not be translated
|
720
|
-
#: ../lib/puppet/defaults.rb:
|
714
|
+
#: ../lib/puppet/defaults.rb:762
|
721
715
|
msgid "Setting 'environment_data_provider' is deprecated."
|
722
716
|
msgstr ""
|
723
717
|
|
724
|
-
#: ../lib/puppet/defaults.rb:
|
718
|
+
#: ../lib/puppet/defaults.rb:847
|
725
719
|
msgid "Certificate names must be lower case"
|
726
720
|
msgstr ""
|
727
721
|
|
728
|
-
#: ../lib/puppet/defaults.rb:
|
722
|
+
#: ../lib/puppet/defaults.rb:1042
|
729
723
|
msgid "Setting 'ssl_client_ca_auth' is deprecated."
|
730
724
|
msgstr ""
|
731
725
|
|
732
|
-
#: ../lib/puppet/defaults.rb:
|
726
|
+
#: ../lib/puppet/defaults.rb:1121 ../lib/puppet/settings/enum_setting.rb:13 ../lib/puppet/settings/symbolic_enum_setting.rb:14
|
733
727
|
msgid "Invalid value '%{value}' for parameter %{name}. Allowed values are '%{allowed_values}'"
|
734
728
|
msgstr ""
|
735
729
|
|
736
730
|
#. TRANSLATORS 'pluginsync' is a setting and should not be translated
|
737
|
-
#: ../lib/puppet/defaults.rb:
|
731
|
+
#: ../lib/puppet/defaults.rb:1995
|
738
732
|
msgid "Setting 'pluginsync' is deprecated."
|
739
733
|
msgstr ""
|
740
734
|
|
735
|
+
#: ../lib/puppet/defaults.rb:2230
|
736
|
+
msgid "The 'func3x_check' setting is deprecated and will be removed in a future release."
|
737
|
+
msgstr ""
|
738
|
+
|
741
739
|
#: ../lib/puppet/error.rb:77
|
742
740
|
msgid "Could not parse for environment %{environment}: %{message}"
|
743
741
|
msgstr ""
|
@@ -780,7 +778,7 @@ msgstr ""
|
|
780
778
|
msgid "no matching resources found"
|
781
779
|
msgstr ""
|
782
780
|
|
783
|
-
#: ../lib/puppet/face/config.rb:7 ../lib/puppet/face/epp.rb:8 ../lib/puppet/face/facts.rb:
|
781
|
+
#: ../lib/puppet/face/config.rb:7 ../lib/puppet/face/epp.rb:8 ../lib/puppet/face/facts.rb:30 ../lib/puppet/face/generate.rb:7 ../lib/puppet/face/help.rb:9 ../lib/puppet/face/key.rb:5 ../lib/puppet/face/man.rb:8 ../lib/puppet/face/module.rb:9 ../lib/puppet/face/node.rb:4 ../lib/puppet/face/parser.rb:6 ../lib/puppet/face/plugin.rb:6 ../lib/puppet/face/report.rb:5 ../lib/puppet/face/resource.rb:5 ../lib/puppet/face/status.rb:5
|
784
782
|
msgid "Apache 2 license; see COPYING"
|
785
783
|
msgstr ""
|
786
784
|
|
@@ -836,7 +834,7 @@ msgstr ""
|
|
836
834
|
|
837
835
|
#: ../lib/puppet/face/config.rb:146
|
838
836
|
msgid ""
|
839
|
-
"The environment should be set in either the `[user]`, `[agent]`, or `[
|
837
|
+
"The environment should be set in either the `[user]`, `[agent]`, or `[server]`\n"
|
840
838
|
"section. Variables set in the `[agent]` section are used when running\n"
|
841
839
|
"`puppet agent`. Variables set in the `[user]` section are used when running\n"
|
842
840
|
"various other puppet subcommands, like `puppet apply` and `puppet module`; these\n"
|
@@ -846,25 +844,28 @@ msgid ""
|
|
846
844
|
"https://puppet.com/docs/puppet/latest/configuration.html#environment\n"
|
847
845
|
msgstr ""
|
848
846
|
|
849
|
-
#: ../lib/puppet/face/config.rb:
|
847
|
+
#: ../lib/puppet/face/config.rb:186
|
848
|
+
msgid "Deleted setting from '%{section_name}': '%{setting_string}', and adding it to 'server' section"
|
849
|
+
msgstr ""
|
850
|
+
|
851
|
+
#: ../lib/puppet/face/config.rb:201
|
850
852
|
msgid "Delete a Puppet setting."
|
851
853
|
msgstr ""
|
852
854
|
|
853
|
-
#: ../lib/puppet/face/config.rb:
|
855
|
+
#: ../lib/puppet/face/config.rb:202
|
854
856
|
msgid "<setting>"
|
855
857
|
msgstr ""
|
856
858
|
|
857
|
-
|
858
|
-
#: ../lib/puppet/face/config.rb:212
|
859
|
+
#: ../lib/puppet/face/config.rb:236 ../lib/puppet/face/config.rb:240 ../lib/puppet/face/config.rb:251
|
859
860
|
msgid "Deleted setting from '%{section_name}': '%{setting_string}'"
|
860
861
|
msgstr ""
|
861
862
|
|
862
|
-
#: ../lib/puppet/face/config.rb:
|
863
|
+
#: ../lib/puppet/face/config.rb:254
|
863
864
|
msgid "No setting found in configuration file for section '%{section_name}' setting name '%{name}'"
|
864
865
|
msgstr ""
|
865
866
|
|
866
867
|
#. TRANSLATORS the 'puppet.conf' is a specific file and should not be translated
|
867
|
-
#: ../lib/puppet/face/config.rb:
|
868
|
+
#: ../lib/puppet/face/config.rb:262
|
868
869
|
msgid "The puppet.conf file does not exist %{puppet_conf}"
|
869
870
|
msgstr ""
|
870
871
|
|
@@ -1014,26 +1015,34 @@ msgstr ""
|
|
1014
1015
|
msgid "--values option must evaluate to a Hash or undef, got: '%{values_class}'"
|
1015
1016
|
msgstr ""
|
1016
1017
|
|
1017
|
-
#: ../lib/puppet/face/facts.rb:
|
1018
|
+
#: ../lib/puppet/face/facts.rb:32
|
1018
1019
|
msgid "Retrieve and store facts."
|
1019
1020
|
msgstr ""
|
1020
1021
|
|
1021
|
-
#: ../lib/puppet/face/facts.rb:
|
1022
|
+
#: ../lib/puppet/face/facts.rb:40
|
1022
1023
|
msgid "Retrieve a node's facts."
|
1023
1024
|
msgstr ""
|
1024
1025
|
|
1025
|
-
#: ../lib/puppet/face/facts.rb:
|
1026
|
+
#: ../lib/puppet/face/facts.rb:41
|
1026
1027
|
msgid "[<node_certname>]"
|
1027
1028
|
msgstr ""
|
1028
1029
|
|
1029
|
-
#: ../lib/puppet/face/facts.rb:
|
1030
|
+
#: ../lib/puppet/face/facts.rb:64
|
1030
1031
|
msgid "Upload local facts to the puppet master."
|
1031
1032
|
msgstr ""
|
1032
1033
|
|
1033
|
-
#: ../lib/puppet/face/facts.rb:
|
1034
|
+
#: ../lib/puppet/face/facts.rb:106
|
1034
1035
|
msgid "Uploading facts for '%{node}' to '%{server}'"
|
1035
1036
|
msgstr ""
|
1036
1037
|
|
1038
|
+
#: ../lib/puppet/face/facts.rb:116
|
1039
|
+
msgid "Compare Facter 3 output with Facter 4 output"
|
1040
|
+
msgstr ""
|
1041
|
+
|
1042
|
+
#: ../lib/puppet/face/facts.rb:145
|
1043
|
+
msgid "Already using Facter 4. To use `puppet facts diff` remove facterng from the .conf file or run `puppet config set facterng false`."
|
1044
|
+
msgstr ""
|
1045
|
+
|
1037
1046
|
#: ../lib/puppet/face/generate.rb:9
|
1038
1047
|
msgid "Generates Puppet code from Ruby definitions."
|
1039
1048
|
msgstr ""
|
@@ -2283,15 +2292,15 @@ msgstr ""
|
|
2283
2292
|
msgid "Failed to parse Retry-After header '%{retry_after}' as an integer or RFC 2822 date"
|
2284
2293
|
msgstr ""
|
2285
2294
|
|
2286
|
-
#: ../lib/puppet/http/service.rb:
|
2295
|
+
#: ../lib/puppet/http/service.rb:121
|
2287
2296
|
msgid "Ignoring extra header \"%{name}\" as it was previously set."
|
2288
2297
|
msgstr ""
|
2289
2298
|
|
2290
|
-
#: ../lib/puppet/http/service.rb:
|
2299
|
+
#: ../lib/puppet/http/service.rb:124
|
2291
2300
|
msgid "Ignoring extra header \"%{name}\" as it has no value."
|
2292
2301
|
msgstr ""
|
2293
2302
|
|
2294
|
-
#: ../lib/puppet/http/service.rb:
|
2303
|
+
#: ../lib/puppet/http/service.rb:147 ../lib/puppet/indirector/rest.rb:288
|
2295
2304
|
msgid "No content type in http response; cannot parse"
|
2296
2305
|
msgstr ""
|
2297
2306
|
|
@@ -2604,7 +2613,7 @@ msgstr ""
|
|
2604
2613
|
msgid "Puppet::Indirector::FileContent::Http is deprecated. Use Puppet::HTTP::Client instead."
|
2605
2614
|
msgstr ""
|
2606
2615
|
|
2607
|
-
#: ../lib/puppet/indirector/file_metadata/http.rb:
|
2616
|
+
#: ../lib/puppet/indirector/file_metadata/http.rb:32
|
2608
2617
|
msgid "cannot lookup multiple files"
|
2609
2618
|
msgstr ""
|
2610
2619
|
|
@@ -2711,11 +2720,11 @@ msgstr ""
|
|
2711
2720
|
msgid "invalid key"
|
2712
2721
|
msgstr ""
|
2713
2722
|
|
2714
|
-
#: ../lib/puppet/indirector/json.rb:
|
2723
|
+
#: ../lib/puppet/indirector/json.rb:62
|
2715
2724
|
msgid "Could not read JSON data for %{name} %{key}: %{detail}"
|
2716
2725
|
msgstr ""
|
2717
2726
|
|
2718
|
-
#: ../lib/puppet/indirector/json.rb:
|
2727
|
+
#: ../lib/puppet/indirector/json.rb:68
|
2719
2728
|
msgid "Could not parse JSON data for %{name} %{key}: %{detail}"
|
2720
2729
|
msgstr ""
|
2721
2730
|
|
@@ -2772,6 +2781,14 @@ msgstr ""
|
|
2772
2781
|
msgid "Could not load external node results for %{name}: %{detail}"
|
2773
2782
|
msgstr ""
|
2774
2783
|
|
2784
|
+
#: ../lib/puppet/indirector/report/json.rb:19 ../lib/puppet/indirector/report/yaml.rb:19
|
2785
|
+
msgid "replace_file mode: %{mode} is invalid"
|
2786
|
+
msgstr ""
|
2787
|
+
|
2788
|
+
#: ../lib/puppet/indirector/report/json.rb:31 ../lib/puppet/indirector/report/yaml.rb:31 ../lib/puppet/indirector/yaml.rb:32
|
2789
|
+
msgid "Could not save %{indirection} %{request}: %{detail}"
|
2790
|
+
msgstr ""
|
2791
|
+
|
2775
2792
|
#: ../lib/puppet/indirector/report/processor.rb:39
|
2776
2793
|
msgid "Report %{report} failed: %{detail}"
|
2777
2794
|
msgstr ""
|
@@ -2784,14 +2801,6 @@ msgstr ""
|
|
2784
2801
|
msgid "Server version %{version} does not accept reports in '%{format}', use `preferred_serialization_format=pson`"
|
2785
2802
|
msgstr ""
|
2786
2803
|
|
2787
|
-
#: ../lib/puppet/indirector/report/yaml.rb:19
|
2788
|
-
msgid "replace_file mode: %{mode} is invalid"
|
2789
|
-
msgstr ""
|
2790
|
-
|
2791
|
-
#: ../lib/puppet/indirector/report/yaml.rb:31 ../lib/puppet/indirector/yaml.rb:32
|
2792
|
-
msgid "Could not save %{indirection} %{request}: %{detail}"
|
2793
|
-
msgstr ""
|
2794
|
-
|
2795
2804
|
#: ../lib/puppet/indirector/request.rb:103
|
2796
2805
|
msgid "Could not find indirection '%{indirection}'"
|
2797
2806
|
msgstr ""
|
@@ -2815,9 +2824,9 @@ msgstr ""
|
|
2815
2824
|
msgid "Selected port from the first entry of the `server_list` setting: %{port}"
|
2816
2825
|
msgstr ""
|
2817
2826
|
|
2818
|
-
#. TRANSLATORS '
|
2827
|
+
#. TRANSLATORS 'serverport' is the name of a setting and should not be translated
|
2819
2828
|
#: ../lib/puppet/indirector/request.rb:235
|
2820
|
-
msgid "Selected port from the `
|
2829
|
+
msgid "Selected port from the `serverport` setting: %{port}"
|
2821
2830
|
msgstr ""
|
2822
2831
|
|
2823
2832
|
#: ../lib/puppet/indirector/request.rb:266
|
@@ -2990,8 +2999,8 @@ msgstr ""
|
|
2990
2999
|
msgid "Option %{option} conflicts with existing option %{conflict} on %{face}"
|
2991
3000
|
msgstr ""
|
2992
3001
|
|
2993
|
-
#. TRANSLATORS 'Puppet.settings' should not be translated
|
2994
3002
|
#. TRANSLATORS 'Puppet.settings' references to the Puppet settings options and should not be translated
|
3003
|
+
#. TRANSLATORS 'Puppet.settings' should not be translated
|
2995
3004
|
#: ../lib/puppet/interface/action.rb:315 ../lib/puppet/interface/option_manager.rb:14
|
2996
3005
|
msgid "Global option %{option} does not exist in Puppet.settings"
|
2997
3006
|
msgstr ""
|
@@ -3347,11 +3356,11 @@ msgstr ""
|
|
3347
3356
|
msgid "Resolving dependencies ..."
|
3348
3357
|
msgstr ""
|
3349
3358
|
|
3350
|
-
#: ../lib/puppet/module_tool/applications/installer.rb:
|
3359
|
+
#: ../lib/puppet/module_tool/applications/installer.rb:208
|
3351
3360
|
msgid "Preparing to install ..."
|
3352
3361
|
msgstr ""
|
3353
3362
|
|
3354
|
-
#: ../lib/puppet/module_tool/applications/installer.rb:
|
3363
|
+
#: ../lib/puppet/module_tool/applications/installer.rb:211
|
3355
3364
|
msgid "Installing -- do not interrupt ..."
|
3356
3365
|
msgstr ""
|
3357
3366
|
|
@@ -3395,7 +3404,7 @@ msgstr ""
|
|
3395
3404
|
msgid "'%{module_name}' (%{version}) requested; '%{module_name}' (%{installed_version}) already installed"
|
3396
3405
|
msgstr ""
|
3397
3406
|
|
3398
|
-
#: ../lib/puppet/module_tool/errors/installer.rb:16 ../lib/puppet/module_tool/errors/installer.rb:54 ../lib/puppet/module_tool/errors/installer.rb:72 ../lib/puppet/module_tool/errors/shared.rb:
|
3407
|
+
#: ../lib/puppet/module_tool/errors/installer.rb:16 ../lib/puppet/module_tool/errors/installer.rb:54 ../lib/puppet/module_tool/errors/installer.rb:72 ../lib/puppet/module_tool/errors/shared.rb:79 ../lib/puppet/module_tool/errors/shared.rb:121
|
3399
3408
|
msgid "Could not install module '%{module_name}' (%{version})"
|
3400
3409
|
msgstr ""
|
3401
3410
|
|
@@ -3425,7 +3434,7 @@ msgstr ""
|
|
3425
3434
|
msgid "Could not install '%{requested_package}'"
|
3426
3435
|
msgstr ""
|
3427
3436
|
|
3428
|
-
#: ../lib/puppet/module_tool/errors/installer.rb:38 ../lib/puppet/module_tool/errors/shared.rb:
|
3437
|
+
#: ../lib/puppet/module_tool/errors/installer.rb:38 ../lib/puppet/module_tool/errors/shared.rb:58
|
3429
3438
|
msgid " No releases are available from %{source}"
|
3430
3439
|
msgstr ""
|
3431
3440
|
|
@@ -3470,150 +3479,162 @@ msgstr ""
|
|
3470
3479
|
msgid " Package attempted to install file into %{path} under %{directory}."
|
3471
3480
|
msgstr ""
|
3472
3481
|
|
3473
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3482
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:12
|
3474
3483
|
msgid "Could not %{action} '%{module_name}' (%{version}); no version satisfies all dependencies"
|
3475
3484
|
msgstr ""
|
3476
3485
|
|
3477
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3486
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:17 ../lib/puppet/module_tool/errors/shared.rb:186 ../lib/puppet/module_tool/errors/upgrader.rb:58
|
3478
3487
|
msgid "Could not %{action} module '%{module_name}' (%{version})"
|
3479
3488
|
msgstr ""
|
3480
3489
|
|
3481
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3482
|
-
msgid "
|
3490
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:20
|
3491
|
+
msgid " The requested version cannot satisfy one or more of the following installed modules:"
|
3492
|
+
msgstr ""
|
3493
|
+
|
3494
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:22
|
3495
|
+
msgid " %{name}, installed: %{current_version}, expected: %{constraints}"
|
3496
|
+
msgstr ""
|
3497
|
+
|
3498
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:25
|
3499
|
+
msgid " %{mod}, expects '%{name}': %{range}"
|
3500
|
+
msgstr ""
|
3501
|
+
|
3502
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:30
|
3503
|
+
msgid " The requested version cannot satisfy all dependencies"
|
3483
3504
|
msgstr ""
|
3484
3505
|
|
3485
3506
|
#. TRANSLATORS `puppet module %{action} --ignore-dependencies` is a command line and should not be translated
|
3486
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3487
|
-
msgid "
|
3507
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:34
|
3508
|
+
msgid " Use `puppet module %{action} '%{module_name}' --ignore-dependencies` to %{action} only this module"
|
3488
3509
|
msgstr ""
|
3489
3510
|
|
3490
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3511
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:48
|
3491
3512
|
msgid "Could not %{action} '%{module_name}'; no releases are available from %{source}"
|
3492
3513
|
msgstr ""
|
3493
3514
|
|
3494
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3515
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:50
|
3495
3516
|
msgid "Could not %{action} '%{module_name}'; no releases matching '%{version}' are available from %{source}"
|
3496
3517
|
msgstr ""
|
3497
3518
|
|
3498
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3519
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:56
|
3499
3520
|
msgid "Could not %{action} '%{module_name}' (%{version})"
|
3500
3521
|
msgstr ""
|
3501
3522
|
|
3502
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3523
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:59
|
3503
3524
|
msgid " Does '%{module_name}' have at least one published release?"
|
3504
3525
|
msgstr ""
|
3505
3526
|
|
3506
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3527
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:61
|
3507
3528
|
msgid " No releases matching '%{requested_version}' are available from %{source}"
|
3508
3529
|
msgstr ""
|
3509
3530
|
|
3510
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3531
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:74
|
3511
3532
|
msgid "'%{module_name}' (%{version}) requested; installation conflict"
|
3512
3533
|
msgstr ""
|
3513
3534
|
|
3514
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3535
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:82
|
3515
3536
|
msgid " Dependency '%{name}' (%{version}) would overwrite %{directory}"
|
3516
3537
|
msgstr ""
|
3517
3538
|
|
3518
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3539
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:84
|
3519
3540
|
msgid " Installation would overwrite %{directory}"
|
3520
3541
|
msgstr ""
|
3521
3542
|
|
3522
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3543
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:88
|
3523
3544
|
msgid " Currently, '%{current_name}' (%{current_version}) is installed to that directory"
|
3524
3545
|
msgstr ""
|
3525
3546
|
|
3526
3547
|
#. TRANSLATORS `puppet module install --ignore-dependencies` is a command line and should not be translated
|
3527
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3548
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:93
|
3528
3549
|
msgid " Use `puppet module install --ignore-dependencies` to install only this module"
|
3529
3550
|
msgstr ""
|
3530
3551
|
|
3531
3552
|
#. TRANSLATORS `puppet module install --force` is a command line and should not be translated
|
3532
3553
|
#. TRANSLATORS `puppet module install --force` is a command line and should not be translated
|
3533
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3554
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:96 ../lib/puppet/module_tool/errors/shared.rb:125
|
3534
3555
|
msgid " Use `puppet module install --force` to install this module anyway"
|
3535
3556
|
msgstr ""
|
3536
3557
|
|
3537
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3558
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:110
|
3538
3559
|
msgid "'%{module_name}' (%{version}) requested; Invalid dependency cycle"
|
3539
3560
|
msgstr ""
|
3540
3561
|
|
3541
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3562
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:115
|
3542
3563
|
msgid "You specified '%{name}' (%{version})"
|
3543
3564
|
msgstr ""
|
3544
3565
|
|
3545
3566
|
#. TRANSLATORS This message repeats as separate lines as a list under the heading "You specified '%{name}' (%{version})\n"
|
3546
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3567
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:118
|
3547
3568
|
msgid "This depends on '%{name}' (%{version})"
|
3548
3569
|
msgstr ""
|
3549
3570
|
|
3550
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3571
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:122
|
3551
3572
|
msgid " No version of '%{module_name}' will satisfy dependencies"
|
3552
3573
|
msgstr ""
|
3553
3574
|
|
3554
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3575
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:135
|
3555
3576
|
msgid "Could not %{action} '%{module_name}'; module is not installed"
|
3556
3577
|
msgstr ""
|
3557
3578
|
|
3558
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3579
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:140 ../lib/puppet/module_tool/errors/shared.rb:163 ../lib/puppet/module_tool/errors/shared.rb:204
|
3559
3580
|
msgid "Could not %{action} module '%{module_name}'"
|
3560
3581
|
msgstr ""
|
3561
3582
|
|
3562
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3583
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:141
|
3563
3584
|
msgid " Module '%{module_name}' is not installed"
|
3564
3585
|
msgstr ""
|
3565
3586
|
|
3566
3587
|
#. TRANSLATORS `puppet module %{action} %{suggestion}` is a command line and should not be translated
|
3567
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3588
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:144
|
3568
3589
|
msgid " You may have meant `puppet module %{action} %{suggestion}`"
|
3569
3590
|
msgstr ""
|
3570
3591
|
|
3571
3592
|
#. TRANSLATORS `puppet module install` is a command line and should not be translated
|
3572
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3593
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:147
|
3573
3594
|
msgid " Use `puppet module install` to install this module"
|
3574
3595
|
msgstr ""
|
3575
3596
|
|
3576
3597
|
#. TRANSLATORS "module path" refers to a set of directories where modules may be installed
|
3577
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3598
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:158
|
3578
3599
|
msgid "Could not %{action} '%{module_name}'; module appears in multiple places in the module path"
|
3579
3600
|
msgstr ""
|
3580
3601
|
|
3581
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3602
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:164
|
3582
3603
|
msgid " Module '%{module_name}' appears multiple places in the module path"
|
3583
3604
|
msgstr ""
|
3584
3605
|
|
3585
3606
|
#. TRANSLATORS This is repeats as separate lines as a list under "Module '%{module_name}' appears multiple places in the module path"
|
3586
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3607
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:167
|
3587
3608
|
msgid " '%{module_name}' (%{version}) was found in %{path}"
|
3588
3609
|
msgstr ""
|
3589
3610
|
|
3590
3611
|
#. TRANSLATORS `--modulepath` is command line option and should not be translated
|
3591
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3612
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:170
|
3592
3613
|
msgid " Use the `--modulepath` option to limit the search to specific directories"
|
3593
3614
|
msgstr ""
|
3594
3615
|
|
3595
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3616
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:181
|
3596
3617
|
msgid "Could not %{action} '%{module_name}'; module has had changes made locally"
|
3597
3618
|
msgstr ""
|
3598
3619
|
|
3599
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3620
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:187
|
3600
3621
|
msgid " Installed module has had changes made locally"
|
3601
3622
|
msgstr ""
|
3602
3623
|
|
3603
3624
|
#. TRANSLATORS `puppet module %{action} --ignore-changes` is a command line and should not be translated
|
3604
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3625
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:189
|
3605
3626
|
msgid " Use `puppet module %{action} --ignore-changes` to %{action} this module anyway"
|
3606
3627
|
msgstr ""
|
3607
3628
|
|
3608
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3629
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:199
|
3609
3630
|
msgid "Could not %{action} '%{module_name}'; %{error}"
|
3610
3631
|
msgstr ""
|
3611
3632
|
|
3612
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3633
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:205
|
3613
3634
|
msgid " Failure trying to parse metadata"
|
3614
3635
|
msgstr ""
|
3615
3636
|
|
3616
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3637
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:206
|
3617
3638
|
msgid " Original message was: %{message}"
|
3618
3639
|
msgstr ""
|
3619
3640
|
|
@@ -4172,7 +4193,7 @@ msgstr ""
|
|
4172
4193
|
msgid "The 'disable_per_environment_manifest' setting is true, and the '%{env_name}' environment has an environment.conf manifest that conflicts with the 'default_manifest' setting."
|
4173
4194
|
msgstr ""
|
4174
4195
|
|
4175
|
-
#: ../lib/puppet/node/environment.rb:
|
4196
|
+
#: ../lib/puppet/node/environment.rb:568 ../lib/puppet/pops/loaders.rb:301
|
4176
4197
|
msgid "Could not parse for environment %{env}: %{detail}"
|
4177
4198
|
msgstr ""
|
4178
4199
|
|
@@ -4204,54 +4225,54 @@ msgstr ""
|
|
4204
4225
|
|
4205
4226
|
#. TRANSLATORS: do not translate the variable names in this error message
|
4206
4227
|
#. TRANSLATORS: do not translate the variable names in this error message
|
4207
|
-
#: ../lib/puppet/pal/pal_impl.rb:
|
4228
|
+
#: ../lib/puppet/pal/pal_impl.rb:75 ../lib/puppet/pal/pal_impl.rb:181
|
4208
4229
|
msgid "manifest_file or code_string cannot be given when configured_by_env is true"
|
4209
4230
|
msgstr ""
|
4210
4231
|
|
4211
|
-
#: ../lib/puppet/pal/pal_impl.rb:
|
4232
|
+
#: ../lib/puppet/pal/pal_impl.rb:237
|
4212
4233
|
msgid "temporary environment name"
|
4213
4234
|
msgstr ""
|
4214
4235
|
|
4215
4236
|
#. TRANSLATORS: do not translate variable name string in these assertions
|
4216
|
-
#: ../lib/puppet/pal/pal_impl.rb:
|
4237
|
+
#: ../lib/puppet/pal/pal_impl.rb:242
|
4217
4238
|
msgid "A block must be given to 'in_tmp_environment'"
|
4218
4239
|
msgstr ""
|
4219
4240
|
|
4220
4241
|
#. TRANSLATORS terms in the assertions below are names of terms in code
|
4221
|
-
#: ../lib/puppet/pal/pal_impl.rb:
|
4242
|
+
#: ../lib/puppet/pal/pal_impl.rb:296
|
4222
4243
|
msgid "A block must be given to 'in_environment'"
|
4223
4244
|
msgstr ""
|
4224
4245
|
|
4225
4246
|
#. TRANSLATORS 'in_environment' is a name, do not translate
|
4226
|
-
#: ../lib/puppet/pal/pal_impl.rb:
|
4247
|
+
#: ../lib/puppet/pal/pal_impl.rb:301
|
4227
4248
|
msgid "The environment directory '%{env_dir}' does not exist"
|
4228
4249
|
msgstr ""
|
4229
4250
|
|
4230
|
-
#: ../lib/puppet/pal/pal_impl.rb:
|
4251
|
+
#: ../lib/puppet/pal/pal_impl.rb:324
|
4231
4252
|
msgid "No directory found for the environment '%{env_name}' on the path '%{envpath}'"
|
4232
4253
|
msgstr ""
|
4233
4254
|
|
4234
|
-
#: ../lib/puppet/pal/pal_impl.rb:
|
4255
|
+
#: ../lib/puppet/pal/pal_impl.rb:378
|
4235
4256
|
msgid "Given variables must be a hash, got %{type}"
|
4236
4257
|
msgstr ""
|
4237
4258
|
|
4238
|
-
#: ../lib/puppet/pal/pal_impl.rb:
|
4259
|
+
#: ../lib/puppet/pal/pal_impl.rb:384
|
4239
4260
|
msgid "Given variable '%{varname}' has illegal name"
|
4240
4261
|
msgstr ""
|
4241
4262
|
|
4242
|
-
#: ../lib/puppet/pal/pal_impl.rb:
|
4263
|
+
#: ../lib/puppet/pal/pal_impl.rb:388
|
4243
4264
|
msgid "Given value for '%{varname}' has illegal type - got: %{type}"
|
4244
4265
|
msgstr ""
|
4245
4266
|
|
4246
|
-
#: ../lib/puppet/pal/pal_impl.rb:
|
4267
|
+
#: ../lib/puppet/pal/pal_impl.rb:562
|
4247
4268
|
msgid "Puppet Pal: %{what}"
|
4248
4269
|
msgstr ""
|
4249
4270
|
|
4250
|
-
#: ../lib/puppet/pal/pal_impl.rb:
|
4271
|
+
#: ../lib/puppet/pal/pal_impl.rb:576
|
4251
4272
|
msgid "Cannot use '%{a_term}' and '%{b_term}' at the same time"
|
4252
4273
|
msgstr ""
|
4253
4274
|
|
4254
|
-
#: ../lib/puppet/pal/pal_impl.rb:
|
4275
|
+
#: ../lib/puppet/pal/pal_impl.rb:583
|
4255
4276
|
msgid "A block must be given"
|
4256
4277
|
msgstr ""
|
4257
4278
|
|
@@ -4556,31 +4577,31 @@ msgstr ""
|
|
4556
4577
|
msgid "The method 'Puppet::Parser::Functions.autoloader#loaded?(\"%{name}\")' is deprecated in favor of using 'Scope#call_function'."
|
4557
4578
|
msgstr ""
|
4558
4579
|
|
4559
|
-
#: ../lib/puppet/parser/functions.rb:
|
4580
|
+
#: ../lib/puppet/parser/functions.rb:190
|
4560
4581
|
msgid "Overwriting previous definition for function %{name}"
|
4561
4582
|
msgstr ""
|
4562
4583
|
|
4563
|
-
#: ../lib/puppet/parser/functions.rb:
|
4584
|
+
#: ../lib/puppet/parser/functions.rb:196
|
4564
4585
|
msgid "Invalid statement type %{type}"
|
4565
4586
|
msgstr ""
|
4566
4587
|
|
4567
|
-
#: ../lib/puppet/parser/functions.rb:
|
4588
|
+
#: ../lib/puppet/parser/functions.rb:208
|
4568
4589
|
msgid "Called %{name}"
|
4569
4590
|
msgstr ""
|
4570
4591
|
|
4571
|
-
#: ../lib/puppet/parser/functions.rb:
|
4592
|
+
#: ../lib/puppet/parser/functions.rb:211
|
4572
4593
|
msgid "%{name}(): Wrong number of arguments given (%{arg_count} for %{arity})"
|
4573
4594
|
msgstr ""
|
4574
4595
|
|
4575
|
-
#: ../lib/puppet/parser/functions.rb:
|
4596
|
+
#: ../lib/puppet/parser/functions.rb:213
|
4576
4597
|
msgid "%{name}(): Wrong number of arguments given (%{arg_count} for minimum %{min_arg_count})"
|
4577
4598
|
msgstr ""
|
4578
4599
|
|
4579
|
-
#: ../lib/puppet/parser/functions.rb:
|
4600
|
+
#: ../lib/puppet/parser/functions.rb:219
|
4580
4601
|
msgid "custom functions must be called with a single array that contains the arguments. For example, function_example([1]) instead of function_example(1)"
|
4581
4602
|
msgstr ""
|
4582
4603
|
|
4583
|
-
#: ../lib/puppet/parser/functions.rb:
|
4604
|
+
#: ../lib/puppet/parser/functions.rb:318
|
4584
4605
|
msgid "%{name}() can only be called using the 4.x function API. See Scope#call_function"
|
4585
4606
|
msgstr ""
|
4586
4607
|
|
@@ -4964,23 +4985,23 @@ msgstr ""
|
|
4964
4985
|
msgid "multi var assignment from class"
|
4965
4986
|
msgstr ""
|
4966
4987
|
|
4967
|
-
#: ../lib/puppet/pops/evaluator/evaluator_impl.rb:
|
4988
|
+
#: ../lib/puppet/pops/evaluator/evaluator_impl.rb:761
|
4968
4989
|
msgid "break() from context where this is illegal"
|
4969
4990
|
msgstr ""
|
4970
4991
|
|
4971
|
-
#: ../lib/puppet/pops/evaluator/evaluator_impl.rb:
|
4992
|
+
#: ../lib/puppet/pops/evaluator/evaluator_impl.rb:1241
|
4972
4993
|
msgid "Can only append Array or Hash to a Hash"
|
4973
4994
|
msgstr ""
|
4974
4995
|
|
4975
|
-
#: ../lib/puppet/pops/evaluator/evaluator_impl.rb:
|
4996
|
+
#: ../lib/puppet/pops/evaluator/evaluator_impl.rb:1245
|
4976
4997
|
msgid "An URI can only be merged with an URI or String"
|
4977
4998
|
msgstr ""
|
4978
4999
|
|
4979
|
-
#: ../lib/puppet/pops/evaluator/evaluator_impl.rb:
|
5000
|
+
#: ../lib/puppet/pops/evaluator/evaluator_impl.rb:1248
|
4980
5001
|
msgid "Can only append Binary to a Binary"
|
4981
5002
|
msgstr ""
|
4982
5003
|
|
4983
|
-
#: ../lib/puppet/pops/evaluator/evaluator_impl.rb:
|
5004
|
+
#: ../lib/puppet/pops/evaluator/evaluator_impl.rb:1281
|
4984
5005
|
msgid "Can only delete from an Array or Hash."
|
4985
5006
|
msgstr ""
|
4986
5007
|
|
@@ -5958,23 +5979,23 @@ msgstr ""
|
|
5958
5979
|
msgid "Unknown Explain type %{qualifier_type}"
|
5959
5980
|
msgstr ""
|
5960
5981
|
|
5961
|
-
#: ../lib/puppet/pops/lookup/hiera_config.rb:
|
5982
|
+
#: ../lib/puppet/pops/lookup/hiera_config.rb:86
|
5962
5983
|
msgid "Using of legacy data provider function '%{function_name}'. Please convert to a 'data_hash' function"
|
5963
5984
|
msgstr ""
|
5964
5985
|
|
5965
|
-
#: ../lib/puppet/pops/lookup/hiera_config.rb:
|
5986
|
+
#: ../lib/puppet/pops/lookup/hiera_config.rb:143
|
5966
5987
|
msgid "%{config_path}: File exists but does not contain a valid YAML hash. Falling back to Hiera version 3 default config"
|
5967
5988
|
msgstr ""
|
5968
5989
|
|
5969
|
-
#: ../lib/puppet/pops/lookup/hiera_config.rb:
|
5990
|
+
#: ../lib/puppet/pops/lookup/hiera_config.rb:201
|
5970
5991
|
msgid "Hiera configuration recreated due to change of scope variables used in interpolation expressions"
|
5971
5992
|
msgstr ""
|
5972
5993
|
|
5973
|
-
#: ../lib/puppet/pops/lookup/hiera_config.rb:
|
5994
|
+
#: ../lib/puppet/pops/lookup/hiera_config.rb:429
|
5974
5995
|
msgid "%{config_path}: Use of 'hiera.yaml' version 3 is deprecated. It should be converted to version 5"
|
5975
5996
|
msgstr ""
|
5976
5997
|
|
5977
|
-
#: ../lib/puppet/pops/lookup/hiera_config.rb:
|
5998
|
+
#: ../lib/puppet/pops/lookup/hiera_config.rb:529
|
5978
5999
|
msgid "%{config_path}: Use of 'hiera.yaml' version 4 is deprecated. It should be converted to version 5"
|
5979
6000
|
msgstr ""
|
5980
6001
|
|
@@ -6787,7 +6808,7 @@ msgstr ""
|
|
6787
6808
|
msgid "Could not list installed Packages: %{detail}"
|
6788
6809
|
msgstr ""
|
6789
6810
|
|
6790
|
-
#: ../lib/puppet/provider/package/aix.rb:156 ../lib/puppet/provider/package/yum.rb:
|
6811
|
+
#: ../lib/puppet/provider/package/aix.rb:156 ../lib/puppet/provider/package/yum.rb:333
|
6791
6812
|
msgid "Tried to get latest on a missing package"
|
6792
6813
|
msgstr ""
|
6793
6814
|
|
@@ -6803,19 +6824,19 @@ msgstr ""
|
|
6803
6824
|
msgid "Mac OS X packages must specify a package source"
|
6804
6825
|
msgstr ""
|
6805
6826
|
|
6806
|
-
#: ../lib/puppet/provider/package/apt.rb:
|
6827
|
+
#: ../lib/puppet/provider/package/apt.rb:85
|
6807
6828
|
msgid "/etc/apt/sources.list contains a cdrom source; not installing. Use 'allowcdrom' to override this failure."
|
6808
6829
|
msgstr ""
|
6809
6830
|
|
6810
|
-
#: ../lib/puppet/provider/package/apt.rb:
|
6831
|
+
#: ../lib/puppet/provider/package/apt.rb:167 ../lib/puppet/provider/package/fink.rb:55
|
6811
6832
|
msgid "Could not find latest version"
|
6812
6833
|
msgstr ""
|
6813
6834
|
|
6814
|
-
#: ../lib/puppet/provider/package/apt.rb:
|
6835
|
+
#: ../lib/puppet/provider/package/apt.rb:178 ../lib/puppet/provider/package/fink.rb:66
|
6815
6836
|
msgid "Preseeding %{response} to debconf-set-selections"
|
6816
6837
|
msgstr ""
|
6817
6838
|
|
6818
|
-
#: ../lib/puppet/provider/package/apt.rb:
|
6839
|
+
#: ../lib/puppet/provider/package/apt.rb:182 ../lib/puppet/provider/package/fink.rb:70
|
6819
6840
|
msgid "No responsefile specified or non existent, not preseeding anything"
|
6820
6841
|
msgstr ""
|
6821
6842
|
|
@@ -6867,7 +6888,7 @@ msgstr ""
|
|
6867
6888
|
msgid "source is defined but does not have trailing slash, ignoring %{source}"
|
6868
6889
|
msgstr ""
|
6869
6890
|
|
6870
|
-
#: ../lib/puppet/provider/package/gem.rb:102
|
6891
|
+
#: ../lib/puppet/provider/package/gem.rb:102 ../lib/puppet/provider/package/puppetserver_gem.rb:61
|
6871
6892
|
msgid "Could not list gems: %{detail}"
|
6872
6893
|
msgstr ""
|
6873
6894
|
|
@@ -6875,19 +6896,19 @@ msgstr ""
|
|
6875
6896
|
msgid "Could not match %{desc}"
|
6876
6897
|
msgstr ""
|
6877
6898
|
|
6878
|
-
#: ../lib/puppet/provider/package/gem.rb:206
|
6899
|
+
#: ../lib/puppet/provider/package/gem.rb:206 ../lib/puppet/provider/package/puppetserver_gem.rb:93
|
6879
6900
|
msgid "Invalid source '%{uri}': %{detail}"
|
6880
6901
|
msgstr ""
|
6881
6902
|
|
6882
|
-
#: ../lib/puppet/provider/package/gem.rb:217
|
6903
|
+
#: ../lib/puppet/provider/package/gem.rb:217 ../lib/puppet/provider/package/puppetserver_gem.rb:104
|
6883
6904
|
msgid "puppet:// URLs are not supported as gem sources"
|
6884
6905
|
msgstr ""
|
6885
6906
|
|
6886
|
-
#: ../lib/puppet/provider/package/gem.rb:233
|
6907
|
+
#: ../lib/puppet/provider/package/gem.rb:233 ../lib/puppet/provider/package/puppetserver_gem.rb:115
|
6887
6908
|
msgid "Could not install: %{output}"
|
6888
6909
|
msgstr ""
|
6889
6910
|
|
6890
|
-
#: ../lib/puppet/provider/package/gem.rb:259
|
6911
|
+
#: ../lib/puppet/provider/package/gem.rb:259 ../lib/puppet/provider/package/puppetserver_gem.rb:125
|
6891
6912
|
msgid "Could not uninstall: %{output}"
|
6892
6913
|
msgstr ""
|
6893
6914
|
|
@@ -7282,15 +7303,15 @@ msgstr ""
|
|
7282
7303
|
msgid "ruby-shadow doesn't support %{method}"
|
7283
7304
|
msgstr ""
|
7284
7305
|
|
7285
|
-
#: ../lib/puppet/provider/user/windows_adsi.rb:
|
7306
|
+
#: ../lib/puppet/provider/user/windows_adsi.rb:145
|
7286
7307
|
msgid "The user account '%s' is disabled; The password will still be changed"
|
7287
7308
|
msgstr ""
|
7288
7309
|
|
7289
|
-
#: ../lib/puppet/provider/user/windows_adsi.rb:
|
7310
|
+
#: ../lib/puppet/provider/user/windows_adsi.rb:147
|
7290
7311
|
msgid "The user account '%s' is locked out; The password will still be changed"
|
7291
7312
|
msgstr ""
|
7292
7313
|
|
7293
|
-
#: ../lib/puppet/provider/user/windows_adsi.rb:
|
7314
|
+
#: ../lib/puppet/provider/user/windows_adsi.rb:149
|
7294
7315
|
msgid "The user account '%s' is expired; The password will still be changed"
|
7295
7316
|
msgstr ""
|
7296
7317
|
|
@@ -7496,67 +7517,67 @@ msgstr ""
|
|
7496
7517
|
msgid "Could not evaluate: %{detail}"
|
7497
7518
|
msgstr ""
|
7498
7519
|
|
7499
|
-
#: ../lib/puppet/resource/type.rb:
|
7520
|
+
#: ../lib/puppet/resource/type.rb:82
|
7500
7521
|
msgid "Invalid export in %{reference}: %{ex} is not a resource"
|
7501
7522
|
msgstr ""
|
7502
7523
|
|
7503
|
-
#: ../lib/puppet/resource/type.rb:
|
7524
|
+
#: ../lib/puppet/resource/type.rb:83
|
7504
7525
|
msgid "Invalid export in %{reference}: %{ex} is not a capability resource"
|
7505
7526
|
msgstr ""
|
7506
7527
|
|
7507
|
-
#: ../lib/puppet/resource/type.rb:
|
7528
|
+
#: ../lib/puppet/resource/type.rb:87
|
7508
7529
|
msgid "Resource type %{res_type} does not produce %{ex_type}"
|
7509
7530
|
msgstr ""
|
7510
7531
|
|
7511
|
-
#: ../lib/puppet/resource/type.rb:
|
7532
|
+
#: ../lib/puppet/resource/type.rb:148
|
7512
7533
|
msgid "Invalid resource supertype '%{type}'"
|
7513
7534
|
msgstr ""
|
7514
7535
|
|
7515
|
-
#: ../lib/puppet/resource/type.rb:
|
7536
|
+
#: ../lib/puppet/resource/type.rb:200
|
7516
7537
|
msgid "%{name} is not a class; cannot add code to it"
|
7517
7538
|
msgstr ""
|
7518
7539
|
|
7519
|
-
#: ../lib/puppet/resource/type.rb:
|
7540
|
+
#: ../lib/puppet/resource/type.rb:201
|
7520
7541
|
msgid "%{name} is not a class; cannot add code from it"
|
7521
7542
|
msgstr ""
|
7522
7543
|
|
7523
|
-
#: ../lib/puppet/resource/type.rb:
|
7544
|
+
#: ../lib/puppet/resource/type.rb:205
|
7524
7545
|
msgid "Cannot have code outside of a class/node/define because 'freeze_main' is enabled"
|
7525
7546
|
msgstr ""
|
7526
7547
|
|
7527
|
-
#: ../lib/puppet/resource/type.rb:
|
7548
|
+
#: ../lib/puppet/resource/type.rb:209
|
7528
7549
|
msgid "Cannot merge classes with different parent classes (%{name} => %{parent} vs. %{other_name} => %{other_parent})"
|
7529
7550
|
msgstr ""
|
7530
7551
|
|
7531
|
-
#: ../lib/puppet/resource/type.rb:
|
7552
|
+
#: ../lib/puppet/resource/type.rb:240
|
7532
7553
|
msgid "Cannot create resources for defined resource types"
|
7533
7554
|
msgstr ""
|
7534
7555
|
|
7535
|
-
#: ../lib/puppet/resource/type.rb:
|
7556
|
+
#: ../lib/puppet/resource/type.rb:295
|
7536
7557
|
msgid "The method Puppet::Resource::Type.assign_parameter_values is deprecated and will be removed in the next major release of Puppet."
|
7537
7558
|
msgstr ""
|
7538
7559
|
|
7539
|
-
#: ../lib/puppet/resource/type.rb:
|
7560
|
+
#: ../lib/puppet/resource/type.rb:311
|
7540
7561
|
msgid "Could not find parent resource type '%{parent}' of type %{parent_type} in %{env}"
|
7541
7562
|
msgstr ""
|
7542
7563
|
|
7543
|
-
#: ../lib/puppet/resource/type.rb:
|
7564
|
+
#: ../lib/puppet/resource/type.rb:438
|
7544
7565
|
msgid "Parameter '%{name}' is given a type, but is not a valid parameter."
|
7545
7566
|
msgstr ""
|
7546
7567
|
|
7547
|
-
#: ../lib/puppet/resource/type.rb:
|
7568
|
+
#: ../lib/puppet/resource/type.rb:441
|
7548
7569
|
msgid "Parameter '%{name}' is given a type that is not a Puppet Type, got %{class_name}"
|
7549
7570
|
msgstr ""
|
7550
7571
|
|
7551
|
-
#: ../lib/puppet/resource/type.rb:
|
7572
|
+
#: ../lib/puppet/resource/type.rb:483
|
7552
7573
|
msgid "Could not find scope for %{class_name}"
|
7553
7574
|
msgstr ""
|
7554
7575
|
|
7555
|
-
#: ../lib/puppet/resource/type.rb:
|
7576
|
+
#: ../lib/puppet/resource/type.rb:504
|
7556
7577
|
msgid "%{param} is a metaparam; this value will inherit to all contained resources in the %{name} definition"
|
7557
7578
|
msgstr ""
|
7558
7579
|
|
7559
|
-
#: ../lib/puppet/resource/type.rb:
|
7580
|
+
#: ../lib/puppet/resource/type.rb:506
|
7560
7581
|
msgid "%{param} is a metaparameter; please choose another parameter name in the %{name} definition"
|
7561
7582
|
msgstr ""
|
7562
7583
|
|
@@ -7628,69 +7649,69 @@ msgstr ""
|
|
7628
7649
|
msgid "Downloaded existing certificate request for %{name} from %{server}"
|
7629
7650
|
msgstr ""
|
7630
7651
|
|
7631
|
-
#: ../lib/puppet/settings.rb:
|
7652
|
+
#: ../lib/puppet/settings.rb:99
|
7632
7653
|
msgid "New environment loaders generated from the requested section."
|
7633
7654
|
msgstr ""
|
7634
7655
|
|
7635
|
-
#: ../lib/puppet/settings.rb:
|
7656
|
+
#: ../lib/puppet/settings.rb:301
|
7636
7657
|
msgid "Attempting to initialize global default settings more than once!"
|
7637
7658
|
msgstr ""
|
7638
7659
|
|
7639
|
-
#: ../lib/puppet/settings.rb:
|
7660
|
+
#: ../lib/puppet/settings.rb:501
|
7640
7661
|
msgid "Using --configprint is deprecated. Use 'puppet config <subcommand>' instead."
|
7641
7662
|
msgstr ""
|
7642
7663
|
|
7643
|
-
#: ../lib/puppet/settings.rb:
|
7664
|
+
#: ../lib/puppet/settings.rb:643
|
7644
7665
|
msgid "Could not load %{file}: %{detail}"
|
7645
7666
|
msgstr ""
|
7646
7667
|
|
7647
|
-
#: ../lib/puppet/settings.rb:
|
7668
|
+
#: ../lib/puppet/settings.rb:750
|
7648
7669
|
msgid "Invalid setting type '%{type}'"
|
7649
7670
|
msgstr ""
|
7650
7671
|
|
7651
|
-
#: ../lib/puppet/settings.rb:
|
7672
|
+
#: ../lib/puppet/settings.rb:905
|
7652
7673
|
msgid "Unknown searchpath case: %{source_type} for the %{source} settings path element."
|
7653
7674
|
msgstr ""
|
7654
7675
|
|
7655
|
-
#: ../lib/puppet/settings.rb:
|
7676
|
+
#: ../lib/puppet/settings.rb:978
|
7656
7677
|
msgid "setting definition for '%{name}' is not a hash!"
|
7657
7678
|
msgstr ""
|
7658
7679
|
|
7659
|
-
#: ../lib/puppet/settings.rb:
|
7680
|
+
#: ../lib/puppet/settings.rb:983
|
7660
7681
|
msgid "Setting %{name} is already defined"
|
7661
7682
|
msgstr ""
|
7662
7683
|
|
7663
|
-
#: ../lib/puppet/settings.rb:
|
7684
|
+
#: ../lib/puppet/settings.rb:989
|
7664
7685
|
msgid "Setting %{name} is already using short name '%{short}'"
|
7665
7686
|
msgstr ""
|
7666
7687
|
|
7667
|
-
#: ../lib/puppet/settings.rb:
|
7688
|
+
#: ../lib/puppet/settings.rb:1253
|
7668
7689
|
msgid "Setting %{name} is deprecated."
|
7669
7690
|
msgstr ""
|
7670
7691
|
|
7671
7692
|
#. TRANSLATORS 'puppet.conf' is a file name and should not be translated
|
7672
|
-
#: ../lib/puppet/settings.rb:
|
7693
|
+
#: ../lib/puppet/settings.rb:1258
|
7673
7694
|
msgid "Setting %{name} is deprecated in puppet.conf."
|
7674
7695
|
msgstr ""
|
7675
7696
|
|
7676
|
-
#: ../lib/puppet/settings.rb:
|
7697
|
+
#: ../lib/puppet/settings.rb:1435
|
7677
7698
|
msgid "Error converting value for param '%{name}': %{detail}"
|
7678
7699
|
msgstr ""
|
7679
7700
|
|
7680
|
-
#: ../lib/puppet/settings.rb:
|
7701
|
+
#: ../lib/puppet/settings.rb:1459
|
7681
7702
|
msgid "Could not find value for %{expression}"
|
7682
7703
|
msgstr ""
|
7683
7704
|
|
7684
7705
|
#. TRANSLATORS '$environment' is a Puppet specific variable and should not be translated
|
7685
|
-
#: ../lib/puppet/settings.rb:
|
7706
|
+
#: ../lib/puppet/settings.rb:1469
|
7686
7707
|
msgid "You cannot interpolate $environment within '%{setting_name}' when using directory environments."
|
7687
7708
|
msgstr ""
|
7688
7709
|
|
7689
|
-
#: ../lib/puppet/settings.rb:
|
7710
|
+
#: ../lib/puppet/settings.rb:1470
|
7690
7711
|
msgid "Its value will remain %{value}."
|
7691
7712
|
msgstr ""
|
7692
7713
|
|
7693
|
-
#: ../lib/puppet/settings.rb:
|
7714
|
+
#: ../lib/puppet/settings.rb:1501
|
7694
7715
|
msgid "Attempt to assign a value to unknown setting %{name}"
|
7695
7716
|
msgstr ""
|
7696
7717
|
|
@@ -7703,38 +7724,38 @@ msgid "Invalid autosign value %{value}: must be 'true'/'false' or an absolute pa
|
|
7703
7724
|
msgstr ""
|
7704
7725
|
|
7705
7726
|
#. TRANSLATORS ':%{name}', ':call_hook', and ':on_write_only' should not be translated
|
7706
|
-
#: ../lib/puppet/settings/base_setting.rb:
|
7727
|
+
#: ../lib/puppet/settings/base_setting.rb:37
|
7707
7728
|
msgid "Setting :%{name} :call_hook is nil, defaulting to :on_write_only"
|
7708
7729
|
msgstr ""
|
7709
7730
|
|
7710
7731
|
#. TRANSLATORS 'call_hook' is a Puppet option name and should not be translated
|
7711
|
-
#: ../lib/puppet/settings/base_setting.rb:
|
7732
|
+
#: ../lib/puppet/settings/base_setting.rb:42
|
7712
7733
|
msgid "Invalid option %{value} for call_hook"
|
7713
7734
|
msgstr ""
|
7714
7735
|
|
7715
7736
|
#. TRANSLATORS ':call_hook' and ':hook' are specific setting names and should not be translated
|
7716
|
-
#: ../lib/puppet/settings/base_setting.rb:
|
7737
|
+
#: ../lib/puppet/settings/base_setting.rb:101
|
7717
7738
|
msgid "Cannot reference :call_hook for :%{name} if no :hook is defined"
|
7718
7739
|
msgstr ""
|
7719
7740
|
|
7720
|
-
#: ../lib/puppet/settings/base_setting.rb:
|
7741
|
+
#: ../lib/puppet/settings/base_setting.rb:107
|
7721
7742
|
msgid "%{class_name} (setting '%{setting}') does not accept %{parameter}"
|
7722
7743
|
msgstr ""
|
7723
7744
|
|
7724
|
-
#: ../lib/puppet/settings/base_setting.rb:
|
7745
|
+
#: ../lib/puppet/settings/base_setting.rb:114
|
7725
7746
|
msgid "You must provide a description for the %{class_name} config option"
|
7726
7747
|
msgstr ""
|
7727
7748
|
|
7728
|
-
#: ../lib/puppet/settings/base_setting.rb:
|
7749
|
+
#: ../lib/puppet/settings/base_setting.rb:128
|
7729
7750
|
msgid "Short names can only be one character."
|
7730
7751
|
msgstr ""
|
7731
7752
|
|
7732
7753
|
#. TRANSLATORS 'deprecated' is a Puppet setting and ':completely' and ':allowed_on_commandline' are possible values and should not be translated
|
7733
|
-
#: ../lib/puppet/settings/base_setting.rb:
|
7754
|
+
#: ../lib/puppet/settings/base_setting.rb:197
|
7734
7755
|
msgid "Unsupported deprecated value '%{deprecation}'."
|
7735
7756
|
msgstr ""
|
7736
7757
|
|
7737
|
-
#: ../lib/puppet/settings/base_setting.rb:
|
7758
|
+
#: ../lib/puppet/settings/base_setting.rb:198
|
7738
7759
|
msgid "Supported values for deprecated are ':completely' or ':allowed_on_commandline'"
|
7739
7760
|
msgstr ""
|
7740
7761
|
|
@@ -8755,7 +8776,7 @@ msgid "Not managing symlink mode"
|
|
8755
8776
|
msgstr ""
|
8756
8777
|
|
8757
8778
|
#. TRANSLATORS "source_permissions" is a parameter name and should not be translated
|
8758
|
-
#: ../lib/puppet/type/file/source.rb:
|
8779
|
+
#: ../lib/puppet/type/file/source.rb:373
|
8759
8780
|
msgid "The `source_permissions` parameter is deprecated. Explicitly set `owner`, `group`, and `mode`."
|
8760
8781
|
msgstr ""
|
8761
8782
|
|
@@ -8867,15 +8888,15 @@ msgstr ""
|
|
8867
8888
|
msgid "Setting enable to %{value} is only supported on Microsoft Windows."
|
8868
8889
|
msgstr ""
|
8869
8890
|
|
8870
|
-
#: ../lib/puppet/type/service.rb:
|
8891
|
+
#: ../lib/puppet/type/service.rb:166
|
8871
8892
|
msgid "The 'logonaccount' parameter is mandatory when setting 'logonpassword'."
|
8872
8893
|
msgstr ""
|
8873
8894
|
|
8874
|
-
#: ../lib/puppet/type/service.rb:
|
8895
|
+
#: ../lib/puppet/type/service.rb:167 ../lib/puppet/type/user.rb:271
|
8875
8896
|
msgid "Passwords cannot include ':'"
|
8876
8897
|
msgstr ""
|
8877
8898
|
|
8878
|
-
#: ../lib/puppet/type/service.rb:
|
8899
|
+
#: ../lib/puppet/type/service.rb:304
|
8879
8900
|
msgid "\"%{value}\" is not a positive integer: the timeout parameter must be specified as a positive integer"
|
8880
8901
|
msgstr ""
|
8881
8902
|
|
@@ -8910,81 +8931,81 @@ msgstr ""
|
|
8910
8931
|
msgid "File does not exist"
|
8911
8932
|
msgstr ""
|
8912
8933
|
|
8913
|
-
#: ../lib/puppet/type/user.rb:
|
8934
|
+
#: ../lib/puppet/type/user.rb:182
|
8914
8935
|
msgid "Could not find group(s) %{groups}"
|
8915
8936
|
msgstr ""
|
8916
8937
|
|
8917
|
-
#: ../lib/puppet/type/user.rb:
|
8938
|
+
#: ../lib/puppet/type/user.rb:291
|
8918
8939
|
msgid "Password minimum age must be provided as a number."
|
8919
8940
|
msgstr ""
|
8920
8941
|
|
8921
|
-
#: ../lib/puppet/type/user.rb:
|
8942
|
+
#: ../lib/puppet/type/user.rb:310
|
8922
8943
|
msgid "Password maximum age must be provided as a number."
|
8923
8944
|
msgstr ""
|
8924
8945
|
|
8925
|
-
#: ../lib/puppet/type/user.rb:
|
8946
|
+
#: ../lib/puppet/type/user.rb:341
|
8926
8947
|
msgid "Group names must be provided, not GID numbers."
|
8927
8948
|
msgstr ""
|
8928
8949
|
|
8929
|
-
#: ../lib/puppet/type/user.rb:
|
8950
|
+
#: ../lib/puppet/type/user.rb:343
|
8930
8951
|
msgid "Group names must be provided as an array, not a comma-separated list."
|
8931
8952
|
msgstr ""
|
8932
8953
|
|
8933
|
-
#: ../lib/puppet/type/user.rb:
|
8954
|
+
#: ../lib/puppet/type/user.rb:344
|
8934
8955
|
msgid "Group names must not be empty. If you want to specify \"no groups\" pass an empty array"
|
8935
8956
|
msgstr ""
|
8936
8957
|
|
8937
|
-
#: ../lib/puppet/type/user.rb:
|
8958
|
+
#: ../lib/puppet/type/user.rb:437
|
8938
8959
|
msgid "User provider %{name} can not manage home directories"
|
8939
8960
|
msgstr ""
|
8940
8961
|
|
8941
8962
|
#. TRANSLATORS YYYY-MM-DD represents a date with a four-digit year, a two-digit month, and a two-digit day,
|
8942
8963
|
#. TRANSLATORS separated by dashes.
|
8943
|
-
#: ../lib/puppet/type/user.rb:
|
8964
|
+
#: ../lib/puppet/type/user.rb:454
|
8944
8965
|
msgid "Expiry dates must be YYYY-MM-DD or the string \"absent\""
|
8945
8966
|
msgstr ""
|
8946
8967
|
|
8947
|
-
#: ../lib/puppet/type/user.rb:
|
8968
|
+
#: ../lib/puppet/type/user.rb:521
|
8948
8969
|
msgid "Role names must be provided, not numbers"
|
8949
8970
|
msgstr ""
|
8950
8971
|
|
8951
|
-
#: ../lib/puppet/type/user.rb:
|
8972
|
+
#: ../lib/puppet/type/user.rb:523
|
8952
8973
|
msgid "Role names must be provided as an array, not a comma-separated list"
|
8953
8974
|
msgstr ""
|
8954
8975
|
|
8955
|
-
#: ../lib/puppet/type/user.rb:
|
8976
|
+
#: ../lib/puppet/type/user.rb:560
|
8956
8977
|
msgid "Auth names must be provided, not numbers"
|
8957
8978
|
msgstr ""
|
8958
8979
|
|
8959
|
-
#: ../lib/puppet/type/user.rb:
|
8980
|
+
#: ../lib/puppet/type/user.rb:562
|
8960
8981
|
msgid "Auth names must be provided as an array, not a comma-separated list"
|
8961
8982
|
msgstr ""
|
8962
8983
|
|
8963
|
-
#: ../lib/puppet/type/user.rb:
|
8984
|
+
#: ../lib/puppet/type/user.rb:586
|
8964
8985
|
msgid "Profile names must be provided, not numbers"
|
8965
8986
|
msgstr ""
|
8966
8987
|
|
8967
|
-
#: ../lib/puppet/type/user.rb:
|
8988
|
+
#: ../lib/puppet/type/user.rb:588
|
8968
8989
|
msgid "Profile names must be provided as an array, not a comma-separated list"
|
8969
8990
|
msgstr ""
|
8970
8991
|
|
8971
|
-
#: ../lib/puppet/type/user.rb:
|
8992
|
+
#: ../lib/puppet/type/user.rb:699
|
8972
8993
|
msgid "Ssh_authorized_key type is not available. Cannot purge SSH keys."
|
8973
8994
|
msgstr ""
|
8974
8995
|
|
8975
|
-
#: ../lib/puppet/type/user.rb:
|
8996
|
+
#: ../lib/puppet/type/user.rb:737
|
8976
8997
|
msgid "Each entry for purge_ssh_keys must be a string, not a %{klass}"
|
8977
8998
|
msgstr ""
|
8978
8999
|
|
8979
|
-
#: ../lib/puppet/type/user.rb:
|
9000
|
+
#: ../lib/puppet/type/user.rb:740
|
8980
9001
|
msgid "Paths to keyfiles must be absolute, not %{entry}"
|
8981
9002
|
msgstr ""
|
8982
9003
|
|
8983
|
-
#: ../lib/puppet/type/user.rb:
|
9004
|
+
#: ../lib/puppet/type/user.rb:744
|
8984
9005
|
msgid "purge_ssh_keys must be true, false, or an array of file names, not %{value}"
|
8985
9006
|
msgstr ""
|
8986
9007
|
|
8987
|
-
#: ../lib/puppet/type/user.rb:
|
9008
|
+
#: ../lib/puppet/type/user.rb:772
|
8988
9009
|
msgid "Class name must be provided."
|
8989
9010
|
msgstr ""
|
8990
9011
|
|
@@ -9083,11 +9104,11 @@ msgstr ""
|
|
9083
9104
|
msgid "Failed to abandon a child process contract"
|
9084
9105
|
msgstr ""
|
9085
9106
|
|
9086
|
-
#: ../lib/puppet/util/autoload.rb:
|
9107
|
+
#: ../lib/puppet/util/autoload.rb:83
|
9087
9108
|
msgid "Could not autoload %{name}: %{detail}"
|
9088
9109
|
msgstr ""
|
9089
9110
|
|
9090
|
-
#: ../lib/puppet/util/autoload.rb:
|
9111
|
+
#: ../lib/puppet/util/autoload.rb:177
|
9091
9112
|
msgid "Autoload paths cannot be fully qualified"
|
9092
9113
|
msgstr ""
|
9093
9114
|
|
@@ -9322,9 +9343,9 @@ msgstr ""
|
|
9322
9343
|
msgid "Dynamically-bound port lookup failed; using first entry from the `server_list` setting: %{port}"
|
9323
9344
|
msgstr ""
|
9324
9345
|
|
9325
|
-
#. TRANSLATORS '
|
9346
|
+
#. TRANSLATORS 'serverport' is the name of a setting and should not be translated
|
9326
9347
|
#: ../lib/puppet/util/connection.rb:75
|
9327
|
-
msgid "Dynamically-bound port lookup failed; falling back to `
|
9348
|
+
msgid "Dynamically-bound port lookup failed; falling back to `serverport` setting: %{port}"
|
9328
9349
|
msgstr ""
|
9329
9350
|
|
9330
9351
|
#: ../lib/puppet/util/connection.rb:80
|
@@ -9671,19 +9692,19 @@ msgstr ""
|
|
9671
9692
|
msgid "Unable to write the file %{file_path}. %{error}"
|
9672
9693
|
msgstr ""
|
9673
9694
|
|
9674
|
-
#: ../lib/puppet/util/posix.rb:
|
9695
|
+
#: ../lib/puppet/util/posix.rb:29
|
9675
9696
|
msgid "Removing any duplicate group entries"
|
9676
9697
|
msgstr ""
|
9677
9698
|
|
9678
|
-
#: ../lib/puppet/util/posix.rb:
|
9699
|
+
#: ../lib/puppet/util/posix.rb:75
|
9679
9700
|
msgid "Did not get id from caller"
|
9680
9701
|
msgstr ""
|
9681
9702
|
|
9682
|
-
#: ../lib/puppet/util/posix.rb:
|
9703
|
+
#: ../lib/puppet/util/posix.rb:79 ../lib/puppet/util/posix.rb:104
|
9683
9704
|
msgid "Tried to get %{field} field for silly id %{id}"
|
9684
9705
|
msgstr ""
|
9685
9706
|
|
9686
|
-
#: ../lib/puppet/util/posix.rb:
|
9707
|
+
#: ../lib/puppet/util/posix.rb:132 ../lib/puppet/util/posix.rb:142 ../lib/puppet/util/posix.rb:152
|
9687
9708
|
msgid "Can only handle users and groups"
|
9688
9709
|
msgstr ""
|
9689
9710
|
|
@@ -9907,7 +9928,7 @@ msgstr ""
|
|
9907
9928
|
msgid "Unable to read wide strings with %{null_terminator} terminal nulls"
|
9908
9929
|
msgstr ""
|
9909
9930
|
|
9910
|
-
#: ../lib/puppet/util/windows/api_types.rb:
|
9931
|
+
#: ../lib/puppet/util/windows/api_types.rb:230
|
9911
9932
|
msgid "Bad GUID format."
|
9912
9933
|
msgstr ""
|
9913
9934
|
|