r10k 2.6.4 → 2.6.9

Sign up to get free protection for your applications and to get access to all the features.
Files changed (40) hide show
  1. checksums.yaml +5 -5
  2. data/.github/pull_request_template.md +4 -0
  3. data/.github/workflows/release.yml +36 -0
  4. data/.gitignore +0 -1
  5. data/.travis.yml +16 -9
  6. data/CHANGELOG.mkd +51 -1
  7. data/CODEOWNERS +1 -0
  8. data/doc/dynamic-environments/usage.mkd +12 -0
  9. data/integration/Gemfile +2 -2
  10. data/integration/Rakefile +2 -3
  11. data/integration/pre-suite/00_pe_install.rb +2 -0
  12. data/integration/tests/basic_functionality/install_pe_only_module_with_puppetfile.rb +2 -2
  13. data/integration/tests/basic_functionality/proxy_with_pe_only_module.rb +2 -2
  14. data/integration/tests/user_scenario/basic_workflow/negative/neg_disk_full.rb +2 -12
  15. data/integration/tests/user_scenario/basic_workflow/single_env_10000_files.rb +2 -11
  16. data/integration/tests/user_scenario/basic_workflow/single_env_large_files.rb +2 -12
  17. data/lib/r10k/action/deploy/environment.rb +15 -2
  18. data/lib/r10k/cli/deploy.rb +1 -0
  19. data/lib/r10k/module/git.rb +5 -0
  20. data/lib/r10k/puppetfile.rb +17 -6
  21. data/lib/r10k/util/subprocess/runner/posix.rb +3 -3
  22. data/lib/r10k/version.rb +4 -1
  23. data/locales/r10k.pot +486 -0
  24. data/r10k.gemspec +7 -3
  25. data/spec/fixtures/unit/puppetfile/default-branch-override/Puppetfile +5 -0
  26. data/spec/unit/action/deploy/environment_spec.rb +63 -0
  27. data/spec/unit/puppetfile_spec.rb +39 -0
  28. metadata +48 -22
  29. data/MAINTAINERS +0 -18
  30. data/integration/pre-suite/30_test_utils.rb +0 -17
  31. data/integration/scripts/README.mkd +0 -86
  32. data/integration/scripts/setup_r10k_env_centos5.sh +0 -23
  33. data/integration/scripts/setup_r10k_env_centos6.sh +0 -23
  34. data/integration/scripts/setup_r10k_env_rhel7.sh +0 -23
  35. data/integration/scripts/setup_r10k_env_sles11.sh +0 -23
  36. data/integration/scripts/setup_r10k_env_sles12.sh +0 -23
  37. data/integration/scripts/setup_r10k_env_ubuntu1004.sh +0 -23
  38. data/integration/scripts/setup_r10k_env_ubuntu1204.sh +0 -23
  39. data/integration/scripts/setup_r10k_env_ubuntu1404.sh +0 -23
  40. data/integration/tests/basic_functionality/negative/attempt_to_install_peonly_module_without_license.rb +0 -71
@@ -28,15 +28,15 @@ class R10K::Util::Subprocess::Runner::POSIX < R10K::Util::Subprocess::Runner
28
28
 
29
29
  @stdout_pump = R10K::Util::Subprocess::Runner::Pump.new(@stdout_r)
30
30
  @stderr_pump = R10K::Util::Subprocess::Runner::Pump.new(@stderr_r)
31
- @stdout_pump.start
32
- @stderr_pump.start
33
-
34
31
  pid = fork do
35
32
  exec_r.close
36
33
  execute_child(exec_w)
37
34
  end
38
35
 
39
36
  exec_w.close
37
+ @stdout_pump.start
38
+ @stderr_pump.start
39
+
40
40
  execute_parent(exec_r, pid)
41
41
 
42
42
  @result
@@ -1,3 +1,6 @@
1
1
  module R10K
2
- VERSION = '2.6.4'
2
+ # When updating to a new major (X) or minor (Y) version, include `#major` or
3
+ # `#minor` (respectively) in your commit message to trigger the appropriate
4
+ # release. Otherwise, a new patch (Z) version will be released.
5
+ VERSION = '2.6.9'
3
6
  end
