puppet 7.23.0 → 7.25.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (71) hide show
  1. checksums.yaml +4 -4
  2. data/CODEOWNERS +5 -5
  3. data/Gemfile +2 -2
  4. data/Gemfile.lock +50 -47
  5. data/ext/project_data.yaml +1 -1
  6. data/lib/puppet/application/face_base.rb +2 -1
  7. data/lib/puppet/defaults.rb +22 -0
  8. data/lib/puppet/environments.rb +9 -0
  9. data/lib/puppet/functions/each.rb +11 -13
  10. data/lib/puppet/functions/filter.rb +5 -13
  11. data/lib/puppet/functions/map.rb +7 -8
  12. data/lib/puppet/indirector/catalog/json.rb +8 -3
  13. data/lib/puppet/interface/action.rb +3 -3
  14. data/lib/puppet/interface/documentation.rb +2 -2
  15. data/lib/puppet/interface/option.rb +3 -4
  16. data/lib/puppet/module/plan.rb +1 -1
  17. data/lib/puppet/module/task.rb +1 -1
  18. data/lib/puppet/module.rb +1 -1
  19. data/lib/puppet/network/http/api/indirected_routes.rb +10 -4
  20. data/lib/puppet/node/environment.rb +38 -0
  21. data/lib/puppet/node.rb +2 -2
  22. data/lib/puppet/pops/evaluator/relationship_operator.rb +1 -1
  23. data/lib/puppet/pops/functions/function.rb +1 -3
  24. data/lib/puppet/pops/loader/dependency_loader.rb +1 -4
  25. data/lib/puppet/pops/loader/loader_paths.rb +1 -3
  26. data/lib/puppet/pops/loader/module_loaders.rb +1 -1
  27. data/lib/puppet/pops/loaders.rb +6 -2
  28. data/lib/puppet/pops/lookup/context.rb +3 -4
  29. data/lib/puppet/pops/lookup/hiera_config.rb +1 -1
  30. data/lib/puppet/resource.rb +4 -0
  31. data/lib/puppet/settings/base_setting.rb +3 -2
  32. data/lib/puppet/settings.rb +0 -1
  33. data/lib/puppet/thread_local.rb +1 -4
  34. data/lib/puppet/type/file/ctime.rb +1 -1
  35. data/lib/puppet/type/file/mtime.rb +1 -1
  36. data/lib/puppet/util/log.rb +2 -2
  37. data/lib/puppet/version.rb +1 -1
  38. data/man/man5/puppet.conf.5 +21 -2
  39. data/man/man8/puppet-agent.8 +1 -1
  40. data/man/man8/puppet-apply.8 +1 -1
  41. data/man/man8/puppet-catalog.8 +1 -1
  42. data/man/man8/puppet-config.8 +1 -1
  43. data/man/man8/puppet-describe.8 +1 -1
  44. data/man/man8/puppet-device.8 +1 -1
  45. data/man/man8/puppet-doc.8 +1 -1
  46. data/man/man8/puppet-epp.8 +1 -1
  47. data/man/man8/puppet-facts.8 +1 -1
  48. data/man/man8/puppet-filebucket.8 +1 -1
  49. data/man/man8/puppet-generate.8 +1 -1
  50. data/man/man8/puppet-help.8 +1 -1
  51. data/man/man8/puppet-lookup.8 +1 -1
  52. data/man/man8/puppet-module.8 +1 -1
  53. data/man/man8/puppet-node.8 +1 -1
  54. data/man/man8/puppet-parser.8 +1 -1
  55. data/man/man8/puppet-plugin.8 +1 -1
  56. data/man/man8/puppet-report.8 +1 -1
  57. data/man/man8/puppet-resource.8 +1 -1
  58. data/man/man8/puppet-script.8 +1 -1
  59. data/man/man8/puppet-ssl.8 +1 -1
  60. data/man/man8/puppet.8 +2 -2
  61. data/spec/fixtures/integration/application/module/environments/direnv/modules/nginx/README +3 -0
  62. data/spec/fixtures/integration/application/module/environments/direnv/modules/nginx/manifests/init.pp +17 -0
  63. data/spec/fixtures/integration/application/module/environments/direnv/modules/nginx/metadata.json +20 -0
  64. data/spec/integration/application/module_spec.rb +141 -0
  65. data/spec/unit/environments_spec.rb +9 -0
  66. data/spec/unit/network/http/api/indirected_routes_spec.rb +28 -0
  67. data/spec/unit/node/environment_spec.rb +41 -0
  68. data/spec/unit/parser/resource_spec.rb +9 -0
  69. data/spec/unit/type/file/ctime_spec.rb +1 -1
  70. data/spec/unit/type/file/mtime_spec.rb +1 -1
  71. metadata +9 -9
