puppet 6.12.0 → 6.13.0

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.

Files changed (144) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile.lock +12 -12
  3. data/README.md +1 -1
  4. data/ext/project_data.yaml +1 -1
  5. data/lib/puppet.rb +22 -7
  6. data/lib/puppet/application/resource.rb +1 -1
  7. data/lib/puppet/configurer.rb +8 -13
  8. data/lib/puppet/defaults.rb +83 -49
  9. data/lib/puppet/environments.rb +26 -18
  10. data/lib/puppet/face/facts.rb +8 -5
  11. data/lib/puppet/file_system/memory_file.rb +6 -0
  12. data/lib/puppet/file_system/memory_impl.rb +13 -0
  13. data/lib/puppet/file_system/windows.rb +7 -10
  14. data/lib/puppet/http.rb +2 -0
  15. data/lib/puppet/http/client.rb +30 -0
  16. data/lib/puppet/http/errors.rb +2 -0
  17. data/lib/puppet/http/service.rb +61 -2
  18. data/lib/puppet/http/service/compiler.rb +86 -0
  19. data/lib/puppet/http/service/file_server.rb +85 -0
  20. data/lib/puppet/http/service/report.rb +4 -8
  21. data/lib/puppet/http/session.rb +8 -1
  22. data/lib/puppet/indirector/catalog/compiler.rb +10 -0
  23. data/lib/puppet/indirector/file_bucket_file/file.rb +1 -1
  24. data/lib/puppet/indirector/json.rb +1 -1
  25. data/lib/puppet/indirector/msgpack.rb +1 -1
  26. data/lib/puppet/network/http/connection.rb +4 -0
  27. data/lib/puppet/network/http/nocache_pool.rb +1 -0
  28. data/lib/puppet/network/http/pool.rb +5 -1
  29. data/lib/puppet/parser/ast/pops_bridge.rb +6 -11
  30. data/lib/puppet/pops/evaluator/access_operator.rb +2 -2
  31. data/lib/puppet/pops/evaluator/evaluator_impl.rb +1 -1
  32. data/lib/puppet/pops/loader/puppet_plan_instantiator.rb +12 -3
  33. data/lib/puppet/pops/parser/evaluating_parser.rb +5 -7
  34. data/lib/puppet/pops/types/p_object_type_extension.rb +10 -0
  35. data/lib/puppet/pops/types/type_calculator.rb +24 -0
  36. data/lib/puppet/pops/validation/checker4_0.rb +1 -1
  37. data/lib/puppet/pops/validation/tasks_checker.rb +5 -1
  38. data/lib/puppet/provider/aix_object.rb +4 -2
  39. data/lib/puppet/provider/group/aix.rb +1 -0
  40. data/lib/puppet/provider/group/groupadd.rb +52 -24
  41. data/lib/puppet/provider/package/apt.rb +14 -3
  42. data/lib/puppet/provider/package/dnfmodule.rb +9 -2
  43. data/lib/puppet/provider/package/dpkg.rb +14 -7
  44. data/lib/puppet/provider/package/fink.rb +20 -3
  45. data/lib/puppet/provider/package/openbsd.rb +13 -1
  46. data/lib/puppet/provider/package/pkg.rb +18 -5
  47. data/lib/puppet/provider/package/yum.rb +9 -5
  48. data/lib/puppet/provider/user/aix.rb +1 -0
  49. data/lib/puppet/provider/user/directoryservice.rb +30 -5
  50. data/lib/puppet/provider/user/useradd.rb +6 -7
  51. data/lib/puppet/reports/store.rb +1 -1
  52. data/lib/puppet/settings.rb +2 -0
  53. data/lib/puppet/ssl/certificate.rb +2 -1
  54. data/lib/puppet/test/test_helper.rb +4 -0
  55. data/lib/puppet/transaction/resource_harness.rb +1 -1
  56. data/lib/puppet/type/group.rb +2 -2
  57. data/lib/puppet/type/package.rb +63 -9
  58. data/lib/puppet/type/user.rb +2 -2
  59. data/lib/puppet/util/log/destinations.rb +1 -1
  60. data/lib/puppet/util/pidlock.rb +26 -6
  61. data/lib/puppet/util/plist.rb +6 -0
  62. data/lib/puppet/util/storage.rb +0 -1
  63. data/lib/puppet/util/yaml.rb +1 -1
  64. data/lib/puppet/version.rb +1 -1
  65. data/locales/puppet.pot +127 -115
  66. data/man/man5/puppet.conf.5 +21 -7
  67. data/man/man8/puppet-agent.8 +1 -1
  68. data/man/man8/puppet-apply.8 +1 -1
  69. data/man/man8/puppet-catalog.8 +1 -1
  70. data/man/man8/puppet-config.8 +1 -1
  71. data/man/man8/puppet-describe.8 +1 -1
  72. data/man/man8/puppet-device.8 +1 -1
  73. data/man/man8/puppet-doc.8 +1 -1
  74. data/man/man8/puppet-epp.8 +1 -1
  75. data/man/man8/puppet-facts.8 +1 -1
  76. data/man/man8/puppet-filebucket.8 +1 -1
  77. data/man/man8/puppet-generate.8 +1 -1
  78. data/man/man8/puppet-help.8 +1 -1
  79. data/man/man8/puppet-key.8 +1 -1
  80. data/man/man8/puppet-lookup.8 +1 -1
  81. data/man/man8/puppet-man.8 +1 -1
  82. data/man/man8/puppet-module.8 +1 -1
  83. data/man/man8/puppet-node.8 +1 -1
  84. data/man/man8/puppet-parser.8 +1 -1
  85. data/man/man8/puppet-plugin.8 +1 -1
  86. data/man/man8/puppet-report.8 +1 -1
  87. data/man/man8/puppet-resource.8 +1 -1
  88. data/man/man8/puppet-script.8 +1 -1
  89. data/man/man8/puppet-ssl.8 +1 -1
  90. data/man/man8/puppet-status.8 +1 -1
  91. data/man/man8/puppet.8 +2 -2
  92. data/spec/fixtures/vcr/cassettes/Puppet_Type_File/when_sourcing/from_http/using_md5/should_fetch_if_not_on_the_local_disk.yml +0 -35
  93. data/spec/fixtures/vcr/cassettes/Puppet_Type_File/when_sourcing/from_http/using_md5/should_not_update_if_content_on_disk_is_up-to-date.yml +0 -37
  94. data/spec/fixtures/vcr/cassettes/Puppet_Type_File/when_sourcing/from_http/using_md5/should_update_if_content_differs_on_disk.yml +0 -37
  95. data/spec/fixtures/vcr/cassettes/Puppet_Type_File/when_sourcing/from_http/using_mtime/should_fetch_if_mtime_is_older_on_disk.yml +0 -35
  96. data/spec/fixtures/vcr/cassettes/Puppet_Type_File/when_sourcing/from_http/using_mtime/should_fetch_if_no_header_specified.yml +0 -33
  97. data/spec/fixtures/vcr/cassettes/Puppet_Type_File/when_sourcing/from_http/using_mtime/should_fetch_if_not_on_the_local_disk.yml +0 -35
  98. data/spec/fixtures/vcr/cassettes/Puppet_Type_File/when_sourcing/from_http/using_mtime/should_not_update_if_mtime_is_newer_on_disk.yml +0 -35
  99. data/spec/integration/configurer_spec.rb +26 -7
  100. data/spec/integration/indirector/facts/facter_spec.rb +4 -0
  101. data/spec/unit/application/apply_spec.rb +2 -12
  102. data/spec/unit/application/resource_spec.rb +2 -2
  103. data/spec/unit/configurer/fact_handler_spec.rb +0 -4
  104. data/spec/unit/configurer_spec.rb +0 -3
  105. data/spec/unit/defaults_spec.rb +1 -1
  106. data/spec/unit/environments_spec.rb +57 -28
  107. data/spec/unit/face/facts_spec.rb +24 -20
  108. data/spec/unit/file_system_spec.rb +16 -2
  109. data/spec/unit/http/client_spec.rb +6 -0
  110. data/spec/unit/http/service/compiler_spec.rb +322 -0
  111. data/spec/unit/http/service/file_server_spec.rb +219 -0
  112. data/spec/unit/http/service/report_spec.rb +8 -1
  113. data/spec/unit/http/service_spec.rb +4 -0
  114. data/spec/unit/http/session_spec.rb +31 -0
  115. data/spec/unit/indirector/catalog/compiler_spec.rb +46 -29
  116. data/spec/unit/network/http/connection_spec.rb +23 -1
  117. data/spec/unit/network/http/nocache_pool_spec.rb +3 -3
  118. data/spec/unit/network/http/pool_spec.rb +32 -0
  119. data/spec/unit/node/facts_spec.rb +2 -1
  120. data/spec/unit/node_spec.rb +7 -4
  121. data/spec/unit/pops/serialization/to_from_hr_spec.rb +6 -1
  122. data/spec/unit/pops/validator/validator_spec.rb +7 -2
  123. data/spec/unit/provider/aix_object_spec.rb +16 -2
  124. data/spec/unit/provider/group/groupadd_spec.rb +167 -56
  125. data/spec/unit/provider/package/apt_spec.rb +13 -2
  126. data/spec/unit/provider/package/aptitude_spec.rb +1 -0
  127. data/spec/unit/provider/package/dnfmodule_spec.rb +22 -0
  128. data/spec/unit/provider/package/dpkg_spec.rb +28 -6
  129. data/spec/unit/provider/package/openbsd_spec.rb +17 -0
  130. data/spec/unit/provider/package/pkg_spec.rb +15 -1
  131. data/spec/unit/provider/package/yum_spec.rb +50 -0
  132. data/spec/unit/provider/user/directoryservice_spec.rb +41 -0
  133. data/spec/unit/provider/user/useradd_spec.rb +13 -8
  134. data/spec/unit/puppet_pal_2pec.rb +3 -0
  135. data/spec/unit/puppet_pal_catalog_spec.rb +3 -0
  136. data/spec/unit/puppet_spec.rb +14 -0
  137. data/spec/unit/ssl/certificate_spec.rb +7 -0
  138. data/spec/unit/transaction/persistence_spec.rb +1 -10
  139. data/spec/unit/type/package_spec.rb +8 -0
  140. data/spec/unit/type/user_spec.rb +0 -1
  141. data/spec/unit/util/pidlock_spec.rb +38 -16
  142. data/spec/unit/util/plist_spec.rb +20 -0
  143. data/spec/unit/util/storage_spec.rb +1 -8
  144. metadata +10 -4
