puppet 5.5.16-universal-darwin → 5.5.17-universal-darwin
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of puppet might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/CODEOWNERS +9 -9
- data/Gemfile.lock +18 -18
- data/ext/project_data.yaml +2 -2
- data/install.rb +3 -21
- data/lib/puppet/application/agent.rb +12 -0
- data/lib/puppet/application/device.rb +4 -4
- data/lib/puppet/application/resource.rb +4 -4
- data/lib/puppet/defaults.rb +4 -0
- data/lib/puppet/face/config.rb +10 -48
- data/lib/puppet/face/facts.rb +1 -1
- data/lib/puppet/face/plugin.rb +9 -2
- data/lib/puppet/module_tool/tar/mini.rb +11 -1
- data/lib/puppet/network/http/factory.rb +1 -11
- data/lib/puppet/parameter.rb +8 -0
- data/lib/puppet/provider/file/posix.rb +5 -0
- data/lib/puppet/provider/nameservice.rb +10 -3
- data/lib/puppet/provider/package/dnf.rb +1 -1
- data/lib/puppet/provider/package/rpm.rb +51 -13
- data/lib/puppet/provider/package/yum.rb +8 -4
- data/lib/puppet/provider/service/launchd.rb +20 -5
- data/lib/puppet/provider/service/systemd.rb +4 -9
- data/lib/puppet/provider/service/windows.rb +8 -0
- data/lib/puppet/provider/user/pw.rb +12 -3
- data/lib/puppet/provider/user/user_role_add.rb +4 -0
- data/lib/puppet/provider/user/useradd.rb +23 -7
- data/lib/puppet/resource.rb +17 -0
- data/lib/puppet/settings.rb +40 -0
- data/lib/puppet/type.rb +7 -0
- data/lib/puppet/type/exec.rb +14 -6
- data/lib/puppet/type/package.rb +10 -0
- data/lib/puppet/type/service.rb +7 -2
- data/lib/puppet/type/user.rb +1 -15
- data/lib/puppet/type/yumrepo.rb +3 -7
- data/lib/puppet/util/execution.rb +4 -3
- data/lib/puppet/util/http_proxy.rb +16 -2
- data/lib/puppet/util/selinux.rb +5 -1
- data/lib/puppet/util/windows/security.rb +2 -0
- data/lib/puppet/util/windows/service.rb +149 -4
- data/lib/puppet/util/windows/sid.rb +1 -0
- data/lib/puppet/version.rb +1 -1
- data/locales/puppet.pot +189 -193
- data/man/man5/puppet.conf.5 +10 -2
- data/man/man8/puppet-agent.8 +1 -1
- data/man/man8/puppet-apply.8 +1 -1
- data/man/man8/puppet-ca.8 +1 -1
- data/man/man8/puppet-catalog.8 +1 -1
- data/man/man8/puppet-cert.8 +1 -1
- data/man/man8/puppet-certificate.8 +1 -1
- data/man/man8/puppet-certificate_request.8 +1 -1
- data/man/man8/puppet-certificate_revocation_list.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-master.8 +1 -1
- data/man/man8/puppet-module.8 +1 -1
- data/man/man8/puppet-node.8 +1 -1
- data/man/man8/puppet-parser.8 +1 -1
- data/man/man8/puppet-plugin.8 +1 -1
- data/man/man8/puppet-report.8 +1 -1
- data/man/man8/puppet-resource.8 +1 -1
- data/man/man8/puppet-script.8 +1 -1
- data/man/man8/puppet-status.8 +1 -1
- data/man/man8/puppet.8 +2 -2
- data/spec/integration/provider/service/systemd_spec.rb +8 -5
- data/spec/integration/type/file_spec.rb +28 -0
- data/spec/integration/util/execution_spec.rb +27 -0
- data/spec/unit/application/agent_spec.rb +18 -0
- data/spec/unit/application/device_spec.rb +1 -1
- data/spec/unit/face/facts_spec.rb +9 -0
- data/spec/unit/face/plugin_spec.rb +8 -0
- data/spec/unit/module_tool/tar/mini_spec.rb +1 -1
- data/spec/unit/network/http/api/indirected_routes_spec.rb +26 -10
- data/spec/unit/network/http/factory_spec.rb +27 -5
- data/spec/unit/pops/validator/validator_spec.rb +7 -0
- data/spec/unit/provider/package/aptrpm_spec.rb +1 -1
- data/spec/unit/provider/package/dnf_spec.rb +7 -0
- data/spec/unit/provider/package/rpm_spec.rb +150 -16
- data/spec/unit/provider/package/yum_spec.rb +7 -0
- data/spec/unit/provider/service/launchd_spec.rb +28 -0
- data/spec/unit/provider/service/windows_spec.rb +20 -0
- data/spec/unit/provider/user/pw_spec.rb +37 -0
- data/spec/unit/provider/user/useradd_spec.rb +42 -0
- data/spec/unit/resource_spec.rb +26 -1
- data/spec/unit/transaction_spec.rb +18 -0
- data/spec/unit/type/exec_spec.rb +9 -0
- data/spec/unit/type/file/source_spec.rb +4 -4
- data/spec/unit/type/schedule_spec.rb +3 -1
- data/spec/unit/type/service_spec.rb +16 -0
- data/spec/unit/type/user_spec.rb +13 -13
- data/spec/unit/type/yumrepo_spec.rb +30 -0
- data/spec/unit/type_spec.rb +40 -0
- data/spec/unit/util/http_proxy_spec.rb +24 -1
- data/spec/unit/util/log_spec.rb +27 -1
- data/spec/unit/util/windows/service_spec.rb +9 -0
- metadata +3 -7
- data/ext/windows/eventlog/Rakefile +0 -32
- data/ext/windows/eventlog/puppetres.dll +0 -0
- data/ext/windows/eventlog/puppetres.mc +0 -18
@@ -46,6 +46,7 @@ module Puppet::Util::Windows
|
|
46
46
|
PrintOperators = 'S-1-5-32-550'
|
47
47
|
BackupOperators = 'S-1-5-32-551'
|
48
48
|
Replicators = 'S-1-5-32-552'
|
49
|
+
AllAppPackages = 'S-1-15-2-1'
|
49
50
|
|
50
51
|
# Convert an account name, e.g. 'Administrators' into a SID string,
|
51
52
|
# e.g. 'S-1-5-32-544'. The name can be specified as 'Administrators',
|
data/lib/puppet/version.rb
CHANGED
data/locales/puppet.pot
CHANGED
@@ -6,11 +6,11 @@
|
|
6
6
|
#, fuzzy
|
7
7
|
msgid ""
|
8
8
|
msgstr ""
|
9
|
-
"Project-Id-Version: Puppet automation framework 5.5.
|
9
|
+
"Project-Id-Version: Puppet automation framework 5.5.16-90-gc9f7674\n"
|
10
10
|
"\n"
|
11
11
|
"Report-Msgid-Bugs-To: https://tickets.puppetlabs.com\n"
|
12
|
-
"POT-Creation-Date: 2019-
|
13
|
-
"PO-Revision-Date: 2019-
|
12
|
+
"POT-Creation-Date: 2019-09-27 09:15+0000\n"
|
13
|
+
"PO-Revision-Date: 2019-09-27 09:15+0000\n"
|
14
14
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
15
15
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
16
16
|
"Language: \n"
|
@@ -176,19 +176,19 @@ msgstr ""
|
|
176
176
|
msgid "The puppet agent daemon"
|
177
177
|
msgstr ""
|
178
178
|
|
179
|
-
#: ../lib/puppet/application/agent.rb:
|
179
|
+
#: ../lib/puppet/application/agent.rb:372
|
180
180
|
msgid "Fingerprint asked but no certificate nor certificate request have yet been issued"
|
181
181
|
msgstr ""
|
182
182
|
|
183
|
-
#: ../lib/puppet/application/agent.rb:
|
183
|
+
#: ../lib/puppet/application/agent.rb:377
|
184
184
|
msgid "Could not get fingerprint for digest '%{digest}'"
|
185
185
|
msgstr ""
|
186
186
|
|
187
|
-
#: ../lib/puppet/application/agent.rb:
|
187
|
+
#: ../lib/puppet/application/agent.rb:401
|
188
188
|
msgid "Starting Puppet client version %{version}"
|
189
189
|
msgstr ""
|
190
190
|
|
191
|
-
#: ../lib/puppet/application/agent.rb:
|
191
|
+
#: ../lib/puppet/application/agent.rb:417
|
192
192
|
msgid "The puppet agent command does not take parameters"
|
193
193
|
msgstr ""
|
194
194
|
|
@@ -573,32 +573,32 @@ msgstr ""
|
|
573
573
|
msgid "Failed to apply catalog: %{detail}"
|
574
574
|
msgstr ""
|
575
575
|
|
576
|
-
#: ../lib/puppet/configurer.rb:
|
576
|
+
#: ../lib/puppet/configurer.rb:393
|
577
577
|
msgid "Puppet server %{host}:%{port} is unavailable: %{code} %{reason}"
|
578
578
|
msgstr ""
|
579
579
|
|
580
580
|
#. TRANSLATORS 'server_list' is the name of a setting and should not be translated
|
581
|
-
#: ../lib/puppet/configurer.rb:
|
581
|
+
#: ../lib/puppet/configurer.rb:397
|
582
582
|
msgid "Unable to connect to server from server_list setting: %{detail}"
|
583
583
|
msgstr ""
|
584
584
|
|
585
|
-
#: ../lib/puppet/configurer.rb:
|
585
|
+
#: ../lib/puppet/configurer.rb:409 ../lib/puppet/face/report.rb:47
|
586
586
|
msgid "Could not send report: %{detail}"
|
587
587
|
msgstr ""
|
588
588
|
|
589
|
-
#: ../lib/puppet/configurer.rb:
|
589
|
+
#: ../lib/puppet/configurer.rb:418
|
590
590
|
msgid "Could not save last run local report: %{detail}"
|
591
591
|
msgstr ""
|
592
592
|
|
593
|
-
#: ../lib/puppet/configurer.rb:
|
593
|
+
#: ../lib/puppet/configurer.rb:430
|
594
594
|
msgid "Could not run command from %{setting}: %{detail}"
|
595
595
|
msgstr ""
|
596
596
|
|
597
|
-
#: ../lib/puppet/configurer.rb:
|
597
|
+
#: ../lib/puppet/configurer.rb:448
|
598
598
|
msgid "Could not retrieve catalog from cache: %{detail}"
|
599
599
|
msgstr ""
|
600
600
|
|
601
|
-
#: ../lib/puppet/configurer.rb:
|
601
|
+
#: ../lib/puppet/configurer.rb:468
|
602
602
|
msgid "Could not retrieve catalog from remote server: %{detail}"
|
603
603
|
msgstr ""
|
604
604
|
|
@@ -681,36 +681,36 @@ msgid "Convert custom terminus to hiera 5 API."
|
|
681
681
|
msgstr ""
|
682
682
|
|
683
683
|
#. TRANSLATORS 'environment_data_provider' is a setting and should not be translated
|
684
|
-
#: ../lib/puppet/defaults.rb:
|
684
|
+
#: ../lib/puppet/defaults.rb:633
|
685
685
|
msgid "Setting 'environment_data_provider' is deprecated."
|
686
686
|
msgstr ""
|
687
687
|
|
688
|
-
#: ../lib/puppet/defaults.rb:
|
688
|
+
#: ../lib/puppet/defaults.rb:735
|
689
689
|
msgid "Certificate names must be lower case"
|
690
690
|
msgstr ""
|
691
691
|
|
692
|
-
#: ../lib/puppet/defaults.rb:
|
692
|
+
#: ../lib/puppet/defaults.rb:976 ../lib/puppet/settings/enum_setting.rb:13 ../lib/puppet/settings/symbolic_enum_setting.rb:14
|
693
693
|
msgid "Invalid value '%{value}' for parameter %{name}. Allowed values are '%{allowed_values}'"
|
694
694
|
msgstr ""
|
695
695
|
|
696
|
-
#: ../lib/puppet/defaults.rb:
|
696
|
+
#: ../lib/puppet/defaults.rb:1047
|
697
697
|
msgid "The 'caprivatedir' setting is deprecated and will be removed in Puppet 6."
|
698
698
|
msgstr ""
|
699
699
|
|
700
|
-
#: ../lib/puppet/defaults.rb:
|
700
|
+
#: ../lib/puppet/defaults.rb:1074
|
701
701
|
msgid "The 'capass' setting is deprecated and will be removed in Puppet 6."
|
702
702
|
msgstr ""
|
703
703
|
|
704
|
-
#: ../lib/puppet/defaults.rb:
|
704
|
+
#: ../lib/puppet/defaults.rb:1314
|
705
705
|
msgid "The 'ca' setting is deprecated and will be removed in Puppet 6."
|
706
706
|
msgstr ""
|
707
707
|
|
708
|
-
#: ../lib/puppet/defaults.rb:
|
708
|
+
#: ../lib/puppet/defaults.rb:1814 ../lib/puppet/settings.rb:1212
|
709
709
|
msgid "Setting %{name} is deprecated."
|
710
710
|
msgstr ""
|
711
711
|
|
712
712
|
#. TRANSLATORS 'pluginsync' is a setting and should not be translated
|
713
|
-
#: ../lib/puppet/defaults.rb:
|
713
|
+
#: ../lib/puppet/defaults.rb:1865
|
714
714
|
msgid "Setting 'pluginsync' is deprecated."
|
715
715
|
msgstr ""
|
716
716
|
|
@@ -939,41 +939,37 @@ msgstr ""
|
|
939
939
|
msgid "all | <setting> [<setting> ...]"
|
940
940
|
msgstr ""
|
941
941
|
|
942
|
-
#: ../lib/puppet/face/config.rb:
|
943
|
-
msgid "New environment loaders generated from the requested section."
|
944
|
-
msgstr ""
|
945
|
-
|
946
|
-
#: ../lib/puppet/face/config.rb:137
|
942
|
+
#: ../lib/puppet/face/config.rb:99
|
947
943
|
msgid "No section specified; defaulting to '%{section_name}'."
|
948
944
|
msgstr ""
|
949
945
|
|
950
946
|
#. TRANSLATORS '--section' is a command line option and should not be translated
|
951
|
-
#: ../lib/puppet/face/config.rb:
|
947
|
+
#: ../lib/puppet/face/config.rb:102
|
952
948
|
msgid "Set the config section by using the `--section` flag."
|
953
949
|
msgstr ""
|
954
950
|
|
955
951
|
#. TRANSLATORS `puppet config --section user print foo` is a command line example and should not be translated
|
956
|
-
#: ../lib/puppet/face/config.rb:
|
952
|
+
#: ../lib/puppet/face/config.rb:104
|
957
953
|
msgid "For example, `puppet config --section user print foo`."
|
958
954
|
msgstr ""
|
959
955
|
|
960
|
-
#: ../lib/puppet/face/config.rb:
|
956
|
+
#: ../lib/puppet/face/config.rb:105
|
961
957
|
msgid "For more information, see https://puppet.com/docs/puppet/latest/configuration.html"
|
962
958
|
msgstr ""
|
963
959
|
|
964
|
-
#: ../lib/puppet/face/config.rb:
|
960
|
+
#: ../lib/puppet/face/config.rb:112
|
965
961
|
msgid "Resolving settings from section '%{section_name}' in environment '%{environment_name}'"
|
966
962
|
msgstr ""
|
967
963
|
|
968
|
-
#: ../lib/puppet/face/config.rb:
|
964
|
+
#: ../lib/puppet/face/config.rb:117
|
969
965
|
msgid "Set Puppet's settings."
|
970
966
|
msgstr ""
|
971
967
|
|
972
|
-
#: ../lib/puppet/face/config.rb:
|
968
|
+
#: ../lib/puppet/face/config.rb:118
|
973
969
|
msgid "[setting_name] [setting_value]"
|
974
970
|
msgstr ""
|
975
971
|
|
976
|
-
#: ../lib/puppet/face/config.rb:
|
972
|
+
#: ../lib/puppet/face/config.rb:146
|
977
973
|
msgid ""
|
978
974
|
"The environment should be set in either the `[user]`, `[agent]`, or `[master]`\n"
|
979
975
|
"section. Variables set in the `[agent]` section are used when running\n"
|
@@ -985,25 +981,25 @@ msgid ""
|
|
985
981
|
"https://puppet.com/docs/puppet/latest/configuration.html#environment\n"
|
986
982
|
msgstr ""
|
987
983
|
|
988
|
-
#: ../lib/puppet/face/config.rb:
|
984
|
+
#: ../lib/puppet/face/config.rb:174
|
989
985
|
msgid "Delete a Puppet setting."
|
990
986
|
msgstr ""
|
991
987
|
|
992
|
-
#: ../lib/puppet/face/config.rb:
|
988
|
+
#: ../lib/puppet/face/config.rb:175
|
993
989
|
msgid "<setting>"
|
994
990
|
msgstr ""
|
995
991
|
|
996
992
|
#. TRANSLATORS 'main' is a specific section name and should not be translated
|
997
|
-
#: ../lib/puppet/face/config.rb:
|
993
|
+
#: ../lib/puppet/face/config.rb:212
|
998
994
|
msgid "Deleted setting from '%{section_name}': '%{setting_string}'"
|
999
995
|
msgstr ""
|
1000
996
|
|
1001
|
-
#: ../lib/puppet/face/config.rb:
|
997
|
+
#: ../lib/puppet/face/config.rb:215
|
1002
998
|
msgid "No setting found in configuration file for section '%{section_name}' setting name '%{name}'"
|
1003
999
|
msgstr ""
|
1004
1000
|
|
1005
1001
|
#. TRANSLATORS the 'puppet.conf' is a specific file and should not be translated
|
1006
|
-
#: ../lib/puppet/face/config.rb:
|
1002
|
+
#: ../lib/puppet/face/config.rb:222
|
1007
1003
|
msgid "The puppet.conf file does not exist %{puppet_conf}"
|
1008
1004
|
msgstr ""
|
1009
1005
|
|
@@ -1725,11 +1721,11 @@ msgid ""
|
|
1725
1721
|
" the files downloaded, which will be empty if none were retrieved.\n"
|
1726
1722
|
msgstr ""
|
1727
1723
|
|
1728
|
-
#: ../lib/puppet/face/plugin.rb:
|
1724
|
+
#: ../lib/puppet/face/plugin.rb:57
|
1729
1725
|
msgid "No plugins downloaded."
|
1730
1726
|
msgstr ""
|
1731
1727
|
|
1732
|
-
#: ../lib/puppet/face/plugin.rb:
|
1728
|
+
#: ../lib/puppet/face/plugin.rb:59
|
1733
1729
|
msgid "Downloaded these plugins: %{plugins}"
|
1734
1730
|
msgstr ""
|
1735
1731
|
|
@@ -4308,15 +4304,15 @@ msgstr ""
|
|
4308
4304
|
msgid "Could not parse for environment %{env}: %{detail}"
|
4309
4305
|
msgstr ""
|
4310
4306
|
|
4311
|
-
#: ../lib/puppet/parameter.rb:
|
4307
|
+
#: ../lib/puppet/parameter.rb:349
|
4312
4308
|
msgid "No resource set for %{name}"
|
4313
4309
|
msgstr ""
|
4314
4310
|
|
4315
|
-
#: ../lib/puppet/parameter.rb:
|
4311
|
+
#: ../lib/puppet/parameter.rb:436
|
4316
4312
|
msgid "Munging failed for value %{value} in class %{class_name}: %{detail}"
|
4317
4313
|
msgstr ""
|
4318
4314
|
|
4319
|
-
#: ../lib/puppet/parameter.rb:
|
4315
|
+
#: ../lib/puppet/parameter.rb:470
|
4320
4316
|
msgid "Validate method failed for class %{class_name}: %{detail}"
|
4321
4317
|
msgstr ""
|
4322
4318
|
|
@@ -6607,11 +6603,11 @@ msgstr ""
|
|
6607
6603
|
msgid "aix.object_info(): Could not find %{resource}[%{name}]"
|
6608
6604
|
msgstr ""
|
6609
6605
|
|
6610
|
-
#: ../lib/puppet/provider/aix_object.rb:469 ../lib/puppet/provider/nameservice.rb:
|
6606
|
+
#: ../lib/puppet/provider/aix_object.rb:469 ../lib/puppet/provider/nameservice.rb:181 ../lib/puppet/provider/nameservice/directoryservice.rb:421
|
6611
6607
|
msgid "Could not create %{resource} %{name}: %{detail}"
|
6612
6608
|
msgstr ""
|
6613
6609
|
|
6614
|
-
#: ../lib/puppet/provider/aix_object.rb:481 ../lib/puppet/provider/nameservice.rb:
|
6610
|
+
#: ../lib/puppet/provider/aix_object.rb:481 ../lib/puppet/provider/nameservice.rb:195
|
6615
6611
|
msgid "Could not delete %{resource} %{name}: %{detail}"
|
6616
6612
|
msgstr ""
|
6617
6613
|
|
@@ -6727,23 +6723,23 @@ msgstr ""
|
|
6727
6723
|
msgid "'%{exe}' is not executable"
|
6728
6724
|
msgstr ""
|
6729
6725
|
|
6730
|
-
#: ../lib/puppet/provider/file/posix.rb:
|
6726
|
+
#: ../lib/puppet/provider/file/posix.rb:71
|
6731
6727
|
msgid "Apparently using negative UID (%{currentvalue}) on a platform that does not consistently handle them"
|
6732
6728
|
msgstr ""
|
6733
6729
|
|
6734
|
-
#: ../lib/puppet/provider/file/posix.rb:
|
6730
|
+
#: ../lib/puppet/provider/file/posix.rb:89 ../lib/puppet/provider/file/windows.rb:46
|
6735
6731
|
msgid "Failed to set owner to '%{should}': %{detail}"
|
6736
6732
|
msgstr ""
|
6737
6733
|
|
6738
|
-
#: ../lib/puppet/provider/file/posix.rb:
|
6734
|
+
#: ../lib/puppet/provider/file/posix.rb:102
|
6739
6735
|
msgid "Apparently using negative GID (%{currentvalue}) on a platform that does not consistently handle them"
|
6740
6736
|
msgstr ""
|
6741
6737
|
|
6742
|
-
#: ../lib/puppet/provider/file/posix.rb:
|
6738
|
+
#: ../lib/puppet/provider/file/posix.rb:120 ../lib/puppet/provider/file/windows.rb:59
|
6743
6739
|
msgid "Failed to set group to '%{should}': %{detail}"
|
6744
6740
|
msgstr ""
|
6745
6741
|
|
6746
|
-
#: ../lib/puppet/provider/file/posix.rb:
|
6742
|
+
#: ../lib/puppet/provider/file/posix.rb:136 ../lib/puppet/provider/file/windows.rb:78
|
6747
6743
|
msgid "failed to set mode %{mode} on %{path}: %{message}"
|
6748
6744
|
msgstr ""
|
6749
6745
|
|
@@ -6896,15 +6892,15 @@ msgstr ""
|
|
6896
6892
|
msgid "already exists"
|
6897
6893
|
msgstr ""
|
6898
6894
|
|
6899
|
-
#: ../lib/puppet/provider/nameservice.rb:
|
6895
|
+
#: ../lib/puppet/provider/nameservice.rb:187
|
6900
6896
|
msgid "already absent"
|
6901
6897
|
msgstr ""
|
6902
6898
|
|
6903
|
-
#: ../lib/puppet/provider/nameservice.rb:
|
6899
|
+
#: ../lib/puppet/provider/nameservice.rb:279
|
6904
6900
|
msgid "Nameservice command must be an array"
|
6905
6901
|
msgstr ""
|
6906
6902
|
|
6907
|
-
#: ../lib/puppet/provider/nameservice.rb:
|
6903
|
+
#: ../lib/puppet/provider/nameservice.rb:284 ../lib/puppet/provider/nameservice/directoryservice.rb:337 ../lib/puppet/provider/nameservice/directoryservice.rb:366
|
6908
6904
|
msgid "Could not set %{param} on %{resource}[%{name}]: %{detail}"
|
6909
6905
|
msgstr ""
|
6910
6906
|
|
@@ -6966,7 +6962,7 @@ msgstr ""
|
|
6966
6962
|
msgid "Could not list installed Packages: %{detail}"
|
6967
6963
|
msgstr ""
|
6968
6964
|
|
6969
|
-
#: ../lib/puppet/provider/package/aix.rb:139 ../lib/puppet/provider/package/yum.rb:
|
6965
|
+
#: ../lib/puppet/provider/package/aix.rb:139 ../lib/puppet/provider/package/yum.rb:252
|
6970
6966
|
msgid "Tried to get latest on a missing package"
|
6971
6967
|
msgstr ""
|
6972
6968
|
|
@@ -6998,7 +6994,7 @@ msgstr ""
|
|
6998
6994
|
msgid "No responsefile specified or non existent, not preseeding anything"
|
6999
6995
|
msgstr ""
|
7000
6996
|
|
7001
|
-
#: ../lib/puppet/provider/package/aptitude.rb:21 ../lib/puppet/provider/package/ports.rb:20 ../lib/puppet/provider/package/portupgrade.rb:93 ../lib/puppet/provider/package/portupgrade.rb:151 ../lib/puppet/provider/package/rug.rb:28 ../lib/puppet/provider/package/up2date.rb:17 ../lib/puppet/provider/package/yum.rb:
|
6997
|
+
#: ../lib/puppet/provider/package/aptitude.rb:21 ../lib/puppet/provider/package/ports.rb:20 ../lib/puppet/provider/package/portupgrade.rb:93 ../lib/puppet/provider/package/portupgrade.rb:151 ../lib/puppet/provider/package/rug.rb:28 ../lib/puppet/provider/package/up2date.rb:17 ../lib/puppet/provider/package/yum.rb:232 ../lib/puppet/provider/package/zypper.rb:109
|
7002
6998
|
msgid "Could not find package %{name}"
|
7003
6999
|
msgstr ""
|
7004
7000
|
|
@@ -7260,11 +7256,11 @@ msgstr ""
|
|
7260
7256
|
msgid "portversion.latest() - fatal error with portversion: %{output}"
|
7261
7257
|
msgstr ""
|
7262
7258
|
|
7263
|
-
#: ../lib/puppet/provider/package/rpm.rb:
|
7259
|
+
#: ../lib/puppet/provider/package/rpm.rb:90
|
7264
7260
|
msgid "Failed to list packages"
|
7265
7261
|
msgstr ""
|
7266
7262
|
|
7267
|
-
#: ../lib/puppet/provider/package/rpm.rb:
|
7263
|
+
#: ../lib/puppet/provider/package/rpm.rb:128 ../lib/puppet/provider/package/rpm.rb:140
|
7268
7264
|
msgid "RPMs must specify a package source"
|
7269
7265
|
msgstr ""
|
7270
7266
|
|
@@ -7321,19 +7317,19 @@ msgstr ""
|
|
7321
7317
|
msgid "Failed to parse package name and architecture from '%{pkgname}'"
|
7322
7318
|
msgstr ""
|
7323
7319
|
|
7324
|
-
#: ../lib/puppet/provider/package/yum.rb:
|
7320
|
+
#: ../lib/puppet/provider/package/yum.rb:226
|
7325
7321
|
msgid "Could not find package %{wanted}"
|
7326
7322
|
msgstr ""
|
7327
7323
|
|
7328
|
-
#: ../lib/puppet/provider/package/yum.rb:
|
7324
|
+
#: ../lib/puppet/provider/package/yum.rb:237
|
7329
7325
|
msgid "Failed to update to version %{should}, got version %{version} instead"
|
7330
7326
|
msgstr ""
|
7331
7327
|
|
7332
|
-
#: ../lib/puppet/provider/package_targetable.rb:
|
7328
|
+
#: ../lib/puppet/provider/package_targetable.rb:55
|
7333
7329
|
msgid "Provider %{name} package command is not functional on this host"
|
7334
7330
|
msgstr ""
|
7335
7331
|
|
7336
|
-
#: ../lib/puppet/provider/package_targetable.rb:
|
7332
|
+
#: ../lib/puppet/provider/package_targetable.rb:58
|
7337
7333
|
msgid "Provider %{name} package command '%{cmd}' does not exist on this host"
|
7338
7334
|
msgstr ""
|
7339
7335
|
|
@@ -7415,19 +7411,23 @@ msgstr ""
|
|
7415
7411
|
msgid "Cannot enable %{resource_name} for manual start, error was: %{detail}"
|
7416
7412
|
msgstr ""
|
7417
7413
|
|
7418
|
-
#: ../lib/puppet/provider/service/windows.rb:
|
7414
|
+
#: ../lib/puppet/provider/service/windows.rb:40
|
7415
|
+
msgid "Cannot enable %{resource_name} for delayed start, error was: %{detail}"
|
7416
|
+
msgstr ""
|
7417
|
+
|
7418
|
+
#: ../lib/puppet/provider/service/windows.rb:60
|
7419
7419
|
msgid "Unknown start type: %{start_type}"
|
7420
7420
|
msgstr ""
|
7421
7421
|
|
7422
|
-
#: ../lib/puppet/provider/service/windows.rb:
|
7422
|
+
#: ../lib/puppet/provider/service/windows.rb:63
|
7423
7423
|
msgid "Cannot get start type %{resource_name}, error was: %{detail}"
|
7424
7424
|
msgstr ""
|
7425
7425
|
|
7426
|
-
#: ../lib/puppet/provider/service/windows.rb:
|
7426
|
+
#: ../lib/puppet/provider/service/windows.rb:77
|
7427
7427
|
msgid "Will not start disabled service %{resource_name} without managing enable. Specify 'enable => false' to override."
|
7428
7428
|
msgstr ""
|
7429
7429
|
|
7430
|
-
#: ../lib/puppet/provider/service/windows.rb:
|
7430
|
+
#: ../lib/puppet/provider/service/windows.rb:109
|
7431
7431
|
msgid "Unknown service state '%{current_state}' for service '%{resource_name}'"
|
7432
7432
|
msgstr ""
|
7433
7433
|
|
@@ -7557,35 +7557,35 @@ msgstr ""
|
|
7557
7557
|
msgid "Invalid resource type %{type}"
|
7558
7558
|
msgstr ""
|
7559
7559
|
|
7560
|
-
#: ../lib/puppet/resource.rb:
|
7560
|
+
#: ../lib/puppet/resource.rb:499
|
7561
7561
|
msgid "The method Puppet::Resource.set_default_parameters is deprecated and will be removed in the next major release of Puppet."
|
7562
7562
|
msgstr ""
|
7563
7563
|
|
7564
|
-
#: ../lib/puppet/resource.rb:
|
7564
|
+
#: ../lib/puppet/resource.rb:504
|
7565
7565
|
msgid "Cannot evaluate default parameters for %{resource} - not a parser resource"
|
7566
7566
|
msgstr ""
|
7567
7567
|
|
7568
|
-
#: ../lib/puppet/resource.rb:
|
7568
|
+
#: ../lib/puppet/resource.rb:544
|
7569
7569
|
msgid "The method Puppet::Resource.validate_complete is deprecated and will be removed in the next major release of Puppet."
|
7570
7570
|
msgstr ""
|
7571
7571
|
|
7572
|
-
#: ../lib/puppet/resource.rb:
|
7572
|
+
#: ../lib/puppet/resource.rb:550
|
7573
7573
|
msgid "Must pass %{param} to %{resource}"
|
7574
7574
|
msgstr ""
|
7575
7575
|
|
7576
|
-
#: ../lib/puppet/resource.rb:
|
7576
|
+
#: ../lib/puppet/resource.rb:561
|
7577
7577
|
msgid "Expected parameter '%{name}' of '%{value0}' to have type %{value1}, got %{value2}"
|
7578
7578
|
msgstr ""
|
7579
7579
|
|
7580
|
-
#: ../lib/puppet/resource.rb:
|
7580
|
+
#: ../lib/puppet/resource.rb:567
|
7581
7581
|
msgid "no parameter named '%{name}'"
|
7582
7582
|
msgstr ""
|
7583
7583
|
|
7584
|
-
#: ../lib/puppet/resource.rb:
|
7584
|
+
#: ../lib/puppet/resource.rb:609
|
7585
7585
|
msgid "No title provided and %{type} is not a valid resource reference"
|
7586
7586
|
msgstr ""
|
7587
7587
|
|
7588
|
-
#: ../lib/puppet/resource.rb:
|
7588
|
+
#: ../lib/puppet/resource.rb:682
|
7589
7589
|
msgid "No set of title patterns matched the title \"%{title}\"."
|
7590
7590
|
msgstr ""
|
7591
7591
|
|
@@ -7795,61 +7795,65 @@ msgstr ""
|
|
7795
7795
|
msgid "Not attempting to load %{type} %{fqname} as this object was missing during a prior compilation"
|
7796
7796
|
msgstr ""
|
7797
7797
|
|
7798
|
-
#: ../lib/puppet/settings.rb:
|
7798
|
+
#: ../lib/puppet/settings.rb:97
|
7799
|
+
msgid "New environment loaders generated from the requested section."
|
7800
|
+
msgstr ""
|
7801
|
+
|
7802
|
+
#: ../lib/puppet/settings.rb:299
|
7799
7803
|
msgid "Attempting to initialize global default settings more than once!"
|
7800
7804
|
msgstr ""
|
7801
7805
|
|
7802
|
-
#: ../lib/puppet/settings.rb:
|
7806
|
+
#: ../lib/puppet/settings.rb:497
|
7803
7807
|
msgid "Using --configprint is deprecated. Use 'puppet config <subcommand>' instead."
|
7804
7808
|
msgstr ""
|
7805
7809
|
|
7806
|
-
#: ../lib/puppet/settings.rb:
|
7810
|
+
#: ../lib/puppet/settings.rb:639
|
7807
7811
|
msgid "Could not load %{file}: %{detail}"
|
7808
7812
|
msgstr ""
|
7809
7813
|
|
7810
|
-
#: ../lib/puppet/settings.rb:
|
7814
|
+
#: ../lib/puppet/settings.rb:740
|
7811
7815
|
msgid "Invalid setting type '%{type}'"
|
7812
7816
|
msgstr ""
|
7813
7817
|
|
7814
|
-
#: ../lib/puppet/settings.rb:
|
7818
|
+
#: ../lib/puppet/settings.rb:884
|
7815
7819
|
msgid "Unknown searchpath case: %{source_type} for the %{source} settings path element."
|
7816
7820
|
msgstr ""
|
7817
7821
|
|
7818
|
-
#: ../lib/puppet/settings.rb:
|
7822
|
+
#: ../lib/puppet/settings.rb:946
|
7819
7823
|
msgid "setting definition for '%{name}' is not a hash!"
|
7820
7824
|
msgstr ""
|
7821
7825
|
|
7822
|
-
#: ../lib/puppet/settings.rb:
|
7826
|
+
#: ../lib/puppet/settings.rb:951
|
7823
7827
|
msgid "Setting %{name} is already defined"
|
7824
7828
|
msgstr ""
|
7825
7829
|
|
7826
|
-
#: ../lib/puppet/settings.rb:
|
7830
|
+
#: ../lib/puppet/settings.rb:955
|
7827
7831
|
msgid "Setting %{name} is already using short name '%{short}'"
|
7828
7832
|
msgstr ""
|
7829
7833
|
|
7830
7834
|
#. TRANSLATORS 'puppet.conf' is a file name and should not be translated
|
7831
|
-
#: ../lib/puppet/settings.rb:
|
7835
|
+
#: ../lib/puppet/settings.rb:1217
|
7832
7836
|
msgid "Setting %{name} is deprecated in puppet.conf."
|
7833
7837
|
msgstr ""
|
7834
7838
|
|
7835
|
-
#: ../lib/puppet/settings.rb:
|
7839
|
+
#: ../lib/puppet/settings.rb:1384
|
7836
7840
|
msgid "Error converting value for param '%{name}': %{detail}"
|
7837
7841
|
msgstr ""
|
7838
7842
|
|
7839
|
-
#: ../lib/puppet/settings.rb:
|
7843
|
+
#: ../lib/puppet/settings.rb:1408
|
7840
7844
|
msgid "Could not find value for %{expression}"
|
7841
7845
|
msgstr ""
|
7842
7846
|
|
7843
7847
|
#. TRANSLATORS '$environment' is a Puppet specific variable and should not be translated
|
7844
|
-
#: ../lib/puppet/settings.rb:
|
7848
|
+
#: ../lib/puppet/settings.rb:1418
|
7845
7849
|
msgid "You cannot interpolate $environment within '%{setting_name}' when using directory environments."
|
7846
7850
|
msgstr ""
|
7847
7851
|
|
7848
|
-
#: ../lib/puppet/settings.rb:
|
7852
|
+
#: ../lib/puppet/settings.rb:1419
|
7849
7853
|
msgid "Its value will remain %{value}."
|
7850
7854
|
msgstr ""
|
7851
7855
|
|
7852
|
-
#: ../lib/puppet/settings.rb:
|
7856
|
+
#: ../lib/puppet/settings.rb:1450
|
7853
7857
|
msgid "Attempt to assign a value to unknown setting %{name}"
|
7854
7858
|
msgstr ""
|
7855
7859
|
|
@@ -8589,7 +8593,7 @@ msgstr ""
|
|
8589
8593
|
msgid "Unable to mark '%{name}' as sensitive: the property itself is not defined on %{type}."
|
8590
8594
|
msgstr ""
|
8591
8595
|
|
8592
|
-
#: ../lib/puppet/type.rb:
|
8596
|
+
#: ../lib/puppet/type.rb:2501
|
8593
8597
|
msgid "Could not set %{attribute} on %{class_name}: %{detail}"
|
8594
8598
|
msgstr ""
|
8595
8599
|
|
@@ -8669,11 +8673,11 @@ msgstr ""
|
|
8669
8673
|
msgid "try_sleep cannot be a negative number"
|
8670
8674
|
msgstr ""
|
8671
8675
|
|
8672
|
-
#: ../lib/puppet/type/exec.rb:454 ../lib/puppet/type/exec.rb:
|
8676
|
+
#: ../lib/puppet/type/exec.rb:454 ../lib/puppet/type/exec.rb:510
|
8673
8677
|
msgid "Check %{value} exceeded timeout"
|
8674
8678
|
msgstr ""
|
8675
8679
|
|
8676
|
-
#: ../lib/puppet/type/exec.rb:
|
8680
|
+
#: ../lib/puppet/type/exec.rb:597
|
8677
8681
|
msgid "'%{cmd}' won't be executed because of failed check '%{check}'"
|
8678
8682
|
msgstr ""
|
8679
8683
|
|
@@ -8910,15 +8914,15 @@ msgstr ""
|
|
8910
8914
|
msgid "name must not contain whitespace: %{value}"
|
8911
8915
|
msgstr ""
|
8912
8916
|
|
8913
|
-
#: ../lib/puppet/type/package.rb:
|
8917
|
+
#: ../lib/puppet/type/package.rb:118 ../lib/puppet/type/package.rb:132
|
8914
8918
|
msgid "Could not update: %{detail}"
|
8915
8919
|
msgstr ""
|
8916
8920
|
|
8917
|
-
#: ../lib/puppet/type/package.rb:
|
8921
|
+
#: ../lib/puppet/type/package.rb:167
|
8918
8922
|
msgid "Could not get latest version: %{detail}"
|
8919
8923
|
msgstr ""
|
8920
8924
|
|
8921
|
-
#: ../lib/puppet/type/package.rb:
|
8925
|
+
#: ../lib/puppet/type/package.rb:267
|
8922
8926
|
msgid "Name must be a String not %{klass}"
|
8923
8927
|
msgstr ""
|
8924
8928
|
|
@@ -8986,8 +8990,8 @@ msgstr ""
|
|
8986
8990
|
msgid "Must be specified using an absolute path."
|
8987
8991
|
msgstr ""
|
8988
8992
|
|
8989
|
-
#: ../lib/puppet/type/service.rb:
|
8990
|
-
msgid "Setting enable to
|
8993
|
+
#: ../lib/puppet/type/service.rb:94
|
8994
|
+
msgid "Setting enable to %{value} is only supported on Microsoft Windows."
|
8991
8995
|
msgstr ""
|
8992
8996
|
|
8993
8997
|
#: ../lib/puppet/type/ssh_authorized_key.rb:74
|
@@ -9057,101 +9061,85 @@ msgstr ""
|
|
9057
9061
|
msgid "Passwords cannot include ':'"
|
9058
9062
|
msgstr ""
|
9059
9063
|
|
9060
|
-
#: ../lib/puppet/type/user.rb:
|
9061
|
-
msgid "created password"
|
9062
|
-
msgstr ""
|
9063
|
-
|
9064
|
-
#: ../lib/puppet/type/user.rb:262
|
9065
|
-
msgid "changed password"
|
9066
|
-
msgstr ""
|
9067
|
-
|
9068
|
-
#: ../lib/puppet/type/user.rb:267
|
9069
|
-
msgid "[old password hash redacted]"
|
9070
|
-
msgstr ""
|
9071
|
-
|
9072
|
-
#: ../lib/puppet/type/user.rb:270
|
9073
|
-
msgid "[new password hash redacted]"
|
9074
|
-
msgstr ""
|
9075
|
-
|
9076
|
-
#: ../lib/puppet/type/user.rb:289
|
9064
|
+
#: ../lib/puppet/type/user.rb:275
|
9077
9065
|
msgid "Password minimum age must be provided as a number."
|
9078
9066
|
msgstr ""
|
9079
9067
|
|
9080
|
-
#: ../lib/puppet/type/user.rb:
|
9068
|
+
#: ../lib/puppet/type/user.rb:294
|
9081
9069
|
msgid "Password maximum age must be provided as a number."
|
9082
9070
|
msgstr ""
|
9083
9071
|
|
9084
|
-
#: ../lib/puppet/type/user.rb:
|
9072
|
+
#: ../lib/puppet/type/user.rb:325
|
9085
9073
|
msgid "Group names must be provided, not GID numbers."
|
9086
9074
|
msgstr ""
|
9087
9075
|
|
9088
|
-
#: ../lib/puppet/type/user.rb:
|
9076
|
+
#: ../lib/puppet/type/user.rb:327
|
9089
9077
|
msgid "Group names must be provided as an array, not a comma-separated list."
|
9090
9078
|
msgstr ""
|
9091
9079
|
|
9092
|
-
#: ../lib/puppet/type/user.rb:
|
9080
|
+
#: ../lib/puppet/type/user.rb:328
|
9093
9081
|
msgid "Group names must not be empty. If you want to specify \"no groups\" pass an empty array"
|
9094
9082
|
msgstr ""
|
9095
9083
|
|
9096
|
-
#: ../lib/puppet/type/user.rb:
|
9084
|
+
#: ../lib/puppet/type/user.rb:421
|
9097
9085
|
msgid "User provider %{name} can not manage home directories"
|
9098
9086
|
msgstr ""
|
9099
9087
|
|
9100
9088
|
#. TRANSLATORS YYYY-MM-DD represents a date with a four-digit year, a two-digit month, and a two-digit day,
|
9101
9089
|
#. TRANSLATORS separated by dashes.
|
9102
|
-
#: ../lib/puppet/type/user.rb:
|
9090
|
+
#: ../lib/puppet/type/user.rb:438
|
9103
9091
|
msgid "Expiry dates must be YYYY-MM-DD or the string \"absent\""
|
9104
9092
|
msgstr ""
|
9105
9093
|
|
9106
|
-
#: ../lib/puppet/type/user.rb:
|
9094
|
+
#: ../lib/puppet/type/user.rb:515
|
9107
9095
|
msgid "Role names must be provided, not numbers"
|
9108
9096
|
msgstr ""
|
9109
9097
|
|
9110
|
-
#: ../lib/puppet/type/user.rb:
|
9098
|
+
#: ../lib/puppet/type/user.rb:517
|
9111
9099
|
msgid "Role names must be provided as an array, not a comma-separated list"
|
9112
9100
|
msgstr ""
|
9113
9101
|
|
9114
|
-
#: ../lib/puppet/type/user.rb:
|
9102
|
+
#: ../lib/puppet/type/user.rb:552
|
9115
9103
|
msgid "Auth names must be provided, not numbers"
|
9116
9104
|
msgstr ""
|
9117
9105
|
|
9118
|
-
#: ../lib/puppet/type/user.rb:
|
9106
|
+
#: ../lib/puppet/type/user.rb:554
|
9119
9107
|
msgid "Auth names must be provided as an array, not a comma-separated list"
|
9120
9108
|
msgstr ""
|
9121
9109
|
|
9122
|
-
#: ../lib/puppet/type/user.rb:
|
9110
|
+
#: ../lib/puppet/type/user.rb:578
|
9123
9111
|
msgid "Profile names must be provided, not numbers"
|
9124
9112
|
msgstr ""
|
9125
9113
|
|
9126
|
-
#: ../lib/puppet/type/user.rb:
|
9114
|
+
#: ../lib/puppet/type/user.rb:580
|
9127
9115
|
msgid "Profile names must be provided as an array, not a comma-separated list"
|
9128
9116
|
msgstr ""
|
9129
9117
|
|
9130
|
-
#: ../lib/puppet/type/user.rb:
|
9118
|
+
#: ../lib/puppet/type/user.rb:703
|
9131
9119
|
msgid "Each entry for purge_ssh_keys must be a string, not a %{klass}"
|
9132
9120
|
msgstr ""
|
9133
9121
|
|
9134
|
-
#: ../lib/puppet/type/user.rb:
|
9122
|
+
#: ../lib/puppet/type/user.rb:706
|
9135
9123
|
msgid "Paths to keyfiles must be absolute, not %{entry}"
|
9136
9124
|
msgstr ""
|
9137
9125
|
|
9138
|
-
#: ../lib/puppet/type/user.rb:
|
9126
|
+
#: ../lib/puppet/type/user.rb:710
|
9139
9127
|
msgid "purge_ssh_keys must be true, false, or an array of file names, not %{value}"
|
9140
9128
|
msgstr ""
|
9141
9129
|
|
9142
|
-
#: ../lib/puppet/type/user.rb:
|
9130
|
+
#: ../lib/puppet/type/user.rb:722
|
9143
9131
|
msgid "purge_ssh_keys can only be true for users with a defined home directory"
|
9144
9132
|
msgstr ""
|
9145
9133
|
|
9146
|
-
#: ../lib/puppet/type/user.rb:
|
9134
|
+
#: ../lib/puppet/type/user.rb:729
|
9147
9135
|
msgid "purge_ssh_keys value '%{value}' meta character ~ or %{home_placeholder} only allowed for users with a defined home directory"
|
9148
9136
|
msgstr ""
|
9149
9137
|
|
9150
|
-
#: ../lib/puppet/type/user.rb:
|
9138
|
+
#: ../lib/puppet/type/user.rb:743
|
9151
9139
|
msgid "Class name must be provided."
|
9152
9140
|
msgstr ""
|
9153
9141
|
|
9154
|
-
#: ../lib/puppet/type/yumrepo.rb:65 ../lib/puppet/type/yumrepo.rb:82 ../lib/puppet/type/yumrepo.rb:138 ../lib/puppet/type/yumrepo.rb:162 ../lib/puppet/type/yumrepo.rb:185 ../lib/puppet/type/yumrepo.rb:309 ../lib/puppet/type/yumrepo.rb:
|
9142
|
+
#: ../lib/puppet/type/yumrepo.rb:65 ../lib/puppet/type/yumrepo.rb:82 ../lib/puppet/type/yumrepo.rb:138 ../lib/puppet/type/yumrepo.rb:162 ../lib/puppet/type/yumrepo.rb:185 ../lib/puppet/type/yumrepo.rb:309 ../lib/puppet/type/yumrepo.rb:377
|
9155
9143
|
msgid "Must be a valid URL"
|
9156
9144
|
msgstr ""
|
9157
9145
|
|
@@ -9543,23 +9531,23 @@ msgstr ""
|
|
9543
9531
|
msgid "%{klass} failed with error %{error_type}: %{detail}"
|
9544
9532
|
msgstr ""
|
9545
9533
|
|
9546
|
-
#: ../lib/puppet/util/execution.rb:
|
9534
|
+
#: ../lib/puppet/util/execution.rb:196
|
9547
9535
|
msgid "Working directory %{cwd} does not exist!"
|
9548
9536
|
msgstr ""
|
9549
9537
|
|
9550
|
-
#: ../lib/puppet/util/execution.rb:
|
9538
|
+
#: ../lib/puppet/util/execution.rb:286
|
9551
9539
|
msgid "Could not get output"
|
9552
9540
|
msgstr ""
|
9553
9541
|
|
9554
|
-
#: ../lib/puppet/util/execution.rb:
|
9542
|
+
#: ../lib/puppet/util/execution.rb:295
|
9555
9543
|
msgid "Execution of '%{str}' returned %{exit_status}: %{output}"
|
9556
9544
|
msgstr ""
|
9557
9545
|
|
9558
|
-
#: ../lib/puppet/util/execution.rb:
|
9546
|
+
#: ../lib/puppet/util/execution.rb:372
|
9559
9547
|
msgid "Could not execute posix command: %{detail}"
|
9560
9548
|
msgstr ""
|
9561
9549
|
|
9562
|
-
#: ../lib/puppet/util/execution.rb:
|
9550
|
+
#: ../lib/puppet/util/execution.rb:420
|
9563
9551
|
msgid "Waiting for output; will sleep %{time_to_sleep} seconds"
|
9564
9552
|
msgstr ""
|
9565
9553
|
|
@@ -9667,7 +9655,7 @@ msgstr ""
|
|
9667
9655
|
msgid "Could not write crontab for %{path}: %{detail}"
|
9668
9656
|
msgstr ""
|
9669
9657
|
|
9670
|
-
#: ../lib/puppet/util/http_proxy.rb:
|
9658
|
+
#: ../lib/puppet/util/http_proxy.rb:220
|
9671
9659
|
msgid "Too many HTTP redirections for %{uri}"
|
9672
9660
|
msgstr ""
|
9673
9661
|
|
@@ -9977,31 +9965,31 @@ msgstr ""
|
|
9977
9965
|
msgid "Caught exception %{klass}:%{error} retrying"
|
9978
9966
|
msgstr ""
|
9979
9967
|
|
9980
|
-
#: ../lib/puppet/util/selinux.rb:
|
9968
|
+
#: ../lib/puppet/util/selinux.rb:71
|
9981
9969
|
msgid "Invalid context to parse: %{context}"
|
9982
9970
|
msgstr ""
|
9983
9971
|
|
9984
|
-
#: ../lib/puppet/util/selinux.rb:
|
9972
|
+
#: ../lib/puppet/util/selinux.rb:83
|
9985
9973
|
msgid "Invalid SELinux parameter type"
|
9986
9974
|
msgstr ""
|
9987
9975
|
|
9988
|
-
#: ../lib/puppet/util/selinux.rb:
|
9976
|
+
#: ../lib/puppet/util/selinux.rb:104
|
9989
9977
|
msgid "Can't set SELinux context on file unless the file already has some kind of context"
|
9990
9978
|
msgstr ""
|
9991
9979
|
|
9992
|
-
#: ../lib/puppet/util/selinux.rb:
|
9980
|
+
#: ../lib/puppet/util/selinux.rb:118
|
9993
9981
|
msgid "set_selinux_context component must be one of :seluser, :selrole, :seltype, or :selrange"
|
9994
9982
|
msgstr ""
|
9995
9983
|
|
9996
|
-
#: ../lib/puppet/util/selinux.rb:
|
9984
|
+
#: ../lib/puppet/util/selinux.rb:129
|
9997
9985
|
msgid "Failed to set SELinux context %{context} on %{file}"
|
9998
9986
|
msgstr ""
|
9999
9987
|
|
10000
|
-
#: ../lib/puppet/util/selinux.rb:
|
9988
|
+
#: ../lib/puppet/util/selinux.rb:180
|
10001
9989
|
msgid "Could not open SELinux category translation file %{path}."
|
10002
9990
|
msgstr ""
|
10003
9991
|
|
10004
|
-
#: ../lib/puppet/util/selinux.rb:
|
9992
|
+
#: ../lib/puppet/util/selinux.rb:247
|
10005
9993
|
msgid "got a relative path in SELinux find_fs: %{path}"
|
10006
9994
|
msgstr ""
|
10007
9995
|
|
@@ -10286,200 +10274,208 @@ msgid "Failed to get volume information"
|
|
10286
10274
|
msgstr ""
|
10287
10275
|
|
10288
10276
|
#. TRANSLATORS 'SYSTEM' is a Windows name and should not be translated
|
10289
|
-
#: ../lib/puppet/util/windows/security.rb:
|
10277
|
+
#: ../lib/puppet/util/windows/security.rb:339
|
10290
10278
|
msgid "Setting control rights for %{path} owner SYSTEM to less than Full Control rights. Setting SYSTEM rights to less than Full Control may have unintented consequences for operations on this file"
|
10291
10279
|
msgstr ""
|
10292
10280
|
|
10293
10281
|
#. TRANSLATORS 'SYSTEM' is a Windows name and should not be translated
|
10294
|
-
#: ../lib/puppet/util/windows/security.rb:
|
10282
|
+
#: ../lib/puppet/util/windows/security.rb:342
|
10295
10283
|
msgid "%{path} owner and group both set to user SYSTEM, but group is not managed directly: SYSTEM user rights will be set to FullControl by group"
|
10296
10284
|
msgstr ""
|
10297
10285
|
|
10298
10286
|
#. TRANSLATORS 'SYSTEM' is a Windows name and should not be translated
|
10299
|
-
#: ../lib/puppet/util/windows/security.rb:
|
10287
|
+
#: ../lib/puppet/util/windows/security.rb:345
|
10300
10288
|
msgid "An attempt to set mode %{mode} on item %{path} would result in the owner, SYSTEM, to have less than Full Control rights. This attempt has been corrected to Full Control"
|
10301
10289
|
msgstr ""
|
10302
10290
|
|
10303
10291
|
#. TRANSLATORS 'SYSTEM' is a Windows name and should not be translated
|
10304
|
-
#: ../lib/puppet/util/windows/security.rb:
|
10292
|
+
#: ../lib/puppet/util/windows/security.rb:355
|
10305
10293
|
msgid "Setting control rights for %{path} group SYSTEM to less than Full Control rights. Setting SYSTEM rights to less than Full Control may have unintented consequences for operations on this file"
|
10306
10294
|
msgstr ""
|
10307
10295
|
|
10308
10296
|
#. TRANSLATORS 'SYSTEM' is a Windows name and should not be translated
|
10309
|
-
#: ../lib/puppet/util/windows/security.rb:
|
10297
|
+
#: ../lib/puppet/util/windows/security.rb:358
|
10310
10298
|
msgid "%{path} owner and group both set to user SYSTEM, but owner is not managed directly: SYSTEM user rights will be set to FullControl by owner"
|
10311
10299
|
msgstr ""
|
10312
10300
|
|
10313
10301
|
#. TRANSLATORS 'SYSTEM' is a Windows name and should not be translated
|
10314
|
-
#: ../lib/puppet/util/windows/security.rb:
|
10302
|
+
#: ../lib/puppet/util/windows/security.rb:361
|
10315
10303
|
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"
|
10316
10304
|
msgstr ""
|
10317
10305
|
|
10318
|
-
#: ../lib/puppet/util/windows/security.rb:
|
10306
|
+
#: ../lib/puppet/util/windows/security.rb:432 ../lib/puppet/util/windows/security.rb:449 ../lib/puppet/util/windows/sid.rb:155 ../lib/puppet/util/windows/sid.rb:217 ../lib/puppet/util/windows/user.rb:43
|
10319
10307
|
msgid "Invalid SID"
|
10320
10308
|
msgstr ""
|
10321
10309
|
|
10322
|
-
#: ../lib/puppet/util/windows/security.rb:
|
10310
|
+
#: ../lib/puppet/util/windows/security.rb:436 ../lib/puppet/util/windows/security.rb:453
|
10323
10311
|
msgid "Failed to add access control entry"
|
10324
10312
|
msgstr ""
|
10325
10313
|
|
10326
|
-
#: ../lib/puppet/util/windows/security.rb:
|
10314
|
+
#: ../lib/puppet/util/windows/security.rb:464 ../lib/puppet/util/windows/security.rb:646
|
10327
10315
|
msgid "Invalid DACL"
|
10328
10316
|
msgstr ""
|
10329
10317
|
|
10330
|
-
#: ../lib/puppet/util/windows/security.rb:
|
10318
|
+
#: ../lib/puppet/util/windows/security.rb:487
|
10331
10319
|
msgid "Unsupported access control entry type: 0x%{type}"
|
10332
10320
|
msgstr ""
|
10333
10321
|
|
10334
|
-
#: ../lib/puppet/util/windows/security.rb:
|
10322
|
+
#: ../lib/puppet/util/windows/security.rb:521
|
10335
10323
|
msgid "Failed to open '%{path}'"
|
10336
10324
|
msgstr ""
|
10337
10325
|
|
10338
|
-
#: ../lib/puppet/util/windows/security.rb:
|
10326
|
+
#: ../lib/puppet/util/windows/security.rb:568
|
10339
10327
|
msgid "Failed to adjust process privileges"
|
10340
10328
|
msgstr ""
|
10341
10329
|
|
10342
|
-
#: ../lib/puppet/util/windows/security.rb:
|
10330
|
+
#: ../lib/puppet/util/windows/security.rb:598
|
10343
10331
|
msgid "Failed to get security information"
|
10344
10332
|
msgstr ""
|
10345
10333
|
|
10346
|
-
#: ../lib/puppet/util/windows/security.rb:
|
10334
|
+
#: ../lib/puppet/util/windows/security.rb:609
|
10347
10335
|
msgid "Failed to get security descriptor control"
|
10348
10336
|
msgstr ""
|
10349
10337
|
|
10350
|
-
#: ../lib/puppet/util/windows/security.rb:
|
10338
|
+
#: ../lib/puppet/util/windows/security.rb:642
|
10351
10339
|
msgid "Failed to initialize ACL"
|
10352
10340
|
msgstr ""
|
10353
10341
|
|
10354
|
-
#: ../lib/puppet/util/windows/security.rb:
|
10342
|
+
#: ../lib/puppet/util/windows/security.rb:681
|
10355
10343
|
msgid "Failed to set security information"
|
10356
10344
|
msgstr ""
|
10357
10345
|
|
10358
|
-
#: ../lib/puppet/util/windows/service.rb:
|
10346
|
+
#: ../lib/puppet/util/windows/service.rb:337
|
10359
10347
|
msgid "Starting the %{service_name} service"
|
10360
10348
|
msgstr ""
|
10361
10349
|
|
10362
|
-
#: ../lib/puppet/util/windows/service.rb:
|
10350
|
+
#: ../lib/puppet/util/windows/service.rb:347
|
10363
10351
|
msgid "Failed to start the service"
|
10364
10352
|
msgstr ""
|
10365
10353
|
|
10366
|
-
#: ../lib/puppet/util/windows/service.rb:
|
10354
|
+
#: ../lib/puppet/util/windows/service.rb:351
|
10367
10355
|
msgid "Successfully started the %{service_name} service"
|
10368
10356
|
msgstr ""
|
10369
10357
|
|
10370
|
-
#: ../lib/puppet/util/windows/service.rb:
|
10358
|
+
#: ../lib/puppet/util/windows/service.rb:359
|
10371
10359
|
msgid "Stopping the %{service_name} service"
|
10372
10360
|
msgstr ""
|
10373
10361
|
|
10374
|
-
#: ../lib/puppet/util/windows/service.rb:
|
10362
|
+
#: ../lib/puppet/util/windows/service.rb:367
|
10375
10363
|
msgid "Successfully stopped the %{service_name} service"
|
10376
10364
|
msgstr ""
|
10377
10365
|
|
10378
|
-
#: ../lib/puppet/util/windows/service.rb:
|
10366
|
+
#: ../lib/puppet/util/windows/service.rb:375
|
10379
10367
|
msgid "Resuming the %{service_name} service"
|
10380
10368
|
msgstr ""
|
10381
10369
|
|
10382
|
-
#: ../lib/puppet/util/windows/service.rb:
|
10370
|
+
#: ../lib/puppet/util/windows/service.rb:391
|
10383
10371
|
msgid "Successfully resumed the %{service_name} service"
|
10384
10372
|
msgstr ""
|
10385
10373
|
|
10386
|
-
#: ../lib/puppet/util/windows/service.rb:
|
10374
|
+
#: ../lib/puppet/util/windows/service.rb:407
|
10387
10375
|
msgid "Unknown Service state '%{current_state}' for '%{service_name}'"
|
10388
10376
|
msgstr ""
|
10389
10377
|
|
10390
|
-
#: ../lib/puppet/util/windows/service.rb:
|
10378
|
+
#: ../lib/puppet/util/windows/service.rb:434
|
10391
10379
|
msgid "Unknown start type '%{start_type}' for '%{service_name}'"
|
10392
10380
|
msgstr ""
|
10393
10381
|
|
10394
|
-
#: ../lib/puppet/util/windows/service.rb:
|
10382
|
+
#: ../lib/puppet/util/windows/service.rb:450
|
10395
10383
|
msgid "Unknown start type %{start_type}"
|
10396
10384
|
msgstr ""
|
10397
10385
|
|
10398
|
-
#: ../lib/puppet/util/windows/service.rb:
|
10386
|
+
#: ../lib/puppet/util/windows/service.rb:471
|
10399
10387
|
msgid "Failed to update service configuration"
|
10400
10388
|
msgstr ""
|
10401
10389
|
|
10402
|
-
#: ../lib/puppet/util/windows/service.rb:
|
10390
|
+
#: ../lib/puppet/util/windows/service.rb:532
|
10403
10391
|
msgid "Failed to fetch services"
|
10404
10392
|
msgstr ""
|
10405
10393
|
|
10406
|
-
#: ../lib/puppet/util/windows/service.rb:
|
10394
|
+
#: ../lib/puppet/util/windows/service.rb:581
|
10407
10395
|
msgid "Failed to open a handle to the service"
|
10408
10396
|
msgstr ""
|
10409
10397
|
|
10410
|
-
#: ../lib/puppet/util/windows/service.rb:
|
10398
|
+
#: ../lib/puppet/util/windows/service.rb:598
|
10411
10399
|
msgid "Failed to open a handle to the service control manager"
|
10412
10400
|
msgstr ""
|
10413
10401
|
|
10414
|
-
#: ../lib/puppet/util/windows/service.rb:
|
10402
|
+
#: ../lib/puppet/util/windows/service.rb:620
|
10415
10403
|
msgid "The service is already in the %{final_state} state. No further work needs to be done."
|
10416
10404
|
msgstr ""
|
10417
10405
|
|
10418
|
-
#: ../lib/puppet/util/windows/service.rb:
|
10406
|
+
#: ../lib/puppet/util/windows/service.rb:632
|
10419
10407
|
msgid "The service must be in one of the %{valid_initial_states} states to perform this transition. It is currently in the %{current_state} state."
|
10420
10408
|
msgstr ""
|
10421
10409
|
|
10422
|
-
#: ../lib/puppet/util/windows/service.rb:
|
10410
|
+
#: ../lib/puppet/util/windows/service.rb:643
|
10423
10411
|
msgid "There is already a pending transition to the %{final_state} state for the %{service_name} service."
|
10424
10412
|
msgstr ""
|
10425
10413
|
|
10426
|
-
#: ../lib/puppet/util/windows/service.rb:
|
10414
|
+
#: ../lib/puppet/util/windows/service.rb:659
|
10427
10415
|
msgid "The service is in the %{pending_state} state, which is an unsafe pending state."
|
10428
10416
|
msgstr ""
|
10429
10417
|
|
10430
|
-
#: ../lib/puppet/util/windows/service.rb:
|
10418
|
+
#: ../lib/puppet/util/windows/service.rb:664
|
10431
10419
|
msgid "Transitioning the %{service_name} service from %{initial_state} to %{final_state}"
|
10432
10420
|
msgstr ""
|
10433
10421
|
|
10434
|
-
#: ../lib/puppet/util/windows/service.rb:
|
10422
|
+
#: ../lib/puppet/util/windows/service.rb:668
|
10435
10423
|
msgid "Waiting for the transition to finish"
|
10436
10424
|
msgstr ""
|
10437
10425
|
|
10438
|
-
#: ../lib/puppet/util/windows/service.rb:
|
10426
|
+
#: ../lib/puppet/util/windows/service.rb:673
|
10439
10427
|
msgid "Failed to transition the %{service_name} service to the %{final_state} state. Detail: %{detail}"
|
10440
10428
|
msgstr ""
|
10441
10429
|
|
10442
|
-
#: ../lib/puppet/util/windows/service.rb:
|
10430
|
+
#: ../lib/puppet/util/windows/service.rb:712 ../lib/puppet/util/windows/service.rb:748
|
10443
10431
|
msgid "Service query failed"
|
10444
10432
|
msgstr ""
|
10445
10433
|
|
10446
|
-
#: ../lib/puppet/util/windows/service.rb:
|
10434
|
+
#: ../lib/puppet/util/windows/service.rb:791
|
10435
|
+
msgid "Service query for %{parameter_name} failed"
|
10436
|
+
msgstr ""
|
10437
|
+
|
10438
|
+
#: ../lib/puppet/util/windows/service.rb:814
|
10439
|
+
msgid "Failed to update service %{change} configuration"
|
10440
|
+
msgstr ""
|
10441
|
+
|
10442
|
+
#: ../lib/puppet/util/windows/service.rb:841
|
10447
10443
|
msgid "Failed to send the %{control_signal} signal to the service. Its current state is %{current_state}. Reason for failure:"
|
10448
10444
|
msgstr ""
|
10449
10445
|
|
10450
|
-
#: ../lib/puppet/util/windows/service.rb:
|
10446
|
+
#: ../lib/puppet/util/windows/service.rb:875
|
10451
10447
|
msgid "The service transitioned to the %{pending_state} state."
|
10452
10448
|
msgstr ""
|
10453
10449
|
|
10454
|
-
#: ../lib/puppet/util/windows/service.rb:
|
10450
|
+
#: ../lib/puppet/util/windows/service.rb:889
|
10455
10451
|
msgid "Timed out while waiting for the service to transition from %{initial_state} to %{final_state} OR from %{initial_state} to %{pending_state} to %{final_state}. The service's current state is %{current_state}."
|
10456
10452
|
msgstr ""
|
10457
10453
|
|
10458
|
-
#: ../lib/puppet/util/windows/service.rb:
|
10454
|
+
#: ../lib/puppet/util/windows/service.rb:903
|
10459
10455
|
msgid "Waiting for the pending transition to the %{final_state} state to finish."
|
10460
10456
|
msgstr ""
|
10461
10457
|
|
10462
|
-
#: ../lib/puppet/util/windows/service.rb:
|
10458
|
+
#: ../lib/puppet/util/windows/service.rb:917
|
10463
10459
|
msgid "Unexpected transition to the %{current_state} state while waiting for the pending transition from %{pending_state} to %{final_state} to finish."
|
10464
10460
|
msgstr ""
|
10465
10461
|
|
10466
|
-
#: ../lib/puppet/util/windows/service.rb:
|
10462
|
+
#: ../lib/puppet/util/windows/service.rb:931
|
10467
10463
|
msgid "Timed out while waiting for the pending transition from %{pending_state} to %{final_state} to finish. The current state is %{current_state}."
|
10468
10464
|
msgstr ""
|
10469
10465
|
|
10470
|
-
#: ../lib/puppet/util/windows/sid.rb:
|
10466
|
+
#: ../lib/puppet/util/windows/sid.rb:94
|
10471
10467
|
msgid "Octet string must be an array of bytes"
|
10472
10468
|
msgstr ""
|
10473
10469
|
|
10474
|
-
#: ../lib/puppet/util/windows/sid.rb:
|
10470
|
+
#: ../lib/puppet/util/windows/sid.rb:161
|
10475
10471
|
msgid "Failed to convert binary SID"
|
10476
10472
|
msgstr ""
|
10477
10473
|
|
10478
|
-
#: ../lib/puppet/util/windows/sid.rb:
|
10474
|
+
#: ../lib/puppet/util/windows/sid.rb:166
|
10479
10475
|
msgid "ConvertSidToStringSidW failed to allocate buffer for sid"
|
10480
10476
|
msgstr ""
|
10481
10477
|
|
10482
|
-
#: ../lib/puppet/util/windows/sid.rb:
|
10478
|
+
#: ../lib/puppet/util/windows/sid.rb:186
|
10483
10479
|
msgid "Failed to convert string SID: %{string_sid}"
|
10484
10480
|
msgstr ""
|
10485
10481
|
|