@@ -166,6 +166,44 @@ class Puppet::Node::Environment
166
166
  # @api private
167
167
  attr_reader :lock
168
168
 
169
+ # For use with versioned dirs
170
+ # our environment path may contain symlinks, while we want to resolve the
171
+ # path while reading the manifests we may want to report the resources as
172
+ # coming from the configured path.
173
+ attr_accessor :configured_path
174
+
175
+ # See :configured_path above
176
+ attr_accessor :resolved_path
177
+
178
+ # Ensure the path given is of the format we want in the catalog/report.
179
+ #
180
+ # Intended for use with versioned symlinked environments. If this
181
+ # environment is configured with "/etc/puppetlabs/code/environments/production"
182
+ # but the resolved path is
183
+ #
184
+ # "/opt/puppetlabs/server/puppetserver/filesync/client/puppet-code/production_abcdef1234"
185
+ #
186
+ # this changes the filepath
187
+ #
188
+ # "/opt/puppetlabs/server/puppetserver/filesync/client/puppet-code/production_abcdef1234/modules/foo/manifests/init.pp"
189
+ #
190
+ # to
191
+ #
192
+ # "/etc/puppetlabs/code/environments/production/modules/foo/manifests/init.pp"
193
+ def externalize_path(filepath)
194
+ paths_set = configured_path && resolved_path
195
+ munging_possible = paths_set && configured_path != resolved_path
196
+ munging_desired = munging_possible &&
197
+ Puppet[:report_configured_environmentpath] &&
198
+ filepath.to_s.start_with?(resolved_path)
199
+
200
+ if munging_desired
201
+ File.join(configured_path, filepath.delete_prefix(resolved_path))
202
+ else
203
+ filepath
204
+ end
205
+ end
206
+
169
207
  # Checks to make sure that this environment did not have a manifest set in
170
208
  # its original environment.conf if Puppet is configured with
171
209
  # +disable_per_environment_manifest+ set true. If it did, the environment's
data/lib/puppet/node.rb CHANGED
@@ -16,8 +16,8 @@ class Puppet::Node
16
16
  indirects :node, :terminus_setting => :node_terminus, :doc => "Where to find node information.
17
17
  A node is composed of its name, its facts, and its environment."
18
18
 
19
- attr_accessor :name, :classes, :source, :ipaddress, :parameters, :trusted_data, :environment_name
20
- attr_reader :time, :facts
19
+ attr_accessor :name, :classes, :source, :ipaddress, :parameters, :environment_name
20
+ attr_reader :time, :facts, :trusted_data
21
21
 
22
22
  attr_reader :server_facts
23
23
 
@@ -119,7 +119,7 @@ class RelationshipOperator
119
119
  # To implement this, the general evaluator needs to be able to track each evaluation result and associate
120
120
  # it with a corresponding expression. This structure should then be passed to the relationship operator.
121
121
  #
122
- def evaluate (left_right_evaluated, relationship_expression, scope)
122
+ def evaluate(left_right_evaluated, relationship_expression, scope)
123
123
  # assert operator (should have been validated, but this logic makes assumptions which would
124
124
  # screw things up royally). Better safe than sorry.
125
125
  unless RELATIONSHIP_OPERATORS.include?(relationship_expression.operator)
@@ -11,9 +11,6 @@
11
11
  #
12
12
  # @api public
13
13
  class Puppet::Pops::Functions::Function
14
- # The scope where the function was defined
15
- attr_reader :closure_scope
16
-
17
14
  # The loader that loaded this function.