@@ -51,7 +51,7 @@ module Puppet
51
51
  feature :manages_aix_lam,
52
52
  "The provider can manage AIX Loadable Authentication Module (LAM) system."
53
53
 
54
- feature :libuser,
54
+ feature :manages_local_users_and_groups,
55
55
  "Allows local users to be managed on systems that also use some other
56
56
  remote Name Service Switch (NSS) method of managing accounts."
57
57
 
@@ -688,7 +688,7 @@ module Puppet
688
688
  end
689
689
 
690
690
  newparam(:forcelocal, :boolean => true,
691
- :required_features => :libuser,
691
+ :required_features => :manages_local_users_and_groups,
692
692
  :parent => Puppet::Parameter::Boolean) do
693
693
  desc "Forces the management of local accounts when accounts are also
694
694
  being managed by some other Name Service Switch (NSS). For AIX, refer to the `ia_load_module` parameter.
@@ -47,7 +47,7 @@ Puppet::Util::Log.newdesttype :file do
47
47
  require 'fileutils'
48
48
 
49
49
  def self.match?(obj)
50
- Puppet::Util.absolute_path?(obj)
50
+ obj.is_a?(String) && Puppet::Util.absolute_path?(obj)
51
51
  end
52
52
 
53
53
  def close
@@ -43,6 +43,19 @@ class Puppet::Util::Pidlock
43
43
  @lockfile.file_path
44
44
  end
45
45
 
46
+ private
47
+
48
+ def ps_argument_for_current_kernel
49
+ case Facter.value(:kernel)
50
+ when "Linux"
51
+ "-eq"
52
+ when "AIX"
53
+ "-T"
54
+ else
55
+ "-p"
56
+ end
57
+ end
58
+
46
59
  def clear_if_stale
47
60
  return @lockfile.unlock if lock_pid.nil?
48
61
 
@@ -58,11 +71,20 @@ class Puppet::Util::Pidlock
58
71
  end
59
72
 
60
73
  # Ensure the process associated with this pid is our process. If
61
- # not, we can unlock the lockfile. For now this is only done on
62
- # POSIX and Windows platforms (PUP-9247).
74
+ # not, we can unlock the lockfile. CLI arguments used for identifying
75
+ # on POSIX depend on the os and sometimes even version.
63
76
  if Puppet.features.posix?
64
- procname = Puppet::Util::Execution.execute(["ps", "-p", lock_pid, "-o", "comm="]).strip
65
- args = Puppet::Util::Execution.execute(["ps", "-p", lock_pid, "-o", "args="]).strip
77
+ ps_argument = ps_argument_for_current_kernel
78
+
79
+ # Check, obtain and use the right ps argument
80
+ begin
81
+ procname = Puppet::Util::Execution.execute(["ps", ps_argument, lock_pid, "-o", "comm="]).strip
82
+ rescue Puppet::ExecutionFailure
83
+ ps_argument = "-p"
84
+ procname = Puppet::Util::Execution.execute(["ps", ps_argument, lock_pid, "-o", "comm="]).strip
85
+ end
86
+
87
+ args = Puppet::Util::Execution.execute(["ps", ps_argument, lock_pid, "-o", "args="]).strip
66
88
  @lockfile.unlock unless procname =~ /ruby/ && args =~ /puppet/ || procname =~ /puppet(-.*)?$/
