puppet 6.24.0-x64-mingw32 → 6.25.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 +2 -2
- data/Gemfile.lock +12 -12
- data/{ext → examples/enc}/regexp_nodes/classes/databases +0 -0
- data/{ext → examples/enc}/regexp_nodes/classes/webservers +0 -0
- data/{ext → examples/enc}/regexp_nodes/environment/development +0 -0
- data/{ext → examples/enc}/regexp_nodes/parameters/service/prod +0 -0
- data/{ext → examples/enc}/regexp_nodes/parameters/service/qa +0 -0
- data/{ext → examples/enc}/regexp_nodes/parameters/service/sandbox +0 -0
- data/{ext → examples/enc}/regexp_nodes/regexp_nodes.rb +0 -0
- data/{ext → examples}/nagios/check_puppet.rb +2 -2
- data/ext/README.md +13 -0
- data/lib/puppet/application/agent.rb +4 -0
- data/lib/puppet/application/apply.rb +20 -2
- data/lib/puppet/application/resource.rb +15 -13
- data/lib/puppet/concurrent/thread_local_singleton.rb +1 -0
- data/lib/puppet/configurer.rb +85 -57
- data/lib/puppet/confine/variable.rb +1 -1
- data/lib/puppet/defaults.rb +36 -30
- data/lib/puppet/environments.rb +66 -26
- data/lib/puppet/face/facts.rb +1 -1
- data/lib/puppet/facter_impl.rb +96 -0
- data/lib/puppet/file_serving/configuration/parser.rb +2 -0
- data/lib/puppet/file_serving/configuration.rb +3 -0
- data/lib/puppet/file_serving/mount/file.rb +4 -4
- data/lib/puppet/file_serving/mount/scripts.rb +24 -0
- data/lib/puppet/file_system/file_impl.rb +3 -1
- data/lib/puppet/forge.rb +1 -1
- data/lib/puppet/functions/find_template.rb +2 -2
- data/lib/puppet/http/service/compiler.rb +6 -1
- data/lib/puppet/indirector/catalog/compiler.rb +24 -6
- data/lib/puppet/indirector/catalog/rest.rb +1 -0
- data/lib/puppet/indirector/facts/facter.rb +6 -6
- data/lib/puppet/indirector/indirection.rb +1 -1
- data/lib/puppet/indirector/terminus.rb +4 -0
- data/lib/puppet/module/plan.rb +0 -1
- data/lib/puppet/module/task.rb +1 -1
- data/lib/puppet/module.rb +1 -0
- data/lib/puppet/module_tool/applications/installer.rb +8 -4
- data/lib/puppet/module_tool/applications/uninstaller.rb +1 -1
- data/lib/puppet/module_tool/applications/upgrader.rb +1 -1
- data/lib/puppet/network/http/api/indirected_routes.rb +1 -1
- data/lib/puppet/node/environment.rb +10 -11
- data/lib/puppet/pal/pal_impl.rb +1 -1
- data/lib/puppet/parser/scope.rb +1 -0
- data/lib/puppet/parser/templatewrapper.rb +1 -0
- data/lib/puppet/pops/lookup/lookup_adapter.rb +3 -2
- data/lib/puppet/pops/model/ast.rb +1 -0
- data/lib/puppet/pops/model/factory.rb +2 -1
- data/lib/puppet/pops/parser/eparser.rb +201 -201
- data/lib/puppet/pops/parser/lexer2.rb +92 -91
- data/lib/puppet/pops/parser/slurp_support.rb +1 -0
- data/lib/puppet/pops/serialization/to_data_converter.rb +18 -6
- data/lib/puppet/pops/serialization/to_stringified_converter.rb +1 -1
- data/lib/puppet/pops/types/type_formatter.rb +4 -3
- data/lib/puppet/pops/types/types.rb +1 -1
- data/lib/puppet/provider/aix_object.rb +1 -1
- data/lib/puppet/provider/group/groupadd.rb +5 -2
- data/lib/puppet/provider/package/pkg.rb +19 -2
- data/lib/puppet/provider/package/puppetserver_gem.rb +1 -1
- data/lib/puppet/provider/package/yum.rb +1 -1
- data/lib/puppet/provider/service/base.rb +1 -1
- data/lib/puppet/provider/service/init.rb +5 -5
- data/lib/puppet/provider/service/launchd.rb +2 -2
- data/lib/puppet/provider/service/redhat.rb +1 -1
- data/lib/puppet/provider/service/smf.rb +3 -3
- data/lib/puppet/provider/service/systemd.rb +2 -2
- data/lib/puppet/provider/service/upstart.rb +5 -5
- data/lib/puppet/provider/user/aix.rb +44 -1
- data/lib/puppet/provider/user/directoryservice.rb +1 -1
- data/lib/puppet/provider/user/useradd.rb +72 -16
- data/lib/puppet/provider.rb +1 -1
- data/lib/puppet/reference/providers.rb +2 -2
- data/lib/puppet/resource/type_collection.rb +1 -0
- data/lib/puppet/runtime.rb +11 -1
- data/lib/puppet/settings.rb +2 -2
- data/lib/puppet/test/test_helper.rb +4 -1
- data/lib/puppet/transaction/persistence.rb +11 -1
- data/lib/puppet/transaction/report.rb +15 -1
- data/lib/puppet/type/exec.rb +19 -2
- data/lib/puppet/type/file.rb +6 -6
- data/lib/puppet/type/filebucket.rb +3 -3
- data/lib/puppet/type/group.rb +0 -1
- data/lib/puppet/type/resources.rb +1 -1
- data/lib/puppet/type/service.rb +8 -3
- data/lib/puppet/type/user.rb +0 -1
- data/lib/puppet/type.rb +1 -1
- data/lib/puppet/util/command_line.rb +1 -1
- data/lib/puppet/util/filetype.rb +2 -2
- data/lib/puppet/util/json.rb +3 -0
- data/lib/puppet/util/log.rb +1 -2
- data/lib/puppet/util/logging.rb +1 -25
- data/lib/puppet/util/pidlock.rb +1 -1
- data/lib/puppet/util/rdoc/parser/puppet_parser_core.rb +1 -1
- data/lib/puppet/util/suidmanager.rb +1 -2
- data/lib/puppet/util/tagging.rb +1 -0
- data/lib/puppet/util/windows/user.rb +0 -2
- data/lib/puppet/util.rb +4 -3
- data/lib/puppet/version.rb +1 -1
- data/lib/puppet.rb +2 -6
- data/locales/puppet.pot +246 -230
- data/man/man5/puppet.conf.5 +33 -25
- data/man/man8/puppet-agent.8 +4 -1
- 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 +3 -3
- 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/fixtures/integration/application/agent/lib/facter/agent_spec_role.rb +3 -0
- data/spec/fixtures/integration/l10n/envs/prod/modules/demo/Gemfile +4 -0
- data/spec/fixtures/integration/l10n/envs/prod/modules/demo/Rakefile +3 -0
- data/spec/fixtures/integration/l10n/envs/prod/modules/demo/lib/puppet/functions/l10n.rb +8 -0
- data/spec/fixtures/integration/l10n/envs/prod/modules/demo/locales/config.yaml +25 -0
- data/spec/fixtures/integration/l10n/envs/prod/modules/demo/locales/ja/puppet-l10n.po +19 -0
- data/spec/fixtures/integration/l10n/envs/prod/modules/demo/locales/puppet-l10n.pot +20 -0
- data/spec/fixtures/integration/l10n/envs/prod/modules/demo/metadata.json +8 -0
- data/spec/integration/application/agent_spec.rb +113 -37
- data/spec/integration/application/filebucket_spec.rb +5 -0
- data/spec/integration/configurer_spec.rb +18 -2
- data/spec/integration/indirector/facts/facter_spec.rb +3 -3
- data/spec/integration/l10n/compiler_spec.rb +37 -0
- data/spec/integration/transaction/report_spec.rb +1 -1
- data/spec/integration/type/file_spec.rb +2 -2
- data/spec/integration/type/package_spec.rb +6 -6
- data/spec/integration/util/rdoc/parser_spec.rb +1 -1
- data/spec/integration/util/windows/process_spec.rb +1 -9
- data/spec/lib/puppet_spec/modules.rb +13 -2
- data/spec/lib/puppet_spec/puppetserver.rb +15 -0
- data/spec/shared_behaviours/documentation_on_faces.rb +0 -2
- data/spec/shared_contexts/l10n.rb +27 -0
- data/spec/spec_helper.rb +1 -10
- data/spec/unit/application/apply_spec.rb +76 -56
- data/spec/unit/application/resource_spec.rb +29 -0
- data/spec/unit/configurer_spec.rb +171 -56
- data/spec/unit/defaults_spec.rb +1 -0
- data/spec/unit/environments_spec.rb +150 -1
- data/spec/unit/facter_impl_spec.rb +31 -0
- data/spec/unit/file_bucket/dipper_spec.rb +2 -2
- data/spec/unit/file_serving/configuration/parser_spec.rb +23 -0
- data/spec/unit/file_serving/configuration_spec.rb +14 -4
- data/spec/unit/file_serving/mount/scripts_spec.rb +69 -0
- data/spec/unit/file_system_spec.rb +7 -0
- data/spec/unit/functions/logging_spec.rb +1 -0
- data/spec/unit/functions/lookup_spec.rb +64 -0
- data/spec/unit/http/service/compiler_spec.rb +8 -0
- data/spec/unit/indirector/catalog/compiler_spec.rb +87 -0
- data/spec/unit/indirector/catalog/rest_spec.rb +8 -0
- data/spec/unit/indirector/indirection_spec.rb +10 -3
- data/spec/unit/interface/action_spec.rb +0 -9
- data/spec/unit/module_spec.rb +15 -1
- data/spec/unit/module_tool/applications/installer_spec.rb +39 -12
- data/spec/unit/network/authstore_spec.rb +0 -15
- data/spec/unit/network/formats_spec.rb +6 -0
- data/spec/unit/pops/parser/parse_containers_spec.rb +0 -11
- data/spec/unit/pops/serialization/to_from_hr_spec.rb +58 -0
- data/spec/unit/pops/serialization/to_stringified_spec.rb +5 -0
- data/spec/unit/pops/types/type_calculator_spec.rb +6 -0
- data/spec/unit/provider/package/gem_spec.rb +1 -1
- data/spec/unit/provider/package/pip2_spec.rb +1 -1
- data/spec/unit/provider/package/pip3_spec.rb +1 -1
- data/spec/unit/provider/package/pip_spec.rb +1 -1
- data/spec/unit/provider/package/pkg_spec.rb +29 -4
- data/spec/unit/provider/package/puppet_gem_spec.rb +1 -1
- data/spec/unit/provider/package/puppetserver_gem_spec.rb +1 -1
- data/spec/unit/provider/service/launchd_spec.rb +11 -0
- data/spec/unit/provider/service/systemd_spec.rb +1 -1
- data/spec/unit/provider/user/aix_spec.rb +100 -0
- data/spec/unit/provider/user/directoryservice_spec.rb +1 -1
- data/spec/unit/provider/user/useradd_spec.rb +43 -2
- data/spec/unit/provider_spec.rb +4 -4
- data/spec/unit/puppet_spec.rb +12 -4
- data/spec/unit/ssl/certificate_request_spec.rb +8 -14
- data/spec/unit/type/service_spec.rb +27 -0
- data/spec/unit/type_spec.rb +2 -2
- data/spec/unit/util/logging_spec.rb +2 -0
- data/tasks/parallel.rake +3 -3
- metadata +37 -94
- data/ext/README.environment +0 -8
- data/ext/dbfix.sql +0 -132
- data/ext/debian/README.Debian +0 -8
- data/ext/debian/README.source +0 -2
- data/ext/debian/TODO.Debian +0 -1
- data/ext/debian/changelog.erb +0 -1122
- data/ext/debian/compat +0 -1
- data/ext/debian/control +0 -144
- data/ext/debian/copyright +0 -339
- data/ext/debian/docs +0 -1
- data/ext/debian/fileserver.conf +0 -41
- data/ext/debian/puppet-common.dirs +0 -13
- data/ext/debian/puppet-common.install +0 -3
- data/ext/debian/puppet-common.lintian-overrides +0 -5
- data/ext/debian/puppet-common.manpages +0 -28
- data/ext/debian/puppet-common.postinst +0 -35
- data/ext/debian/puppet-common.postrm +0 -33
- data/ext/debian/puppet-el.dirs +0 -1
- data/ext/debian/puppet-el.emacsen-install +0 -25
- data/ext/debian/puppet-el.emacsen-remove +0 -11
- data/ext/debian/puppet-el.emacsen-startup +0 -9
- data/ext/debian/puppet-el.install +0 -1
- data/ext/debian/puppet-testsuite.install +0 -2
- data/ext/debian/puppet-testsuite.lintian-overrides +0 -4
- data/ext/debian/puppet.lintian-overrides +0 -3
- data/ext/debian/puppet.logrotate +0 -20
- data/ext/debian/puppet.postinst +0 -20
- data/ext/debian/puppet.postrm +0 -20
- data/ext/debian/puppet.preinst +0 -20
- data/ext/debian/puppetmaster-common.install +0 -2
- data/ext/debian/puppetmaster-common.manpages +0 -2
- data/ext/debian/puppetmaster-common.postinst +0 -6
- data/ext/debian/puppetmaster-passenger.dirs +0 -4
- data/ext/debian/puppetmaster-passenger.postinst +0 -162
- data/ext/debian/puppetmaster-passenger.postrm +0 -61
- data/ext/debian/puppetmaster.README.debian +0 -17
- data/ext/debian/puppetmaster.default +0 -14
- data/ext/debian/puppetmaster.init +0 -137
- data/ext/debian/puppetmaster.lintian-overrides +0 -3
- data/ext/debian/puppetmaster.postinst +0 -20
- data/ext/debian/puppetmaster.postrm +0 -5
- data/ext/debian/puppetmaster.preinst +0 -22
- data/ext/debian/rules +0 -132
- data/ext/debian/source/format +0 -1
- data/ext/debian/source/options +0 -1
- data/ext/debian/vim-puppet.README.Debian +0 -13
- data/ext/debian/vim-puppet.dirs +0 -5
- data/ext/debian/vim-puppet.yaml +0 -7
- data/ext/debian/watch +0 -2
- data/ext/freebsd/puppetd +0 -26
- data/ext/freebsd/puppetmasterd +0 -26
- data/ext/gentoo/conf.d/puppet +0 -5
- data/ext/gentoo/conf.d/puppetmaster +0 -12
- data/ext/gentoo/init.d/puppet +0 -38
- data/ext/gentoo/init.d/puppetmaster +0 -51
- data/ext/gentoo/puppet/fileserver.conf +0 -41
- data/ext/ips/puppet-agent +0 -44
- data/ext/ips/puppet-master +0 -44
- data/ext/ips/puppet.p5m.erb +0 -12
- data/ext/ips/puppetagent.xml +0 -42
- data/ext/ips/puppetmaster.xml +0 -42
- data/ext/ips/rules +0 -19
- data/ext/ips/transforms +0 -34
- data/ext/ldap/puppet.schema +0 -24
- data/ext/logcheck/puppet +0 -23
- data/ext/osx/file_mapping.yaml +0 -33
- data/ext/osx/postflight.erb +0 -109
- data/ext/osx/preflight.erb +0 -52
- data/ext/osx/prototype.plist.erb +0 -38
- data/ext/redhat/fileserver.conf +0 -41
- data/ext/redhat/logrotate +0 -21
- data/ext/redhat/puppet.spec.erb +0 -842
- data/ext/redhat/server.init +0 -128
- data/ext/redhat/server.sysconfig +0 -13
- data/ext/solaris/pkginfo +0 -6
- data/ext/solaris/smf/puppetd.xml +0 -77
- data/ext/solaris/smf/puppetmasterd.xml +0 -77
- data/ext/solaris/smf/svc-puppetd +0 -71
- data/ext/solaris/smf/svc-puppetmasterd +0 -67
- data/ext/suse/puppet.spec +0 -310
- data/ext/suse/server.init +0 -173
- data/ext/yaml_nodes.rb +0 -105
- data/spec/unit/indirector/store_configs_spec.rb +0 -7
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.24.0-169-g88eaa4c1dd\n"
|
10
10
|
"\n"
|
11
11
|
"Report-Msgid-Bugs-To: https://tickets.puppetlabs.com\n"
|
12
|
-
"POT-Creation-Date: 2021-
|
13
|
-
"PO-Revision-Date: 2021-
|
12
|
+
"POT-Creation-Date: 2021-09-28 10:51+0000\n"
|
13
|
+
"PO-Revision-Date: 2021-09-28 10:51+0000\n"
|
14
14
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
15
15
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
16
16
|
"Language: \n"
|
@@ -28,11 +28,11 @@ msgstr ""
|
|
28
28
|
msgid "See https://puppet.com/docs/puppet/%{minor_version}/deprecated_language.html"
|
29
29
|
msgstr ""
|
30
30
|
|
31
|
-
#: ../lib/hiera/scope.rb:46 ../lib/puppet/parser/scope.rb:
|
31
|
+
#: ../lib/hiera/scope.rb:46 ../lib/puppet/parser/scope.rb:535
|
32
32
|
msgid "Variable: %{name}"
|
33
33
|
msgstr ""
|
34
34
|
|
35
|
-
#: ../lib/hiera/scope.rb:47 ../lib/hiera/scope.rb:49 ../lib/puppet/parser/scope.rb:
|
35
|
+
#: ../lib/hiera/scope.rb:47 ../lib/hiera/scope.rb:49 ../lib/puppet/parser/scope.rb:536 ../lib/puppet/parser/scope.rb:538
|
36
36
|
msgid "Undefined variable '%{name}'; %{reason}"
|
37
37
|
msgstr ""
|
38
38
|
|
@@ -48,21 +48,21 @@ msgstr ""
|
|
48
48
|
msgid "Config file %{hiera_config} not found, using Hiera defaults"
|
49
49
|
msgstr ""
|
50
50
|
|
51
|
-
#: ../lib/puppet.rb:
|
51
|
+
#: ../lib/puppet.rb:140
|
52
52
|
msgid "Support for ruby version %{version} is deprecated and will be removed in a future release. See https://puppet.com/docs/puppet/latest/system_requirements.html for a list of supported ruby versions."
|
53
53
|
msgstr ""
|
54
54
|
|
55
|
-
#: ../lib/puppet.rb:
|
55
|
+
#: ../lib/puppet.rb:226
|
56
56
|
msgid "The environmentpath setting cannot be empty or nil."
|
57
57
|
msgstr ""
|
58
58
|
|
59
59
|
#. TRANSLATORS: `message` is an already translated string of why SSL failed to initialize
|
60
|
-
#: ../lib/puppet.rb:
|
60
|
+
#: ../lib/puppet.rb:253
|
61
61
|
msgid "Failed to initialize SSL: %{message}"
|
62
62
|
msgstr ""
|
63
63
|
|
64
64
|
#. TRANSLATORS: `puppet agent -t` is a command and should not be translated
|
65
|
-
#: ../lib/puppet.rb:
|
65
|
+
#: ../lib/puppet.rb:255
|
66
66
|
msgid "Run `puppet agent -t`"
|
67
67
|
msgstr ""
|
68
68
|
|
@@ -184,57 +184,57 @@ msgstr ""
|
|
184
184
|
msgid "The puppet agent daemon"
|
185
185
|
msgstr ""
|
186
186
|
|
187
|
-
#: ../lib/puppet/application/agent.rb:
|
187
|
+
#: ../lib/puppet/application/agent.rb:426
|
188
188
|
msgid "Fingerprint asked but neither the certificate, nor the certificate request have been issued"
|
189
189
|
msgstr ""
|
190
190
|
|
191
|
-
#: ../lib/puppet/application/agent.rb:
|
191
|
+
#: ../lib/puppet/application/agent.rb:431
|
192
192
|
msgid "Failed to generate fingerprint: %{message}"
|
193
193
|
msgstr ""
|
194
194
|
|
195
|
-
#: ../lib/puppet/application/agent.rb:
|
195
|
+
#: ../lib/puppet/application/agent.rb:454
|
196
196
|
msgid "Starting Puppet client version %{version}"
|
197
197
|
msgstr ""
|
198
198
|
|
199
|
-
#: ../lib/puppet/application/agent.rb:
|
199
|
+
#: ../lib/puppet/application/agent.rb:470
|
200
200
|
msgid "The puppet agent command does not take parameters"
|
201
201
|
msgstr ""
|
202
202
|
|
203
|
-
#: ../lib/puppet/application/apply.rb:
|
203
|
+
#: ../lib/puppet/application/apply.rb:37
|
204
204
|
msgid "Apply Puppet manifests locally"
|
205
205
|
msgstr ""
|
206
206
|
|
207
207
|
#. TRANSLATORS "puppet apply" is a program command and should not be translated
|
208
208
|
#. TRANSLATORS "puppet apply" is a program command and should not be translated
|
209
|
-
#: ../lib/puppet/application/apply.rb:
|
209
|
+
#: ../lib/puppet/application/apply.rb:212 ../lib/puppet/application/apply.rb:340
|
210
210
|
msgid "For puppet apply"
|
211
211
|
msgstr ""
|
212
212
|
|
213
|
-
#: ../lib/puppet/application/apply.rb:
|
213
|
+
#: ../lib/puppet/application/apply.rb:220
|
214
214
|
msgid "%{file} is not readable"
|
215
215
|
msgstr ""
|
216
216
|
|
217
|
-
#: ../lib/puppet/application/apply.rb:
|
217
|
+
#: ../lib/puppet/application/apply.rb:306 ../lib/puppet/application/script.rb:241
|
218
218
|
msgid "Exiting"
|
219
219
|
msgstr ""
|
220
220
|
|
221
|
-
#: ../lib/puppet/application/apply.rb:
|
221
|
+
#: ../lib/puppet/application/apply.rb:350
|
222
222
|
msgid "Could not deserialize catalog from %{format}: %{detail}"
|
223
223
|
msgstr ""
|
224
224
|
|
225
|
-
#: ../lib/puppet/application/apply.rb:
|
225
|
+
#: ../lib/puppet/application/apply.rb:371 ../lib/puppet/application/script.rb:146
|
226
226
|
msgid "Could not find facts for %{node}"
|
227
227
|
msgstr ""
|
228
228
|
|
229
|
-
#: ../lib/puppet/application/apply.rb:
|
229
|
+
#: ../lib/puppet/application/apply.rb:383 ../lib/puppet/application/script.rb:154
|
230
230
|
msgid "Could not find node %{node}"
|
231
231
|
msgstr ""
|
232
232
|
|
233
|
-
#: ../lib/puppet/application/apply.rb:
|
233
|
+
#: ../lib/puppet/application/apply.rb:396 ../lib/puppet/application/script.rb:139
|
234
234
|
msgid "Could not find file %{manifest}"
|
235
235
|
msgstr ""
|
236
236
|
|
237
|
-
#: ../lib/puppet/application/apply.rb:
|
237
|
+
#: ../lib/puppet/application/apply.rb:397
|
238
238
|
msgid "Only one file can be applied per run. Skipping %{files}"
|
239
239
|
msgstr ""
|
240
240
|
|
@@ -430,7 +430,7 @@ msgstr ""
|
|
430
430
|
msgid "Invalid parameter setting %{setting}"
|
431
431
|
msgstr ""
|
432
432
|
|
433
|
-
#: ../lib/puppet/application/resource.rb:
|
433
|
+
#: ../lib/puppet/application/resource.rb:241
|
434
434
|
msgid "Listing all file instances is not supported. Please specify a file or directory, e.g. puppet resource file /etc"
|
435
435
|
msgstr ""
|
436
436
|
|
@@ -538,93 +538,105 @@ msgstr ""
|
|
538
538
|
msgid "Not using cached catalog because its environment '%{catalog_env}' does not match '%{local_env}'"
|
539
539
|
msgstr ""
|
540
540
|
|
541
|
-
#: ../lib/puppet/configurer.rb:100 ../lib/puppet/configurer.rb:
|
541
|
+
#: ../lib/puppet/configurer.rb:100 ../lib/puppet/configurer.rb:185
|
542
542
|
msgid "Using cached catalog from environment '%{catalog_env}'"
|
543
543
|
msgstr ""
|
544
544
|
|
545
|
-
#: ../lib/puppet/configurer.rb:
|
545
|
+
#: ../lib/puppet/configurer.rb:178
|
546
546
|
msgid "Could not retrieve catalog; skipping run"
|
547
547
|
msgstr ""
|
548
548
|
|
549
|
-
#: ../lib/puppet/configurer.rb:
|
549
|
+
#: ../lib/puppet/configurer.rb:194
|
550
550
|
msgid "Applied catalog in %{seconds} seconds"
|
551
551
|
msgstr ""
|
552
552
|
|
553
|
-
#: ../lib/puppet/configurer.rb:
|
553
|
+
#: ../lib/puppet/configurer.rb:230
|
554
554
|
msgid "Could not select a functional puppet server from server_list: '%{server_list}'"
|
555
555
|
msgstr ""
|
556
556
|
|
557
557
|
#. TRANSLATORS 'server_list' is the name of a setting and should not be translated
|
558
|
-
#: ../lib/puppet/configurer.rb:
|
558
|
+
#: ../lib/puppet/configurer.rb:244
|
559
559
|
msgid "Selected puppet server from the `server_list` setting: %{server}:%{port}"
|
560
560
|
msgstr ""
|
561
561
|
|
562
|
-
#: ../lib/puppet/configurer.rb:
|
562
|
+
#: ../lib/puppet/configurer.rb:281
|
563
563
|
msgid "Local environment: '%{local_env}' doesn't match the environment of the cached catalog '%{catalog_env}', switching agent to '%{catalog_env}'."
|
564
564
|
msgstr ""
|
565
565
|
|
566
|
-
#: ../lib/puppet/configurer.rb:
|
567
|
-
msgid "
|
566
|
+
#: ../lib/puppet/configurer.rb:304
|
567
|
+
msgid "Environment not passed via CLI and no catalog was given, attempting to find out the last server-specified environment"
|
568
568
|
msgstr ""
|
569
569
|
|
570
|
-
#: ../lib/puppet/configurer.rb:
|
571
|
-
msgid "
|
570
|
+
#: ../lib/puppet/configurer.rb:309
|
571
|
+
msgid "Could not find a usable environment in the lastrunfile. Either the file does not exist, does not have the required keys, or the values of 'initial_environment' and 'converged_environment' are identical."
|
572
572
|
msgstr ""
|
573
573
|
|
574
|
-
#: ../lib/puppet/configurer.rb:
|
575
|
-
msgid "
|
574
|
+
#: ../lib/puppet/configurer.rb:313
|
575
|
+
msgid "Using environment '%{env}'"
|
576
576
|
msgstr ""
|
577
577
|
|
578
|
-
#: ../lib/puppet/configurer.rb:
|
578
|
+
#: ../lib/puppet/configurer.rb:344
|
579
579
|
msgid "Not using catalog because its environment '%{catalog_env}' does not match agent specified environment '%{local_env}' and strict_environment_mode is set"
|
580
580
|
msgstr ""
|
581
581
|
|
582
|
-
#: ../lib/puppet/configurer.rb:
|
582
|
+
#: ../lib/puppet/configurer.rb:355
|
583
583
|
msgid "Catalog environment didn't stabilize after %{tries} fetches, aborting run"
|
584
584
|
msgstr ""
|
585
585
|
|
586
|
-
#: ../lib/puppet/configurer.rb:
|
586
|
+
#: ../lib/puppet/configurer.rb:357
|
587
587
|
msgid "Local environment: '%{local_env}' doesn't match server specified environment '%{catalog_env}', restarting agent run with environment '%{catalog_env}'"
|
588
588
|
msgstr ""
|
589
589
|
|
590
|
-
#: ../lib/puppet/configurer.rb:
|
590
|
+
#: ../lib/puppet/configurer.rb:420
|
591
591
|
msgid "Failed to apply catalog: %{detail}"
|
592
592
|
msgstr ""
|
593
593
|
|
594
|
-
#: ../lib/puppet/configurer.rb:
|
594
|
+
#: ../lib/puppet/configurer.rb:451
|
595
|
+
msgid "Environment '%{environment}' not found on server, skipping initial pluginsync."
|
596
|
+
msgstr ""
|
597
|
+
|
598
|
+
#: ../lib/puppet/configurer.rb:468 ../lib/puppet/http/resolver/server_list.rb:68 ../lib/puppet/http/resolver/server_list.rb:72
|
595
599
|
msgid "Puppet server %{host}:%{port} is unavailable: %{code} %{reason}"
|
596
600
|
msgstr ""
|
597
601
|
|
598
602
|
#. TRANSLATORS 'server_list' is the name of a setting and should not be translated
|
599
|
-
#: ../lib/puppet/configurer.rb:
|
603
|
+
#: ../lib/puppet/configurer.rb:472 ../lib/puppet/http/resolver/server_list.rb:77 ../lib/puppet/http/resolver/server_list.rb:80
|
600
604
|
msgid "Unable to connect to server from server_list setting: %{detail}"
|
601
605
|
msgstr ""
|
602
606
|
|
603
|
-
#: ../lib/puppet/configurer.rb:
|
607
|
+
#: ../lib/puppet/configurer.rb:488
|
608
|
+
msgid "Found last server-specified environment: %{environment}"
|
609
|
+
msgstr ""
|
610
|
+
|
611
|
+
#: ../lib/puppet/configurer.rb:491
|
612
|
+
msgid "Could not find last server-specified environment: %{detail}"
|
613
|
+
msgstr ""
|
614
|
+
|
615
|
+
#: ../lib/puppet/configurer.rb:508 ../lib/puppet/face/report.rb:47
|
604
616
|
msgid "Could not send report: %{detail}"
|
605
617
|
msgstr ""
|
606
618
|
|
607
|
-
#: ../lib/puppet/configurer.rb:
|
619
|
+
#: ../lib/puppet/configurer.rb:517
|
608
620
|
msgid "Could not save last run local report: %{detail}"
|
609
621
|
msgstr ""
|
610
622
|
|
611
|
-
#: ../lib/puppet/configurer.rb:
|
623
|
+
#: ../lib/puppet/configurer.rb:536
|
612
624
|
msgid "Uploading facts for %{node} to %{server}"
|
613
625
|
msgstr ""
|
614
626
|
|
615
|
-
#: ../lib/puppet/configurer.rb:
|
627
|
+
#: ../lib/puppet/configurer.rb:544
|
616
628
|
msgid "Failed to submit facts: %{detail}"
|
617
629
|
msgstr ""
|
618
630
|
|
619
|
-
#: ../lib/puppet/configurer.rb:
|
631
|
+
#: ../lib/puppet/configurer.rb:559
|
620
632
|
msgid "Could not run command from %{setting}: %{detail}"
|
621
633
|
msgstr ""
|
622
634
|
|
623
|
-
#: ../lib/puppet/configurer.rb:
|
635
|
+
#: ../lib/puppet/configurer.rb:577
|
624
636
|
msgid "Could not retrieve catalog from cache: %{detail}"
|
625
637
|
msgstr ""
|
626
638
|
|
627
|
-
#: ../lib/puppet/configurer.rb:
|
639
|
+
#: ../lib/puppet/configurer.rb:599
|
628
640
|
msgid "Could not retrieve catalog from remote server: %{detail}"
|
629
641
|
msgstr ""
|
630
642
|
|
@@ -664,7 +676,7 @@ msgstr ""
|
|
664
676
|
msgid "TrustedInformation expected a certificate, but none was given."
|
665
677
|
msgstr ""
|
666
678
|
|
667
|
-
#: ../lib/puppet/context/trusted_information.rb:104 ../lib/puppet/parser/scope.rb:
|
679
|
+
#: ../lib/puppet/context/trusted_information.rb:104 ../lib/puppet/parser/scope.rb:836
|
668
680
|
msgid "Unsupported data type: '%{klass}'"
|
669
681
|
msgstr ""
|
670
682
|
|
@@ -728,11 +740,11 @@ msgid "Invalid value '%{value}' for parameter %{name}. Allowed values are '%{all
|
|
728
740
|
msgstr ""
|
729
741
|
|
730
742
|
#. TRANSLATORS 'pluginsync' is a setting and should not be translated
|
731
|
-
#: ../lib/puppet/defaults.rb:
|
743
|
+
#: ../lib/puppet/defaults.rb:2023
|
732
744
|
msgid "Setting 'pluginsync' is deprecated."
|
733
745
|
msgstr ""
|
734
746
|
|
735
|
-
#: ../lib/puppet/defaults.rb:
|
747
|
+
#: ../lib/puppet/defaults.rb:2258
|
736
748
|
msgid "The 'func3x_check' setting is deprecated and will be removed in a future release."
|
737
749
|
msgstr ""
|
738
750
|
|
@@ -1460,19 +1472,19 @@ msgstr ""
|
|
1460
1472
|
msgid "At least one node should be passed"
|
1461
1473
|
msgstr ""
|
1462
1474
|
|
1463
|
-
#: ../lib/puppet/face/node/clean.rb:
|
1475
|
+
#: ../lib/puppet/face/node/clean.rb:75
|
1464
1476
|
msgid "Not managing %{node} certs as this host is not a CA"
|
1465
1477
|
msgstr ""
|
1466
1478
|
|
1467
|
-
#: ../lib/puppet/face/node/clean.rb:
|
1479
|
+
#: ../lib/puppet/face/node/clean.rb:82
|
1468
1480
|
msgid "%{node}'s facts removed"
|
1469
1481
|
msgstr ""
|
1470
1482
|
|
1471
|
-
#: ../lib/puppet/face/node/clean.rb:
|
1483
|
+
#: ../lib/puppet/face/node/clean.rb:88
|
1472
1484
|
msgid "%{node}'s cached node removed"
|
1473
1485
|
msgstr ""
|
1474
1486
|
|
1475
|
-
#: ../lib/puppet/face/node/clean.rb:
|
1487
|
+
#: ../lib/puppet/face/node/clean.rb:94
|
1476
1488
|
msgid "%{node}'s reports removed"
|
1477
1489
|
msgstr ""
|
1478
1490
|
|
@@ -1690,15 +1702,15 @@ msgstr ""
|
|
1690
1702
|
msgid "Relative paths must not be fully qualified"
|
1691
1703
|
msgstr ""
|
1692
1704
|
|
1693
|
-
#: ../lib/puppet/file_serving/configuration.rb:
|
1705
|
+
#: ../lib/puppet/file_serving/configuration.rb:56
|
1694
1706
|
msgid "Cannot find file: Invalid mount '%{mount_name}'"
|
1695
1707
|
msgstr ""
|
1696
1708
|
|
1697
|
-
#: ../lib/puppet/file_serving/configuration.rb:
|
1709
|
+
#: ../lib/puppet/file_serving/configuration.rb:57
|
1698
1710
|
msgid "Cannot find file: Invalid relative path '%{path}'"
|
1699
1711
|
msgstr ""
|
1700
1712
|
|
1701
|
-
#: ../lib/puppet/file_serving/configuration.rb:
|
1713
|
+
#: ../lib/puppet/file_serving/configuration.rb:112
|
1702
1714
|
msgid "Error parsing fileserver configuration: %{detail}; using old configuration"
|
1703
1715
|
msgstr ""
|
1704
1716
|
|
@@ -1734,11 +1746,11 @@ msgstr ""
|
|
1734
1746
|
msgid "%{mount} is already mounted at %{name} at %{error_location}"
|
1735
1747
|
msgstr ""
|
1736
1748
|
|
1737
|
-
#: ../lib/puppet/file_serving/configuration/parser.rb:
|
1749
|
+
#: ../lib/puppet/file_serving/configuration/parser.rb:126
|
1738
1750
|
msgid "Removing mount \"%{mount}\": %{detail}"
|
1739
1751
|
msgstr ""
|
1740
1752
|
|
1741
|
-
#: ../lib/puppet/file_serving/configuration/parser.rb:
|
1753
|
+
#: ../lib/puppet/file_serving/configuration/parser.rb:130
|
1742
1754
|
msgid "The '%{mount}' module can not have a path. Ignoring attempt to set it"
|
1743
1755
|
msgstr ""
|
1744
1756
|
|
@@ -1828,7 +1840,7 @@ msgstr ""
|
|
1828
1840
|
msgid "No client; expanding '%{path}' with local host"
|
1829
1841
|
msgstr ""
|
1830
1842
|
|
1831
|
-
#: ../lib/puppet/file_serving/mount/modules.rb:8
|
1843
|
+
#: ../lib/puppet/file_serving/mount/modules.rb:8 ../lib/puppet/file_serving/mount/scripts.rb:6
|
1832
1844
|
msgid "No module specified"
|
1833
1845
|
msgstr ""
|
1834
1846
|
|
@@ -2389,120 +2401,120 @@ msgstr ""
|
|
2389
2401
|
msgid "Catalog for %{request} was requested with fact definition for the wrong node (%{fact_name})."
|
2390
2402
|
msgstr ""
|
2391
2403
|
|
2392
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2404
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:85
|
2393
2405
|
msgid "Setup server facts for compiling"
|
2394
2406
|
msgstr ""
|
2395
2407
|
|
2396
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2408
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:113
|
2397
2409
|
msgid "Unsupported facts format"
|
2398
2410
|
msgstr ""
|
2399
2411
|
|
2400
2412
|
#. TRANSLATORS Inlining refers to adding additional metadata (in this case we are not inlining)
|
2401
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2413
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:154
|
2402
2414
|
msgid "Not inlining absent resource"
|
2403
2415
|
msgstr ""
|
2404
2416
|
|
2405
2417
|
#. TRANSLATORS Inlining refers to adding additional metadata (in this case we are not inlining)
|
2406
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2418
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:157
|
2407
2419
|
msgid "Not inlining resource without sources"
|
2408
2420
|
msgstr ""
|
2409
2421
|
|
2410
2422
|
#. TRANSLATORS Inlining refers to adding additional metadata (in this case we are not inlining)
|
2411
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2423
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:160
|
2412
2424
|
msgid "Not inlining unsupported source scheme"
|
2413
2425
|
msgstr ""
|
2414
2426
|
|
2415
2427
|
#. TRANSLATORS Inlining refers to adding additional metadata (in this case we are not inlining)
|
2416
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2428
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:182
|
2417
2429
|
msgid "Not inlining file outside environment"
|
2418
2430
|
msgstr ""
|
2419
2431
|
|
2420
2432
|
#. TRANSLATORS Inlining refers to adding additional metadata
|
2421
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2433
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:188
|
2422
2434
|
msgid "Inlining file metadata"
|
2423
2435
|
msgstr ""
|
2424
2436
|
|
2425
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2437
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:278
|
2426
2438
|
msgid "Could not get metadata for %{resource}"
|
2427
2439
|
msgstr ""
|
2428
2440
|
|
2429
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2441
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:299
|
2430
2442
|
msgid "Unable to find a common checksum type between agent '%{agent_type}' and master '%{master_type}'."
|
2431
2443
|
msgstr ""
|
2432
2444
|
|
2433
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2445
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:306
|
2434
2446
|
msgid "Compiled static catalog for %{node} in environment %{environment} in %%{seconds} seconds"
|
2435
2447
|
msgstr ""
|
2436
2448
|
|
2437
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2449
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:307
|
2438
2450
|
msgid "Compiled static catalog for %{node} in environment %{environment}"
|
2439
2451
|
msgstr ""
|
2440
2452
|
|
2441
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2453
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:309
|
2442
2454
|
msgid "Compiled static catalog for %{node} in %%{seconds} seconds"
|
2443
2455
|
msgstr ""
|
2444
2456
|
|
2445
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2457
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:310
|
2446
2458
|
msgid "Compiled static catalog for %{node}"
|
2447
2459
|
msgstr ""
|
2448
2460
|
|
2449
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2461
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:315
|
2450
2462
|
msgid "Compiled catalog for %{node} in environment %{environment} in %%{seconds} seconds"
|
2451
2463
|
msgstr ""
|
2452
2464
|
|
2453
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2465
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:316
|
2454
2466
|
msgid "Compiled catalog for %{node} in environment %{environment}"
|
2455
2467
|
msgstr ""
|
2456
2468
|
|
2457
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2469
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:318
|
2458
2470
|
msgid "Compiled catalog for %{node} in %%{seconds} seconds"
|
2459
2471
|
msgstr ""
|
2460
2472
|
|
2461
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2473
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:319
|
2462
2474
|
msgid "Compiled catalog for %{node}"
|
2463
2475
|
msgstr ""
|
2464
2476
|
|
2465
2477
|
#. TRANSLATORS Inlined refers to adding additional metadata
|
2466
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2478
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:341
|
2467
2479
|
msgid "Inlined resource metadata into static catalog for %{node} in environment %{environment} in %%{seconds} seconds"
|
2468
2480
|
msgstr ""
|
2469
2481
|
|
2470
2482
|
#. TRANSLATORS Inlined refers to adding additional metadata
|
2471
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2483
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:343
|
2472
2484
|
msgid "Inlined resource metadata into static catalog for %{node} in environment %{environment}"
|
2473
2485
|
msgstr ""
|
2474
2486
|
|
2475
2487
|
#. TRANSLATORS Inlined refers to adding additional metadata
|
2476
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2488
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:346
|
2477
2489
|
msgid "Inlined resource metadata into static catalog for %{node} in %%{seconds} seconds"
|
2478
2490
|
msgstr ""
|
2479
2491
|
|
2480
2492
|
#. TRANSLATORS Inlined refers to adding additional metadata
|
2481
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2493
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:348
|
2482
2494
|
msgid "Inlined resource metadata into static catalog for %{node}"
|
2483
2495
|
msgstr ""
|
2484
2496
|
|
2485
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2497
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:365
|
2486
2498
|
msgid "Found node information"
|
2487
2499
|
msgstr ""
|
2488
2500
|
|
2489
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2501
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:373
|
2490
2502
|
msgid "Failed when searching for node %{name}: %{detail}"
|
2491
2503
|
msgstr ""
|
2492
2504
|
|
2493
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2505
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:393
|
2494
2506
|
msgid "Invalid option use_node for a remote request"
|
2495
2507
|
msgstr ""
|
2496
2508
|
|
2497
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2509
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:412
|
2498
2510
|
msgid "Could not find node '%{name}'; cannot compile"
|
2499
2511
|
msgstr ""
|
2500
2512
|
|
2501
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2513
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:445
|
2502
2514
|
msgid "Could not retrieve fact servername"
|
2503
2515
|
msgstr ""
|
2504
2516
|
|
2505
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2517
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:454
|
2506
2518
|
msgid "Could not retrieve either serverip or serverip6 fact"
|
2507
2519
|
msgstr ""
|
2508
2520
|
|
@@ -2514,7 +2526,7 @@ msgstr ""
|
|
2514
2526
|
msgid "Unable to serialize catalog to json, retrying with pson"
|
2515
2527
|
msgstr ""
|
2516
2528
|
|
2517
|
-
#: ../lib/puppet/indirector/catalog/rest.rb:
|
2529
|
+
#: ../lib/puppet/indirector/catalog/rest.rb:35 ../lib/puppet/indirector/facts/rest.rb:22 ../lib/puppet/indirector/file_content/rest.rb:33 ../lib/puppet/indirector/file_metadata/rest.rb:30 ../lib/puppet/indirector/node/rest.rb:25 ../lib/puppet/indirector/rest.rb:146 ../lib/puppet/indirector/status/rest.rb:21
|
2518
2530
|
msgid "Find %{uri} resulted in 404 with the message: %{body}"
|
2519
2531
|
msgstr ""
|
2520
2532
|
|
@@ -2990,11 +3002,11 @@ msgstr ""
|
|
2990
3002
|
msgid "Cannot create instances of abstract terminus types"
|
2991
3003
|
msgstr ""
|
2992
3004
|
|
2993
|
-
#: ../lib/puppet/indirector/terminus.rb:
|
3005
|
+
#: ../lib/puppet/indirector/terminus.rb:167
|
2994
3006
|
msgid "Instance name %{name} does not match requested key %{key}"
|
2995
3007
|
msgstr ""
|
2996
3008
|
|
2997
|
-
#: ../lib/puppet/indirector/terminus.rb:
|
3009
|
+
#: ../lib/puppet/indirector/terminus.rb:173
|
2998
3010
|
msgid "Invalid instance type %{klass}, expected %{model_type}"
|
2999
3011
|
msgstr ""
|
3000
3012
|
|
@@ -3289,11 +3301,11 @@ msgid "Loaded puppet/type/%{name} but no class was created"
|
|
3289
3301
|
msgstr ""
|
3290
3302
|
|
3291
3303
|
#. TRANSLATORS 'metadata.json' is a specific file name and should not be translated.
|
3292
|
-
#: ../lib/puppet/module.rb:
|
3304
|
+
#: ../lib/puppet/module.rb:222
|
3293
3305
|
msgid "%{name} has an invalid and unparsable metadata.json file. The parse error: %{error}"
|
3294
3306
|
msgstr ""
|
3295
3307
|
|
3296
|
-
#: ../lib/puppet/module.rb:
|
3308
|
+
#: ../lib/puppet/module.rb:468
|
3297
3309
|
msgid ""
|
3298
3310
|
" Invalid module name '%{name}'; module names must match either:\n"
|
3299
3311
|
" An installed module name (ex. modulename) matching the expression /^[a-z][a-z0-9_]*$/ -or-\n"
|
@@ -3304,19 +3316,19 @@ msgstr ""
|
|
3304
3316
|
msgid "Plan %{plan_name} not found in module %{module_name}."
|
3305
3317
|
msgstr ""
|
3306
3318
|
|
3307
|
-
#: ../lib/puppet/module/plan.rb:
|
3319
|
+
#: ../lib/puppet/module/plan.rb:63
|
3308
3320
|
msgid "Plan names must start with a lowercase letter and be composed of only lowercase letters, numbers, and underscores"
|
3309
3321
|
msgstr ""
|
3310
3322
|
|
3311
|
-
#: ../lib/puppet/module/plan.rb:
|
3323
|
+
#: ../lib/puppet/module/plan.rb:65
|
3312
3324
|
msgid "Plan name cannot have extension %{ext}, must be .pp or .yaml"
|
3313
3325
|
msgstr ""
|
3314
3326
|
|
3315
|
-
#: ../lib/puppet/module/plan.rb:
|
3327
|
+
#: ../lib/puppet/module/plan.rb:68
|
3316
3328
|
msgid "Plan name cannot be a reserved word, but was '%{name}'"
|
3317
3329
|
msgstr ""
|
3318
3330
|
|
3319
|
-
#: ../lib/puppet/module/plan.rb:
|
3331
|
+
#: ../lib/puppet/module/plan.rb:71
|
3320
3332
|
msgid "Plan name cannot be a Puppet data type, but was '%{name}'"
|
3321
3333
|
msgstr ""
|
3322
3334
|
|
@@ -3420,11 +3432,11 @@ msgstr ""
|
|
3420
3432
|
msgid "Resolving dependencies ..."
|
3421
3433
|
msgstr ""
|
3422
3434
|
|
3423
|
-
#: ../lib/puppet/module_tool/applications/installer.rb:
|
3435
|
+
#: ../lib/puppet/module_tool/applications/installer.rb:216
|
3424
3436
|
msgid "Preparing to install ..."
|
3425
3437
|
msgstr ""
|
3426
3438
|
|
3427
|
-
#: ../lib/puppet/module_tool/applications/installer.rb:
|
3439
|
+
#: ../lib/puppet/module_tool/applications/installer.rb:219
|
3428
3440
|
msgid "Installing -- do not interrupt ..."
|
3429
3441
|
msgstr ""
|
3430
3442
|
|
@@ -4269,7 +4281,7 @@ msgstr ""
|
|
4269
4281
|
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."
|
4270
4282
|
msgstr ""
|
4271
4283
|
|
4272
|
-
#: ../lib/puppet/node/environment.rb:
|
4284
|
+
#: ../lib/puppet/node/environment.rb:567 ../lib/puppet/pops/loaders.rb:301
|
4273
4285
|
msgid "Could not parse for environment %{env}: %{detail}"
|
4274
4286
|
msgstr ""
|
4275
4287
|
|
@@ -4827,111 +4839,111 @@ msgstr ""
|
|
4827
4839
|
msgid "Duplicate parameter '%{param}' for on %{resource}"
|
4828
4840
|
msgstr ""
|
4829
4841
|
|
4830
|
-
#: ../lib/puppet/parser/scope.rb:
|
4842
|
+
#: ../lib/puppet/parser/scope.rb:156
|
4831
4843
|
msgid "Numerical variables cannot be changed. Attempt to set $%{name}"
|
4832
4844
|
msgstr ""
|
4833
4845
|
|
4834
|
-
#: ../lib/puppet/parser/scope.rb:
|
4846
|
+
#: ../lib/puppet/parser/scope.rb:161
|
4835
4847
|
msgid "Numerical variables cannot be deleted: Attempt to delete: $%{name}"
|
4836
4848
|
msgstr ""
|
4837
4849
|
|
4838
|
-
#: ../lib/puppet/parser/scope.rb:
|
4850
|
+
#: ../lib/puppet/parser/scope.rb:215
|
4839
4851
|
msgid "%{callee}: expects a value for parameter $%{to}"
|
4840
4852
|
msgstr ""
|
4841
4853
|
|
4842
|
-
#: ../lib/puppet/parser/scope.rb:
|
4854
|
+
#: ../lib/puppet/parser/scope.rb:216
|
4843
4855
|
msgid "%{callee}: default expression for $%{from} tries to illegally access not yet evaluated $%{to}"
|
4844
4856
|
msgstr ""
|
4845
4857
|
|
4846
|
-
#: ../lib/puppet/parser/scope.rb:
|
4858
|
+
#: ../lib/puppet/parser/scope.rb:235
|
4847
4859
|
msgid "Attempt to assign variable %{name} when evaluating parameters"
|
4848
4860
|
msgstr ""
|
4849
4861
|
|
4850
|
-
#: ../lib/puppet/parser/scope.rb:
|
4862
|
+
#: ../lib/puppet/parser/scope.rb:378
|
4851
4863
|
msgid "you must pass a compiler instance to a new scope object"
|
4852
4864
|
msgstr ""
|
4853
4865
|
|
4854
|
-
#: ../lib/puppet/parser/scope.rb:
|
4866
|
+
#: ../lib/puppet/parser/scope.rb:494
|
4855
4867
|
msgid "Scope variable name %{name} is a %{klass}, not a string"
|
4856
4868
|
msgstr ""
|
4857
4869
|
|
4858
|
-
#: ../lib/puppet/parser/scope.rb:
|
4870
|
+
#: ../lib/puppet/parser/scope.rb:656
|
4859
4871
|
msgid "class %{classname} could not be found"
|
4860
4872
|
msgstr ""
|
4861
4873
|
|
4862
|
-
#: ../lib/puppet/parser/scope.rb:
|
4874
|
+
#: ../lib/puppet/parser/scope.rb:658
|
4863
4875
|
msgid "class %{classname} has not been evaluated"
|
4864
4876
|
msgstr ""
|
4865
4877
|
|
4866
|
-
#: ../lib/puppet/parser/scope.rb:
|
4878
|
+
#: ../lib/puppet/parser/scope.rb:704
|
4867
4879
|
msgid "Default already defined for %{type} { %{param} }; cannot redefine"
|
4868
4880
|
msgstr ""
|
4869
4881
|
|
4870
|
-
#: ../lib/puppet/parser/scope.rb:
|
4882
|
+
#: ../lib/puppet/parser/scope.rb:764
|
4871
4883
|
msgid "Cannot assign to a numeric match result variable '$%{name}'"
|
4872
4884
|
msgstr ""
|
4873
4885
|
|
4874
|
-
#: ../lib/puppet/parser/scope.rb:
|
4886
|
+
#: ../lib/puppet/parser/scope.rb:767
|
4875
4887
|
msgid "Scope variable name %{name} is a %{class_type}, not a string"
|
4876
4888
|
msgstr ""
|
4877
4889
|
|
4878
|
-
#: ../lib/puppet/parser/scope.rb:
|
4890
|
+
#: ../lib/puppet/parser/scope.rb:772 ../lib/puppet/parser/scope.rb:777
|
4879
4891
|
msgid "Attempt to assign to a reserved variable name: '%{name}'"
|
4880
4892
|
msgstr ""
|
4881
4893
|
|
4882
|
-
#: ../lib/puppet/parser/scope.rb:
|
4894
|
+
#: ../lib/puppet/parser/scope.rb:782
|
4883
4895
|
msgid "Cannot reassign variable '$%{name}'"
|
4884
4896
|
msgstr ""
|
4885
4897
|
|
4886
|
-
#: ../lib/puppet/parser/scope.rb:
|
4898
|
+
#: ../lib/puppet/parser/scope.rb:1013
|
4887
4899
|
msgid "Invalid regex match data. Got a %{klass}"
|
4888
4900
|
msgstr ""
|
4889
4901
|
|
4890
|
-
#: ../lib/puppet/parser/scope.rb:
|
4902
|
+
#: ../lib/puppet/parser/scope.rb:1021
|
4891
4903
|
msgid "Scope#find_resource_type() is no longer supported, use Puppet::Pops::Evaluator::Runtime3ResourceSupport instead"
|
4892
4904
|
msgstr ""
|
4893
4905
|
|
4894
|
-
#: ../lib/puppet/parser/scope.rb:
|
4906
|
+
#: ../lib/puppet/parser/scope.rb:1026
|
4895
4907
|
msgid "Scope#find_builtin_resource_type() is no longer supported, use Puppet::Pops::Evaluator::Runtime3ResourceSupport instead"
|
4896
4908
|
msgstr ""
|
4897
4909
|
|
4898
|
-
#: ../lib/puppet/parser/scope.rb:
|
4910
|
+
#: ../lib/puppet/parser/scope.rb:1031
|
4899
4911
|
msgid "Scope#find_defined_resource_type() is no longer supported, use Puppet::Pops::Evaluator::Runtime3ResourceSupport instead"
|
4900
4912
|
msgstr ""
|
4901
4913
|
|
4902
|
-
#: ../lib/puppet/parser/scope.rb:
|
4914
|
+
#: ../lib/puppet/parser/scope.rb:1045
|
4903
4915
|
msgid "Function %{name} not defined despite being loaded!"
|
4904
4916
|
msgstr ""
|
4905
4917
|
|
4906
|
-
#: ../lib/puppet/parser/scope.rb:
|
4918
|
+
#: ../lib/puppet/parser/scope.rb:1052
|
4907
4919
|
msgid "Scope#resolve_type_and_title() is no longer supported, use Puppet::Pops::Evaluator::Runtime3ResourceSupport instead"
|
4908
4920
|
msgstr ""
|
4909
4921
|
|
4910
|
-
#: ../lib/puppet/parser/scope.rb:
|
4922
|
+
#: ../lib/puppet/parser/scope.rb:1072
|
4911
4923
|
msgid "Cannot use undef as a class name"
|
4912
4924
|
msgstr ""
|
4913
4925
|
|
4914
|
-
#: ../lib/puppet/parser/scope.rb:
|
4926
|
+
#: ../lib/puppet/parser/scope.rb:1074
|
4915
4927
|
msgid "Cannot use empty string as a class name"
|
4916
4928
|
msgstr ""
|
4917
4929
|
|
4918
4930
|
#. TRANSLATORS "Class" and "Type" are Puppet keywords and should not be translated
|
4919
|
-
#: ../lib/puppet/parser/scope.rb:
|
4931
|
+
#: ../lib/puppet/parser/scope.rb:1083
|
4920
4932
|
msgid "Cannot use an unspecific Class[] Type"
|
4921
4933
|
msgstr ""
|
4922
4934
|
|
4923
4935
|
#. TRANSLATORS "Resource" is a class name and should not be translated
|
4924
|
-
#: ../lib/puppet/parser/scope.rb:
|
4936
|
+
#: ../lib/puppet/parser/scope.rb:1110
|
4925
4937
|
msgid "Cannot use an unspecific Resource[] where a Resource['class', name] is expected"
|
4926
4938
|
msgstr ""
|
4927
4939
|
|
4928
4940
|
#. TRANSLATORS "Resource" is a class name and should not be translated
|
4929
|
-
#: ../lib/puppet/parser/scope.rb:
|
4941
|
+
#: ../lib/puppet/parser/scope.rb:1114
|
4930
4942
|
msgid "Cannot use a Resource[%{type_name}] where a Resource['class', name] is expected"
|
4931
4943
|
msgstr ""
|
4932
4944
|
|
4933
4945
|
#. TRANSLATORS "Resource" is a class name and should not be translated
|
4934
|
-
#: ../lib/puppet/parser/scope.rb:
|
4946
|
+
#: ../lib/puppet/parser/scope.rb:1118
|
4935
4947
|
msgid "Cannot use an unspecific Resource['class'] where a Resource['class', name] is expected"
|
4936
4948
|
msgstr ""
|
4937
4949
|
|
@@ -4944,15 +4956,15 @@ msgstr ""
|
|
4944
4956
|
msgid "having multiple named scopes is not supported when scripting"
|
4945
4957
|
msgstr ""
|
4946
4958
|
|
4947
|
-
#: ../lib/puppet/parser/templatewrapper.rb:
|
4959
|
+
#: ../lib/puppet/parser/templatewrapper.rb:67
|
4948
4960
|
msgid "Could not find template '%{filename}'"
|
4949
4961
|
msgstr ""
|
4950
4962
|
|
4951
|
-
#: ../lib/puppet/parser/templatewrapper.rb:
|
4963
|
+
#: ../lib/puppet/parser/templatewrapper.rb:84
|
4952
4964
|
msgid "Bound template variables for %{template_source} in %%{seconds} seconds"
|
4953
4965
|
msgstr ""
|
4954
4966
|
|
4955
|
-
#: ../lib/puppet/parser/templatewrapper.rb:
|
4967
|
+
#: ../lib/puppet/parser/templatewrapper.rb:92
|
4956
4968
|
msgid "Interpolated template %{template_source} in %%{seconds} seconds"
|
4957
4969
|
msgstr ""
|
4958
4970
|
|
@@ -6096,47 +6108,47 @@ msgstr ""
|
|
6096
6108
|
msgid "Lookup of key '%{key}' failed: %{detail}"
|
6097
6109
|
msgstr ""
|
6098
6110
|
|
6099
|
-
#: ../lib/puppet/pops/lookup/lookup_adapter.rb:
|
6111
|
+
#: ../lib/puppet/pops/lookup/lookup_adapter.rb:296
|
6100
6112
|
msgid "value of %{opts} must be a hash"
|
6101
6113
|
msgstr ""
|
6102
6114
|
|
6103
|
-
#: ../lib/puppet/pops/lookup/lookup_adapter.rb:
|
6115
|
+
#: ../lib/puppet/pops/lookup/lookup_adapter.rb:303
|
6104
6116
|
msgid "all %{opts} patterns must match a key starting with module name '%{module_name}'"
|
6105
6117
|
msgstr ""
|
6106
6118
|
|
6107
|
-
#: ../lib/puppet/pops/lookup/lookup_adapter.rb:
|
6119
|
+
#: ../lib/puppet/pops/lookup/lookup_adapter.rb:307
|
6108
6120
|
msgid "all %{opts} keys must start with module name '%{module_name}'"
|
6109
6121
|
msgstr ""
|
6110
6122
|
|
6111
|
-
#: ../lib/puppet/pops/lookup/lookup_adapter.rb:
|
6123
|
+
#: ../lib/puppet/pops/lookup/lookup_adapter.rb:432
|
6112
6124
|
msgid "Defining \"data_provider\": \"%{name}\" in metadata.json is deprecated. It is ignored since a '%{config}' with version >= 5 is present"
|
6113
6125
|
msgstr ""
|
6114
6126
|
|
6115
|
-
#: ../lib/puppet/pops/lookup/lookup_adapter.rb:
|
6127
|
+
#: ../lib/puppet/pops/lookup/lookup_adapter.rb:442
|
6116
6128
|
msgid "Defining \"data_provider\": \"%{name}\" in metadata.json is deprecated."
|
6117
6129
|
msgstr ""
|
6118
6130
|
|
6119
|
-
#: ../lib/puppet/pops/lookup/lookup_adapter.rb:
|
6131
|
+
#: ../lib/puppet/pops/lookup/lookup_adapter.rb:443 ../lib/puppet/pops/lookup/lookup_adapter.rb:497
|
6120
6132
|
msgid "A '%{hiera_config}' file should be used instead"
|
6121
6133
|
msgstr ""
|
6122
6134
|
|
6123
|
-
#: ../lib/puppet/pops/lookup/lookup_adapter.rb:
|
6135
|
+
#: ../lib/puppet/pops/lookup/lookup_adapter.rb:457
|
6124
6136
|
msgid "Environment '%{env}', cannot find module_data_provider '%{provider}'"
|
6125
6137
|
msgstr ""
|
6126
6138
|
|
6127
|
-
#: ../lib/puppet/pops/lookup/lookup_adapter.rb:
|
6139
|
+
#: ../lib/puppet/pops/lookup/lookup_adapter.rb:481
|
6128
6140
|
msgid "Defining environment_data_provider='%{provider_name}' in environment.conf is deprecated"
|
6129
6141
|
msgstr ""
|
6130
6142
|
|
6131
|
-
#: ../lib/puppet/pops/lookup/lookup_adapter.rb:
|
6143
|
+
#: ../lib/puppet/pops/lookup/lookup_adapter.rb:485
|
6132
6144
|
msgid "The environment_data_provider='%{provider_name}' setting is ignored since '%{config_path}' version >= 5"
|
6133
6145
|
msgstr ""
|
6134
6146
|
|
6135
|
-
#: ../lib/puppet/pops/lookup/lookup_adapter.rb:
|
6147
|
+
#: ../lib/puppet/pops/lookup/lookup_adapter.rb:496
|
6136
6148
|
msgid "Defining environment_data_provider='%{provider_name}' in environment.conf is deprecated."
|
6137
6149
|
msgstr ""
|
6138
6150
|
|
6139
|
-
#: ../lib/puppet/pops/lookup/lookup_adapter.rb:
|
6151
|
+
#: ../lib/puppet/pops/lookup/lookup_adapter.rb:512
|
6140
6152
|
msgid "Environment '%{env}', cannot find environment_data_provider '%{provider}'"
|
6141
6153
|
msgstr ""
|
6142
6154
|
|
@@ -6191,11 +6203,11 @@ msgid "Unacceptable transform - found an Object without a rule: %{klass}"
|
|
6191
6203
|
msgstr ""
|
6192
6204
|
|
6193
6205
|
#. TRANSLATORS 'NUMBER' refers to a method name and the 'name_or_numeric' was the passed in value and should not be translated
|
6194
|
-
#: ../lib/puppet/pops/model/factory.rb:
|
6206
|
+
#: ../lib/puppet/pops/model/factory.rb:850
|
6195
6207
|
msgid "Internal Error, NUMBER token does not contain a valid number, %{name_or_numeric}"
|
6196
6208
|
msgstr ""
|
6197
6209
|
|
6198
|
-
#: ../lib/puppet/pops/model/factory.rb:
|
6210
|
+
#: ../lib/puppet/pops/model/factory.rb:1167
|
6199
6211
|
msgid "can only concatenate strings, got %{class_name}"
|
6200
6212
|
msgstr ""
|
6201
6213
|
|
@@ -6773,11 +6785,11 @@ msgstr ""
|
|
6773
6785
|
msgid "No AIX group exists with a group name or gid of %{group}!"
|
6774
6786
|
msgstr ""
|
6775
6787
|
|
6776
|
-
#: ../lib/puppet/provider/group/groupadd.rb:
|
6788
|
+
#: ../lib/puppet/provider/group/groupadd.rb:14 ../lib/puppet/provider/group/pw.rb:14
|
6777
6789
|
msgid "GID must be an integer"
|
6778
6790
|
msgstr ""
|
6779
6791
|
|
6780
|
-
#: ../lib/puppet/provider/group/groupadd.rb:
|
6792
|
+
#: ../lib/puppet/provider/group/groupadd.rb:47
|
6781
6793
|
msgid "GID %{resource} already exists, use allowdupe to force group creation"
|
6782
6794
|
msgstr ""
|
6783
6795
|
|
@@ -7122,19 +7134,23 @@ msgstr ""
|
|
7122
7134
|
msgid "Implicit version %{should} has %{n} possible matches"
|
7123
7135
|
msgstr ""
|
7124
7136
|
|
7125
|
-
#: ../lib/puppet/provider/package/pkg.rb:
|
7137
|
+
#: ../lib/puppet/provider/package/pkg.rb:181
|
7126
7138
|
msgid "Selecting version '%{version}' for implicit '%{should}'"
|
7127
7139
|
msgstr ""
|
7128
7140
|
|
7129
|
-
#: ../lib/puppet/provider/package/pkg.rb:
|
7141
|
+
#: ../lib/puppet/provider/package/pkg.rb:186
|
7130
7142
|
msgid "No version of %{name} matching %{should} is installable, even though the package is currently installed"
|
7131
7143
|
msgstr ""
|
7132
7144
|
|
7133
|
-
#: ../lib/puppet/provider/package/pkg.rb:
|
7145
|
+
#: ../lib/puppet/provider/package/pkg.rb:205
|
7134
7146
|
msgid "pkg warning: %{warnings}"
|
7135
7147
|
msgstr ""
|
7136
7148
|
|
7137
|
-
#: ../lib/puppet/provider/package/pkg.rb:
|
7149
|
+
#: ../lib/puppet/provider/package/pkg.rb:249
|
7150
|
+
msgid "Pkg could not install %{name} after %{tries} tries. Aborting run"
|
7151
|
+
msgstr ""
|
7152
|
+
|
7153
|
+
#: ../lib/puppet/provider/package/pkg.rb:259 ../lib/puppet/provider/package/pkg.rb:285
|
7138
7154
|
msgid "Unable to update %{package}"
|
7139
7155
|
msgstr ""
|
7140
7156
|
|
@@ -7657,55 +7673,55 @@ msgstr ""
|
|
7657
7673
|
msgid "%{param} is a metaparameter; please choose another parameter name in the %{name} definition"
|
7658
7674
|
msgstr ""
|
7659
7675
|
|
7660
|
-
#: ../lib/puppet/resource/type_collection.rb:
|
7676
|
+
#: ../lib/puppet/resource/type_collection.rb:73
|
7661
7677
|
msgid "Class '%{klass}' is already defined%{error}; cannot redefine"
|
7662
7678
|
msgstr ""
|
7663
7679
|
|
7664
|
-
#: ../lib/puppet/resource/type_collection.rb:
|
7680
|
+
#: ../lib/puppet/resource/type_collection.rb:74
|
7665
7681
|
msgid "Definition '%{klass}' is already defined%{error}; cannot be redefined as a class"
|
7666
7682
|
msgstr ""
|
7667
7683
|
|
7668
|
-
#: ../lib/puppet/resource/type_collection.rb:
|
7684
|
+
#: ../lib/puppet/resource/type_collection.rb:75
|
7669
7685
|
msgid "Application '%{klass}' is already defined%{error}; cannot be redefined as a class"
|
7670
7686
|
msgstr ""
|
7671
7687
|
|
7672
|
-
#: ../lib/puppet/resource/type_collection.rb:
|
7688
|
+
#: ../lib/puppet/resource/type_collection.rb:106
|
7673
7689
|
msgid "Node '%{name}' is already defined%{error}; cannot redefine"
|
7674
7690
|
msgstr ""
|
7675
7691
|
|
7676
|
-
#: ../lib/puppet/resource/type_collection.rb:
|
7692
|
+
#: ../lib/puppet/resource/type_collection.rb:114
|
7677
7693
|
msgid "Site is already defined%{error}; cannot redefine"
|
7678
7694
|
msgstr ""
|
7679
7695
|
|
7680
|
-
#: ../lib/puppet/resource/type_collection.rb:
|
7696
|
+
#: ../lib/puppet/resource/type_collection.rb:151
|
7681
7697
|
msgid "'%{name}' is already defined%{error} as a class; cannot redefine as a definition"
|
7682
7698
|
msgstr ""
|
7683
7699
|
|
7684
|
-
#: ../lib/puppet/resource/type_collection.rb:
|
7700
|
+
#: ../lib/puppet/resource/type_collection.rb:152
|
7685
7701
|
msgid "Definition '%{name}' is already defined%{error}; cannot be redefined"
|
7686
7702
|
msgstr ""
|
7687
7703
|
|
7688
|
-
#: ../lib/puppet/resource/type_collection.rb:
|
7704
|
+
#: ../lib/puppet/resource/type_collection.rb:153 ../lib/puppet/resource/type_collection.rb:169
|
7689
7705
|
msgid "'%{name}' is already defined%{error} as an application; cannot be redefined"
|
7690
7706
|
msgstr ""
|
7691
7707
|
|
7692
|
-
#: ../lib/puppet/resource/type_collection.rb:
|
7708
|
+
#: ../lib/puppet/resource/type_collection.rb:158
|
7693
7709
|
msgid "'%{name}' is already defined%{error} as a class; cannot redefine as a mapping"
|
7694
7710
|
msgstr ""
|
7695
7711
|
|
7696
|
-
#: ../lib/puppet/resource/type_collection.rb:
|
7712
|
+
#: ../lib/puppet/resource/type_collection.rb:167
|
7697
7713
|
msgid "'%{name}' is already defined%{error} as a class; cannot redefine as an application"
|
7698
7714
|
msgstr ""
|
7699
7715
|
|
7700
|
-
#: ../lib/puppet/resource/type_collection.rb:
|
7716
|
+
#: ../lib/puppet/resource/type_collection.rb:168
|
7701
7717
|
msgid "'%{name}' is already defined%{error} as a definition; cannot redefine as an application"
|
7702
7718
|
msgstr ""
|
7703
7719
|
|
7704
|
-
#: ../lib/puppet/resource/type_collection.rb:
|
7720
|
+
#: ../lib/puppet/resource/type_collection.rb:221
|
7705
7721
|
msgid "Execution of config_version command `%{cmd}` failed: %{message}"
|
7706
7722
|
msgstr ""
|
7707
7723
|
|
7708
|
-
#: ../lib/puppet/resource/type_collection.rb:
|
7724
|
+
#: ../lib/puppet/resource/type_collection.rb:242
|
7709
7725
|
msgid "Not attempting to load %{type} %{fqname} as this object was missing during a prior compilation"
|
7710
7726
|
msgstr ""
|
7711
7727
|
|
@@ -8666,72 +8682,72 @@ msgstr ""
|
|
8666
8682
|
msgid "Could not set %{attribute} on %{class_name}: %{detail}"
|
8667
8683
|
msgstr ""
|
8668
8684
|
|
8669
|
-
#: ../lib/puppet/type/exec.rb:
|
8685
|
+
#: ../lib/puppet/type/exec.rb:121
|
8670
8686
|
msgid "executed successfully"
|
8671
8687
|
msgstr ""
|
8672
8688
|
|
8673
|
-
#: ../lib/puppet/type/exec.rb:
|
8689
|
+
#: ../lib/puppet/type/exec.rb:155
|
8674
8690
|
msgid "Command exceeded timeout"
|
8675
8691
|
msgstr ""
|
8676
8692
|
|
8677
|
-
#: ../lib/puppet/type/exec.rb:
|
8693
|
+
#: ../lib/puppet/type/exec.rb:184
|
8678
8694
|
msgid "[command redacted] returned %{status} instead of one of [%{expected}]"
|
8679
8695
|
msgstr ""
|
8680
8696
|
|
8681
|
-
#: ../lib/puppet/type/exec.rb:
|
8697
|
+
#: ../lib/puppet/type/exec.rb:186
|
8682
8698
|
msgid "'%{cmd}' returned %{status} instead of one of [%{expected}]"
|
8683
8699
|
msgstr ""
|
8684
8700
|
|
8685
|
-
#: ../lib/puppet/type/exec.rb:
|
8701
|
+
#: ../lib/puppet/type/exec.rb:216
|
8686
8702
|
msgid "Command must be a String or Array<String>, got value of class %{klass}"
|
8687
8703
|
msgstr ""
|
8688
8704
|
|
8689
|
-
#: ../lib/puppet/type/exec.rb:
|
8705
|
+
#: ../lib/puppet/type/exec.rb:249
|
8690
8706
|
msgid "Unable to execute commands as other users on Windows"
|
8691
8707
|
msgstr ""
|
8692
8708
|
|
8693
|
-
#: ../lib/puppet/type/exec.rb:
|
8709
|
+
#: ../lib/puppet/type/exec.rb:251
|
8694
8710
|
msgid "Only root can execute commands as other users"
|
8695
8711
|
msgstr ""
|
8696
8712
|
|
8697
|
-
#: ../lib/puppet/type/exec.rb:
|
8713
|
+
#: ../lib/puppet/type/exec.rb:307
|
8698
8714
|
msgid "Invalid environment setting '%{value}'"
|
8699
8715
|
msgstr ""
|
8700
8716
|
|
8701
|
-
#: ../lib/puppet/type/exec.rb:
|
8717
|
+
#: ../lib/puppet/type/exec.rb:320
|
8702
8718
|
msgid "The umask specification is invalid: %{value}"
|
8703
8719
|
msgstr ""
|
8704
8720
|
|
8705
|
-
#: ../lib/puppet/type/exec.rb:
|
8721
|
+
#: ../lib/puppet/type/exec.rb:336
|
8706
8722
|
msgid "The timeout must be a number."
|
8707
8723
|
msgstr ""
|
8708
8724
|
|
8709
|
-
#: ../lib/puppet/type/exec.rb:
|
8725
|
+
#: ../lib/puppet/type/exec.rb:353
|
8710
8726
|
msgid "Tries must be an integer"
|
8711
8727
|
msgstr ""
|
8712
8728
|
|
8713
|
-
#: ../lib/puppet/type/exec.rb:
|
8729
|
+
#: ../lib/puppet/type/exec.rb:357
|
8714
8730
|
msgid "Tries must be an integer >= 1"
|
8715
8731
|
msgstr ""
|
8716
8732
|
|
8717
|
-
#: ../lib/puppet/type/exec.rb:
|
8733
|
+
#: ../lib/puppet/type/exec.rb:370
|
8718
8734
|
msgid "try_sleep must be a number"
|
8719
8735
|
msgstr ""
|
8720
8736
|
|
8721
|
-
#: ../lib/puppet/type/exec.rb:
|
8737
|
+
#: ../lib/puppet/type/exec.rb:374
|
8722
8738
|
msgid "try_sleep cannot be a negative number"
|
8723
8739
|
msgstr ""
|
8724
8740
|
|
8725
8741
|
#. TRANSLATORS 'creates' is a parameter name and should not be translated
|
8726
|
-
#: ../lib/puppet/type/exec.rb:
|
8742
|
+
#: ../lib/puppet/type/exec.rb:446
|
8727
8743
|
msgid "Checking that 'creates' path '%{creates_path}' exists"
|
8728
8744
|
msgstr ""
|
8729
8745
|
|
8730
|
-
#: ../lib/puppet/type/exec.rb:
|
8746
|
+
#: ../lib/puppet/type/exec.rb:498 ../lib/puppet/type/exec.rb:561
|
8731
8747
|
msgid "Check %{value} exceeded timeout"
|
8732
8748
|
msgstr ""
|
8733
8749
|
|
8734
|
-
#: ../lib/puppet/type/exec.rb:
|
8750
|
+
#: ../lib/puppet/type/exec.rb:653
|
8735
8751
|
msgid "'%{cmd}' won't be executed because of failed check '%{check}'"
|
8736
8752
|
msgstr ""
|
8737
8753
|
|
@@ -8876,11 +8892,11 @@ msgstr ""
|
|
8876
8892
|
msgid "Could not create %{type} filebucket: %{detail}"
|
8877
8893
|
msgstr ""
|
8878
8894
|
|
8879
|
-
#: ../lib/puppet/type/group.rb:
|
8895
|
+
#: ../lib/puppet/type/group.rb:59
|
8880
8896
|
msgid "GID cannot be deleted"
|
8881
8897
|
msgstr ""
|
8882
8898
|
|
8883
|
-
#: ../lib/puppet/type/group.rb:
|
8899
|
+
#: ../lib/puppet/type/group.rb:71
|
8884
8900
|
msgid "Invalid GID %{gid}"
|
8885
8901
|
msgstr ""
|
8886
8902
|
|
@@ -8968,15 +8984,15 @@ msgstr ""
|
|
8968
8984
|
msgid "%{value} is not a valid day of the week"
|
8969
8985
|
msgstr ""
|
8970
8986
|
|
8971
|
-
#: ../lib/puppet/type/service.rb:151 ../lib/puppet/type/user.rb:
|
8987
|
+
#: ../lib/puppet/type/service.rb:151 ../lib/puppet/type/user.rb:271
|
8972
8988
|
msgid "Passwords cannot include ':'"
|
8973
8989
|
msgstr ""
|
8974
8990
|
|
8975
|
-
#: ../lib/puppet/type/service.rb:
|
8991
|
+
#: ../lib/puppet/type/service.rb:283
|
8976
8992
|
msgid "\"%{value}\" is not a positive integer: the timeout parameter must be specified as a positive integer"
|
8977
8993
|
msgstr ""
|
8978
8994
|
|
8979
|
-
#: ../lib/puppet/type/service.rb:
|
8995
|
+
#: ../lib/puppet/type/service.rb:305
|
8980
8996
|
msgid "The 'logonaccount' parameter is mandatory when setting 'logonpassword'."
|
8981
8997
|
msgstr ""
|
8982
8998
|
|
@@ -9011,81 +9027,81 @@ msgstr ""
|
|
9011
9027
|
msgid "File does not exist"
|
9012
9028
|
msgstr ""
|
9013
9029
|
|
9014
|
-
#: ../lib/puppet/type/user.rb:
|
9030
|
+
#: ../lib/puppet/type/user.rb:182
|
9015
9031
|
msgid "Could not find group(s) %{groups}"
|
9016
9032
|
msgstr ""
|
9017
9033
|
|
9018
|
-
#: ../lib/puppet/type/user.rb:
|
9034
|
+
#: ../lib/puppet/type/user.rb:291
|
9019
9035
|
msgid "Password minimum age must be provided as a number."
|
9020
9036
|
msgstr ""
|
9021
9037
|
|
9022
|
-
#: ../lib/puppet/type/user.rb:
|
9038
|
+
#: ../lib/puppet/type/user.rb:310
|
9023
9039
|
msgid "Password maximum age must be provided as a number."
|
9024
9040
|
msgstr ""
|
9025
9041
|
|
9026
|
-
#: ../lib/puppet/type/user.rb:
|
9042
|
+
#: ../lib/puppet/type/user.rb:341
|
9027
9043
|
msgid "Group names must be provided, not GID numbers."
|
9028
9044
|
msgstr ""
|
9029
9045
|
|
9030
|
-
#: ../lib/puppet/type/user.rb:
|
9046
|
+
#: ../lib/puppet/type/user.rb:343
|
9031
9047
|
msgid "Group names must be provided as an array, not a comma-separated list."
|
9032
9048
|
msgstr ""
|
9033
9049
|
|
9034
|
-
#: ../lib/puppet/type/user.rb:
|
9050
|
+
#: ../lib/puppet/type/user.rb:344
|
9035
9051
|
msgid "Group names must not be empty. If you want to specify \"no groups\" pass an empty array"
|
9036
9052
|
msgstr ""
|
9037
9053
|
|
9038
|
-
#: ../lib/puppet/type/user.rb:
|
9054
|
+
#: ../lib/puppet/type/user.rb:437
|
9039
9055
|
msgid "User provider %{name} can not manage home directories"
|
9040
9056
|
msgstr ""
|
9041
9057
|
|
9042
9058
|
#. TRANSLATORS YYYY-MM-DD represents a date with a four-digit year, a two-digit month, and a two-digit day,
|
9043
9059
|
#. TRANSLATORS separated by dashes.
|
9044
|
-
#: ../lib/puppet/type/user.rb:
|
9060
|
+
#: ../lib/puppet/type/user.rb:454
|
9045
9061
|
msgid "Expiry dates must be YYYY-MM-DD or the string \"absent\""
|
9046
9062
|
msgstr ""
|
9047
9063
|
|
9048
|
-
#: ../lib/puppet/type/user.rb:
|
9064
|
+
#: ../lib/puppet/type/user.rb:521
|
9049
9065
|
msgid "Role names must be provided, not numbers"
|
9050
9066
|
msgstr ""
|
9051
9067
|
|
9052
|
-
#: ../lib/puppet/type/user.rb:
|
9068
|
+
#: ../lib/puppet/type/user.rb:523
|
9053
9069
|
msgid "Role names must be provided as an array, not a comma-separated list"
|
9054
9070
|
msgstr ""
|
9055
9071
|
|
9056
|
-
#: ../lib/puppet/type/user.rb:
|
9072
|
+
#: ../lib/puppet/type/user.rb:560
|
9057
9073
|
msgid "Auth names must be provided, not numbers"
|
9058
9074
|
msgstr ""
|
9059
9075
|
|
9060
|
-
#: ../lib/puppet/type/user.rb:
|
9076
|
+
#: ../lib/puppet/type/user.rb:562
|
9061
9077
|
msgid "Auth names must be provided as an array, not a comma-separated list"
|
9062
9078
|
msgstr ""
|
9063
9079
|
|
9064
|
-
#: ../lib/puppet/type/user.rb:
|
9080
|
+
#: ../lib/puppet/type/user.rb:586
|
9065
9081
|
msgid "Profile names must be provided, not numbers"
|
9066
9082
|
msgstr ""
|
9067
9083
|
|
9068
|
-
#: ../lib/puppet/type/user.rb:
|
9084
|
+
#: ../lib/puppet/type/user.rb:588
|
9069
9085
|
msgid "Profile names must be provided as an array, not a comma-separated list"
|
9070
9086
|
msgstr ""
|
9071
9087
|
|
9072
|
-
#: ../lib/puppet/type/user.rb:
|
9088
|
+
#: ../lib/puppet/type/user.rb:700
|
9073
9089
|
msgid "Ssh_authorized_key type is not available. Cannot purge SSH keys."
|
9074
9090
|
msgstr ""
|
9075
9091
|
|
9076
|
-
#: ../lib/puppet/type/user.rb:
|
9092
|
+
#: ../lib/puppet/type/user.rb:738
|
9077
9093
|
msgid "Each entry for purge_ssh_keys must be a string, not a %{klass}"
|
9078
9094
|
msgstr ""
|
9079
9095
|
|
9080
|
-
#: ../lib/puppet/type/user.rb:
|
9096
|
+
#: ../lib/puppet/type/user.rb:741
|
9081
9097
|
msgid "Paths to keyfiles must be absolute, not %{entry}"
|
9082
9098
|
msgstr ""
|
9083
9099
|
|
9084
|
-
#: ../lib/puppet/type/user.rb:
|
9100
|
+
#: ../lib/puppet/type/user.rb:745
|
9085
9101
|
msgid "purge_ssh_keys must be true, false, or an array of file names, not %{value}"
|
9086
9102
|
msgstr ""
|
9087
9103
|
|
9088
|
-
#: ../lib/puppet/type/user.rb:
|
9104
|
+
#: ../lib/puppet/type/user.rb:754
|
9089
9105
|
msgid "Class name must be provided."
|
9090
9106
|
msgstr ""
|
9091
9107
|
|
@@ -9654,60 +9670,60 @@ msgid "Failed to set process priority to '%{priority}'"
|
|
9654
9670
|
msgstr ""
|
9655
9671
|
|
9656
9672
|
#. TRANSLATORS "Log.close_all" is a method name and should not be translated
|
9657
|
-
#: ../lib/puppet/util/log.rb:
|
9673
|
+
#: ../lib/puppet/util/log.rb:66
|
9658
9674
|
msgid "Log.close_all failed to close %{destinations}"
|
9659
9675
|
msgstr ""
|
9660
9676
|
|
9661
|
-
#: ../lib/puppet/util/log.rb:
|
9677
|
+
#: ../lib/puppet/util/log.rb:85
|
9662
9678
|
msgid "Logs require a level"
|
9663
9679
|
msgstr ""
|
9664
9680
|
|
9665
|
-
#: ../lib/puppet/util/log.rb:
|
9681
|
+
#: ../lib/puppet/util/log.rb:86 ../lib/puppet/util/log.rb:377 ../lib/puppet/util/windows/eventlog.rb:99
|
9666
9682
|
msgid "Invalid log level %{level}"
|
9667
9683
|
msgstr ""
|
9668
9684
|
|
9669
|
-
#: ../lib/puppet/util/log.rb:
|
9685
|
+
#: ../lib/puppet/util/log.rb:108
|
9670
9686
|
msgid "Invalid loglevel %{level}"
|
9671
9687
|
msgstr ""
|
9672
9688
|
|
9673
|
-
#: ../lib/puppet/util/log.rb:
|
9689
|
+
#: ../lib/puppet/util/log.rb:135
|
9674
9690
|
msgid "Unknown destination type %{dest}"
|
9675
9691
|
msgstr ""
|
9676
9692
|
|
9677
|
-
#: ../lib/puppet/util/log.rb:
|
9693
|
+
#: ../lib/puppet/util/log.rb:175
|
9678
9694
|
msgid "Received a Log attribute with invalid encoding:%{log_message}"
|
9679
9695
|
msgstr ""
|
9680
9696
|
|
9681
|
-
#: ../lib/puppet/util/log.rb:
|
9697
|
+
#: ../lib/puppet/util/log.rb:177
|
9682
9698
|
msgid ""
|
9683
9699
|
"Backtrace:\n"
|
9684
9700
|
"%{backtrace}"
|
9685
9701
|
msgstr ""
|
9686
9702
|
|
9687
|
-
#: ../lib/puppet/util/log.rb:
|
9703
|
+
#: ../lib/puppet/util/log.rb:231
|
9688
9704
|
msgid "Reopening log files"
|
9689
9705
|
msgstr ""
|
9690
9706
|
|
9691
9707
|
#. TRANSLATORS 'Puppet::Util::Log' refers to a Puppet source code class
|
9692
|
-
#: ../lib/puppet/util/log.rb:
|
9708
|
+
#: ../lib/puppet/util/log.rb:367
|
9693
9709
|
msgid "Puppet::Util::Log requires a message"
|
9694
9710
|
msgstr ""
|
9695
9711
|
|
9696
9712
|
#. TRANSLATORS 'Puppet::Util::Log' refers to a Puppet source code class
|
9697
|
-
#: ../lib/puppet/util/log.rb:
|
9713
|
+
#: ../lib/puppet/util/log.rb:373
|
9698
9714
|
msgid "Puppet::Util::Log requires a log level"
|
9699
9715
|
msgstr ""
|
9700
9716
|
|
9701
9717
|
#. TRANSLATORS 'Puppet::Util::Log' refers to a Puppet source code class
|
9702
|
-
#: ../lib/puppet/util/log.rb:
|
9718
|
+
#: ../lib/puppet/util/log.rb:375
|
9703
9719
|
msgid "Puppet::Util::Log requires a symbol or string"
|
9704
9720
|
msgstr ""
|
9705
9721
|
|
9706
|
-
#: ../lib/puppet/util/log.rb:
|
9722
|
+
#: ../lib/puppet/util/log.rb:406
|
9707
9723
|
msgid "Could not parse for environment %{environment}: %{msg}"
|
9708
9724
|
msgstr ""
|
9709
9725
|
|
9710
|
-
#: ../lib/puppet/util/log.rb:
|
9726
|
+
#: ../lib/puppet/util/log.rb:408
|
9711
9727
|
msgid "%{msg} on node %{node}"
|
9712
9728
|
msgstr ""
|
9713
9729
|
|
@@ -9719,20 +9735,20 @@ msgstr ""
|
|
9719
9735
|
msgid "Creating log directory %{dir}"
|
9720
9736
|
msgstr ""
|
9721
9737
|
|
9722
|
-
#: ../lib/puppet/util/logging.rb:
|
9738
|
+
#: ../lib/puppet/util/logging.rb:79 ../lib/puppet/util/logging.rb:103
|
9723
9739
|
msgid "Wrapped exception:"
|
9724
9740
|
msgstr ""
|
9725
9741
|
|
9726
9742
|
#. TRANSLATORS the literals ":file", ":line", and ":key" should not be translated
|
9727
|
-
#: ../lib/puppet/util/logging.rb:
|
9743
|
+
#: ../lib/puppet/util/logging.rb:160
|
9728
9744
|
msgid "Need either :file and :line, or :key"
|
9729
9745
|
msgstr ""
|
9730
9746
|
|
9731
|
-
#: ../lib/puppet/util/logging.rb:
|
9747
|
+
#: ../lib/puppet/util/logging.rb:190
|
9732
9748
|
msgid "(file & line not available)"
|
9733
9749
|
msgstr ""
|
9734
9750
|
|
9735
|
-
#: ../lib/puppet/util/logging.rb:
|
9751
|
+
#: ../lib/puppet/util/logging.rb:270
|
9736
9752
|
msgid "(location: %{location})"
|
9737
9753
|
msgstr ""
|
9738
9754
|
|
@@ -9896,19 +9912,19 @@ msgstr ""
|
|
9896
9912
|
msgid "Creating state file %{file}"
|
9897
9913
|
msgstr ""
|
9898
9914
|
|
9899
|
-
#: ../lib/puppet/util/suidmanager.rb:
|
9915
|
+
#: ../lib/puppet/util/suidmanager.rb:103
|
9900
9916
|
msgid "No such group %{group}"
|
9901
9917
|
msgstr ""
|
9902
9918
|
|
9903
|
-
#: ../lib/puppet/util/suidmanager.rb:
|
9919
|
+
#: ../lib/puppet/util/suidmanager.rb:119
|
9904
9920
|
msgid "No such user %{user}"
|
9905
9921
|
msgstr ""
|
9906
9922
|
|
9907
|
-
#: ../lib/puppet/util/suidmanager.rb:
|
9923
|
+
#: ../lib/puppet/util/suidmanager.rb:147
|
9908
9924
|
msgid "Invalid id type %{type}"
|
9909
9925
|
msgstr ""
|
9910
9926
|
|
9911
|
-
#: ../lib/puppet/util/suidmanager.rb:
|
9927
|
+
#: ../lib/puppet/util/suidmanager.rb:150
|
9912
9928
|
msgid "Invalid %{klass}: %{id}"
|
9913
9929
|
msgstr ""
|
9914
9930
|
|
@@ -9948,7 +9964,7 @@ msgstr ""
|
|
9948
9964
|
msgid "%{error}%{rest} in symbolic mode %{modification}"
|
9949
9965
|
msgstr ""
|
9950
9966
|
|
9951
|
-
#: ../lib/puppet/util/tagging.rb:
|
9967
|
+
#: ../lib/puppet/util/tagging.rb:28
|
9952
9968
|
msgid "Invalid tag '%{name}'"
|
9953
9969
|
msgstr ""
|
9954
9970
|
|
@@ -10186,7 +10202,7 @@ msgstr ""
|
|
10186
10202
|
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"
|
10187
10203
|
msgstr ""
|
10188
10204
|
|
10189
|
-
#: ../lib/puppet/util/windows/security.rb:433 ../lib/puppet/util/windows/security.rb:450 ../lib/puppet/util/windows/sid.rb:159 ../lib/puppet/util/windows/sid.rb:221 ../lib/puppet/util/windows/user.rb:
|
10205
|
+
#: ../lib/puppet/util/windows/security.rb:433 ../lib/puppet/util/windows/security.rb:450 ../lib/puppet/util/windows/sid.rb:159 ../lib/puppet/util/windows/sid.rb:221 ../lib/puppet/util/windows/user.rb:57
|
10190
10206
|
msgid "Invalid SID"
|
10191
10207
|
msgstr ""
|
10192
10208
|
|
@@ -10358,23 +10374,23 @@ msgstr ""
|
|
10358
10374
|
msgid "Failed to convert string SID: %{string_sid}"
|
10359
10375
|
msgstr ""
|
10360
10376
|
|
10361
|
-
#: ../lib/puppet/util/windows/user.rb:
|
10377
|
+
#: ../lib/puppet/util/windows/user.rb:52
|
10362
10378
|
msgid "Failed to create administrators SID"
|
10363
10379
|
msgstr ""
|
10364
10380
|
|
10365
|
-
#: ../lib/puppet/util/windows/user.rb:
|
10381
|
+
#: ../lib/puppet/util/windows/user.rb:62
|
10366
10382
|
msgid "Failed to check membership"
|
10367
10383
|
msgstr ""
|
10368
10384
|
|
10369
|
-
#: ../lib/puppet/util/windows/user.rb:
|
10385
|
+
#: ../lib/puppet/util/windows/user.rb:102
|
10370
10386
|
msgid "Failed to logon user %{name}"
|
10371
10387
|
msgstr ""
|
10372
10388
|
|
10373
|
-
#: ../lib/puppet/util/windows/user.rb:
|
10389
|
+
#: ../lib/puppet/util/windows/user.rb:133
|
10374
10390
|
msgid "Failed to load user profile %{user}"
|
10375
10391
|
msgstr ""
|
10376
10392
|
|
10377
|
-
#: ../lib/puppet/util/windows/user.rb:
|
10393
|
+
#: ../lib/puppet/util/windows/user.rb:139
|
10378
10394
|
msgid "Failed to unload user profile %{user}"
|
10379
10395
|
msgstr ""
|
10380
10396
|
|