18
15
  # Should be used if function wants to load other things.
19
16
  #
@@ -74,6 +71,7 @@ class Puppet::Pops::Functions::Function
74
71
  internal_call_function(closure_scope, function_name, args, &block)
75
72
  end
76
73
 
74
+ # The scope where the function was defined
77
75
  def closure_scope
78
76
  # If closure scope is explicitly set to not nil, if there is a global scope, otherwise an empty hash
79
77
  @closure_scope || Puppet.lookup(:global_scope) { {} }
@@ -8,10 +8,6 @@
8
8
  # @api private
9
9
  #
10
10
  class Puppet::Pops::Loader::DependencyLoader < Puppet::Pops::Loader::BaseLoader
11
-
12
- # An index of module_name to module loader used to speed up lookup of qualified names
13
- attr_reader :index
14
-
15
11
  # Creates a DependencyLoader for one parent loader
16
12
  #
17
13
  # @param parent_loader [Puppet::Pops::Loader] typically a module loader for the root
@@ -88,6 +84,7 @@ class Puppet::Pops::Loader::DependencyLoader < Puppet::Pops::Loader::BaseLoader
88
84
  end
89
85
  end
90
86
 
87
+ # An index of module_name to module loader used to speed up lookup of qualified names
91
88
  def index
92
89
  @index ||= @dependency_loaders.reduce({}) { |index, loader| index[loader.module_name] = loader; index }
93
90
  end
@@ -54,14 +54,12 @@ module LoaderPaths
54
54
  # end
55
55
 
56
56
  class SmartPath
57
- # Generic path, in the sense of "if there are any entities of this kind to load, where are they?"
58
- attr_reader :generic_path
59
-
60
57
  # Creates SmartPath for the given loader (loader knows how to check for existence etc.)
61
58
  def initialize(loader)
62
59
  @loader = loader
63
60
  end
64
61
 
62
+ # Generic path, in the sense of "if there are any entities of this kind to load, where are they?"
65
63
  def generic_path
66
64
  return @generic_path unless @generic_path.nil?
67
65
 
@@ -115,7 +115,7 @@ module ModuleLoaders
115
115
  # created a different way, this loader can be set explicitly by the loaders bootstrap logic.
116
116
  #
117
117
  # @api private
118
- attr_accessor :private_loader
118
+ attr_writer :private_loader
119
119
 
120
120
  # Initialize a kind of ModuleLoader for one module
121
121
  # @param parent_loader [Loader] loader with higher priority
@@ -11,8 +11,12 @@ module Puppet::Pops
11
11
  class Loaders
12
12
  class LoaderError < Puppet::Error; end
13
13
 
14
- attr_reader :static_loader
15
- attr_reader :puppet_system_loader
14
+ # Commented out the :static_loader and :puppet_system_loader
15
+ # because of rubocop offenses with duplicated definitions of
16
+ # these generated methods, but keeping them here for visibility
17
+ # on how the loaders are stacked.
18
+ # attr_reader :static_loader
19
+ # attr_reader :puppet_system_loader
16
20
  attr_reader :puppet_cache_loader
17
21
  attr_reader :public_environment_loader
18
22
  attr_reader :private_environment_loader
@@ -92,12 +92,11 @@ class FunctionContext
92
92
 
93
93
  def cached_entries(&block)
94
94
  if block_given?
95
- enumerator = @cache.each_pair
96
- @cache.size.times do
95
+ @cache.each_pair do |pair|
97
96
  if block.arity == 2
98
- yield(*enumerator.next)
97
+ yield(*pair)
99
98
  else
100
- yield(enumerator.next)
99
+ yield(pair)
101
100
  end
102
101
  end
103
102
  nil
@@ -166,7 +166,7 @@ class HieraConfig
166
166
  end
167
167
  end
168
168
 
169
- attr_reader :config_path, :version
169
+ attr_reader :config_path
170
170
 
171
171
  # Creates a new HieraConfig from the given _config_root_. This is where the 'lookup.yaml' is expected to be found
172
172
  # and is also the base location used when resolving relative paths.