67
89
  elsif Puppet.features.microsoft_windows?
68
90
  # On Windows, we're checking if the filesystem path name of the running
@@ -71,6 +93,4 @@ class Puppet::Util::Pidlock
71
93
  @lockfile.unlock unless exe_path =~ /\\bin\\ruby.exe$/
72
94
  end
73
95
  end
74
- private :clear_if_stale
75
-
76
96
  end
@@ -56,6 +56,12 @@ module Puppet::Util::Plist
56
56
  # Read plist text using the CFPropertyList gem.
57
57
  def parse_plist(plist_data, file_path = '')
58
58
  bad_xml_doctype = /^.*<!DOCTYPE plist PUBLIC -\/\/Apple Computer.*$/
59
+ # Depending on where parse_plist is called from, plist_data can be either XML or binary.
60
+ # If we get XML, make sure ruby knows it's UTF-8 so we avoid invalid byte sequence errors.
61
+ if plist_data.include?('encoding="UTF-8"') && plist_data.encoding != Encoding::UTF_8
62
+ plist_data.force_encoding(Encoding::UTF_8)
63
+ end
64
+
59
65
  begin
60
66
  if plist_data =~ bad_xml_doctype
61
67
  plist_data.gsub!( bad_xml_doctype, plist_xml_doctype )
@@ -1,5 +1,4 @@
1
1
  require 'yaml'
2
- require 'sync'
3
2
  require 'singleton'
4
3
  require 'puppet/util/yaml'
5
4
 
@@ -65,7 +65,7 @@ module Puppet::Util::Yaml
65
65
  end
66
66
 
67
67
  def self.dump(structure, filename)
68
- Puppet::Util.replace_file(filename, 0660) do |fh|
68
+ Puppet::FileSystem.replace_file(filename, 0660) do |fh|
69
69
  YAML.dump(structure, fh)
70
70
  end
71
71
  end
@@ -6,7 +6,7 @@
6
6
  # Raketasks and such to set the version based on the output of `git describe`
7
7
 
8
8
  module Puppet
9
- PUPPETVERSION = '6.12.0'
9
+ PUPPETVERSION = '6.13.0'
10
10
 
11
11
  ##
12
12
  # version is a public API method intended to always provide a fast and
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.11.1-197-g539749b170\n"
9
+ "Project-Id-Version: Puppet automation framework 6.12.0-140-gec3639ae66\n"
10
10
  "\n"
11
11
  "Report-Msgid-Bugs-To: https://tickets.puppetlabs.com\n"
12
- "POT-Creation-Date: 2020-01-07 15:20+0000\n"
13
- "PO-Revision-Date: 2020-01-07 15:20+0000\n"
12
+ "POT-Creation-Date: 2020-02-07 12:49+0000\n"
13
+ "PO-Revision-Date: 2020-02-07 12:49+0000\n"
14
14
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
15
15
  "Language-Team: LANGUAGE <LL@li.org>\n"
16
16
  "Language: \n"
@@ -523,118 +523,118 @@ msgstr ""
523
523
  msgid "Removed %{label} %{path}"
524
524
  msgstr ""
525
525
 
526
- #: ../lib/puppet/configurer.rb:23
526
+ #: ../lib/puppet/configurer.rb:22
527
527
  msgid "Puppet configuration client"
528
528
  msgstr ""
529
529
 
530
- #: ../lib/puppet/configurer.rb:46
530
+ #: ../lib/puppet/configurer.rb:45
531
531
  msgid "Removing corrupt state file %{file}: %{detail}"
532
532
  msgstr ""
533
533
 
534
- #: ../lib/puppet/configurer.rb:51
534
+ #: ../lib/puppet/configurer.rb:50
535
535
  msgid "Cannot remove %{file}: %{detail}"
536
536
  msgstr ""
537
537
 
538
- #: ../lib/puppet/configurer.rb:74
538
+ #: ../lib/puppet/configurer.rb:73
539
539
  msgid "Using cached catalog from environment '%{environment}'"
540
540
  msgstr ""
541
541
 
542
- #: ../lib/puppet/configurer.rb:80
542
+ #: ../lib/puppet/configurer.rb:79
543
543
  msgid "Not using cache on failed catalog"
544
544
  msgstr ""
545
545
 
546
- #: ../lib/puppet/configurer.rb:89
546
+ #: ../lib/puppet/configurer.rb:88
547
547
  msgid "Not using cached catalog because its environment '%{catalog_env}' does not match '%{local_env}'"
548
548
  msgstr ""
549
549
 
550
- #: ../lib/puppet/configurer.rb:94 ../lib/puppet/configurer.rb:177
550
+ #: ../lib/puppet/configurer.rb:93 ../lib/puppet/configurer.rb:176
551
551
  msgid "Using cached catalog from environment '%{catalog_env}'"
552
552
  msgstr ""
553
553
 
554
- #: ../lib/puppet/configurer.rb:170
554
+ #: ../lib/puppet/configurer.rb:169
555
555
  msgid "Could not retrieve catalog; skipping run"
556
556
  msgstr ""
557
557
 
558
- #: ../lib/puppet/configurer.rb:186
558
+ #: ../lib/puppet/configurer.rb:185
559
559
  msgid "Applied catalog in %{seconds} seconds"
560
560
  msgstr ""
561
561
 
562
- #: ../lib/puppet/configurer.rb:226 ../lib/puppet/http/resolver/server_list.rb:19
562
+ #: ../lib/puppet/configurer.rb:225 ../lib/puppet/http/resolver/server_list.rb:19
563
563
  msgid "Could not select a functional puppet master from server_list: '%{server_list}'"
564
564
  msgstr ""
565
565
 
566
566
  #. TRANSLATORS 'server_list' is the name of a setting and should not be translated
567
- #: ../lib/puppet/configurer.rb:229
567
+ #: ../lib/puppet/configurer.rb:228
568
568
  msgid "Selected puppet server from the `server_list` setting: %{server}:%{port}"
569
569
  msgstr ""
570
570
 
571
- #: ../lib/puppet/configurer.rb:261
571
+ #: ../lib/puppet/configurer.rb:260
572
572
  msgid "Local environment: '%{local_env}' doesn't match the environment of the cached catalog '%{catalog_env}', switching agent to '%{catalog_env}'."
573
573
  msgstr ""
574
574
 
575
- #: ../lib/puppet/configurer.rb:306
575
+ #: ../lib/puppet/configurer.rb:305
576
576
  msgid "Local environment: '%{local_env}' doesn't match server specified node environment '%{node_env}', switching agent to '%{node_env}'."
577
577
  msgstr ""
578
578
 
579
- #: ../lib/puppet/configurer.rb:311
579
+ #: ../lib/puppet/configurer.rb:310
580
580
  msgid "Using configured environment '%{env}'"