@@ -0,0 +1,486 @@
1
+ # SOME DESCRIPTIVE TITLE.
2
+ # Copyright (C) 2018 Puppet, Inc.
3
+ # This file is distributed under the same license as the r10k package.
4
+ # FIRST AUTHOR <EMAIL@ADDRESS>, 2018.
5
+ #
6
+ #, fuzzy
7
+ msgid ""
8
+ msgstr ""
9
+ "Project-Id-Version: r10k 2.6.5-10-g5854775\n"
10
+ "\n"
11
+ "Report-Msgid-Bugs-To: docs@puppetlabs.com\n"
12
+ "POT-Creation-Date: 2018-11-29 09:11-0800\n"
13
+ "PO-Revision-Date: 2018-11-29 09:11-0800\n"
14
+ "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
15
+ "Language-Team: LANGUAGE <LL@li.org>\n"
16
+ "Language: \n"
17
+ "MIME-Version: 1.0\n"
18
+ "Content-Type: text/plain; charset=UTF-8\n"
19
+ "Content-Transfer-Encoding: 8bit\n"
20
+ "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
21
+
22
+ #: ../lib/r10k/action/deploy/deploy_helpers.rb:12 ../lib/r10k/settings/loader.rb:63
23
+ msgid "No configuration file given, no config file found in current directory, and no global config present"
24
+ msgstr ""
25
+
26
+ #: ../lib/r10k/action/deploy/deploy_helpers.rb:26
27
+ msgid "Making changes to deployed environments has been administratively disabled."
28
+ msgstr ""
29
+
30
+ #: ../lib/r10k/action/deploy/deploy_helpers.rb:27
31
+ msgid "Reason: %{write_lock}"
32
+ msgstr ""
33
+
34
+ #: ../lib/r10k/action/deploy/environment.rb:56
35
+ msgid "Environment(s) \\'%{environments}\\' cannot be found in any source and will not be deployed."
36
+ msgstr ""
37
+
38
+ #: ../lib/r10k/action/deploy/environment.rb:79
39
+ msgid "Environment %{env_dir} does not match environment name filter, skipping"
40
+ msgstr ""
41
+
42
+ #: ../lib/r10k/action/deploy/environment.rb:86
43
+ msgid "Deploying environment %{env_path}"
44
+ msgstr ""
45
+
46
+ #: ../lib/r10k/action/deploy/environment.rb:89
47
+ msgid "Environment %{env_dir} is now at %{env_signature}"
48
+ msgstr ""
49
+
50
+ #: ../lib/r10k/action/deploy/environment.rb:93
51
+ msgid "Environment %{env_dir} is new, updating all modules"
52
+ msgstr ""
53
+
54
+ #: ../lib/r10k/action/deploy/environment.rb:123
55
+ msgid "Deploying Puppetfile content %{mod_path}"
56
+ msgstr ""
57
+
58
+ #: ../lib/r10k/action/deploy/module.rb:49
59
+ msgid "Only updating modules in environment %{opt_env} skipping environment %{env_path}"
60
+ msgstr ""
61
+
62
+ #: ../lib/r10k/action/deploy/module.rb:51
63
+ msgid "Updating modules %{modules} in environment %{env_path}"
64
+ msgstr ""
65
+
66
+ #: ../lib/r10k/action/deploy/module.rb:63
67
+ msgid "Deploying module %{mod_path}"
68
+ msgstr ""
69
+
70
+ #: ../lib/r10k/action/deploy/module.rb:66
71
+ msgid "Only updating modules %{modules}, skipping module %{mod_name}"
72
+ msgstr ""
73
+
74
+ #: ../lib/r10k/action/puppetfile/check.rb:14
75
+ msgid "Syntax OK"
76
+ msgstr ""
77
+
78
+ #: ../lib/r10k/action/puppetfile/cri_runner.rb:19
79
+ msgid "The use of the PUPPETFILE and PUPPETFILE_DIR environment variables is deprecated."
80
+ msgstr ""
81
+
82
+ #: ../lib/r10k/action/puppetfile/install.rb:30
83
+ msgid "Updating module %{mod_path}"
84
+ msgstr ""
85
+
86
+ #: ../lib/r10k/action/puppetfile/install.rb:33
87
+ msgid "Cannot track control repo branch for content '%{name}' when not part of a 'deploy' action, will use default if available."
88
+ msgstr ""
89
+
90
+ #: ../lib/r10k/action/runner.rb:49 ../lib/r10k/deployment/config.rb:42
91
+ msgid "Overriding config file setting '%{key}': '%{old_val}' -> '%{new_val}'"
92
+ msgstr ""
93
+
94
+ #: ../lib/r10k/action/runner.rb:82
95
+ msgid "Reading configuration from %{config_path}"
96
+ msgstr ""
97
+
98
+ #: ../lib/r10k/action/runner.rb:85
99
+ msgid "No config file explicitly given and no default config file could be found, default settings will be used."
100
+ msgstr ""
101
+
102
+ #: ../lib/r10k/deployment.rb:90
103
+ msgid "Environment collision at %{env_path} between %{source}:%{env_name} and %{osource}:%{oenv_name}"
104
+ msgstr ""
105
+
106
+ #: ../lib/r10k/deployment.rb:118
107
+ msgid "Unable to load sources; the supplied configuration does not define the 'sources' key"
108
+ msgstr ""
109
+
110
+ #: ../lib/r10k/environment/base.rb:53 ../lib/r10k/environment/base.rb:69 ../lib/r10k/environment/base.rb:78 ../lib/r10k/source/base.rb:58
111
+ msgid "%{class} has not implemented method %{method}"
112
+ msgstr ""
113
+
114
+ #: ../lib/r10k/feature.rb:27
115
+ msgid "Testing to see if feature %{name} is available."
116
+ msgstr ""
117
+
118
+ #: ../lib/r10k/feature.rb:30
119
+ msgid "Feature %{name} %{message} available."
120
+ msgstr ""
121
+
122
+ #: ../lib/r10k/feature.rb:37
123
+ msgid "Attempting to load library '%{lib}' for feature %{name}"
124
+ msgstr ""
125
+
126
+ #: ../lib/r10k/feature.rb:41
127
+ msgid "Error while loading library %{lib} for feature %{name}: %{error_msg}"
128
+ msgstr ""
129
+
130
+ #: ../lib/r10k/feature.rb:47
131
+ msgid "Evaluating proc %{block} to test for feature %{name}"
132
+ msgstr ""
133
+
134
+ #: ../lib/r10k/feature.rb:49
135
+ msgid "Proc %{block} for feature %{name} returned %{output}"
136
+ msgstr ""
137
+
138
+ #: ../lib/r10k/forge/module_release.rb:164
139
+ msgid "Unpacking %{tarball_cache_path} to %{target_dir} (with tmpdir %{tmp_path})"
140
+ msgstr ""
141
+
142
+ #: ../lib/r10k/forge/module_release.rb:166
143
+ msgid "Valid files unpacked: %{valid_files}"
144
+ msgstr ""
145
+
146
+ #: ../lib/r10k/forge/module_release.rb:168
147
+ msgid "These files existed in the module's tar file, but are invalid filetypes and were not unpacked: %{invalid_files}"
148
+ msgstr ""
149
+
150
+ #: ../lib/r10k/forge/module_release.rb:171
151
+ msgid "Symlinks are unsupported and were not unpacked from the module tarball. %{release_slug} contained these ignored symlinks: %{symlinks}"
152
+ msgstr ""
153
+
154
+ #: ../lib/r10k/git.rb:32
155
+ msgid "Rugged has been compiled without support for %{transport}; Git repositories will not be reachable via %{transport}."
156
+ msgstr ""
157
+
158
+ #: ../lib/r10k/git.rb:68
159
+ msgid "No Git providers are functional."
160
+ msgstr ""
161
+
162
+ #: ../lib/r10k/git.rb:85
163
+ msgid "No Git provider named '%{name}'."
164
+ msgstr ""
165
+
166
+ #: ../lib/r10k/git.rb:89
167
+ msgid "Git provider '%{name}' is not functional."
168
+ msgstr ""
169
+
170
+ #: ../lib/r10k/git.rb:96
171
+ msgid "Setting Git provider to %{provider}"
172
+ msgstr ""
173
+
174
+ #: ../lib/r10k/git.rb:104
175
+ msgid "No Git provider set."
176
+ msgstr ""
177
+
178
+ #: ../lib/r10k/git.rb:107
179
+ msgid "Setting Git provider to default provider %{name}"
180
+ msgstr ""
181
+
182
+ #: ../lib/r10k/git/alternates.rb:46
183
+ msgid "Cannot write %{file}; parent directory does not exist"
184
+ msgstr ""
185
+
186
+ #: ../lib/r10k/git/cache.rb:55
187
+ msgid "%{class}#path is deprecated; use #git_dir"
188
+ msgstr ""
189
+
190
+ #: ../lib/r10k/git/cache.rb:84
191
+ msgid "Creating new git cache for %{remote}"
192
+ msgstr ""
193
+
194
+ #: ../lib/r10k/git/rugged/bare_repository.rb:34 ../lib/r10k/git/rugged/working_repository.rb:28
195
+ msgid "Cloning '%{remote}' into %{path}"
196
+ msgstr ""
197
+
198
+ #: ../lib/r10k/git/rugged/bare_repository.rb:52
199
+ msgid "Fetching remote '%{remote_name}' at %{path}"
200
+ msgstr ""
201
+
202
+ #: ../lib/r10k/git/rugged/bare_repository.rb:56
203
+ msgid "Rugged versions prior to 0.24.0 do not support pruning stale branches during fetch, please upgrade your \\'rugged\\' gem. (Current version is: %{version})"
204
+ msgstr ""
205
+
206
+ #: ../lib/r10k/git/rugged/credentials.rb:24
207
+ msgid "Authentication failed for Git remote %{url}."
208
+ msgstr ""
209
+
210
+ #: ../lib/r10k/git/rugged/credentials.rb:48
211
+ msgid "Using per-repository private key %{key} for URL %{url}"
212
+ msgstr ""
213
+
214
+ #: ../lib/r10k/git/rugged/credentials.rb:51
215
+ msgid "URL %{url} has no per-repository private key using '%{key}'."
216
+ msgstr ""
217
+
218
+ #: ../lib/r10k/git/rugged/credentials.rb:53
219
+ msgid "Git remote %{url} uses the SSH protocol but no private key was given"
220
+ msgstr ""
221
+
222
+ #: ../lib/r10k/git/rugged/credentials.rb:57
223
+ msgid "Unable to use SSH key auth for %{url}: private key %{private_key} is missing or unreadable"
224
+ msgstr ""
225
+
226
+ #: ../lib/r10k/git/rugged/credentials.rb:80
227
+ msgid "URL %{url} includes the username %{username}, using that user for authentication."
228
+ msgstr ""
229
+
230
+ #: ../lib/r10k/git/rugged/credentials.rb:83
231
+ msgid "URL %{url} did not specify a user, using %{user} from configuration"
232
+ msgstr ""
233
+
234
+ #: ../lib/r10k/git/rugged/credentials.rb:86
235
+ msgid "URL %{url} did not specify a user, using current user %{user}"
236
+ msgstr ""
237
+
238
+ #: ../lib/r10k/git/rugged/thin_repository.rb:85 ../lib/r10k/git/shellgit/thin_repository.rb:65
239
+ msgid "Updated repo %{path} to include alternate object db path %{objects_dir}"
240
+ msgstr ""
241
+
242
+ #: ../lib/r10k/git/rugged/working_repository.rb:67
243
+ msgid "Checking out ref '%{ref}' (resolved to SHA '%{sha}') in repository %{path}"
244
+ msgstr ""
245
+
246
+ #: ../lib/r10k/git/rugged/working_repository.rb:87
247
+ msgid "Fetching remote '%{remote}' at %{path}"
248
+ msgstr ""
249
+
250
+ #: ../lib/r10k/git/stateful_repository.rb:40
251
+ msgid "Unable to sync repo to unresolvable ref '%{ref}'"
252
+ msgstr ""
253
+
254
+ #: ../lib/r10k/git/stateful_repository.rb:47
255
+ msgid "Cloning %{repo_path} and checking out %{ref}"
256
+ msgstr ""
257
+
258
+ #: ../lib/r10k/git/stateful_repository.rb:50
259
+ msgid "Replacing %{repo_path} and checking out %{ref}"
260
+ msgstr ""
261
+
262
+ #: ../lib/r10k/git/stateful_repository.rb:54 ../lib/r10k/git/stateful_repository.rb:59
263
+ msgid "Updating %{repo_path} to %{ref}"
264
+ msgstr ""
265
+
266
+ #: ../lib/r10k/git/stateful_repository.rb:58
267
+ msgid "Overwriting local modifications to %{repo_path}"
268
+ msgstr ""
269
+
270
+ #: ../lib/r10k/git/stateful_repository.rb:62
271
+ msgid "Skipping %{repo_path} due to local modifications"
272
+ msgstr ""
273
+
274
+ #: ../lib/r10k/git/stateful_repository.rb:65
275
+ msgid "%{repo_path} is already at Git ref %{ref}"
276
+ msgstr ""
277
+
278
+ #: ../lib/r10k/initializers.rb:30
279
+ msgid "the purgedirs key in r10k.yaml is deprecated. it is currently ignored."
280
+ msgstr ""
281
+
282
+ #: ../lib/r10k/keyed_factory.rb:18
283
+ msgid "Class already registered for %{key}"
284
+ msgstr ""
285
+
286
+ #: ../lib/r10k/keyed_factory.rb:32
287
+ msgid "No class registered for %{key}"
288
+ msgstr ""
289
+
290
+ #: ../lib/r10k/logging.rb:60
291
+ msgid "Invalid log level '%{val}'. Valid levels are %{log_levels}"
292
+ msgstr ""
293
+
294
+ #: ../lib/r10k/module.rb:29
295
+ msgid "Module %{name} with args %{args} doesn't have an implementation. (Are you using the right arguments?)"
296
+ msgstr ""
297
+
298
+ #: ../lib/r10k/module/base.rb:101
299
+ msgid "Module name (%{title}) must match either 'modulename' or 'owner/modulename'"
300
+ msgstr ""
301
+
302
+ #: ../lib/r10k/module/forge.rb:70 ../lib/r10k/module/forge.rb:95
303
+ msgid "The module %{title} does not exist on %{url}."
304
+ msgstr ""
305
+
306
+ #: ../lib/r10k/module/forge.rb:170
307
+ msgid "Forge module names must match 'owner/modulename'"
308
+ msgstr ""
309
+
310
+ #: ../lib/r10k/module/git.rb:92
311
+ msgid "Unhandled options %{unhandled} specified for %{class}"
312
+ msgstr ""
313
+
314
+ #: ../lib/r10k/module/local.rb:34
315
+ msgid "Module %{title} is a local module, always indicating synced."
316
+ msgstr ""
317
+
318
+ #: ../lib/r10k/module/metadata_file.rb:25
319
+ msgid "Could not read metadata.json"
320
+ msgstr ""
321
+
322
+ #: ../lib/r10k/puppetfile.rb:62
323
+ msgid "Puppetfile %{path} missing or unreadable"
324
+ msgstr ""
325
+
326
+ #: ../lib/r10k/puppetfile.rb:72
327
+ msgid "Failed to evaluate %{path}"
328
+ msgstr ""
329
+
330
+ #: ../lib/r10k/puppetfile.rb:86
331
+ msgid "Puppetfiles should not contain duplicate module names and will result in an error in r10k v3.x."
332
+ msgstr ""
333
+
334
+ #: ../lib/r10k/puppetfile.rb:87
335
+ msgid "Remove the duplicates of the following modules: %{dupes}"
336
+ msgstr ""
337
+
338
+ #: ../lib/r10k/puppetfile.rb:207
339
+ msgid "unrecognized declaration '%{method}'"
340
+ msgstr ""
341
+
342
+ #: ../lib/r10k/settings/collection.rb:77
343
+ msgid "Validation failed for '%{name}' settings group"
344
+ msgstr ""
345
+
346
+ #: ../lib/r10k/settings/collection.rb:79
347
+ msgid "Validation failed for settings group"
348
+ msgstr ""
349
+
350
+ #: ../lib/r10k/settings/container.rb:87
351
+ msgid "Key %{key} is not a valid key"
352
+ msgstr ""
353
+
354
+ #: ../lib/r10k/settings/enum_definition.rb:13
355
+ msgid "Setting %{name} may only contain %{enums}; the disallowed values %{invalid} were present"
356
+ msgstr ""
357
+
358
+ #: ../lib/r10k/settings/enum_definition.rb:17
359
+ msgid "Setting %{name} should be one of %{enums}, not '%{value}'"
360
+ msgstr ""
361
+
362
+ #: ../lib/r10k/settings/helpers.rb:19
363
+ msgid "%{class} instances cannot be reassigned to a new parent."
364
+ msgstr ""
365
+
366
+ #: ../lib/r10k/settings/helpers.rb:23
367
+ msgid "%{class} instances may only belong to a settings collection or list."
368
+ msgstr ""
369
+
370
+ #: ../lib/r10k/settings/list.rb:66
371
+ msgid "Validation failed for '%{name}' settings list"
372
+ msgstr ""
373
+
374
+ #: ../lib/r10k/settings/loader.rb:45
375
+ msgid "Both %{default_path} and %{old_default_path} configuration files exist."
376
+ msgstr ""
377
+
378
+ #: ../lib/r10k/settings/loader.rb:46
379
+ msgid "%{default_path} will be used."
380
+ msgstr ""
381
+
382
+ #: ../lib/r10k/settings/loader.rb:52
383
+ msgid "The r10k configuration file at %{old_default_path} is deprecated."
384
+ msgstr ""
385
+
386
+ #: ../lib/r10k/settings/loader.rb:53
387
+ msgid "Please move your r10k configuration to %{default_path}."
388
+ msgstr ""
389
+
390
+ #: ../lib/r10k/settings/loader.rb:69
391
+ msgid "Couldn't load config file: %{error_msg}"
392
+ msgstr ""
393
+
394
+ #: ../lib/r10k/settings/loader.rb:73
395
+ msgid "File exists at #{path} but doesn't contain any YAML"
396
+ msgstr ""
397
+
398
+ #: ../lib/r10k/settings/uri_definition.rb:12
399
+ msgid "Setting %{name} requires a URL but '%{value}' could not be parsed as a URL"
400
+ msgstr ""
401
+
402
+ #: ../lib/r10k/source/git.rb:72
403
+ msgid "Fetching '%{remote}' to determine current branches."
404
+ msgstr ""
405
+
406
+ #: ../lib/r10k/source/git.rb:75
407
+ msgid "Unable to determine current branches for Git source '%{name}' (%{basedir})"
408
+ msgstr ""
409
+
410
+ #: ../lib/r10k/source/git.rb:100
411
+ msgid "Environment %{env_name} contained non-word characters, correcting name to %{corrected_env_name}"
412
+ msgstr ""
413
+
414
+ #: ../lib/r10k/source/git.rb:104
415
+ msgid "Environment %{env_name} contained non-word characters, ignoring it."
416
+ msgstr ""
417
+
418
+ #: ../lib/r10k/source/git.rb:123 ../lib/r10k/source/svn.rb:111
419
+ msgid "Branch %{branch} filtered out by ignore_branch_prefixes %{ibp}"
420
+ msgstr ""
421
+
422
+ #: ../lib/r10k/svn/working_dir.rb:43
423
+ msgid "Both username and password must be specified"
424
+ msgstr ""
425
+
426
+ #: ../lib/r10k/util/basedir.rb:34
427
+ msgid "Expected Array<#desired_contents>, got R10K::Deployment"
428
+ msgstr ""
429
+
430
+ #: ../lib/r10k/util/basedir.rb:58
431
+ msgid "Source %{source_name} in %{path} manages contents %{contents}"
432
+ msgstr ""
433
+
434
+ #: ../lib/r10k/util/license.rb:11
435
+ msgid "pe_license feature is available, loading PE license key"
436
+ msgstr ""
437
+
438
+ #: ../lib/r10k/util/license.rb:15
439
+ msgid "Invalid PE license detected: %{error_msg}"
440
+ msgstr ""
441
+
442
+ #: ../lib/r10k/util/license.rb:18
443
+ msgid "pe_license feature is not available, PE only Puppet modules will not be downloadable."
444
+ msgstr ""
445
+
446
+ #: ../lib/r10k/util/purgeable.rb:50
447
+ msgid "Not purging %{item} due to internal exclusion match: %{exclusion_match}"
448
+ msgstr ""
449
+
450
+ #: ../lib/r10k/util/purgeable.rb:52
451
+ msgid "Not purging %{item} due to whitelist match: %{whitelist_match}"
452
+ msgstr ""
453
+
454
+ #: ../lib/r10k/util/purgeable.rb:69
455
+ msgid "No unmanaged contents in %{managed_dirs}, nothing to purge"
456
+ msgstr ""
457
+
458
+ #: ../lib/r10k/util/purgeable.rb:74
459
+ msgid "Removing unmanaged path %{path}"
460
+ msgstr ""
461
+
462
+ #: ../lib/r10k/util/purgeable.rb:79
463
+ msgid "Unable to remove unmanaged path: %{path}"
464
+ msgstr ""
465
+
466
+ #: ../lib/r10k/util/setopts.rb:49
467
+ msgid "%{class_name} cannot handle option '%{key}'"
468
+ msgstr ""
469
+
470
+ #: ../lib/r10k/util/subprocess.rb:69
471
+ msgid "Starting process: %{args}"
472
+ msgstr ""
473
+
474
+ #: ../lib/r10k/util/subprocess.rb:74
475
+ msgid ""
476
+ "Finished process:\n"
477
+ "%{result}"
478
+ msgstr ""
479
+
480
+ #: ../lib/r10k/util/subprocess.rb:77
481
+ msgid "Command exited with non-zero exit code"
482
+ msgstr ""
483
+
484
+ #: ../lib/r10k/util/symbolize_keys.rb:17
485
+ msgid "An existing interned key for %{key} exists, cannot overwrite"
486
+ msgstr ""