@@ -323,6 +323,10 @@ class Puppet::Resource
323
323
  send(attr.to_s + "=", value)
324
324
  end
325
325
 
326
+ if environment.is_a?(Puppet::Node::Environment) && environment != Puppet::Node::Environment::NONE
327
+ self.file = environment.externalize_path(attributes[:file])
328
+ end
329
+
326
330
  @type, @title = self.class.type_and_title(type, title)
327
331
 
328
332
  rt = resource_type
@@ -3,8 +3,9 @@ require_relative '../../puppet/settings/errors'
3
3
 
4
4
  # The base setting type
5
5
  class Puppet::Settings::BaseSetting
6
- attr_accessor :name, :desc, :section, :default, :call_hook
7
- attr_reader :short, :deprecated
6
+ attr_writer :default
7
+ attr_accessor :name, :desc, :section
8
+ attr_reader :short, :deprecated, :call_hook
8
9
 
9
10
  # Hooks are called during different parts of the settings lifecycle:
10
11
  #
@@ -40,7 +40,6 @@ class Puppet::Settings
40
40
  # local reference for convenience
41
41
  PuppetOptionParser = Puppet::Util::CommandLine::PuppetOptionParser
42
42
 
43
- attr_accessor :files
44
43
  attr_reader :timer
45
44
 
46
45
  # These are the settings that every app is required to specify; there are
@@ -1,7 +1,4 @@
1
1
  require 'concurrent'
2
2
 
3
- # We want to use the pure Ruby implementation even on JRuby. If we use the Java
4
- # implementation of ThreadLocal, we end up leaking references to JRuby instances
5
- # and preventing them from being garbage collected.
6
- class Puppet::ThreadLocal < Concurrent::RubyThreadLocalVar
3
+ class Puppet::ThreadLocal < Concurrent::ThreadLocalVar
7
4
  end
@@ -10,7 +10,7 @@ module Puppet
10
10
  if stat
11
11
  current_value = stat.ctime
12
12
  end
13
- current_value
13
+ current_value.to_s
14
14
  end
15
15
 
16
16
  validate do |val|
@@ -9,7 +9,7 @@ module Puppet
9
9
  if stat
10
10
  current_value = stat.mtime
11
11
  end
12
- current_value
12
+ current_value.to_s
13
13
  end
14
14
 
15
15
  validate do |val|
@@ -294,8 +294,8 @@ class Puppet::Util::Log
294
294
  end
295
295
 
296
296
 
297
- attr_accessor :time, :remote, :file, :line, :pos, :source, :issue_code, :environment, :node, :backtrace
298
- attr_reader :level, :message
297
+ attr_accessor :time, :remote, :file, :line, :pos, :issue_code, :environment, :node, :backtrace
298
+ attr_reader :level, :message, :source
299
299
 
300
300
  def initialize(args)
301
301
  self.level = args[:level]
@@ -6,7 +6,7 @@
6
6
  # Raketasks and such to set the version based on the output of `git describe`
7
7
 
8
8
  module Puppet
9
- PUPPETVERSION = '7.23.0'
9
+ PUPPETVERSION = '7.25.0'
10
10
 
11
11
  ##
12
12
  # version is a public API method intended to always provide a fast and
@@ -1,7 +1,7 @@
1
1
  .\" generated with Ronn/v0.7.3
2
2
  .\" http://github.com/rtomayko/ronn/tree/0.7.3
3
3
  .
4
- .TH "PUPPETCONF" "5" "February 2023" "Puppet, Inc." "Puppet manual"
4
+ .TH "PUPPETCONF" "5" "May 2023" "Puppet, Inc." "Puppet manual"
5
5
  \fBThis page is autogenerated; any changes will get overwritten\fR
6
6
  .
7
7
  .SH "Configuration settings"
@@ -62,6 +62,14 @@ Whether to allow a new certificate request to overwrite an existing certificate
62
62
  .
63
63
  .IP "" 0
64
64
  .