581
581
  msgstr ""
582
582
 
583
- #: ../lib/puppet/configurer.rb:315
583
+ #: ../lib/puppet/configurer.rb:314
584
584
  msgid "Unable to fetch my node definition, but the agent run will continue:"
585
585
  msgstr ""
586
586
 
587
- #: ../lib/puppet/configurer.rb:344
587
+ #: ../lib/puppet/configurer.rb:343
588
588
  msgid "Not using catalog because its environment '%{catalog_env}' does not match agent specified environment '%{local_env}' and strict_environment_mode is set"
589
589
  msgstr ""
590
590
 
591
- #: ../lib/puppet/configurer.rb:355
591
+ #: ../lib/puppet/configurer.rb:354
592
592
  msgid "Catalog environment didn't stabilize after %{tries} fetches, aborting run"
593
593
  msgstr ""
594
594
 
595
- #: ../lib/puppet/configurer.rb:357
595
+ #: ../lib/puppet/configurer.rb:356
596
596
  msgid "Local environment: '%{local_env}' doesn't match server specified environment '%{catalog_env}', restarting agent run with environment '%{catalog_env}'"
597
597
  msgstr ""
598
598
 
599
- #: ../lib/puppet/configurer.rb:398
599
+ #: ../lib/puppet/configurer.rb:397
600
600
  msgid "Failed to apply catalog: %{detail}"
601
601
  msgstr ""
602
602
 
603
- #: ../lib/puppet/configurer.rb:431 ../lib/puppet/http/resolver/server_list.rb:29
603
+ #: ../lib/puppet/configurer.rb:430 ../lib/puppet/http/resolver/server_list.rb:29
604
604
  msgid "Puppet server %{host}:%{port} is unavailable: %{code} %{reason}"
605
605
  msgstr ""
606
606
 
607
607
  #. TRANSLATORS 'server_list' is the name of a setting and should not be translated
608
608
  #. TRANSLATORS 'server_list' is the name of a setting and should not be translated
609
- #: ../lib/puppet/configurer.rb:435 ../lib/puppet/http/resolver/server_list.rb:35
609
+ #: ../lib/puppet/configurer.rb:434 ../lib/puppet/http/resolver/server_list.rb:35
610
610
  msgid "Unable to connect to server from server_list setting: %{detail}"
611
611
  msgstr ""
612
612
 
613
- #: ../lib/puppet/configurer.rb:447 ../lib/puppet/face/report.rb:47
613
+ #: ../lib/puppet/configurer.rb:446 ../lib/puppet/face/report.rb:47
614
614
  msgid "Could not send report: %{detail}"
615
615
  msgstr ""
616
616
 
617
- #: ../lib/puppet/configurer.rb:456
617
+ #: ../lib/puppet/configurer.rb:455
618
618
  msgid "Could not save last run local report: %{detail}"
619
619
  msgstr ""
620
620
 
621
- #: ../lib/puppet/configurer.rb:476
621
+ #: ../lib/puppet/configurer.rb:474
622
622
  msgid "Uploading facts for %{node} to %{server}"
623
623
  msgstr ""
624
624
 
625
- #: ../lib/puppet/configurer.rb:487
625
+ #: ../lib/puppet/configurer.rb:482
626
626
  msgid "Failed to submit facts: %{detail}"
627
627
  msgstr ""
628
628
 
629
- #: ../lib/puppet/configurer.rb:502
629
+ #: ../lib/puppet/configurer.rb:497
630
630
  msgid "Could not run command from %{setting}: %{detail}"
631
631
  msgstr ""
632
632
 
633
- #: ../lib/puppet/configurer.rb:520
633
+ #: ../lib/puppet/configurer.rb:515
634
634
  msgid "Could not retrieve catalog from cache: %{detail}"
635
635
  msgstr ""
636
636
 
637
- #: ../lib/puppet/configurer.rb:540
637
+ #: ../lib/puppet/configurer.rb:535
638
638
  msgid "Could not retrieve catalog from remote server: %{detail}"
639
639
  msgstr ""
640
640
 
@@ -699,45 +699,45 @@ msgid "a data type can only have one implementation"
699
699
  msgstr ""
700
700
 
701
701
  #: ../lib/puppet/defaults.rb:171
702
- msgid "Cannot disable unrecognized warning types %{invalid}."
702
+ msgid "Cannot disable unrecognized warning types '%{invalid}'."
703
703
  msgstr ""
704
704
 
705
705
  #: ../lib/puppet/defaults.rb:172
706
- msgid "Valid values are %{values}."
706
+ msgid "Valid values are '%{values}'."
707
707
  msgstr ""
708
708
 
709
709
  #. TRANSLATORS 'data_binding_terminus' is a setting and should not be translated
710
- #: ../lib/puppet/defaults.rb:526
710
+ #: ../lib/puppet/defaults.rb:540
711
711
  msgid "Setting 'data_binding_terminus' is deprecated."
712
712
  msgstr ""
713
713
 
714
714
  #. TRANSLATORS 'hiera' should not be translated
715
- #: ../lib/puppet/defaults.rb:528
715
+ #: ../lib/puppet/defaults.rb:542
716
716
  msgid "Convert custom terminus to hiera 5 API."
717
717
  msgstr ""
718
718
 
719
719
  #. TRANSLATORS 'environment_data_provider' is a setting and should not be translated
720
- #: ../lib/puppet/defaults.rb:718
720
+ #: ../lib/puppet/defaults.rb:732
721
721
  msgid "Setting 'environment_data_provider' is deprecated."
722
722
  msgstr ""
723
723
 
724
- #: ../lib/puppet/defaults.rb:799
724
+ #: ../lib/puppet/defaults.rb:813
725
725
  msgid "Certificate names must be lower case"
726
726
  msgstr ""
727
727
 
728
- #: ../lib/puppet/defaults.rb:980
728
+ #: ../lib/puppet/defaults.rb:998
729
729
  msgid "Setting 'ssl_client_ca_auth' is deprecated."
730
730
  msgstr ""
731
731
 
732
- #: ../lib/puppet/defaults.rb:1059 ../lib/puppet/settings/enum_setting.rb:13 ../lib/puppet/settings/symbolic_enum_setting.rb:14
732
+ #: ../lib/puppet/defaults.rb:1077 ../lib/puppet/settings/enum_setting.rb:13 ../lib/puppet/settings/symbolic_enum_setting.rb:14
733
733
  msgid "Invalid value '%{value}' for parameter %{name}. Allowed values are '%{allowed_values}'"
734
734
  msgstr ""
735
735
 
736
- #: ../lib/puppet/error.rb:69
736
+ #: ../lib/puppet/error.rb:77
737
737
  msgid "Could not parse for environment %{environment}: %{message}"
738
738
  msgstr ""
739
739
 
