puppet 5.5.1 → 5.5.2
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 +7 -0
- data/CONTRIBUTING.md +3 -3
- data/README.md +2 -2
- data/conf/auth.conf +2 -2
- data/conf/environment.conf +1 -1
- data/conf/fileserver.conf +1 -1
- data/conf/puppet.conf +4 -4
- data/ext/README.environment +1 -1
- data/ext/debian/copyright +2 -2
- data/ext/debian/puppetmaster.README.debian +2 -2
- data/ext/hiera/hiera.yaml +1 -1
- data/ext/puppet-test +1 -1
- data/ext/rack/example-passenger-vhost.conf +1 -1
- data/ext/regexp_nodes/regexp_nodes.rb +12 -12
- data/ext/upload_facts.rb +1 -1
- data/lib/hiera/puppet_function.rb +1 -1
- data/lib/puppet.rb +1 -1
- data/lib/puppet/application/agent.rb +1 -1
- data/lib/puppet/application/apply.rb +1 -1
- data/lib/puppet/application/cert.rb +1 -1
- data/lib/puppet/application/device.rb +8 -8
- data/lib/puppet/application/lookup.rb +1 -1
- data/lib/puppet/application/master.rb +1 -1
- data/lib/puppet/application/resource.rb +1 -1
- data/lib/puppet/application/script.rb +1 -1
- data/lib/puppet/defaults.rb +22 -16
- data/lib/puppet/face/config.rb +1 -1
- data/lib/puppet/face/help/man.erb +1 -1
- data/lib/puppet/face/module/build.rb +3 -3
- data/lib/puppet/face/status.rb +2 -2
- data/lib/puppet/functions/all.rb +2 -2
- data/lib/puppet/functions/any.rb +2 -2
- data/lib/puppet/functions/assert_type.rb +3 -3
- data/lib/puppet/functions/each.rb +2 -2
- data/lib/puppet/functions/eyaml_lookup_key.rb +1 -1
- data/lib/puppet/functions/filter.rb +2 -2
- data/lib/puppet/functions/hiera.rb +5 -5
- data/lib/puppet/functions/hiera_array.rb +5 -5
- data/lib/puppet/functions/hiera_hash.rb +6 -6
- data/lib/puppet/functions/hiera_include.rb +7 -7
- data/lib/puppet/functions/hocon_data.rb +1 -1
- data/lib/puppet/functions/json_data.rb +1 -1
- data/lib/puppet/functions/lest.rb +1 -1
- data/lib/puppet/functions/lookup.rb +1 -1
- data/lib/puppet/functions/map.rb +1 -1
- data/lib/puppet/functions/match.rb +11 -0
- data/lib/puppet/functions/reduce.rb +1 -1
- data/lib/puppet/functions/reverse_each.rb +1 -1
- data/lib/puppet/functions/step.rb +1 -1
- data/lib/puppet/functions/then.rb +1 -1
- data/lib/puppet/functions/tree_each.rb +7 -7
- data/lib/puppet/functions/with.rb +4 -4
- data/lib/puppet/functions/yaml_data.rb +1 -1
- data/lib/puppet/indirector/node/exec.rb +1 -1
- data/lib/puppet/indirector/node/ldap.rb +1 -1
- data/lib/puppet/module_tool/applications/application.rb +1 -1
- data/lib/puppet/module_tool/skeleton/templates/generator/examples/init.pp.erb +1 -1
- data/lib/puppet/network/http/factory.rb +3 -0
- data/lib/puppet/parser/ast/pops_bridge.rb +18 -0
- data/lib/puppet/parser/compiler.rb +1 -1
- data/lib/puppet/parser/functions.rb +1 -1
- data/lib/puppet/parser/functions/assert_type.rb +3 -3
- data/lib/puppet/parser/functions/each.rb +2 -2
- data/lib/puppet/parser/functions/filter.rb +1 -1
- data/lib/puppet/parser/functions/hiera.rb +4 -4
- data/lib/puppet/parser/functions/hiera_array.rb +5 -5
- data/lib/puppet/parser/functions/hiera_hash.rb +6 -6
- data/lib/puppet/parser/functions/hiera_include.rb +10 -11
- data/lib/puppet/parser/functions/inline_template.rb +1 -1
- data/lib/puppet/parser/functions/lest.rb +1 -1
- data/lib/puppet/parser/functions/lookup.rb +1 -1
- data/lib/puppet/parser/functions/map.rb +1 -1
- data/lib/puppet/parser/functions/reduce.rb +1 -1
- data/lib/puppet/parser/functions/reverse_each.rb +1 -1
- data/lib/puppet/parser/functions/step.rb +1 -1
- data/lib/puppet/parser/functions/then.rb +1 -1
- data/lib/puppet/parser/functions/with.rb +4 -4
- data/lib/puppet/pops/types/types.rb +8 -4
- data/lib/puppet/provider/user/aix.rb +1 -1
- data/lib/puppet/reference/providers.rb +1 -1
- data/lib/puppet/reference/report.rb +1 -1
- data/lib/puppet/resource/capability_finder.rb +1 -1
- data/lib/puppet/resource/catalog.rb +2 -2
- data/lib/puppet/resource/type.rb +6 -2
- data/lib/puppet/settings/config_file.rb +1 -1
- data/lib/puppet/settings/environment_conf.rb +10 -1
- data/lib/puppet/ssl/certificate_authority.rb +2 -2
- data/lib/puppet/transaction/report.rb +1 -2
- data/lib/puppet/type.rb +12 -12
- data/lib/puppet/type/file/content.rb +15 -2
- data/lib/puppet/type/file/ensure.rb +1 -1
- data/lib/puppet/type/schedule.rb +1 -1
- data/lib/puppet/type/stage.rb +1 -1
- data/lib/puppet/version.rb +1 -1
- data/locales/ja/puppet.po +179 -148
- data/locales/puppet.pot +139 -115
- data/man/man5/puppet.conf.5 +16 -16
- data/man/man8/puppet-agent.8 +2 -2
- data/man/man8/puppet-apply.8 +2 -2
- data/man/man8/puppet-ca.8 +3 -3
- data/man/man8/puppet-catalog.8 +2 -2
- data/man/man8/puppet-cert.8 +2 -2
- data/man/man8/puppet-certificate.8 +3 -3
- data/man/man8/puppet-certificate_request.8 +2 -2
- data/man/man8/puppet-certificate_revocation_list.8 +2 -2
- data/man/man8/puppet-config.8 +3 -3
- data/man/man8/puppet-describe.8 +1 -1
- data/man/man8/puppet-device.8 +2 -2
- data/man/man8/puppet-doc.8 +1 -1
- data/man/man8/puppet-epp.8 +2 -2
- data/man/man8/puppet-facts.8 +2 -2
- data/man/man8/puppet-filebucket.8 +1 -1
- data/man/man8/puppet-generate.8 +2 -2
- data/man/man8/puppet-help.8 +2 -2
- data/man/man8/puppet-key.8 +2 -2
- data/man/man8/puppet-lookup.8 +2 -2
- data/man/man8/puppet-man.8 +2 -2
- data/man/man8/puppet-master.8 +2 -2
- data/man/man8/puppet-module.8 +4 -4
- data/man/man8/puppet-node.8 +2 -2
- data/man/man8/puppet-parser.8 +2 -2
- data/man/man8/puppet-plugin.8 +2 -2
- data/man/man8/puppet-report.8 +2 -2
- data/man/man8/puppet-resource.8 +2 -2
- data/man/man8/puppet-script.8 +2 -2
- data/man/man8/puppet-status.8 +3 -3
- data/man/man8/puppet.8 +2 -2
- data/spec/integration/type/file_spec.rb +30 -0
- data/spec/unit/defaults_spec.rb +14 -0
- data/spec/unit/environments_spec.rb +40 -0
- data/spec/unit/face/module/build_spec.rb +2 -2
- data/spec/unit/functions/match_spec.rb +18 -0
- data/spec/unit/functions/new_spec.rb +1 -0
- data/spec/unit/network/http/factory_spec.rb +35 -28
- data/spec/unit/resource/type_spec.rb +22 -6
- data/spec/unit/type/file/content_spec.rb +12 -0
- data/spec/unit/type/file/source_spec.rb +8 -2
- metadata +3628 -3640
@@ -7,7 +7,7 @@
|
|
7
7
|
# but puppet does not allow it. There is a ticket open for that (#5431)
|
8
8
|
# - AIX maximum password age is in WEEKs, not days
|
9
9
|
#
|
10
|
-
# See
|
10
|
+
# See https://puppet.com/docs/puppet/latest/provider_development.html
|
11
11
|
# for more information
|
12
12
|
#
|
13
13
|
# Author:: Hector Rivas Gandara <keymon@gmail.com>
|
@@ -90,7 +90,7 @@ providers = Puppet::Util::Reference.newreference :providers, :title => "Provider
|
|
90
90
|
|
91
91
|
ret << markdown_header(type.name.to_s + "_", 2)
|
92
92
|
|
93
|
-
ret << "[#{type.name}](https://
|
93
|
+
ret << "[#{type.name}](https://puppet.com/docs/puppet/latest/type.html##{type.name})\n\n"
|
94
94
|
ret << option("Default provider", default)
|
95
95
|
ret << doctable(headers, table_data)
|
96
96
|
|
@@ -14,7 +14,7 @@ Puppet master and Puppet apply will handle every report with a set of report
|
|
14
14
|
processors, configurable with the `reports` setting in puppet.conf. This page
|
15
15
|
documents the built-in report processors.
|
16
16
|
|
17
|
-
See [About Reporting](https://
|
17
|
+
See [About Reporting](https://puppet.com/docs/puppet/latest/reporting_about.html)
|
18
18
|
for more details.
|
19
19
|
|
20
20
|
"
|
@@ -96,7 +96,7 @@ module Puppet::Resource::CapabilityFinder
|
|
96
96
|
end
|
97
97
|
|
98
98
|
# The format of the response body is documented at
|
99
|
-
# https://
|
99
|
+
# https://puppet.com/docs/puppetdb/3.0/api/query/v4/resources.html#response-format
|
100
100
|
unless result.is_a?(Array)
|
101
101
|
#TRANSLATOR PuppetDB is a product name and should not be translated
|
102
102
|
raise Puppet::DevError, _("Unexpected response from PuppetDB when looking up %{capability}: expected an Array but got %{result}") %
|
@@ -542,7 +542,7 @@ class Puppet::Resource::Catalog < Puppet::Graph::SimpleGraph
|
|
542
542
|
# Store the classes in the classfile.
|
543
543
|
def write_class_file
|
544
544
|
# classfile paths may contain UTF-8
|
545
|
-
# https://
|
545
|
+
# https://puppet.com/docs/puppet/latest/configuration.html#classfile
|
546
546
|
classfile = Puppet.settings.setting(:classfile)
|
547
547
|
Puppet::FileSystem.open(classfile.value, classfile.mode.to_i(8), "w:UTF-8") do |f|
|
548
548
|
f.puts classes.join("\n")
|
@@ -554,7 +554,7 @@ class Puppet::Resource::Catalog < Puppet::Graph::SimpleGraph
|
|
554
554
|
# Store the list of resources we manage
|
555
555
|
def write_resource_file
|
556
556
|
# resourcefile contains resources that may be UTF-8 names
|
557
|
-
# https://
|
557
|
+
# https://puppet.com/docs/puppet/latest/configuration.html#resourcefile
|
558
558
|
resourcefile = Puppet.settings.setting(:resourcefile)
|
559
559
|
Puppet::FileSystem.open(resourcefile.value, resourcefile.mode.to_i(8), "w:UTF-8") do |f|
|
560
560
|
to_print = resources.map do |resource|
|
data/lib/puppet/resource/type.rb
CHANGED
@@ -189,8 +189,12 @@ class Puppet::Resource::Type
|
|
189
189
|
def merge(other)
|
190
190
|
fail _("%{name} is not a class; cannot add code to it") % { name: name } unless type == :hostclass
|
191
191
|
fail _("%{name} is not a class; cannot add code from it") % { name: other.name } unless other.type == :hostclass
|
192
|
-
|
193
|
-
|
192
|
+
if name == "" && Puppet.settings[:freeze_main]
|
193
|
+
# It is ok to merge definitions into main even if freeze is on (definitions are nodes, classes, defines, functions, and types)
|
194
|
+
unless other.code.is_definitions_only?
|
195
|
+
fail _("Cannot have code outside of a class/node/define because 'freeze_main' is enabled")
|
196
|
+
end
|
197
|
+
end
|
194
198
|
if parent and other.parent and parent != other.parent
|
195
199
|
fail _("Cannot merge classes with different parent classes (%{name} => %{parent} vs. %{other_name} => %{other_parent})") % { name: name, parent: parent, other_name: other.name, other_parent: other.parent }
|
196
200
|
end
|
@@ -90,7 +90,7 @@ private
|
|
90
90
|
message += ' ' + _("The only valid puppet.conf sections are: [%{allowed_sections_list}].") %
|
91
91
|
{ allowed_sections_list: allowed_section_names.join(", ") }
|
92
92
|
message += ' ' + _("Please use the directory environments feature to specify environments.")
|
93
|
-
message += ' ' + _("(See https://
|
93
|
+
message += ' ' + _("(See https://puppet.com/docs/puppet/latest/environments_about.html)")
|
94
94
|
raise(Puppet::Error, message)
|
95
95
|
end
|
96
96
|
section.name
|
@@ -101,7 +101,7 @@ class Puppet::Settings::EnvironmentConf
|
|
101
101
|
path = modulepath.kind_of?(String) ?
|
102
102
|
modulepath.split(File::PATH_SEPARATOR) :
|
103
103
|
modulepath
|
104
|
-
path.map { |p| absolute(p) }.join(File::PATH_SEPARATOR)
|
104
|
+
path.map { |p| expand_glob(absolute(p)) }.flatten.join(File::PATH_SEPARATOR)
|
105
105
|
end
|
106
106
|
end
|
107
107
|
|
@@ -166,6 +166,15 @@ class Puppet::Settings::EnvironmentConf
|
|
166
166
|
yield value
|
167
167
|
end
|
168
168
|
|
169
|
+
def expand_glob(path)
|
170
|
+
return nil if path.nil?
|
171
|
+
if path =~ /[*?\[\{]/
|
172
|
+
Dir.glob(path)
|
173
|
+
else
|
174
|
+
path
|
175
|
+
end
|
176
|
+
end
|
177
|
+
|
169
178
|
def absolute(path)
|
170
179
|
return nil if path.nil?
|
171
180
|
if path =~ /^\$/
|
@@ -209,7 +209,7 @@ class Puppet::SSL::CertificateAuthority
|
|
209
209
|
#
|
210
210
|
# @deprecated Use Puppet::SSL::CertificateAuthority#list or Puppet Server Certificate status API
|
211
211
|
def list_certificates(name='*')
|
212
|
-
Puppet.deprecation_warning(_("Puppet::SSL::CertificateAuthority#list_certificates is deprecated. Please use Puppet::SSL::CertificateAuthority#list or the certificate status API to query certificate information. See https://
|
212
|
+
Puppet.deprecation_warning(_("Puppet::SSL::CertificateAuthority#list_certificates is deprecated. Please use Puppet::SSL::CertificateAuthority#list or the certificate status API to query certificate information. See https://puppet.com/docs/puppet/latest/http_api/http_certificate_status.html"))
|
213
213
|
Puppet::SSL::Certificate.indirection.search(name)
|
214
214
|
end
|
215
215
|
|
@@ -477,7 +477,7 @@ class Puppet::SSL::CertificateAuthority
|
|
477
477
|
#
|
478
478
|
# @deprecated use Puppet::SSL::CertificateAuthority#verify or Puppet Server certificate status API
|
479
479
|
def certificate_is_alive?(cert)
|
480
|
-
Puppet.deprecation_warning(_("Puppet::SSL::CertificateAuthority#certificate_is_alive? is deprecated. Please use Puppet::SSL::CertificateAuthority#verify or the certificate status API to query certificate information. See https://
|
480
|
+
Puppet.deprecation_warning(_("Puppet::SSL::CertificateAuthority#certificate_is_alive? is deprecated. Please use Puppet::SSL::CertificateAuthority#verify or the certificate status API to query certificate information. See https://puppet.com/docs/puppet/latest/http_api/http_certificate_status.html"))
|
481
481
|
x509_store(:cache => true).verify(cert.content)
|
482
482
|
end
|
483
483
|
|
@@ -459,8 +459,7 @@ class Puppet::Transaction::Report
|
|
459
459
|
def calculate_time_metrics
|
460
460
|
metrics = Hash.new(0)
|
461
461
|
resource_statuses.each do |name, status|
|
462
|
-
|
463
|
-
metrics[type.to_s.downcase] += status.evaluation_time if status.evaluation_time
|
462
|
+
metrics[status.resource_type.downcase] += status.evaluation_time if status.evaluation_time
|
464
463
|
end
|
465
464
|
|
466
465
|
@external_times.each do |name, value|
|
data/lib/puppet/type.rb
CHANGED
@@ -1252,7 +1252,7 @@ class Type
|
|
1252
1252
|
event _would_ have been sent.
|
1253
1253
|
|
1254
1254
|
**Important note:**
|
1255
|
-
[The `noop` setting](https://
|
1255
|
+
[The `noop` setting](https://puppet.com/docs/puppet/latest/configuration.html#noop)
|
1256
1256
|
allows you to globally enable or disable noop mode, but it will _not_ override
|
1257
1257
|
the `noop` metaparameter on individual resources. That is, the value of the
|
1258
1258
|
global `noop` setting will _only_ affect resources that do not have an explicit
|
@@ -1272,7 +1272,7 @@ class Type
|
|
1272
1272
|
The value of this metaparameter must be the `name` of a `schedule`
|
1273
1273
|
resource. This means you must declare a schedule resource, then
|
1274
1274
|
refer to it by name; see
|
1275
|
-
[the docs for the `schedule` type](https://
|
1275
|
+
[the docs for the `schedule` type](https://puppet.com/docs/puppet/latest/type.html#schedule)
|
1276
1276
|
for more info.
|
1277
1277
|
|
1278
1278
|
schedule { 'everyday':
|
@@ -1447,7 +1447,7 @@ class Type
|
|
1447
1447
|
}
|
1448
1448
|
|
1449
1449
|
Tags are useful for things like applying a subset of a host's configuration
|
1450
|
-
with [the `tags` setting](/puppet/latest/
|
1450
|
+
with [the `tags` setting](/puppet/latest/configuration.html#tags)
|
1451
1451
|
(e.g. `puppet agent --test --tags bootstrap`)."
|
1452
1452
|
|
1453
1453
|
munge do |tags|
|
@@ -1578,7 +1578,7 @@ class Type
|
|
1578
1578
|
|
1579
1579
|
newmetaparam(:require, :parent => RelationshipMetaparam, :attributes => {:direction => :in, :events => :NONE}) do
|
1580
1580
|
desc "One or more resources that this resource depends on, expressed as
|
1581
|
-
[resource references](https://
|
1581
|
+
[resource references](https://puppet.com/docs/puppet/latest/lang_data_resource_reference.html).
|
1582
1582
|
Multiple resources can be specified as an array of references. When this
|
1583
1583
|
attribute is present:
|
1584
1584
|
|
@@ -1587,12 +1587,12 @@ class Type
|
|
1587
1587
|
This is one of the four relationship metaparameters, along with
|
1588
1588
|
`before`, `notify`, and `subscribe`. For more context, including the
|
1589
1589
|
alternate chaining arrow (`->` and `~>`) syntax, see
|
1590
|
-
[the language page on relationships](https://
|
1590
|
+
[the language page on relationships](https://puppet.com/docs/puppet/latest/lang_relationships.html)."
|
1591
1591
|
end
|
1592
1592
|
|
1593
1593
|
newmetaparam(:subscribe, :parent => RelationshipMetaparam, :attributes => {:direction => :in, :events => :ALL_EVENTS, :callback => :refresh}) do
|
1594
1594
|
desc "One or more resources that this resource depends on, expressed as
|
1595
|
-
[resource references](https://
|
1595
|
+
[resource references](https://puppet.com/docs/puppet/latest/lang_data_resource_reference.html).
|
1596
1596
|
Multiple resources can be specified as an array of references. When this
|
1597
1597
|
attribute is present:
|
1598
1598
|
|
@@ -1605,12 +1605,12 @@ class Type
|
|
1605
1605
|
This is one of the four relationship metaparameters, along with
|
1606
1606
|
`before`, `require`, and `notify`. For more context, including the
|
1607
1607
|
alternate chaining arrow (`->` and `~>`) syntax, see
|
1608
|
-
[the language page on relationships](https://
|
1608
|
+
[the language page on relationships](https://puppet.com/docs/puppet/latest/lang_relationships.html)."
|
1609
1609
|
end
|
1610
1610
|
|
1611
1611
|
newmetaparam(:before, :parent => RelationshipMetaparam, :attributes => {:direction => :out, :events => :NONE}) do
|
1612
1612
|
desc "One or more resources that depend on this resource, expressed as
|
1613
|
-
[resource references](https://
|
1613
|
+
[resource references](https://puppet.com/docs/puppet/latest/lang_data_resource_reference.html).
|
1614
1614
|
Multiple resources can be specified as an array of references. When this
|
1615
1615
|
attribute is present:
|
1616
1616
|
|
@@ -1619,12 +1619,12 @@ class Type
|
|
1619
1619
|
This is one of the four relationship metaparameters, along with
|
1620
1620
|
`require`, `notify`, and `subscribe`. For more context, including the
|
1621
1621
|
alternate chaining arrow (`->` and `~>`) syntax, see
|
1622
|
-
[the language page on relationships](https://
|
1622
|
+
[the language page on relationships](https://puppet.com/docs/puppet/latest/lang_relationships.html)."
|
1623
1623
|
end
|
1624
1624
|
|
1625
1625
|
newmetaparam(:notify, :parent => RelationshipMetaparam, :attributes => {:direction => :out, :events => :ALL_EVENTS, :callback => :refresh}) do
|
1626
1626
|
desc "One or more resources that depend on this resource, expressed as
|
1627
|
-
[resource references](https://
|
1627
|
+
[resource references](https://puppet.com/docs/puppet/latest/lang_data_resource_reference.html).
|
1628
1628
|
Multiple resources can be specified as an array of references. When this
|
1629
1629
|
attribute is present:
|
1630
1630
|
|
@@ -1637,7 +1637,7 @@ class Type
|
|
1637
1637
|
This is one of the four relationship metaparameters, along with
|
1638
1638
|
`before`, `require`, and `subscribe`. For more context, including the
|
1639
1639
|
alternate chaining arrow (`->` and `~>`) syntax, see
|
1640
|
-
[the language page on relationships](https://
|
1640
|
+
[the language page on relationships](https://puppet.com/docs/puppet/latest/lang_relationships.html)."
|
1641
1641
|
end
|
1642
1642
|
|
1643
1643
|
newmetaparam(:stage) do
|
@@ -1650,7 +1650,7 @@ class Type
|
|
1650
1650
|
By default, all classes are declared in the `main` stage. To assign a class
|
1651
1651
|
to a different stage, you must:
|
1652
1652
|
|
1653
|
-
* Declare the new stage as a [`stage` resource](https://
|
1653
|
+
* Declare the new stage as a [`stage` resource](https://puppet.com/docs/puppet/latest/type.html#stage).
|
1654
1654
|
* Declare an order relationship between the new stage and the `main` stage.
|
1655
1655
|
* Use the resource-like syntax to declare the class, and set the `stage`
|
1656
1656
|
metaparameter to the name of the desired stage.
|
@@ -35,8 +35,8 @@ module Puppet
|
|
35
35
|
}
|
36
36
|
|
37
37
|
...but for larger files, this attribute is more useful when combined with the
|
38
|
-
[template](https://
|
39
|
-
or [file](https://
|
38
|
+
[template](https://puppet.com/docs/puppet/latest/function.html#template)
|
39
|
+
or [file](https://puppet.com/docs/puppet/latest/function.html#file)
|
40
40
|
function.
|
41
41
|
EOT
|
42
42
|
|
@@ -48,6 +48,19 @@ module Puppet
|
|
48
48
|
elsif value.is_a?(String) && checksum?(value)
|
49
49
|
# XXX This is potentially dangerous because it means users can't write a file whose
|
50
50
|
# entire contents are a plain checksum unless it is a Binary content.
|
51
|
+
Puppet.puppet_deprecation_warning([
|
52
|
+
#TRANSLATORS "content" is an attribute and should not be translated
|
53
|
+
_('Using a checksum in a file\'s "content" property is deprecated.'),
|
54
|
+
#TRANSLATORS "filebucket" is a resource type and should not be translated. The quoted occurrence of "content" is an attribute and should not be translated.
|
55
|
+
_('The ability to use a checksum to retrieve content from the filebucket using the "content" property will be removed in a future release.'),
|
56
|
+
#TRANSLATORS "content" is an attribute and should not be translated.
|
57
|
+
_('The literal value of the "content" property will be written to the file.'),
|
58
|
+
#TRANSLATORS "static catalogs" should not be translated.
|
59
|
+
_('The checksum retrieval functionality is being replaced by the use of static catalogs.'),
|
60
|
+
_('See https://puppet.com/docs/puppet/latest/static_catalogs.html for more information.')].join(" "),
|
61
|
+
:file => @resource.file,
|
62
|
+
:line => @resource.line
|
63
|
+
) if !@actual_content && !resource.parameter(:source)
|
51
64
|
value
|
52
65
|
else
|
53
66
|
@actual_content = value.is_a?(Puppet::Pops::Types::PBinaryType::Binary) ? value.binary_buffer : value
|
@@ -47,7 +47,7 @@ module Puppet
|
|
47
47
|
|
48
48
|
However, we recommend using `link` and `target` explicitly, since this
|
49
49
|
behavior can be harder to read and is
|
50
|
-
[deprecated](https://docs.
|
50
|
+
[deprecated](https://docs.puppet.com/puppet/4.3/deprecated_language.html)
|
51
51
|
as of Puppet 4.3.0.
|
52
52
|
EOT
|
53
53
|
|
data/lib/puppet/type/schedule.rb
CHANGED
@@ -2,7 +2,7 @@ module Puppet
|
|
2
2
|
Type.newtype(:schedule) do
|
3
3
|
@doc = <<-'EOT'
|
4
4
|
Define schedules for Puppet. Resources can be limited to a schedule by using the
|
5
|
-
[`schedule`](https://
|
5
|
+
[`schedule`](https://puppet.com/docs/puppet/latest/metaparameter.html#schedule)
|
6
6
|
metaparameter.
|
7
7
|
|
8
8
|
Currently, **schedules can only be used to stop a resource from being
|
data/lib/puppet/type/stage.rb
CHANGED
@@ -2,7 +2,7 @@ Puppet::Type.newtype(:stage) do
|
|
2
2
|
desc "A resource type for creating new run stages. Once a stage is available,
|
3
3
|
classes can be assigned to it by declaring them with the resource-like syntax
|
4
4
|
and using
|
5
|
-
[the `stage` metaparameter](https://
|
5
|
+
[the `stage` metaparameter](https://puppet.com/docs/puppet/latest/metaparameter.html#stage).
|
6
6
|
|
7
7
|
Note that new stages are not useful unless you also declare their order
|
8
8
|
in relation to the default `main` stage.
|
data/lib/puppet/version.rb
CHANGED
data/locales/ja/puppet.po
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.1-46-g2800397\n"
|
10
10
|
"\n"
|
11
11
|
"Report-Msgid-Bugs-To: https://tickets.puppetlabs.com\n"
|
12
|
-
"POT-Creation-Date: 2018-
|
13
|
-
"PO-Revision-Date: 2018-
|
12
|
+
"POT-Creation-Date: 2018-05-18 20:31+0000\n"
|
13
|
+
"PO-Revision-Date: 2018-05-18 20:31+0000\n"
|
14
14
|
"Last-Translator: James Shen <James.Shen@puppet.com>, 2018\n"
|
15
15
|
"Language-Team: Japanese (Japan) (https://www.transifex.com/puppet/teams/29089/ja_JP/)\n"
|
16
16
|
"MIME-Version: 1.0\n"
|
@@ -26,10 +26,10 @@ msgstr "関数'%{class_name}'は廃止予定です。'lookup'が代わりに使
|
|
26
26
|
|
27
27
|
#: ../lib/hiera/puppet_function.rb:65
|
28
28
|
msgid ""
|
29
|
-
"See "
|
30
|
-
"https://docs.puppet.com/puppet/%{minor_version}/reference/deprecated_language.html"
|
29
|
+
"See https://puppet.com/docs/puppet/%{minor_version}/deprecated_language.html"
|
31
30
|
msgstr ""
|
32
|
-
"詳細については、https://
|
31
|
+
"詳細については、https://puppet.com/docs/puppet/ "
|
32
|
+
"{minor_version}/deprecated_language.htmlを参照してください。"
|
33
33
|
|
34
34
|
#: ../lib/hiera/scope.rb:43 ../lib/puppet/parser/scope.rb:537
|
35
35
|
msgid "Variable: %{name}"
|
@@ -62,10 +62,10 @@ msgstr "Puppet %{version}ではruby 1.9.3以上が必要です。"
|
|
62
62
|
msgid ""
|
63
63
|
"Support for ruby version %{version} is deprecated and will be removed in a "
|
64
64
|
"future release. See "
|
65
|
-
"https://
|
66
|
-
"
|
65
|
+
"https://puppet.com/docs/puppet/latest/system_requirements.html for a list of"
|
66
|
+
" supported ruby versions."
|
67
67
|
msgstr ""
|
68
|
-
"rubyバージョン%{version}のサポートは廃止予定であり、今後のリリースで廃止されます。サポートされているrubyのバージョンについては、https://
|
68
|
+
"rubyバージョン%{version}のサポートは廃止予定であり、今後のリリースで廃止されます。サポートされているrubyのバージョンについては、https://puppet.com/docs/puppet/latest/system_requirements.htmlを参照してください。"
|
69
69
|
|
70
70
|
#: ../lib/puppet.rb:177
|
71
71
|
msgid ""
|
@@ -586,15 +586,15 @@ msgstr "環境'%{catalog_env}'からキャッシュしたカタログを使用
|
|
586
586
|
msgid "Could not retrieve catalog; skipping run"
|
587
587
|
msgstr "カタログを取得できませんでした; 実行をスキップしています。"
|
588
588
|
|
589
|
-
#: ../lib/puppet/configurer.rb:
|
589
|
+
#: ../lib/puppet/configurer.rb:184
|
590
590
|
msgid "Applied catalog in %{seconds} seconds"
|
591
591
|
msgstr "%{seconds}秒でカタログを適用しました。"
|
592
592
|
|
593
|
-
#: ../lib/puppet/configurer.rb:
|
593
|
+
#: ../lib/puppet/configurer.rb:225
|
594
594
|
msgid "Could not select a functional puppet master"
|
595
595
|
msgstr "機能するpuppet masterを選択できませんでした。"
|
596
596
|
|
597
|
-
#: ../lib/puppet/configurer.rb:
|
597
|
+
#: ../lib/puppet/configurer.rb:262
|
598
598
|
msgid ""
|
599
599
|
"Local environment: '%{local_env}' doesn't match the environment of the "
|
600
600
|
"cached catalog '%{catalog_env}', switching agent to '%{catalog_env}'."
|
@@ -602,7 +602,7 @@ msgstr ""
|
|
602
602
|
"ローカル環境: "
|
603
603
|
"'%{local_env}'がキャッシュしたカタログ'%{catalog_env}'の環境と一致せず、agentを'%{catalog_env}'に切り替えています。"
|
604
604
|
|
605
|
-
#: ../lib/puppet/configurer.rb:
|
605
|
+
#: ../lib/puppet/configurer.rb:307
|
606
606
|
msgid ""
|
607
607
|
"Local environment: '%{local_env}' doesn't match server specified node "
|
608
608
|
"environment '%{node_env}', switching agent to '%{node_env}'."
|
@@ -610,15 +610,15 @@ msgstr ""
|
|
610
610
|
"ローカル環境: "
|
611
611
|
"'%{local_env}'がserver指定のノード環境'%{node_env}'と一致せず、agentを'%{node_env}'に切り替えています。"
|
612
612
|
|
613
|
-
#: ../lib/puppet/configurer.rb:
|
613
|
+
#: ../lib/puppet/configurer.rb:312
|
614
614
|
msgid "Using configured environment '%{env}'"
|
615
615
|
msgstr "設定された環境'%{env}'を使用しています。"
|
616
616
|
|
617
|
-
#: ../lib/puppet/configurer.rb:
|
617
|
+
#: ../lib/puppet/configurer.rb:316
|
618
618
|
msgid "Unable to fetch my node definition, but the agent run will continue:"
|
619
619
|
msgstr "ノード定義を取得できませんが、agent実行を続行します:"
|
620
620
|
|
621
|
-
#: ../lib/puppet/configurer.rb:
|
621
|
+
#: ../lib/puppet/configurer.rb:340
|
622
622
|
msgid ""
|
623
623
|
"Not using catalog because its environment '%{catalog_env}' does not match "
|
624
624
|
"agent specified environment '%{local_env}' and strict_environment_mode is "
|
@@ -626,12 +626,12 @@ msgid ""
|
|
626
626
|
msgstr ""
|
627
627
|
"環境'%{catalog_env}'がagent指定の環境'%{local_env}'と一致しないため、カタログを使用せずにstrict_environment_modeを設定しています。"
|
628
628
|
|
629
|
-
#: ../lib/puppet/configurer.rb:
|
629
|
+
#: ../lib/puppet/configurer.rb:351
|
630
630
|
msgid ""
|
631
631
|
"Catalog environment didn't stabilize after %{tries} fetches, aborting run"
|
632
632
|
msgstr "%{tries}取得後にカタログ環境が安定しなかったため、実行を中止しています。"
|
633
633
|
|
634
|
-
#: ../lib/puppet/configurer.rb:
|
634
|
+
#: ../lib/puppet/configurer.rb:353
|
635
635
|
msgid ""
|
636
636
|
"Local environment: '%{local_env}' doesn't match server specified environment"
|
637
637
|
" '%{catalog_env}', restarting agent run with environment '%{catalog_env}'"
|
@@ -639,27 +639,27 @@ msgstr ""
|
|
639
639
|
"ローカル環境: "
|
640
640
|
"'%{local_env}'がserver指定の環境'%{catalog_env}'と一致しないため、環境'%{catalog_env}'でagent実行を再開しています。"
|
641
641
|
|
642
|
-
#: ../lib/puppet/configurer.rb:
|
642
|
+
#: ../lib/puppet/configurer.rb:372
|
643
643
|
msgid "Failed to apply catalog: %{detail}"
|
644
644
|
msgstr "カタログ適用に失敗しました: %{detail}"
|
645
645
|
|
646
|
-
#: ../lib/puppet/configurer.rb:
|
646
|
+
#: ../lib/puppet/configurer.rb:421 ../lib/puppet/face/report.rb:47
|
647
647
|
msgid "Could not send report: %{detail}"
|
648
648
|
msgstr "レポートを送信できませんでした: %{detail}"
|
649
649
|
|
650
|
-
#: ../lib/puppet/configurer.rb:
|
650
|
+
#: ../lib/puppet/configurer.rb:430
|
651
651
|
msgid "Could not save last run local report: %{detail}"
|
652
652
|
msgstr "最後の実行のローカルレポートを保存できませんでした: %{detail}"
|
653
653
|
|
654
|
-
#: ../lib/puppet/configurer.rb:
|
654
|
+
#: ../lib/puppet/configurer.rb:442
|
655
655
|
msgid "Could not run command from %{setting}: %{detail}"
|
656
656
|
msgstr "%{setting}からコマンドを実行できませんでした: %{detail}"
|
657
657
|
|
658
|
-
#: ../lib/puppet/configurer.rb:
|
658
|
+
#: ../lib/puppet/configurer.rb:460
|
659
659
|
msgid "Could not retrieve catalog from cache: %{detail}"
|
660
660
|
msgstr "キャッシュからカタログを取得できませんでした: %{detail}"
|
661
661
|
|
662
|
-
#: ../lib/puppet/configurer.rb:
|
662
|
+
#: ../lib/puppet/configurer.rb:480
|
663
663
|
msgid "Could not retrieve catalog from remote server: %{detail}"
|
664
664
|
msgstr "リモートserverからカタログを取得できませんでした: %{detail}"
|
665
665
|
|
@@ -1022,44 +1022,44 @@ msgstr "(all | <setting> [<setting> ...]"
|
|
1022
1022
|
msgid "New environment loaders generated from the requested section."
|
1023
1023
|
msgstr "リクエストされたセクションから生成された新規環境ローダ"
|
1024
1024
|
|
1025
|
-
#: ../lib/puppet/face/config.rb:
|
1025
|
+
#: ../lib/puppet/face/config.rb:137
|
1026
1026
|
msgid "No section specified; defaulting to '%{section_name}'."
|
1027
1027
|
msgstr "セクションが指定されていません。デフォルト値は'%{section_name}'。"
|
1028
1028
|
|
1029
1029
|
#. TRANSLATORS '--section' is a command line option and should not be
|
1030
1030
|
#. translated
|
1031
|
-
#: ../lib/puppet/face/config.rb:
|
1031
|
+
#: ../lib/puppet/face/config.rb:140
|
1032
1032
|
msgid "Set the config section by using the `--section` flag."
|
1033
1033
|
msgstr "`--section`フラグを使用し、configセクションを設定します。"
|
1034
1034
|
|
1035
1035
|
#. TRANSLATORS `puppet config --section user print foo` is a command line
|
1036
1036
|
#. example and should not be translated
|
1037
|
-
#: ../lib/puppet/face/config.rb:
|
1037
|
+
#: ../lib/puppet/face/config.rb:142
|
1038
1038
|
msgid "For example, `puppet config --section user print foo`."
|
1039
1039
|
msgstr "例えば、`puppet config --section user print foo`などです。"
|
1040
1040
|
|
1041
|
-
#: ../lib/puppet/face/config.rb:
|
1041
|
+
#: ../lib/puppet/face/config.rb:143
|
1042
1042
|
msgid ""
|
1043
1043
|
"For more information, see "
|
1044
1044
|
"https://puppet.com/docs/puppet/latest/configuration.html"
|
1045
1045
|
msgstr ""
|
1046
1046
|
"詳細については、https://puppet.com/docs/puppet/latest/configuration.htmlを参照してください。"
|
1047
1047
|
|
1048
|
-
#: ../lib/puppet/face/config.rb:
|
1048
|
+
#: ../lib/puppet/face/config.rb:150
|
1049
1049
|
msgid ""
|
1050
1050
|
"Resolving settings from section '%{section_name}' in environment "
|
1051
1051
|
"'%{environment_name}'"
|
1052
1052
|
msgstr "環境'%{environment_name}'でセクション'%{section_name}'から設定を解決しています"
|
1053
1053
|
|
1054
|
-
#: ../lib/puppet/face/config.rb:
|
1054
|
+
#: ../lib/puppet/face/config.rb:155
|
1055
1055
|
msgid "Set Puppet's settings."
|
1056
1056
|
msgstr "Puppetを設定。"
|
1057
1057
|
|
1058
|
-
#: ../lib/puppet/face/config.rb:
|
1058
|
+
#: ../lib/puppet/face/config.rb:156
|
1059
1059
|
msgid "[setting_name] [setting_value]"
|
1060
1060
|
msgstr "[setting_name] [setting_value]"
|
1061
1061
|
|
1062
|
-
#: ../lib/puppet/face/config.rb:
|
1062
|
+
#: ../lib/puppet/face/config.rb:184
|
1063
1063
|
msgid ""
|
1064
1064
|
"The environment should be set in either the `[user]`, `[agent]`, or `[master]`\n"
|
1065
1065
|
"section. Variables set in the `[agent]` section are used when running\n"
|
@@ -1077,20 +1077,20 @@ msgstr ""
|
|
1077
1077
|
" config --section user set environment "
|
1078
1078
|
"foo`などです。詳細については、https://puppet.com/docs/puppet/latest/configuration.html#environmentを参照してください。\n"
|
1079
1079
|
|
1080
|
-
#: ../lib/puppet/face/config.rb:
|
1080
|
+
#: ../lib/puppet/face/config.rb:212
|
1081
1081
|
msgid "Delete a Puppet setting."
|
1082
1082
|
msgstr "Puppet設定を削除。"
|
1083
1083
|
|
1084
|
-
#: ../lib/puppet/face/config.rb:
|
1084
|
+
#: ../lib/puppet/face/config.rb:213
|
1085
1085
|
msgid "(<setting>"
|
1086
1086
|
msgstr "(<setting>"
|
1087
1087
|
|
1088
1088
|
#. TRANSLATORS 'main' is a specific section name and should not be translated
|
1089
|
-
#: ../lib/puppet/face/config.rb:
|
1089
|
+
#: ../lib/puppet/face/config.rb:250
|
1090
1090
|
msgid "Deleted setting from '%{section_name}': '%{setting_string}'"
|
1091
1091
|
msgstr "'%{section_name}'から設定が削除されました: '%{setting_string}'"
|
1092
1092
|
|
1093
|
-
#: ../lib/puppet/face/config.rb:
|
1093
|
+
#: ../lib/puppet/face/config.rb:253
|
1094
1094
|
msgid ""
|
1095
1095
|
"No setting found in configuration file for section '%{section_name}' setting"
|
1096
1096
|
" name '%{name}'"
|
@@ -1098,7 +1098,7 @@ msgstr "セクション'%{section_name}'設定名'%{name}'の設定ファイル
|
|
1098
1098
|
|
1099
1099
|
#. TRANSLATORS the 'puppet.conf' is a specific file and should not be
|
1100
1100
|
#. translated
|
1101
|
-
#: ../lib/puppet/face/config.rb:
|
1101
|
+
#: ../lib/puppet/face/config.rb:260
|
1102
1102
|
msgid "The puppet.conf file does not exist %{puppet_conf}"
|
1103
1103
|
msgstr "puppet.confファイルが存在しません%{puppet_conf}"
|
1104
1104
|
|
@@ -1463,21 +1463,19 @@ msgstr "puppetモジュールビルドが受け取る引数は0または1のみ
|
|
1463
1463
|
#: ../lib/puppet/face/module/build.rb:47
|
1464
1464
|
msgid ""
|
1465
1465
|
"Unable to find metadata.json in module root %{pwd} or parent directories. "
|
1466
|
-
"See "
|
1467
|
-
"
|
1468
|
-
" for required file format."
|
1466
|
+
"See <https://puppet.com/docs/puppet/latest/modules_publishing.html> for "
|
1467
|
+
"required file format."
|
1469
1468
|
msgstr ""
|
1470
|
-
"モジュールルート%{pwd}または親ディレクトリにmetadata.jsonが見つかりません。必要なファイルフォーマットについては、<https://
|
1469
|
+
"モジュールルート%{pwd}または親ディレクトリにmetadata.jsonが見つかりません。必要なファイルフォーマットについては、<https://puppet.com/docs/puppet/latest/modules_publishing.html>を参照してください。"
|
1471
1470
|
|
1472
1471
|
#: ../lib/puppet/face/module/build.rb:51
|
1473
1472
|
msgid ""
|
1474
1473
|
"Unable to find metadata.json in module root %{module_path} or parent "
|
1475
1474
|
"directories. See "
|
1476
|
-
"<https://
|
1477
|
-
"
|
1475
|
+
"<https://puppet.com/docs/puppet/latest/modules_publishing.html> for required"
|
1476
|
+
" file format."
|
1478
1477
|
msgstr ""
|
1479
|
-
"モジュールルート%{
|
1480
|
-
"<https://docs.puppetlabs.com/puppet/latest/reference/modules_publishing.html>を参照してください。"
|
1478
|
+
"モジュールルート%{pwd}または親ディレクトリにmetadata.jsonが見つかりません。必要なファイルフォーマットについては、<https://puppet.com/docs/puppet/latest/modules_publishing.html>を参照してください。"
|
1481
1479
|
|
1482
1480
|
#: ../lib/puppet/face/module/build.rb:61
|
1483
1481
|
msgid "Module built: %{path}"
|
@@ -2474,7 +2472,7 @@ msgid ""
|
|
2474
2472
|
"'%{klass}'"
|
2475
2473
|
msgstr "指定されたデータは%{walked_path}でコレクションを含まず、'%{klass}'が与えられています。"
|
2476
2474
|
|
2477
|
-
#: ../lib/puppet/functions/empty.rb:
|
2475
|
+
#: ../lib/puppet/functions/empty.rb:74
|
2478
2476
|
msgid "Calling function empty() with %{arg_type} value is deprecated."
|
2479
2477
|
msgstr "%{arg_type}値を用いた呼び出し関数empty()は廃止予定です。"
|
2480
2478
|
|
@@ -2513,7 +2511,7 @@ msgid ""
|
|
2513
2511
|
msgstr ""
|
2514
2512
|
"match()はTのパターンを求めています。Tは文字列、 正規表現、正規表現[r]、パターン[p]、配列[T]です。%{klass}が与えられています。"
|
2515
2513
|
|
2516
|
-
#: ../lib/puppet/functions/match.rb:
|
2514
|
+
#: ../lib/puppet/functions/match.rb:105
|
2517
2515
|
msgid "Given Regexp Type has no regular expression"
|
2518
2516
|
msgstr "指定された正規表現タイプには、正規表現はありません。"
|
2519
2517
|
|
@@ -2534,7 +2532,7 @@ msgstr ""
|
|
2534
2532
|
"slice():ブロックは1つのパラメータ、またはスライスサイズ(%{slice_size})と同じ数のパラメータを定義する必要があります。ブロックには%{serving_size};"
|
2535
2533
|
" %{parameter_names}があります。"
|
2536
2534
|
|
2537
|
-
#: ../lib/puppet/functions/strftime.rb:
|
2535
|
+
#: ../lib/puppet/functions/strftime.rb:207
|
2538
2536
|
msgid ""
|
2539
2537
|
"The argument signature (String format, [String timezone]) is deprecated for "
|
2540
2538
|
"#strftime. See #strftime documentation and Timespan type for more info"
|
@@ -3737,10 +3735,10 @@ msgstr "モジュールパスを確定できませんでした。"
|
|
3737
3735
|
#: ../lib/puppet/module_tool/applications/application.rb:43
|
3738
3736
|
msgid ""
|
3739
3737
|
"Unable to find metadata.json in module root at %{path} See "
|
3740
|
-
"https://
|
3741
|
-
"
|
3738
|
+
"https://puppet.com/docs/puppet/latest/modules_publishing.html for required "
|
3739
|
+
"file format."
|
3742
3740
|
msgstr ""
|
3743
|
-
"%{path}のモジュールルートにmetadata.jsonが見つかりません。必要なファイルフォーマットについては、https://
|
3741
|
+
"%{path}のモジュールルートにmetadata.jsonが見つかりません。必要なファイルフォーマットについては、https://puppet.com/docs/puppet/latest/modules_publishing.htmlを参照してください。"
|
3744
3742
|
|
3745
3743
|
#: ../lib/puppet/module_tool/applications/application.rb:53
|
3746
3744
|
msgid "Could not parse JSON %{metadata_path}"
|
@@ -4829,7 +4827,7 @@ msgstr ""
|
|
4829
4827
|
"ノード継承はPuppet 4.0.0ではサポートされていません。http://links.puppet.com/puppet-node-"
|
4830
4828
|
"inheritance-deprecationを参照してください。"
|
4831
4829
|
|
4832
|
-
#: ../lib/puppet/parser/ast/pops_bridge.rb:
|
4830
|
+
#: ../lib/puppet/parser/ast/pops_bridge.rb:194
|
4833
4831
|
msgid ""
|
4834
4832
|
"Instantiating Resource with type checked parameters - scope is missing, "
|
4835
4833
|
"skipping type checking."
|
@@ -4857,9 +4855,9 @@ msgstr "次の理由により、コンピレーションが停止しました: %
|
|
4857
4855
|
#: ../lib/puppet/parser/compiler.rb:30
|
4858
4856
|
msgid ""
|
4859
4857
|
"For more information, see "
|
4860
|
-
"https://
|
4858
|
+
"https://puppet.com/docs/puppet/latest/environments_about.html"
|
4861
4859
|
msgstr ""
|
4862
|
-
"詳細については、https://
|
4860
|
+
"詳細については、https://puppet.com/docs/puppet/latest/environments_about.htmlを参照してください。"
|
4863
4861
|
|
4864
4862
|
#. TRANSLATORS "stage" is a keyword in Puppet and should not be translated
|
4865
4863
|
#: ../lib/puppet/parser/compiler.rb:98
|
@@ -5016,7 +5014,7 @@ msgstr "'%{value}'は'%{hash}'と'%{resource}'によりエクスポートされ
|
|
5016
5014
|
msgid "'%{param}' is not a valid relationship to a capability"
|
5017
5015
|
msgstr "'%{param}'は機能の関連性として有効ではありません。"
|
5018
5016
|
|
5019
|
-
#: ../lib/puppet/parser/compiler/catalog_validator/relationship_validator.rb:
|
5017
|
+
#: ../lib/puppet/parser/compiler/catalog_validator/relationship_validator.rb:43
|
5020
5018
|
msgid "Could not find resource '%{res}' in parameter '%{param}'"
|
5021
5019
|
msgstr "パラメータ'%{param}'でリソース'%{res}'が見つかりませんでした。"
|
5022
5020
|
|
@@ -5579,7 +5577,7 @@ msgstr "配列またはハッシュからのみ削除できます。"
|
|
5579
5577
|
|
5580
5578
|
#: ../lib/puppet/pops/evaluator/external_syntax_support.rb:22
|
5581
5579
|
#: ../lib/puppet/pops/evaluator/runtime3_support.rb:23
|
5582
|
-
#: ../lib/puppet/pops/evaluator/runtime3_support.rb:
|
5580
|
+
#: ../lib/puppet/pops/evaluator/runtime3_support.rb:526
|
5583
5581
|
msgid ""
|
5584
5582
|
"Internal Error: Configuration of runtime error handling wrong: should have "
|
5585
5583
|
"raised exception"
|
@@ -5601,11 +5599,11 @@ msgstr "タイプ%{class_name}を分割できません。PClassTypeまたはPRes
|
|
5601
5599
|
msgid "Unknown resource type: '%{type}'"
|
5602
5600
|
msgstr "不明なリソースタイプ: '%{type}'"
|
5603
5601
|
|
5604
|
-
#: ../lib/puppet/pops/evaluator/runtime3_support.rb:
|
5602
|
+
#: ../lib/puppet/pops/evaluator/runtime3_support.rb:148
|
5605
5603
|
msgid "Internal error - attempt to create a local scope without a hash"
|
5606
5604
|
msgstr "内部エラー - ハッシュなしでローカル範囲を作成しようとしました。"
|
5607
5605
|
|
5608
|
-
#: ../lib/puppet/pops/evaluator/runtime3_support.rb:
|
5606
|
+
#: ../lib/puppet/pops/evaluator/runtime3_support.rb:286
|
5609
5607
|
msgid "Unknown function '%{name}'"
|
5610
5608
|
msgstr "不明な関数'%{name}'"
|
5611
5609
|
|
@@ -7309,70 +7307,70 @@ msgstr "パラメータ化されたタイプ<%{type}>ではありません。"
|
|
7309
7307
|
msgid "Unknown type <%{type}>"
|
7310
7308
|
msgstr "不明なタイプ<%{type}>"
|
7311
7309
|
|
7312
|
-
#: ../lib/puppet/pops/types/types.rb:
|
7310
|
+
#: ../lib/puppet/pops/types/types.rb:928
|
7313
7311
|
msgid "The string '%{str}' cannot be converted to Numeric"
|
7314
7312
|
msgstr "文字列'%{str}'を数字に変換できません。"
|
7315
7313
|
|
7316
|
-
#: ../lib/puppet/pops/types/types.rb:
|
7314
|
+
#: ../lib/puppet/pops/types/types.rb:931
|
7317
7315
|
msgid "Value of type %{type} cannot be converted to Numeric"
|
7318
7316
|
msgstr "タイプ%{type}の値を数字に変換できません。"
|
7319
7317
|
|
7320
|
-
#: ../lib/puppet/pops/types/types.rb:
|
7318
|
+
#: ../lib/puppet/pops/types/types.rb:1169
|
7321
7319
|
msgid "The string '%{str}' cannot be converted to Integer"
|
7322
7320
|
msgstr "文字列'%{str}'を整数に変換できません。"
|
7323
7321
|
|
7324
|
-
#: ../lib/puppet/pops/types/types.rb:
|
7322
|
+
#: ../lib/puppet/pops/types/types.rb:1172
|
7325
7323
|
msgid "Value of type %{type} cannot be converted to Integer"
|
7326
7324
|
msgstr "タイプ%{type}の値を整数に変換できません。"
|
7327
7325
|
|
7328
|
-
#: ../lib/puppet/pops/types/types.rb:
|
7326
|
+
#: ../lib/puppet/pops/types/types.rb:1180
|
7329
7327
|
msgid "Illegal radix: %{radix}, expected 2, 8, 10, 16, or default"
|
7330
7328
|
msgstr "不正な基数: %{radix}、想定される2、8、10、16、またはデフォルト"
|
7331
7329
|
|
7332
|
-
#: ../lib/puppet/pops/types/types.rb:
|
7330
|
+
#: ../lib/puppet/pops/types/types.rb:1293
|
7333
7331
|
msgid "The string '%{str}' cannot be converted to Float"
|
7334
7332
|
msgstr "文字列'%{str}'をフロートに変換できません。"
|
7335
7333
|
|
7336
|
-
#: ../lib/puppet/pops/types/types.rb:
|
7334
|
+
#: ../lib/puppet/pops/types/types.rb:1296
|
7337
7335
|
msgid "Value of type %{type} cannot be converted to Float"
|
7338
7336
|
msgstr "タイプ%{type}の値をフロートに変換できません。"
|
7339
7337
|
|
7340
7338
|
#. TRANSLATORS 'PStringType#initialize' is a class and method name and should
|
7341
7339
|
#. not be translated
|
7342
|
-
#: ../lib/puppet/pops/types/types.rb:
|
7340
|
+
#: ../lib/puppet/pops/types/types.rb:1513
|
7343
7341
|
msgid "Passing more than one argument to PStringType#initialize is deprecated"
|
7344
7342
|
msgstr "1つ以上の引数をPStringType#initializeに渡す機能は廃止予定です。"
|
7345
7343
|
|
7346
7344
|
#. TRANSLATORS 'PStringType#values' and '#value' are classes and method names
|
7347
7345
|
#. and should not be translated
|
7348
|
-
#: ../lib/puppet/pops/types/types.rb:
|
7346
|
+
#: ../lib/puppet/pops/types/types.rb:1567
|
7349
7347
|
msgid "Method PStringType#values is deprecated. Use #value instead"
|
7350
7348
|
msgstr "メソッドPStringType#valuesは廃止予定です。代わりに#valueを使用してください。"
|
7351
7349
|
|
7352
|
-
#: ../lib/puppet/pops/types/types.rb:
|
7350
|
+
#: ../lib/puppet/pops/types/types.rb:1915
|
7353
7351
|
msgid "The string '%{str}' cannot be converted to Boolean"
|
7354
7352
|
msgstr "文字列'%{str}'をブーリアンに変換できません。"
|
7355
7353
|
|
7356
|
-
#: ../lib/puppet/pops/types/types.rb:
|
7354
|
+
#: ../lib/puppet/pops/types/types.rb:1918
|
7357
7355
|
msgid "Value of type %{type} cannot be converted to Boolean"
|
7358
7356
|
msgstr "タイプ%{type}の値をブーリアンに変換できません。"
|
7359
7357
|
|
7360
|
-
#: ../lib/puppet/pops/types/types.rb:
|
7358
|
+
#: ../lib/puppet/pops/types/types.rb:2646
|
7361
7359
|
msgid "Value of type %{type} cannot be converted to Array"
|
7362
7360
|
msgstr "タイプ%{type}の値を配列に変換できません。"
|
7363
7361
|
|
7364
|
-
#: ../lib/puppet/pops/types/types.rb:
|
7362
|
+
#: ../lib/puppet/pops/types/types.rb:2716
|
7365
7363
|
msgid ""
|
7366
7364
|
"Puppet::Pops::Types::PHashType#element_type is deprecated, use #value_type "
|
7367
7365
|
"instead"
|
7368
7366
|
msgstr ""
|
7369
7367
|
"Puppet::Pops::Types::PHashType#element_typeは廃止予定です。代わりに#value_typeを使用してください。"
|
7370
7368
|
|
7371
|
-
#: ../lib/puppet/pops/types/types.rb:
|
7369
|
+
#: ../lib/puppet/pops/types/types.rb:2853
|
7372
7370
|
msgid "odd number of arguments for Hash"
|
7373
7371
|
msgstr "ハッシュに対する引数の奇数"
|
7374
7372
|
|
7375
|
-
#: ../lib/puppet/pops/types/types.rb:
|
7373
|
+
#: ../lib/puppet/pops/types/types.rb:2864
|
7376
7374
|
msgid "Value of type %{type} cannot be converted to Hash"
|
7377
7375
|
msgstr "タイプ%{type}の値をハッシュに変換できません。"
|
7378
7376
|
|
@@ -7529,85 +7527,85 @@ msgstr "適合しない["
|
|
7529
7527
|
msgid "missing path argument %{narg} for %{cmd}"
|
7530
7528
|
msgstr "%{cmd}のパス引数%{narg}がありません。"
|
7531
7529
|
|
7532
|
-
#: ../lib/puppet/provider/augeas/augeas.rb:
|
7530
|
+
#: ../lib/puppet/provider/augeas/augeas.rb:136
|
7533
7531
|
msgid "missing string argument %{narg} for %{cmd}"
|
7534
7532
|
msgstr "%{cmd}の文字列引数%{narg}がありません。"
|
7535
7533
|
|
7536
|
-
#: ../lib/puppet/provider/augeas/augeas.rb:
|
7534
|
+
#: ../lib/puppet/provider/augeas/augeas.rb:141
|
7537
7535
|
msgid "invalid comparator for command %{cmd}"
|
7538
7536
|
msgstr "コマンド%{cmd}のコンパレータが無効です。"
|
7539
7537
|
|
7540
|
-
#: ../lib/puppet/provider/augeas/augeas.rb:
|
7541
|
-
#: ../lib/puppet/provider/augeas/augeas.rb:
|
7542
|
-
#: ../lib/puppet/provider/augeas/augeas.rb:
|
7543
|
-
#: ../lib/puppet/provider/augeas/augeas.rb:
|
7538
|
+
#: ../lib/puppet/provider/augeas/augeas.rb:228
|
7539
|
+
#: ../lib/puppet/provider/augeas/augeas.rb:259
|
7540
|
+
#: ../lib/puppet/provider/augeas/augeas.rb:307
|
7541
|
+
#: ../lib/puppet/provider/augeas/augeas.rb:322
|
7544
7542
|
msgid "Invalid command: %{cmd}"
|
7545
7543
|
msgstr "無効なコマンド: %{cmd}"
|
7546
7544
|
|
7547
|
-
#: ../lib/puppet/provider/augeas/augeas.rb:
|
7545
|
+
#: ../lib/puppet/provider/augeas/augeas.rb:269
|
7548
7546
|
msgid "Error trying to get path '%{path}'"
|
7549
7547
|
msgstr "パス'%{path}'を取得しようとしてエラーが発生しました。"
|
7550
7548
|
|
7551
|
-
#: ../lib/puppet/provider/augeas/augeas.rb:
|
7552
|
-
#: ../lib/puppet/provider/augeas/augeas.rb:
|
7553
|
-
#: ../lib/puppet/provider/augeas/augeas.rb:
|
7554
|
-
#: ../lib/puppet/provider/augeas/augeas.rb:
|
7549
|
+
#: ../lib/puppet/provider/augeas/augeas.rb:287
|
7550
|
+
#: ../lib/puppet/provider/augeas/augeas.rb:295
|
7551
|
+
#: ../lib/puppet/provider/augeas/augeas.rb:343
|
7552
|
+
#: ../lib/puppet/provider/augeas/augeas.rb:351
|
7555
7553
|
msgid "Invalid array in command: %{cmd}"
|
7556
7554
|
msgstr "コマンド: %{cmd}に無効な配列"
|
7557
7555
|
|
7558
|
-
#: ../lib/puppet/provider/augeas/augeas.rb:
|
7556
|
+
#: ../lib/puppet/provider/augeas/augeas.rb:317
|
7559
7557
|
msgid "Error trying to match path '%{path}'"
|
7560
7558
|
msgstr "パス'%{path}'のマッチを行う際にエラーが発生しました。"
|
7561
7559
|
|
7562
|
-
#: ../lib/puppet/provider/augeas/augeas.rb:
|
7560
|
+
#: ../lib/puppet/provider/augeas/augeas.rb:387
|
7563
7561
|
msgid ""
|
7564
7562
|
"Loading failed for one or more files, see debug for /augeas//error output"
|
7565
7563
|
msgstr "1つ以上のファイルのローディングに失敗しました。/augeas//errorアウトプットについてはデバッグを参照してください。"
|
7566
7564
|
|
7567
|
-
#: ../lib/puppet/provider/augeas/augeas.rb:
|
7565
|
+
#: ../lib/puppet/provider/augeas/augeas.rb:429
|
7568
7566
|
msgid "Error sending command '%{command}' with params %{param}/%{message}"
|
7569
7567
|
msgstr "パラメータ%{param}/%{message}を持つコマンド'%{command}'の送信中にエラーが生じました。"
|
7570
7568
|
|
7571
|
-
#: ../lib/puppet/provider/augeas/augeas.rb:
|
7569
|
+
#: ../lib/puppet/provider/augeas/augeas.rb:444
|
7572
7570
|
msgid "Saving failed, see debug"
|
7573
7571
|
msgstr "保存に失敗しました。デバッグを参照してください。"
|
7574
7572
|
|
7575
|
-
#: ../lib/puppet/provider/augeas/augeas.rb:
|
7573
|
+
#: ../lib/puppet/provider/augeas/augeas.rb:486
|
7576
7574
|
msgid "Save failed, see debug"
|
7577
7575
|
msgstr "保存に失敗しました。デバッグを参照してください。"
|
7578
7576
|
|
7579
|
-
#: ../lib/puppet/provider/augeas/augeas.rb:
|
7577
|
+
#: ../lib/puppet/provider/augeas/augeas.rb:498
|
7580
7578
|
msgid "invalid command %{cmd}"
|
7581
7579
|
msgstr "無効なコマンド%{cmd}"
|
7582
7580
|
|
7583
|
-
#: ../lib/puppet/provider/augeas/augeas.rb:
|
7584
|
-
#: ../lib/puppet/provider/augeas/augeas.rb:504
|
7581
|
+
#: ../lib/puppet/provider/augeas/augeas.rb:506
|
7585
7582
|
#: ../lib/puppet/provider/augeas/augeas.rb:511
|
7586
|
-
#: ../lib/puppet/provider/augeas/augeas.rb:
|
7587
|
-
#: ../lib/puppet/provider/augeas/augeas.rb:
|
7588
|
-
#: ../lib/puppet/provider/augeas/augeas.rb:
|
7589
|
-
#: ../lib/puppet/provider/augeas/augeas.rb:
|
7590
|
-
#: ../lib/puppet/provider/augeas/augeas.rb:
|
7591
|
-
#: ../lib/puppet/provider/augeas/augeas.rb:
|
7592
|
-
#: ../lib/puppet/provider/augeas/augeas.rb:
|
7593
|
-
#: ../lib/puppet/provider/augeas/augeas.rb:
|
7583
|
+
#: ../lib/puppet/provider/augeas/augeas.rb:518
|
7584
|
+
#: ../lib/puppet/provider/augeas/augeas.rb:522
|
7585
|
+
#: ../lib/puppet/provider/augeas/augeas.rb:528
|
7586
|
+
#: ../lib/puppet/provider/augeas/augeas.rb:536
|
7587
|
+
#: ../lib/puppet/provider/augeas/augeas.rb:549
|
7588
|
+
#: ../lib/puppet/provider/augeas/augeas.rb:553
|
7589
|
+
#: ../lib/puppet/provider/augeas/augeas.rb:557
|
7590
|
+
#: ../lib/puppet/provider/augeas/augeas.rb:561
|
7591
|
+
#: ../lib/puppet/provider/augeas/augeas.rb:565
|
7594
7592
|
msgid "Error sending command '%{command}' with params %{params}"
|
7595
7593
|
msgstr "パラメータ%{params}を持つコマンド'%{command}'の送信中にエラーが生じました。"
|
7596
7594
|
|
7597
|
-
#: ../lib/puppet/provider/augeas/augeas.rb:
|
7598
|
-
#: ../lib/puppet/provider/augeas/augeas.rb:
|
7595
|
+
#: ../lib/puppet/provider/augeas/augeas.rb:513
|
7596
|
+
#: ../lib/puppet/provider/augeas/augeas.rb:530
|
7599
7597
|
msgid "command '%{command}' not supported in installed version of ruby-augeas"
|
7600
7598
|
msgstr "インストールされている ruby-augeasバージョンでは、コマンド'%{command}'はサポートされていません。"
|
7601
7599
|
|
7602
|
-
#: ../lib/puppet/provider/augeas/augeas.rb:
|
7600
|
+
#: ../lib/puppet/provider/augeas/augeas.rb:545
|
7603
7601
|
msgid "Invalid value '%{where}' for where param"
|
7604
7602
|
msgstr "パラメータの場所に関して無効な値'%{where}'"
|
7605
7603
|
|
7606
|
-
#: ../lib/puppet/provider/augeas/augeas.rb:
|
7604
|
+
#: ../lib/puppet/provider/augeas/augeas.rb:566
|
7607
7605
|
msgid "Command '%{command}' is not supported"
|
7608
7606
|
msgstr "コマンド'%{command}'はサポートされていません。"
|
7609
7607
|
|
7610
|
-
#: ../lib/puppet/provider/augeas/augeas.rb:
|
7608
|
+
#: ../lib/puppet/provider/augeas/augeas.rb:569
|
7611
7609
|
msgid "Error sending command '%{command}' with params %{params}/%{message}"
|
7612
7610
|
msgstr "パラメータ%{params}/%{message}を持つコマンド'%{command}'の送信中にエラーが生じました。"
|
7613
7611
|
|
@@ -8673,13 +8671,13 @@ msgstr "%{name}はクラスではありません; ここにコードを追加す
|
|
8673
8671
|
msgid "%{name} is not a class; cannot add code from it"
|
8674
8672
|
msgstr "%{name}はクラスではありません; ここからコードを追加することはできません。"
|
8675
8673
|
|
8676
|
-
#: ../lib/puppet/resource/type.rb:
|
8674
|
+
#: ../lib/puppet/resource/type.rb:195
|
8677
8675
|
msgid ""
|
8678
8676
|
"Cannot have code outside of a class/node/define because 'freeze_main' is "
|
8679
8677
|
"enabled"
|
8680
8678
|
msgstr "'freeze_main'が有効になっているため、クラス/ノード/定義以外のコードを含めることはできません。"
|
8681
8679
|
|
8682
|
-
#: ../lib/puppet/resource/type.rb:
|
8680
|
+
#: ../lib/puppet/resource/type.rb:199
|
8683
8681
|
msgid ""
|
8684
8682
|
"Cannot merge classes with different parent classes (%{name} => %{parent} vs."
|
8685
8683
|
" %{other_name} => %{other_parent})"
|
@@ -8687,44 +8685,44 @@ msgstr ""
|
|
8687
8685
|
"クラスを別の親クラスとマージすることはできません(%{name} => %{parent} vs. %{other_name} => "
|
8688
8686
|
"%{other_parent})。"
|
8689
8687
|
|
8690
|
-
#: ../lib/puppet/resource/type.rb:
|
8688
|
+
#: ../lib/puppet/resource/type.rb:230
|
8691
8689
|
msgid "Cannot create resources for defined resource types"
|
8692
8690
|
msgstr "定義されたリソース型に対してリソースを作成できません。"
|
8693
8691
|
|
8694
|
-
#: ../lib/puppet/resource/type.rb:
|
8692
|
+
#: ../lib/puppet/resource/type.rb:284
|
8695
8693
|
msgid ""
|
8696
8694
|
"The method Puppet::Resource::Type.assign_parameter_values is deprecated and "
|
8697
8695
|
"will be removed in the next major release of Puppet."
|
8698
8696
|
msgstr ""
|
8699
8697
|
"メソッドPuppet::Resource::Type.assign_parameter_valuesは廃止予定であり、Puppetの次期メジャーリリースで廃止されます。"
|
8700
8698
|
|
8701
|
-
#: ../lib/puppet/resource/type.rb:
|
8699
|
+
#: ../lib/puppet/resource/type.rb:300
|
8702
8700
|
msgid ""
|
8703
8701
|
"Could not find parent resource type '%{parent}' of type %{parent_type} in "
|
8704
8702
|
"%{env}"
|
8705
8703
|
msgstr "%{env}でタイプ%{parent_type}の親リソースタイプ'%{parent}'が見つかりませんでした。"
|
8706
8704
|
|
8707
|
-
#: ../lib/puppet/resource/type.rb:
|
8705
|
+
#: ../lib/puppet/resource/type.rb:427
|
8708
8706
|
msgid "Parameter '%{name}' is given a type, but is not a valid parameter."
|
8709
8707
|
msgstr "パラメータ'%{name}'にはタイプが指定されていますが、有効なパラメータではありません。"
|
8710
8708
|
|
8711
|
-
#: ../lib/puppet/resource/type.rb:
|
8709
|
+
#: ../lib/puppet/resource/type.rb:430
|
8712
8710
|
msgid ""
|
8713
8711
|
"Parameter '%{name}' is given a type that is not a Puppet Type, got "
|
8714
8712
|
"%{class_name}"
|
8715
8713
|
msgstr "パラメータ'%{name}'にはPuppet Typeではないタイプが指定されています。%{class_name}を取得しました。"
|
8716
8714
|
|
8717
|
-
#: ../lib/puppet/resource/type.rb:
|
8715
|
+
#: ../lib/puppet/resource/type.rb:470
|
8718
8716
|
msgid "Could not find scope for %{class_name}"
|
8719
8717
|
msgstr "%{class_name}のスコープが見つかりませんでした。"
|
8720
8718
|
|
8721
|
-
#: ../lib/puppet/resource/type.rb:
|
8719
|
+
#: ../lib/puppet/resource/type.rb:491
|
8722
8720
|
msgid ""
|
8723
8721
|
"%{param} is a metaparam; this value will inherit to all contained resources "
|
8724
8722
|
"in the %{name} definition"
|
8725
8723
|
msgstr "%{param}はメタパラメータです; この値は、%{name}定義に含まれるすべてのリソースに継承されます。"
|
8726
8724
|
|
8727
|
-
#: ../lib/puppet/resource/type.rb:
|
8725
|
+
#: ../lib/puppet/resource/type.rb:493
|
8728
8726
|
msgid ""
|
8729
8727
|
"%{param} is a metaparameter; please choose another parameter name in the "
|
8730
8728
|
"%{name} definition"
|
@@ -8937,10 +8935,9 @@ msgid "Please use the directory environments feature to specify environments."
|
|
8937
8935
|
msgstr "ディレクトリenvironment機能を使用し、environmentを指定してください。"
|
8938
8936
|
|
8939
8937
|
#: ../lib/puppet/settings/config_file.rb:93
|
8940
|
-
msgid ""
|
8941
|
-
"(See https://docs.puppet.com/puppet/latest/reference/environments.html)"
|
8938
|
+
msgid "(See https://puppet.com/docs/puppet/latest/environments_about.html)"
|
8942
8939
|
msgstr ""
|
8943
|
-
"
|
8940
|
+
"詳細については、https://puppet.com/docs/puppet/latest/environments_about.htmlを参照してください。"
|
8944
8941
|
|
8945
8942
|
#: ../lib/puppet/settings/config_file.rb:138
|
8946
8943
|
msgid "Invalid file option '%{parameter}'"
|
@@ -9065,9 +9062,9 @@ msgid ""
|
|
9065
9062
|
"Puppet::SSL::CertificateAuthority#list_certificates is deprecated. Please "
|
9066
9063
|
"use Puppet::SSL::CertificateAuthority#list or the certificate status API to "
|
9067
9064
|
"query certificate information. See "
|
9068
|
-
"https://
|
9065
|
+
"https://puppet.com/docs/puppet/latest/http_api/http_certificate_status.html"
|
9069
9066
|
msgstr ""
|
9070
|
-
"Puppet::SSL::CertificateAuthority#list_certificatesは廃止予定です。証明書情報のクエリには、Puppet::SSL::CertificateAuthority#listまたは認証ステータスAPIを使用してください。https://
|
9067
|
+
"Puppet::SSL::CertificateAuthority#list_certificatesは廃止予定です。証明書情報のクエリには、Puppet::SSL::CertificateAuthority#listまたは認証ステータスAPIを使用してください。https://puppet.com/docs/puppet/latest/http_api/http_certificate_status.htmlを参照してください。"
|
9071
9068
|
|
9072
9069
|
#: ../lib/puppet/ssl/certificate_authority.rb:250
|
9073
9070
|
msgid "Cannot revoke certificates when the CRL is disabled"
|
@@ -9151,9 +9148,9 @@ msgid ""
|
|
9151
9148
|
"Puppet::SSL::CertificateAuthority#certificate_is_alive? is deprecated. "
|
9152
9149
|
"Please use Puppet::SSL::CertificateAuthority#verify or the certificate "
|
9153
9150
|
"status API to query certificate information. See "
|
9154
|
-
"https://
|
9151
|
+
"https://puppet.com/docs/puppet/latest/http_api/http_certificate_status.html"
|
9155
9152
|
msgstr ""
|
9156
|
-
"Puppet::SSL::CertificateAuthority#certificate_is_alive?は廃止予定です。証明書情報のクエリには、Puppet::SSL::CertificateAuthority#verifyまたは証明書ステータスAPIを使用してください。https://
|
9153
|
+
"Puppet::SSL::CertificateAuthority#certificate_is_alive?は廃止予定です。証明書情報のクエリには、Puppet::SSL::CertificateAuthority#verifyまたは証明書ステータスAPIを使用してください。https://puppet.com/docs/puppet/latest/http_api/http_certificate_status.htmlを参照してください。"
|
9157
9154
|
|
9158
9155
|
#: ../lib/puppet/ssl/certificate_authority.rb:497
|
9159
9156
|
msgid "Could not find a certificate for %{name}"
|
@@ -9916,6 +9913,40 @@ msgstr ""
|
|
9916
9913
|
msgid "MD5 is not supported in FIPS mode"
|
9917
9914
|
msgstr "MD5はFIPSモードでサポートされていません。"
|
9918
9915
|
|
9916
|
+
#. TRANSLATORS "content" is an attribute and should not be translated
|
9917
|
+
#: ../lib/puppet/type/file/content.rb:53
|
9918
|
+
msgid "Using a checksum in a file's \"content\" property is deprecated."
|
9919
|
+
msgstr "ファイルの\"content\"プロパティでのチェックサムの使用は廃止予定です。"
|
9920
|
+
|
9921
|
+
#. TRANSLATORS "filebucket" is a resource type and should not be translated.
|
9922
|
+
#. The quoted occurrence of "content" is an attribute and should not be
|
9923
|
+
#. translated.
|
9924
|
+
#: ../lib/puppet/type/file/content.rb:55
|
9925
|
+
msgid ""
|
9926
|
+
"The ability to use a checksum to retrieve content from the filebucket using "
|
9927
|
+
"the \"content\" property will be removed in a future release."
|
9928
|
+
msgstr "\"content\"プロパティを用いるfilebucketからコンテンツを取得するチェックサムを使用する機能は、今後のリリースで廃止されます。"
|
9929
|
+
|
9930
|
+
#. TRANSLATORS "content" is an attribute and should not be translated.
|
9931
|
+
#: ../lib/puppet/type/file/content.rb:57
|
9932
|
+
msgid "The literal value of the \"content\" property will be written to the file."
|
9933
|
+
msgstr "\"content\"プロパティのリテラル値はファイルに書き込まれます。"
|
9934
|
+
|
9935
|
+
#. TRANSLATORS "static catalogs" should not be translated.
|
9936
|
+
#: ../lib/puppet/type/file/content.rb:59
|
9937
|
+
msgid ""
|
9938
|
+
"The checksum retrieval functionality is being replaced by the use of static "
|
9939
|
+
"catalogs."
|
9940
|
+
msgstr "チェックサム取得機能の代わりに静的カタログが使用できるようになります。"
|
9941
|
+
|
9942
|
+
#: ../lib/puppet/type/file/content.rb:60
|
9943
|
+
msgid ""
|
9944
|
+
"See https://puppet.com/docs/puppet/latest/static_catalogs.html for more "
|
9945
|
+
"information."
|
9946
|
+
msgstr ""
|
9947
|
+
"詳細については、https://puppet.com/docs/puppet/latest/static_catalogs.html for more "
|
9948
|
+
"informationを参照してください。"
|
9949
|
+
|
9919
9950
|
#. TRANSLATORS 'Ensure' is an attribute and ':present' is a value and should
|
9920
9951
|
#. not be translated
|
9921
9952
|
#: ../lib/puppet/type/file/data_sync.rb:31
|
@@ -9948,7 +9979,7 @@ msgstr "GIDは削除できません。"
|
|
9948
9979
|
msgid "Invalid GID %{gid}"
|
9949
9980
|
msgstr "無効なGID %{gid}"
|
9950
9981
|
|
9951
|
-
#: ../lib/puppet/type/group.rb:166 ../lib/puppet/type/user.rb:
|
9982
|
+
#: ../lib/puppet/type/group.rb:166 ../lib/puppet/type/user.rb:649
|
9952
9983
|
msgid "Attributes value pairs must be separated by an ="
|
9953
9984
|
msgstr "属性値ペアは =で区切る必要があります。"
|
9954
9985
|
|
@@ -10192,113 +10223,113 @@ msgstr "ファイルが存在しません。"
|
|
10192
10223
|
msgid "Could not find group(s) %{groups}"
|
10193
10224
|
msgstr "グループ%{groups}が見つかりませんでした。"
|
10194
10225
|
|
10195
|
-
#: ../lib/puppet/type/user.rb:
|
10226
|
+
#: ../lib/puppet/type/user.rb:255
|
10196
10227
|
msgid "Passwords cannot include ':'"
|
10197
10228
|
msgstr "パスワードに':'を含めることはできません。"
|
10198
10229
|
|
10199
|
-
#: ../lib/puppet/type/user.rb:
|
10230
|
+
#: ../lib/puppet/type/user.rb:260
|
10200
10231
|
msgid "created password"
|
10201
10232
|
msgstr "パスワードを作成しました。"
|
10202
10233
|
|
10203
|
-
#: ../lib/puppet/type/user.rb:
|
10234
|
+
#: ../lib/puppet/type/user.rb:262
|
10204
10235
|
msgid "changed password"
|
10205
10236
|
msgstr "パスワードを変更しました。"
|
10206
10237
|
|
10207
|
-
#: ../lib/puppet/type/user.rb:
|
10238
|
+
#: ../lib/puppet/type/user.rb:267
|
10208
10239
|
msgid "[old password hash redacted]"
|
10209
10240
|
msgstr "[古いパスワードのハッシュを編集]"
|
10210
10241
|
|
10211
|
-
#: ../lib/puppet/type/user.rb:
|
10242
|
+
#: ../lib/puppet/type/user.rb:270
|
10212
10243
|
msgid "[new password hash redacted]"
|
10213
10244
|
msgstr "[新しいパスワードのハッシュを編集]"
|
10214
10245
|
|
10215
|
-
#: ../lib/puppet/type/user.rb:
|
10246
|
+
#: ../lib/puppet/type/user.rb:289
|
10216
10247
|
msgid "Password minimum age must be provided as a number."
|
10217
10248
|
msgstr "パスワードの最小日数は数字で指定する必要があります。"
|
10218
10249
|
|
10219
|
-
#: ../lib/puppet/type/user.rb:
|
10250
|
+
#: ../lib/puppet/type/user.rb:308
|
10220
10251
|
msgid "Password maximum age must be provided as a number."
|
10221
10252
|
msgstr "パスワードの最大日数は数字で指定する必要があります。"
|
10222
10253
|
|
10223
|
-
#: ../lib/puppet/type/user.rb:
|
10254
|
+
#: ../lib/puppet/type/user.rb:339
|
10224
10255
|
msgid "Group names must be provided, not GID numbers."
|
10225
10256
|
msgstr "GID数ではなく、グループ名を指定する必要があります。"
|
10226
10257
|
|
10227
|
-
#: ../lib/puppet/type/user.rb:
|
10258
|
+
#: ../lib/puppet/type/user.rb:341
|
10228
10259
|
msgid "Group names must be provided as an array, not a comma-separated list."
|
10229
10260
|
msgstr "グループ名はカンマ区切りリストではなく、配列として指定する必要があります。"
|
10230
10261
|
|
10231
|
-
#: ../lib/puppet/type/user.rb:
|
10262
|
+
#: ../lib/puppet/type/user.rb:342
|
10232
10263
|
msgid ""
|
10233
10264
|
"Group names must not be empty. If you want to specify \"no groups\" pass an "
|
10234
10265
|
"empty array"
|
10235
10266
|
msgstr "グループ名を空にすることはできません。\"no groups\"を指定する場合は、空配列を渡してください。"
|
10236
10267
|
|
10237
|
-
#: ../lib/puppet/type/user.rb:
|
10268
|
+
#: ../lib/puppet/type/user.rb:434
|
10238
10269
|
msgid "User provider %{name} can not manage home directories"
|
10239
10270
|
msgstr "ユーザプロバイダ%{name}はホームディレクトリを管理できません。 "
|
10240
10271
|
|
10241
10272
|
#. TRANSLATORS YYYY-MM-DD represents a date with a four-digit year, a two-
|
10242
10273
|
#. digit month, and a two-digit day,
|
10243
10274
|
#. TRANSLATORS separated by dashes.
|
10244
|
-
#: ../lib/puppet/type/user.rb:
|
10275
|
+
#: ../lib/puppet/type/user.rb:451
|
10245
10276
|
msgid "Expiry dates must be YYYY-MM-DD or the string \"absent\""
|
10246
10277
|
msgstr "有効期限はYYYY-MM-DDまたは文字列\"absent\"でなければなりません。"
|
10247
10278
|
|
10248
|
-
#: ../lib/puppet/type/user.rb:
|
10279
|
+
#: ../lib/puppet/type/user.rb:528
|
10249
10280
|
msgid "Role names must be provided, not numbers"
|
10250
10281
|
msgstr "数字ではなく、ロール名を指定する必要があります。"
|
10251
10282
|
|
10252
|
-
#: ../lib/puppet/type/user.rb:
|
10283
|
+
#: ../lib/puppet/type/user.rb:530
|
10253
10284
|
msgid "Role names must be provided as an array, not a comma-separated list"
|
10254
10285
|
msgstr "ロール名はカンマ区切りリストではなく、配列として指定する必要があります。"
|
10255
10286
|
|
10256
|
-
#: ../lib/puppet/type/user.rb:
|
10287
|
+
#: ../lib/puppet/type/user.rb:565
|
10257
10288
|
msgid "Auth names must be provided, not numbers"
|
10258
10289
|
msgstr "数字ではなく、認証名を指定する必要があります。"
|
10259
10290
|
|
10260
|
-
#: ../lib/puppet/type/user.rb:
|
10291
|
+
#: ../lib/puppet/type/user.rb:567
|
10261
10292
|
msgid "Auth names must be provided as an array, not a comma-separated list"
|
10262
10293
|
msgstr "認証名はカンマ区切りリストではなく、配列として指定する必要があります。"
|
10263
10294
|
|
10264
|
-
#: ../lib/puppet/type/user.rb:
|
10295
|
+
#: ../lib/puppet/type/user.rb:591
|
10265
10296
|
msgid "Profile names must be provided, not numbers"
|
10266
10297
|
msgstr "数字ではなく、プロファイル名を指定する必要があります。"
|
10267
10298
|
|
10268
|
-
#: ../lib/puppet/type/user.rb:
|
10299
|
+
#: ../lib/puppet/type/user.rb:593
|
10269
10300
|
msgid "Profile names must be provided as an array, not a comma-separated list"
|
10270
10301
|
msgstr "プロファイル名はカンマ区切りリストではなく、配列として指定する必要があります。"
|
10271
10302
|
|
10272
|
-
#: ../lib/puppet/type/user.rb:
|
10303
|
+
#: ../lib/puppet/type/user.rb:615
|
10273
10304
|
msgid "Key/value pairs must be separated by an ="
|
10274
10305
|
msgstr "キー/値ペアは=で区切る必要があります。"
|
10275
10306
|
|
10276
|
-
#: ../lib/puppet/type/user.rb:
|
10307
|
+
#: ../lib/puppet/type/user.rb:722
|
10277
10308
|
msgid "Each entry for purge_ssh_keys must be a string, not a %{klass}"
|
10278
10309
|
msgstr "purge_ssh_keysの各エントリは、%{klass}ではなく、文字列にする必要があります。"
|
10279
10310
|
|
10280
|
-
#: ../lib/puppet/type/user.rb:
|
10311
|
+
#: ../lib/puppet/type/user.rb:725
|
10281
10312
|
msgid "Paths to keyfiles must be absolute, not %{entry}"
|
10282
10313
|
msgstr "キーファイルのパスは、%{entry}ではなく、絶対パスにする必要があります。"
|
10283
10314
|
|
10284
|
-
#: ../lib/puppet/type/user.rb:
|
10315
|
+
#: ../lib/puppet/type/user.rb:729
|
10285
10316
|
msgid ""
|
10286
10317
|
"purge_ssh_keys must be true, false, or an array of file names, not %{value}"
|
10287
10318
|
msgstr "purge_ssh_keysは、%{value}ではなく、true、false、またはファイル名の配列にする必要があります。 "
|
10288
10319
|
|
10289
|
-
#: ../lib/puppet/type/user.rb:
|
10320
|
+
#: ../lib/puppet/type/user.rb:741
|
10290
10321
|
msgid ""
|
10291
10322
|
"purge_ssh_keys can only be true for users with a defined home directory"
|
10292
10323
|
msgstr "purge_ssh_keysをtrueにできるのは、ホームディレクトリが定義されたユーザの場合のみです。"
|
10293
10324
|
|
10294
|
-
#: ../lib/puppet/type/user.rb:
|
10325
|
+
#: ../lib/puppet/type/user.rb:748
|
10295
10326
|
msgid ""
|
10296
10327
|
"purge_ssh_keys value '%{value}' meta character ~ or %{home_placeholder} only"
|
10297
10328
|
" allowed for users with a defined home directory"
|
10298
10329
|
msgstr ""
|
10299
10330
|
"purge_ssh_keys値'%{value}'のメタ文字~または%{home_placeholder}が許可されているのは、ホームディレクトリが定義されたユーザの場合のみです。"
|
10300
10331
|
|
10301
|
-
#: ../lib/puppet/type/user.rb:
|
10332
|
+
#: ../lib/puppet/type/user.rb:762
|
10302
10333
|
msgid "Class name must be provided."
|
10303
10334
|
msgstr "クラス名を指定する必要があります。"
|
10304
10335
|
|