65
+ .SS "allow_pson_serialization"
66
+ Whether when unable to serialize to JSON or other formats, Puppet falls back to PSON\. This option affects both puppetserver\'s configuration management service responses and when the agent saves its cached catalog\. This option is useful in preventing the loss of data because rich data cannot be serialized via PSON\.
67
+ .
68
+ .IP "\(bu" 4
69
+ \fIDefault\fR: \fBtrue\fR
70
+ .
71
+ .IP "" 0
72
+ .
65
73
  .SS "always_retry_plugins"
66
74
  Affects how we cache attempts to load Puppet resource types and features\. If true, then calls to \fBPuppet\.type\.<type>?\fR \fBPuppet\.feature\.<feature>?\fR will always attempt to load the type or feature (which can be an expensive operation) unless it has already been loaded successfully\. This makes it possible for a single agent run to, e\.g\., install a package that provides the underlying capabilities for a type or feature, and then later load that type or feature during the same run (even if the type or feature had been tested earlier and had not been available)\.
67
75
  .
@@ -937,7 +945,7 @@ The time to wait for data to be read from an HTTP connection\. If nothing is rea
937
945
  The HTTP User\-Agent string to send when making network requests\.
938
946
  .
939
947
  .IP "\(bu" 4
940
- \fIDefault\fR: \fBPuppet/7\.23\.0 Ruby/2\.7\.5\-p203 (x86_64\-linux)\fR
948
+ \fIDefault\fR: \fBPuppet/7\.25\.0 Ruby/2\.7\.5\-p203 (x86_64\-linux)\fR
941
949
  .
942
950
  .IP "" 0
943
951
  .
@@ -1599,6 +1607,17 @@ Whether to send reports after every transaction\.
1599
1607
  .
1600
1608
  .IP "" 0
1601
1609
  .
1610
+ .SS "report_configured_environmentpath"
1611
+ When versioned_environment_dirs is \fBtrue\fR Puppet will readlink the environmentpath when constructing the environment\'s modulepath\. The full readlinked path is referred to as the "resolved path" and the configured path potentially containing symlinks is the "configured path"\. When reporting where resources come from users may choose between the configured or resolved path\.
1612
+ .
1613
+ .P
1614
+ When set to false, the resolved paths are reported instead of the configured paths\.
1615
+ .
1616
+ .IP "\(bu" 4
1617
+ \fIDefault\fR: \fBtrue\fR
1618
+ .
1619
+ .IP "" 0
1620
+ .
1602
1621
  .SS "report_include_system_store"
1603
1622
  Whether the \'http\' report processor should include the system certificate store when submitting reports to HTTPS URLs\. If false, then the \'http\' processor will only trust HTTPS report servers whose certificates are issued by the puppet CA or one of its intermediate CAs\. If true, the processor will additionally trust CA certificates in the system\'s certificate store\.
1604
1623
  .
@@ -1,7 +1,7 @@
1
1
  .\" generated with Ronn/v0.7.3
2
2
  .\" http://github.com/rtomayko/ronn/tree/0.7.3
3
3
  .
4
- .TH "PUPPET\-AGENT" "8" "February 2023" "Puppet, Inc." "Puppet manual"
4
+ .TH "PUPPET\-AGENT" "8" "May 2023" "Puppet, Inc." "Puppet manual"
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBpuppet\-agent\fR \- The puppet agent daemon
@@ -1,7 +1,7 @@
1
1
  .\" generated with Ronn/v0.7.3
2
2
  .\" http://github.com/rtomayko/ronn/tree/0.7.3
3
3
  .
4
- .TH "PUPPET\-APPLY" "8" "February 2023" "Puppet, Inc." "Puppet manual"
4
+ .TH "PUPPET\-APPLY" "8" "May 2023" "Puppet, Inc." "Puppet manual"
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBpuppet\-apply\fR \- Apply Puppet manifests locally
@@ -1,7 +1,7 @@
1
1
  .\" generated with Ronn/v0.7.3
2
2
  .\" http://github.com/rtomayko/ronn/tree/0.7.3
3
3
  .