740
- #: ../lib/puppet/error.rb:70 ../lib/puppet/parser/compiler.rb:40
740
+ #: ../lib/puppet/error.rb:78 ../lib/puppet/parser/compiler.rb:40
741
741
  msgid "%{message} on node %{node}"
742
742
  msgstr ""
743
743
 
@@ -1025,8 +1025,8 @@ msgstr ""
1025
1025
  msgid "Upload local facts to the puppet master."
1026
1026
  msgstr ""
1027
1027
 
1028
- #: ../lib/puppet/face/facts.rb:80
1029
- msgid "Uploading facts for '%{node}' to: '%{server}'"
1028
+ #: ../lib/puppet/face/facts.rb:82
1029
+ msgid "Uploading facts for '%{node}' to '%{server}'"
1030
1030
  msgstr ""
1031
1031
 
1032
1032
  #: ../lib/puppet/face/generate.rb:9
@@ -1778,7 +1778,7 @@ msgstr ""
1778
1778
  msgid "Timeout waiting for exclusive lock on %{path}"
1779
1779
  msgstr ""
1780
1780
 
1781
- #: ../lib/puppet/file_system/jruby.rb:18 ../lib/puppet/file_system/windows.rb:126 ../lib/puppet/util.rb:658
1781
+ #: ../lib/puppet/file_system/jruby.rb:18 ../lib/puppet/file_system/windows.rb:127 ../lib/puppet/util.rb:681
1782
1782
  msgid "Is a directory: %{directory}"
1783
1783
  msgstr ""
1784
1784
 
@@ -1822,11 +1822,11 @@ msgstr ""
1822
1822
  msgid "%{dest} already exists and the :force option was not specified"
1823
1823
  msgstr ""
1824
1824
 
1825
- #: ../lib/puppet/file_system/windows.rb:205
1825
+ #: ../lib/puppet/file_system/windows.rb:202
1826
1826
  msgid "This version of Windows does not support symlinks. Windows Vista / 2008 or higher is required."
1827
1827
  msgstr ""
1828
1828
 
1829
- #: ../lib/puppet/file_system/windows.rb:210
1829
+ #: ../lib/puppet/file_system/windows.rb:207
1830
1830
  msgid "The current user does not have the necessary permission to manage symlinks."
1831
1831
  msgstr ""
1832
1832
 
@@ -2242,11 +2242,15 @@ msgstr ""
2242
2242
  msgid "Sleeping for %{interval} seconds before retrying the request"
2243
2243
  msgstr ""
2244
2244
 
2245
- #: ../lib/puppet/http/errors.rb:21
2245
+ #: ../lib/puppet/http/client.rb:198 ../lib/puppet/indirector/request.rb:142
2246
+ msgid "HTTP REST queries cannot handle values of type '%{klass}'"
2247
+ msgstr ""
2248
+
2249
+ #: ../lib/puppet/http/errors.rb:23
2246
2250
  msgid "Too many HTTP redirections for %{addr}"
2247
2251
  msgstr ""
2248
2252
 
2249
- #: ../lib/puppet/http/errors.rb:27
2253
+ #: ../lib/puppet/http/errors.rb:29
2250
2254
  msgid "Too many HTTP retries for %{addr}"
2251
2255
  msgstr ""
2252
2256
 
@@ -2262,8 +2266,12 @@ msgstr ""
2262
2266
  msgid "Failed to parse Retry-After header '%{retry_after}' as an integer or RFC 2822 date"
2263
2267
  msgstr ""
2264
2268
 
2265
- #. TRANSLATORS "pson", "preffered_serialization_format", and "puppetserver" should not be translated
2266
- #: ../lib/puppet/http/service/report.rb:35
2269
+ #: ../lib/puppet/http/service.rb:66 ../lib/puppet/indirector/rest.rb:276
2270
+ msgid "No content type in http response; cannot parse"
2271
+ msgstr ""
2272
+
2273
+ #. TRANSLATORS "pson", "preferred_serialization_format", and "puppetserver" should not be translated
2274
+ #: ../lib/puppet/http/service/report.rb:31
2267
2275
  msgid "To submit reports to a server running puppetserver %{server_version}, set preferred_serialization_format to pson"
2268
2276
  msgstr ""
2269
2277
 
@@ -2396,11 +2404,11 @@ msgstr ""
2396
2404
  msgid "Could not find node '%{name}'; cannot compile"
2397
2405
  msgstr ""
2398
2406
 
2399
- #: ../lib/puppet/indirector/catalog/compiler.rb:416
2407
+ #: ../lib/puppet/indirector/catalog/compiler.rb:426
2400
2408
  msgid "Could not retrieve fact servername"
2401
2409
  msgstr ""
2402
2410
 
2403
- #: ../lib/puppet/indirector/catalog/compiler.rb:425
2411
+ #: ../lib/puppet/indirector/catalog/compiler.rb:435
2404
2412
  msgid "Could not retrieve either serverip or serverip6 fact"
2405
2413
  msgstr ""
2406
2414
 
@@ -2747,10 +2755,6 @@ msgstr ""
2747
2755
  msgid "Could not find indirection '%{indirection}'"
2748
2756
  msgstr ""
2749
2757
 
2750
- #: ../lib/puppet/indirector/request.rb:142
2751
- msgid "HTTP REST queries cannot handle values of type '%{klass}'"
2752
- msgstr ""
2753
-
2754
2758
  #: ../lib/puppet/indirector/request.rb:202
2755
2759
  msgid "Error connecting to %{srv_server}:%{srv_port}: %{message}"
2756
2760
  msgstr ""
@@ -2799,10 +2803,6 @@ msgstr ""
2799
2803
  msgid "Error %{code} on SERVER: %{returned_message}"
2800
2804
  msgstr ""
2801
2805
 
2802
- #: ../lib/puppet/indirector/rest.rb:276
2803
- msgid "No content type in http response; cannot parse"
2804
- msgstr ""
2805
-
2806
2806
  #: ../lib/puppet/indirector/ssl_file.rb:34
2807
2807
  msgid "No file or directory setting provided; terminus %{class_name} cannot function"
2808
2808
  msgstr ""
@@ -4226,7 +4226,7 @@ msgstr ""
4226
4226
  msgid "Node inheritance is removed in Puppet 4.0.0. See http://links.puppet.com/puppet-node-inheritance-deprecation"
4227
4227
  msgstr ""
4228
4228
 
4229
- #: ../lib/puppet/parser/ast/pops_bridge.rb:195
4229
+ #: ../lib/puppet/parser/ast/pops_bridge.rb:190
4230
4230
  msgid "Instantiating Resource with type checked parameters - scope is missing, skipping type checking."
4231
4231
  msgstr ""
4232
4232
 
@@ -5724,23 +5724,23 @@ msgstr ""
5724
5724
  msgid "The code loaded from %{source} contains additional logic - can only contain the function %{name}"
5725
5725
  msgstr ""
5726
5726
 
5727
- #: ../lib/puppet/pops/loader/puppet_plan_instantiator.rb:25
5727
+ #: ../lib/puppet/pops/loader/puppet_plan_instantiator.rb:34
5728
5728
  msgid "The code loaded from %{source_ref} does not define the plan '%{plan_name}' - it is empty."
5729
5729
  msgstr ""
5730
5730
 
5731
- #: ../lib/puppet/pops/loader/puppet_plan_instantiator.rb:29
5731
+ #: ../lib/puppet/pops/loader/puppet_plan_instantiator.rb:38
5732
5732
  msgid "The code loaded from %{source_ref} must contain only the plan '%{plan_name}' - it has additional definitions."
5733
5733
  msgstr ""
5734
5734
 
5735
- #: ../lib/puppet/pops/loader/puppet_plan_instantiator.rb:34
5735
+ #: ../lib/puppet/pops/loader/puppet_plan_instantiator.rb:43
5736
5736
  msgid "The code loaded from %{source_ref} does not define the plan '%{plan_name}' - no plan found."
5737
5737
  msgstr ""
5738
5738
 
5739
- #: ../lib/puppet/pops/loader/puppet_plan_instantiator.rb:39
5739
+ #: ../lib/puppet/pops/loader/puppet_plan_instantiator.rb:48
5740
5740
  msgid "The code loaded from %{source_ref} produced plan with the wrong name, expected %{expected}, actual %{actual}"
5741
5741
  msgstr ""
5742
5742
 
5743
- #: ../lib/puppet/pops/loader/puppet_plan_instantiator.rb:42
5743
+ #: ../lib/puppet/pops/loader/puppet_plan_instantiator.rb:51
5744
5744
  msgid "The code loaded from %{source} contains additional logic - can only contain the plan %{plan_name}"
5745
5745
  msgstr ""
5746
5746
 
@@ -5884,7 +5884,7 @@ msgstr ""
5884
5884
  msgid "%{config_path}: Use of 'hiera.yaml' version 4 is deprecated. It should be converted to version 5"
5885
5885
  msgstr ""
5886
5886
 
5887
- #: ../lib/puppet/pops/lookup/invocation.rb:84
5887
+ #: ../lib/puppet/pops/lookup/invocation.rb:91
5888
5888
  msgid "Recursive lookup detected in [%{name_stack}]"
5889
5889
  msgstr ""
5890
5890
 
@@ -6294,7 +6294,7 @@ msgstr ""
6294
6294
  msgid "Options 'include_containers' and 'include_values' cannot both be false"
6295
6295
  msgstr ""
6296
6296
 
6297
- #: ../lib/puppet/pops/types/type_calculator.rb:167
6297
+ #: ../lib/puppet/pops/types/type_calculator.rb:187
6298
6298
  msgid "TypeCalculator.enumerable is deprecated. Use iterable"
6299
6299
  msgstr ""
6300
6300
 
@@ -6489,27 +6489,31 @@ msgstr ""
6489
6489
  msgid "Invalid value %{value}: %{property} must be an Integer!"
6490
6490
  msgstr ""
6491
6491
 
6492
- #: ../lib/puppet/provider/aix_object.rb:374
6492
+ #: ../lib/puppet/provider/aix_object.rb:333
6493
+ msgid "Cannot have both 'forcelocal' and 'ia_load_module' at the same time!"
6494
+ msgstr ""
6495
+
6496
+ #: ../lib/puppet/provider/aix_object.rb:376
6493
6497
  msgid "Could not set %{property} on %{resource}[%{name}]: %{detail}"
6494
6498
  msgstr ""
6495
6499
 
6496
- #: ../lib/puppet/provider/aix_object.rb:400
6500
+ #: ../lib/puppet/provider/aix_object.rb:402
6497
6501
  msgid "attributes is setting the %{properties} properties via. the %{attributes} attributes, respectively! Please specify these property values in the resource declaration instead."
6498
6502
  msgstr ""
6499
6503
 
6500
- #: ../lib/puppet/provider/aix_object.rb:402 ../lib/puppet/provider/aix_object.rb:411
6504
+ #: ../lib/puppet/provider/aix_object.rb:404 ../lib/puppet/provider/aix_object.rb:413
6501
6505
  msgid "Could not set attributes on %{resource}[%{name}]: %{detail}"
6502
6506
  msgstr ""
6503
6507
 
6504
- #: ../lib/puppet/provider/aix_object.rb:423
6508
+ #: ../lib/puppet/provider/aix_object.rb:425
6505
6509
  msgid "aix.object_info(): Could not find %{resource}[%{name}]"
6506
6510
  msgstr ""
6507
6511
 
6508
- #: ../lib/puppet/provider/aix_object.rb:469 ../lib/puppet/provider/nameservice.rb:182 ../lib/puppet/provider/nameservice/directoryservice.rb:425
6512
+ #: ../lib/puppet/provider/aix_object.rb:471 ../lib/puppet/provider/nameservice.rb:182 ../lib/puppet/provider/nameservice/directoryservice.rb:425
6509
6513
  msgid "Could not create %{resource} %{name}: %{detail}"
6510
6514
  msgstr ""
6511
6515
 
6512
- #: ../lib/puppet/provider/aix_object.rb:481 ../lib/puppet/provider/nameservice.rb:196
6516
+ #: ../lib/puppet/provider/aix_object.rb:483 ../lib/puppet/provider/nameservice.rb:196
6513
6517
  msgid "Could not delete %{resource} %{name}: %{detail}"
6514
6518
  msgstr ""
6515
6519
 
@@ -6574,15 +6578,15 @@ msgstr ""
6574
6578
  msgid "%{resource_name}: %{mode_part_type} set to SYSTEM. SYSTEM permissions cannot be set below FullControl ('7')"
6575
6579
  msgstr ""
6576
6580
 
6577
- #: ../lib/puppet/provider/group/aix.rb:47
6581
+ #: ../lib/puppet/provider/group/aix.rb:48
6578
6582
  msgid "No AIX group exists with a group name or gid of %{group}!"
6579
6583
  msgstr ""
6580
6584
 
6581
- #: ../lib/puppet/provider/group/groupadd.rb:13 ../lib/puppet/provider/group/pw.rb:14
6585
+ #: ../lib/puppet/provider/group/groupadd.rb:11 ../lib/puppet/provider/group/pw.rb:14
6582
6586
  msgid "GID must be an integer"
6583
6587
  msgstr ""
6584
6588
 
6585
- #: ../lib/puppet/provider/group/groupadd.rb:60
6589
+ #: ../lib/puppet/provider/group/groupadd.rb:42
6586
6590
  msgid "GID %{resource} already exists, use allowdupe to force group creation"
6587
6591
  msgstr ""
6588
6592
 
@@ -6705,15 +6709,15 @@ msgstr ""
6705
6709
  msgid "/etc/apt/sources.list contains a cdrom source; not installing. Use 'allowcdrom' to override this failure."