4
- .TH "PUPPET\-CATALOG" "8" "February 2023" "Puppet, Inc." "Puppet manual"
4
+ .TH "PUPPET\-CATALOG" "8" "May 2023" "Puppet, Inc." "Puppet manual"
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBpuppet\-catalog\fR \- Compile, save, view, and convert catalogs\.
@@ -1,7 +1,7 @@
1
1
  .\" generated with Ronn/v0.7.3
2
2
  .\" http://github.com/rtomayko/ronn/tree/0.7.3
3
3
  .
4
- .TH "PUPPET\-CONFIG" "8" "February 2023" "Puppet, Inc." "Puppet manual"
4
+ .TH "PUPPET\-CONFIG" "8" "May 2023" "Puppet, Inc." "Puppet manual"
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBpuppet\-config\fR \- Interact with Puppet\'s settings\.
@@ -1,7 +1,7 @@
1
1
  .\" generated with Ronn/v0.7.3
2
2
  .\" http://github.com/rtomayko/ronn/tree/0.7.3
3
3
  .
4
- .TH "PUPPET\-DESCRIBE" "8" "February 2023" "Puppet, Inc." "Puppet manual"
4
+ .TH "PUPPET\-DESCRIBE" "8" "May 2023" "Puppet, Inc." "Puppet manual"
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBpuppet\-describe\fR \- Display help about resource types
@@ -1,7 +1,7 @@
1
1
  .\" generated with Ronn/v0.7.3
2
2
  .\" http://github.com/rtomayko/ronn/tree/0.7.3
3
3
  .
4
- .TH "PUPPET\-DEVICE" "8" "February 2023" "Puppet, Inc." "Puppet manual"
4
+ .TH "PUPPET\-DEVICE" "8" "May 2023" "Puppet, Inc." "Puppet manual"
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBpuppet\-device\fR \- Manage remote network devices
@@ -1,7 +1,7 @@
1
1
  .\" generated with Ronn/v0.7.3
2
2
  .\" http://github.com/rtomayko/ronn/tree/0.7.3
3
3
  .
4
- .TH "PUPPET\-DOC" "8" "February 2023" "Puppet, Inc." "Puppet manual"
4
+ .TH "PUPPET\-DOC" "8" "May 2023" "Puppet, Inc." "Puppet manual"
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBpuppet\-doc\fR \- Generate Puppet references
@@ -1,7 +1,7 @@
1
1
  .\" generated with Ronn/v0.7.3
2
2
  .\" http://github.com/rtomayko/ronn/tree/0.7.3
3
3
  .
4
- .TH "PUPPET\-EPP" "8" "February 2023" "Puppet, Inc." "Puppet manual"
4
+ .TH "PUPPET\-EPP" "8" "May 2023" "Puppet, Inc." "Puppet manual"
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBpuppet\-epp\fR \- Interact directly with the EPP template parser/renderer\.
@@ -1,7 +1,7 @@
1
1
  .\" generated with Ronn/v0.7.3
2
2
  .\" http://github.com/rtomayko/ronn/tree/0.7.3
3
3
  .
4
- .TH "PUPPET\-FACTS" "8" "February 2023" "Puppet, Inc." "Puppet manual"
4
+ .TH "PUPPET\-FACTS" "8" "May 2023" "Puppet, Inc." "Puppet manual"
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBpuppet\-facts\fR \- Retrieve and store facts\.
@@ -1,7 +1,7 @@
1
1
  .\" generated with Ronn/v0.7.3
2
2
  .\" http://github.com/rtomayko/ronn/tree/0.7.3
3
3
  .
4
- .TH "PUPPET\-FILEBUCKET" "8" "February 2023" "Puppet, Inc." "Puppet manual"
4
+ .TH "PUPPET\-FILEBUCKET" "8" "May 2023" "Puppet, Inc." "Puppet manual"
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBpuppet\-filebucket\fR \- Store and retrieve files in a filebucket
@@ -1,7 +1,7 @@
1
1
  .\" generated with Ronn/v0.7.3
2
2
  .\" http://github.com/rtomayko/ronn/tree/0.7.3
3
3
  .