6706
6710
  msgstr ""
6707
6711
 
6708
- #: ../lib/puppet/provider/package/apt.rb:88 ../lib/puppet/provider/package/fink.rb:50
6712
+ #: ../lib/puppet/provider/package/apt.rb:93 ../lib/puppet/provider/package/fink.rb:55
6709
6713
  msgid "Could not find latest version"
6710
6714
  msgstr ""
6711
6715
 
6712
- #: ../lib/puppet/provider/package/apt.rb:99 ../lib/puppet/provider/package/fink.rb:61
6716
+ #: ../lib/puppet/provider/package/apt.rb:104 ../lib/puppet/provider/package/fink.rb:66
6713
6717
  msgid "Preseeding %{response} to debconf-set-selections"
6714
6718
  msgstr ""
6715
6719
 
6716
- #: ../lib/puppet/provider/package/apt.rb:103 ../lib/puppet/provider/package/fink.rb:65
6720
+ #: ../lib/puppet/provider/package/apt.rb:108 ../lib/puppet/provider/package/fink.rb:70
6717
6721
  msgid "No responsefile specified or non existent, not preseeding anything"
6718
6722
  msgstr ""
6719
6723
 
@@ -6753,11 +6757,11 @@ msgstr ""
6753
6757
  msgid "You cannot install dpkg packages without a source"
6754
6758
  msgstr ""
6755
6759
 
6756
- #: ../lib/puppet/provider/package/dpkg.rb:115
6760
+ #: ../lib/puppet/provider/package/dpkg.rb:118
6757
6761
  msgid "Could not update: You cannot install dpkg packages without a source"
6758
6762
  msgstr ""
6759
6763
 
6760
- #: ../lib/puppet/provider/package/dpkg.rb:119
6764
+ #: ../lib/puppet/provider/package/dpkg.rb:122
6761
6765
  msgid "source doesn't contain named package, but %{name}"
6762
6766
  msgstr ""
6763
6767
 
@@ -6843,19 +6847,19 @@ msgid ""
6843
6847
  "'%{line}'"
6844
6848
  msgstr ""
6845
6849
 
6846
- #: ../lib/puppet/provider/package/openbsd.rb:50 ../lib/puppet/provider/package/opkg.rb:26
6850
+ #: ../lib/puppet/provider/package/openbsd.rb:51 ../lib/puppet/provider/package/opkg.rb:26
6847
6851
  msgid "Failed to match line %{line}"
6848
6852
  msgstr ""
6849
6853
 
6850
- #: ../lib/puppet/provider/package/openbsd.rb:141
6854
+ #: ../lib/puppet/provider/package/openbsd.rb:142
6851
6855
  msgid "No valid installpath found in /etc/pkg.conf and no source was set"
6852
6856
  msgstr ""
6853
6857
 
6854
- #: ../lib/puppet/provider/package/openbsd.rb:145
6858
+ #: ../lib/puppet/provider/package/openbsd.rb:146
6855
6859
  msgid "You must specify a package source or configure an installpath in /etc/pkg.conf"
6856
6860
  msgstr ""
6857
6861
 
6858
- #: ../lib/puppet/provider/package/openbsd.rb:218
6862
+ #: ../lib/puppet/provider/package/openbsd.rb:219
6859
6863
  msgid "%{version} is not available for this package"
6860
6864
  msgstr ""
6861
6865
 
@@ -6911,27 +6915,27 @@ msgstr ""
6911
6915
  msgid "Unknown line format %{resource_name}: %{parse_line}"
6912
6916
  msgstr ""
6913
6917
 
6914
- #: ../lib/puppet/provider/package/pkg.rb:123
6918
+ #: ../lib/puppet/provider/package/pkg.rb:127
6915
6919
  msgid "Unable to unfreeze %{package}"
6916
6920
  msgstr ""
6917
6921
 
6918
- #: ../lib/puppet/provider/package/pkg.rb:158
6922
+ #: ../lib/puppet/provider/package/pkg.rb:162
6919
6923
  msgid "Implicit version %{should} has %{n} possible matches"
6920
6924
  msgstr ""
6921
6925
 
6922
- #: ../lib/puppet/provider/package/pkg.rb:170
6926
+ #: ../lib/puppet/provider/package/pkg.rb:174
6923
6927
  msgid "Selecting version '%{version}' for implicit '%{should}'"
6924
6928
  msgstr ""
6925
6929
 
6926
- #: ../lib/puppet/provider/package/pkg.rb:175
6930
+ #: ../lib/puppet/provider/package/pkg.rb:179
6927
6931
  msgid "No version of %{name} matching %{should} is installable, even though the package is currently installed"
6928
6932
  msgstr ""
6929
6933
 
6930
- #: ../lib/puppet/provider/package/pkg.rb:194
6934
+ #: ../lib/puppet/provider/package/pkg.rb:198
6931
6935
  msgid "pkg warning: %{warnings}"
6932
6936
  msgstr ""
6933
6937
 
6934
- #: ../lib/puppet/provider/package/pkg.rb:235 ../lib/puppet/provider/package/pkg.rb:255
6938
+ #: ../lib/puppet/provider/package/pkg.rb:242 ../lib/puppet/provider/package/pkg.rb:268
6935
6939
  msgid "Unable to update %{package}"
6936
6940
  msgstr ""
6937
6941
 
@@ -7163,15 +7167,15 @@ msgid "Unknown service state '%{current_state}' for service '%{resource_name}'"
7163
7167
  msgstr ""
7164
7168
 
7165
7169
  #. TRANSLATORS 'AIX' is the name of an operating system and should not be translated
7166
- #: ../lib/puppet/provider/user/aix.rb:68
7170
+ #: ../lib/puppet/provider/user/aix.rb:69
7167
7171
  msgid "Could not convert AIX expires date '%{expires}' on %{class_name}[%{resource_name}]"
7168
7172
  msgstr ""
7169
7173
 
7170
- #: ../lib/puppet/provider/user/aix.rb:82
7174
+ #: ../lib/puppet/provider/user/aix.rb:83
7171
7175
  msgid "Invalid value %{groups}: Groups must be comma separated!"
7172
7176
  msgstr ""
7173
7177
 
7174
- #: ../lib/puppet/provider/user/aix.rb:150
7178
+ #: ../lib/puppet/provider/user/aix.rb:151
7175
7179
  msgid "Could not reset the groups property back to %{cur_groups} after setting the primary group on %{resource}[%{name}]. This means that the previous primary group of %{old_pgrp} and the new primary group of %{new_pgrp} have been added to %{cur_groups}. You will need to manually reset the groups property if this is undesirable behavior. Detail: %{detail}"
7176
7180
  msgstr ""
7177
7181
 
@@ -8665,6 +8669,14 @@ msgstr ""
8665
8669
  msgid "Name must be a String not %{klass}"
8666
8670
  msgstr ""
8667
8671
 
8672
+ #: ../lib/puppet/type/package.rb:649
8673
+ msgid "Invalid hold value %{value}. %{doc}"
8674
+ msgstr ""
8675
+
8676
+ #: ../lib/puppet/type/package.rb:679
8677
+ msgid "You cannot use \"mark\" property while \"ensure\" is one of [\"absent\", \"purged\", \"held\"]"
8678
+ msgstr ""
8679
+
8668
8680
  #: ../lib/puppet/type/resources.rb:15
8669
8681
  msgid "Could not find resource type '%{name}'"
8670
8682
  msgstr ""
@@ -8905,11 +8917,11 @@ msgstr ""
8905
8917
  msgid "path may not be nil"
8906
8918
  msgstr ""
8907
8919
 
8908
- #: ../lib/puppet/util.rb:573
8920
+ #: ../lib/puppet/util.rb:596
8909
8921
  msgid "replace_file requires a block"
8910
8922
  msgstr ""
8911
8923
 
8912
- #: ../lib/puppet/util.rb:577
8924
+ #: ../lib/puppet/util.rb:600
8913
8925
  msgid "replace_file default_mode: %{default_mode} is invalid"
8914
8926
  msgstr ""
8915
8927
 
@@ -9480,20 +9492,20 @@ msgstr ""
9480
9492
  msgid "Unable to set ownership to %{user}:%{group} for log file: %{path}"
9481
9493
  msgstr ""
9482
9494
 
9483
- #: ../lib/puppet/util/logging.rb:83 ../lib/puppet/util/logging.rb:106
9495
+ #: ../lib/puppet/util/logging.rb:81 ../lib/puppet/util/logging.rb:105
9484
9496
  msgid "Wrapped exception:"
9485
9497
  msgstr ""
9486
9498
 
9487
9499
  #. TRANSLATORS the literals ":file", ":line", and ":key" should not be translated
9488
- #: ../lib/puppet/util/logging.rb:150
9500
+ #: ../lib/puppet/util/logging.rb:162
9489
9501
  msgid "Need either :file and :line, or :key"
9490
9502
  msgstr ""
9491
9503
 
9492
- #: ../lib/puppet/util/logging.rb:180
9504
+ #: ../lib/puppet/util/logging.rb:192
9493
9505
  msgid "(file & line not available)"
9494
9506
  msgstr ""
9495
9507
 
9496
- #: ../lib/puppet/util/logging.rb:282
9508
+ #: ../lib/puppet/util/logging.rb:294
9497
9509
  msgid "(location: %{location})"
9498
9510
  msgstr ""
9499
9511
 
@@ -9525,7 +9537,7 @@ msgstr ""
9525
9537
  msgid "Details: %{detail}"
9526
9538
  msgstr ""
9527
9539
 
9528
- #: ../lib/puppet/util/plist.rb:145
9540
+ #: ../lib/puppet/util/plist.rb:151
9529
9541
  msgid "Unable to write the file %{file_path}. %{error}"
9530
9542
  msgstr ""
9531
9543
 
@@ -9633,23 +9645,23 @@ msgstr ""
9633
9645
  msgid "Sleeping for %{time} seconds (splay is enabled)"
9634
9646
  msgstr ""
9635
9647
 
9636
- #: ../lib/puppet/util/storage.rb:53
9648
+ #: ../lib/puppet/util/storage.rb:52
9637
9649
  msgid "Checksumfile %{filename} is not a file, ignoring"
9638
9650
  msgstr ""
9639
9651
 
9640
- #: ../lib/puppet/util/storage.rb:60
9652
+ #: ../lib/puppet/util/storage.rb:59
9641
9653
  msgid "Checksumfile %{filename} is corrupt (%{detail}); replacing"
9642
9654
  msgstr ""
9643
9655
 
9644
- #: ../lib/puppet/util/storage.rb:65
9656
+ #: ../lib/puppet/util/storage.rb:64
9645
9657
  msgid "Could not rename corrupt %{filename}; remove manually"
9646
9658
  msgstr ""
9647
9659
 
9648
- #: ../lib/puppet/util/storage.rb:71
9660
+ #: ../lib/puppet/util/storage.rb:70
9649
9661
  msgid "State got corrupted"
9650
9662
  msgstr ""
9651
9663
 
9652
- #: ../lib/puppet/util/storage.rb:83
9664
+ #: ../lib/puppet/util/storage.rb:82
9653
9665
  msgid "Creating state file %{file}"
9654
9666
  msgstr ""
9655
9667
 
@@ -9729,35 +9741,35 @@ msgstr ""
9729
9741
  msgid "Could not resolve name: %{name}"
9730
9742
  msgstr ""
9731
9743
 
9732
- #: ../lib/puppet/util/windows/adsi.rb:229
9744
+ #: ../lib/puppet/util/windows/adsi.rb:230
9733
9745
  msgid "Subclass must implement class-level method 'list_all'!"
9734
9746
  msgstr ""
9735
9747
 
9736
- #: ../lib/puppet/util/windows/adsi.rb:282
9748
+ #: ../lib/puppet/util/windows/adsi.rb:283
9737
9749
  msgid "Puppet is not able to create/delete domain %{object_class} objects with the %{object_class} resource."
9738
9750
  msgstr ""
9739
9751
 
9740
- #: ../lib/puppet/util/windows/adsi.rb:286
9752
+ #: ../lib/puppet/util/windows/adsi.rb:287
9741
9753
  msgid "%{object_class} update failed: %{error}"
9742
9754
  msgstr ""
9743
9755
 
9744
- #: ../lib/puppet/util/windows/adsi.rb:312
9756
+ #: ../lib/puppet/util/windows/adsi.rb:313
9745
9757
  msgid "Cannot create user if group '%{name}' exists."
9746
9758
  msgstr ""
9747
9759
 
9748
- #: ../lib/puppet/util/windows/adsi.rb:452
9760
+ #: ../lib/puppet/util/windows/adsi.rb:453
9749
9761
  msgid "Unrecognized ADS UserFlags: %{unrecognized_flags}"
9750
9762
  msgstr ""
9751
9763
 
9752
- #: ../lib/puppet/util/windows/adsi.rb:496
9764
+ #: ../lib/puppet/util/windows/adsi.rb:497
9753
9765
  msgid "Failed to get user name"
9754
9766
  msgstr ""
9755
9767
 
9756
- #: ../lib/puppet/util/windows/adsi.rb:533
9768
+ #: ../lib/puppet/util/windows/adsi.rb:534
9757
9769
  msgid "Cannot delete user profile for '%{sid}' prior to Vista SP1"
9758
9770
  msgstr ""
9759
9771
 
9760
- #: ../lib/puppet/util/windows/adsi.rb:551
9772
+ #: ../lib/puppet/util/windows/adsi.rb:552
9761
9773
  msgid "Cannot create group if user '%{name}' exists."
9762
9774
  msgstr ""
9763
9775