4
- .TH "PUPPET\-GENERATE" "8" "February 2023" "Puppet, Inc." "Puppet manual"
4
+ .TH "PUPPET\-GENERATE" "8" "May 2023" "Puppet, Inc." "Puppet manual"
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBpuppet\-generate\fR \- Generates Puppet code from Ruby definitions\.
@@ -1,7 +1,7 @@
1
1
  .\" generated with Ronn/v0.7.3
2
2
  .\" http://github.com/rtomayko/ronn/tree/0.7.3
3
3
  .
4
- .TH "PUPPET\-HELP" "8" "February 2023" "Puppet, Inc." "Puppet manual"
4
+ .TH "PUPPET\-HELP" "8" "May 2023" "Puppet, Inc." "Puppet manual"
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBpuppet\-help\fR \- Display Puppet help\.
@@ -1,7 +1,7 @@
1
1
  .\" generated with Ronn/v0.7.3
2
2
  .\" http://github.com/rtomayko/ronn/tree/0.7.3
3
3
  .
4
- .TH "PUPPET\-LOOKUP" "8" "February 2023" "Puppet, Inc." "Puppet manual"
4
+ .TH "PUPPET\-LOOKUP" "8" "May 2023" "Puppet, Inc." "Puppet manual"
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBpuppet\-lookup\fR \- Interactive Hiera lookup
@@ -1,7 +1,7 @@
1
1
  .\" generated with Ronn/v0.7.3
2
2
  .\" http://github.com/rtomayko/ronn/tree/0.7.3
3
3
  .
4
- .TH "PUPPET\-MODULE" "8" "February 2023" "Puppet, Inc." "Puppet manual"
4
+ .TH "PUPPET\-MODULE" "8" "May 2023" "Puppet, Inc." "Puppet manual"
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBpuppet\-module\fR \- Creates, installs and searches for modules on the Puppet Forge\.
@@ -1,7 +1,7 @@
1
1
  .\" generated with Ronn/v0.7.3
2
2
  .\" http://github.com/rtomayko/ronn/tree/0.7.3
3
3
  .
4
- .TH "PUPPET\-NODE" "8" "February 2023" "Puppet, Inc." "Puppet manual"
4
+ .TH "PUPPET\-NODE" "8" "May 2023" "Puppet, Inc." "Puppet manual"
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBpuppet\-node\fR \- View and manage node definitions\.
@@ -1,7 +1,7 @@
1
1
  .\" generated with Ronn/v0.7.3
2
2
  .\" http://github.com/rtomayko/ronn/tree/0.7.3
3
3
  .
4
- .TH "PUPPET\-PARSER" "8" "February 2023" "Puppet, Inc." "Puppet manual"
4
+ .TH "PUPPET\-PARSER" "8" "May 2023" "Puppet, Inc." "Puppet manual"
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBpuppet\-parser\fR \- Interact directly with the parser\.
@@ -1,7 +1,7 @@
1
1
  .\" generated with Ronn/v0.7.3
2
2
  .\" http://github.com/rtomayko/ronn/tree/0.7.3
3
3
  .
4
- .TH "PUPPET\-PLUGIN" "8" "February 2023" "Puppet, Inc." "Puppet manual"
4
+ .TH "PUPPET\-PLUGIN" "8" "May 2023" "Puppet, Inc." "Puppet manual"
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBpuppet\-plugin\fR \- Interact with the Puppet plugin system\.
@@ -1,7 +1,7 @@
1
1
  .\" generated with Ronn/v0.7.3
2
2
  .\" http://github.com/rtomayko/ronn/tree/0.7.3
3
3
  .
4
- .TH "PUPPET\-REPORT" "8" "February 2023" "Puppet, Inc." "Puppet manual"
4
+ .TH "PUPPET\-REPORT" "8" "May 2023" "Puppet, Inc." "Puppet manual"
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBpuppet\-report\fR \- Create, display, and submit reports\.
@@ -1,7 +1,7 @@
1
1
  .\" generated with Ronn/v0.7.3
2
2
  .\" http://github.com/rtomayko/ronn/tree/0.7.3
3
3
  .
4
- .TH "PUPPET\-RESOURCE" "8" "February 2023" "Puppet, Inc." "Puppet manual"
4
+ .TH "PUPPET\-RESOURCE" "8" "May 2023" "Puppet, Inc." "Puppet manual"
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBpuppet\-resource\fR \- The resource abstraction layer shell
@@ -1,7 +1,7 @@
1
1
  .\" generated with Ronn/v0.7.3
2
2
  .\" http://github.com/rtomayko/ronn/tree/0.7.3
3
3
  .
4
- .TH "PUPPET\-SCRIPT" "8" "February 2023" "Puppet, Inc." "Puppet manual"
4
+ .TH "PUPPET\-SCRIPT" "8" "May 2023" "Puppet, Inc." "Puppet manual"
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBpuppet\-script\fR \- Run a puppet manifests as a script without compiling a catalog
@@ -1,7 +1,7 @@
1
1
  .\" generated with Ronn/v0.7.3
2
2
  .\" http://github.com/rtomayko/ronn/tree/0.7.3
3
3
  .
4
- .TH "PUPPET\-SSL" "8" "February 2023" "Puppet, Inc." "Puppet manual"
4
+ .TH "PUPPET\-SSL" "8" "May 2023" "Puppet, Inc." "Puppet manual"
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBpuppet\-ssl\fR \- Manage SSL keys and certificates for puppet SSL clients
data/man/man8/puppet.8 CHANGED
@@ -1,7 +1,7 @@
1
1
  .\" generated with Ronn/v0.7.3
2
2
  .\" http://github.com/rtomayko/ronn/tree/0.7.3
3
3
  .
4
- .TH "PUPPET" "8" "February 2023" "Puppet, Inc." "Puppet manual"
4
+ .TH "PUPPET" "8" "May 2023" "Puppet, Inc." "Puppet manual"
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBpuppet\fR
@@ -25,4 +25,4 @@ Specialized:
25
25
  catalog Compile, save, view, and convert catalogs\. describe Display help about resource types device Manage remote network devices doc Generate Puppet references epp Interact directly with the EPP template parser/renderer\. facts Retrieve and store facts\. filebucket Store and retrieve files in a filebucket generate Generates Puppet code from Ruby definitions\. node View and manage node definitions\. parser Interact directly with the parser\. plugin Interact with the Puppet plugin system\. script Run a puppet manifests as a script without compiling a catalog ssl Manage SSL keys and certificates for puppet SSL clients
26
26
  .
27
27
  .P
28
- See \'puppet help \fIsubcommand\fR \fIaction\fR\' for help on a specific subcommand action\. See \'puppet help \fIsubcommand\fR\' for help on a specific subcommand\. Puppet v7\.23\.0
28
+ See \'puppet help \fIsubcommand\fR \fIaction\fR\' for help on a specific subcommand action\. See \'puppet help \fIsubcommand\fR\' for help on a specific subcommand\. Puppet v7\.25\.0
@@ -0,0 +1,3 @@
1
+ nginx
2
+
3
+ This is the nginx module.
@@ -0,0 +1,17 @@
1
+ # Class: nginx
2
+ #
3
+ # This module manages nginx
4
+ #
5
+ # Parameters:
6
+ #
7
+ # Actions:
8
+ #
9
+ # Requires:
10
+ #
11
+ # Sample Usage:
12
+ #
13
+ # [Remember: No empty lines between comments and class definition]
14
+ class nginx {
15
+
16
+
17
+ }
@@ -0,0 +1,20 @@
1
+ {
2
+ "name": "pmtacceptance/nginx",
3
+ "version": "0.0.1",
4
+ "source": "UNKNOWN",
5
+ "author": "pmtacceptance",
6
+ "license": "UNKNOWN",
7
+ "summary": "UNKNOWN",
8
+ "description": "UNKNOWN",
9
+ "project_page": "UNKNOWN",
10
+ "dependencies": [
11
+
12
+ ],
13
+ "types": [
14
+
15
+ ],
16
+ "checksums": {
17
+ "README": "5c4fbf4812d8a4d4b0fe1c13ad640b0e",
18
+ "manifests/init.pp": "3a8ab171fd609a527ae0b293ced9a014"
19
+ }
20
+ }