puppet 4.10.10-universal-darwin → 4.10.11-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.

Files changed (84) hide show
  1. data/CONTRIBUTING.md +15 -15
  2. data/Gemfile +3 -0
  3. data/README.md +11 -11
  4. data/ext/project_data.yaml +4 -2
  5. data/lib/puppet/application/agent.rb +1 -3
  6. data/lib/puppet/application/apply.rb +1 -3
  7. data/lib/puppet/application/cert.rb +6 -1
  8. data/lib/puppet/application/lookup.rb +11 -1
  9. data/lib/puppet/configurer.rb +17 -4
  10. data/lib/puppet/environments.rb +1 -1
  11. data/lib/puppet/functions/map.rb +1 -1
  12. data/lib/puppet/indirector/indirection.rb +3 -3
  13. data/lib/puppet/indirector/request.rb +6 -2
  14. data/lib/puppet/network/http/connection.rb +8 -0
  15. data/lib/puppet/parser/functions/new.rb +29 -44
  16. data/lib/puppet/parser/functions/return.rb +22 -1
  17. data/lib/puppet/pops/resource/resource_type_impl.rb +1 -1
  18. data/lib/puppet/provider/group/windows_adsi.rb +4 -7
  19. data/lib/puppet/provider/package/dnf.rb +1 -1
  20. data/lib/puppet/provider/service/systemd.rb +1 -1
  21. data/lib/puppet/provider/user/aix.rb +1 -1
  22. data/lib/puppet/provider/user/windows_adsi.rb +1 -1
  23. data/lib/puppet/reference/configuration.rb +2 -0
  24. data/lib/puppet/type/tidy.rb +8 -1
  25. data/lib/puppet/type/user.rb +34 -3
  26. data/lib/puppet/util/reference.rb +2 -9
  27. data/lib/puppet/util/windows/adsi.rb +28 -31
  28. data/lib/puppet/util/windows/file.rb +61 -9
  29. data/lib/puppet/util/windows/principal.rb +9 -7
  30. data/lib/puppet/util/windows/sid.rb +60 -7
  31. data/lib/puppet/version.rb +1 -1
  32. data/locales/puppet.pot +79 -11
  33. data/man/man5/puppet.conf.5 +6 -8
  34. data/man/man8/extlookup2hiera.8 +1 -1
  35. data/man/man8/puppet-agent.8 +1 -1
  36. data/man/man8/puppet-apply.8 +1 -1
  37. data/man/man8/puppet-ca.8 +1 -1
  38. data/man/man8/puppet-catalog.8 +1 -1
  39. data/man/man8/puppet-cert.8 +1 -1
  40. data/man/man8/puppet-certificate.8 +1 -1
  41. data/man/man8/puppet-certificate_request.8 +1 -1
  42. data/man/man8/puppet-certificate_revocation_list.8 +1 -1
  43. data/man/man8/puppet-config.8 +1 -1
  44. data/man/man8/puppet-describe.8 +1 -1
  45. data/man/man8/puppet-device.8 +1 -1
  46. data/man/man8/puppet-doc.8 +1 -1
  47. data/man/man8/puppet-epp.8 +1 -1
  48. data/man/man8/puppet-facts.8 +1 -1
  49. data/man/man8/puppet-file.8 +1 -1
  50. data/man/man8/puppet-filebucket.8 +1 -1
  51. data/man/man8/puppet-generate.8 +1 -1
  52. data/man/man8/puppet-help.8 +1 -1
  53. data/man/man8/puppet-inspect.8 +1 -1
  54. data/man/man8/puppet-key.8 +1 -1
  55. data/man/man8/puppet-lookup.8 +1 -1
  56. data/man/man8/puppet-man.8 +1 -1
  57. data/man/man8/puppet-master.8 +1 -1
  58. data/man/man8/puppet-module.8 +1 -1
  59. data/man/man8/puppet-node.8 +1 -1
  60. data/man/man8/puppet-parser.8 +1 -1
  61. data/man/man8/puppet-plugin.8 +1 -1
  62. data/man/man8/puppet-report.8 +1 -1
  63. data/man/man8/puppet-resource.8 +1 -1
  64. data/man/man8/puppet-resource_type.8 +1 -1
  65. data/man/man8/puppet-status.8 +1 -1
  66. data/man/man8/puppet.8 +2 -2
  67. data/spec/integration/application/lookup_spec.rb +21 -0
  68. data/spec/integration/parser/pcore_resource_spec.rb +1 -1
  69. data/spec/integration/util/windows/adsi_spec.rb +86 -1
  70. data/spec/integration/util/windows/principal_spec.rb +10 -1
  71. data/spec/unit/application/agent_spec.rb +0 -9
  72. data/spec/unit/application/apply_spec.rb +0 -9
  73. data/spec/unit/application/cert_spec.rb +40 -1
  74. data/spec/unit/configurer_spec.rb +14 -0
  75. data/spec/unit/indirector/indirection_spec.rb +24 -2
  76. data/spec/unit/provider/group/windows_adsi_spec.rb +79 -22
  77. data/spec/unit/provider/service/systemd_spec.rb +1 -1
  78. data/spec/unit/provider/user/windows_adsi_spec.rb +4 -4
  79. data/spec/unit/type/tidy_spec.rb +14 -0
  80. data/spec/unit/util/windows/adsi_spec.rb +31 -27
  81. data/spec/unit/util/windows/sid_spec.rb +86 -15
  82. data/tasks/manpages.rake +1 -1
  83. metadata +3623 -3609
  84. checksums.yaml +0 -7
@@ -32,9 +32,10 @@ module Puppet::Util::Windows::SID
32
32
  @sid_bytes == compare.sid_bytes
33
33
  end
34
34
 
35
- # added for backward compatibility
35
+ # returns authority qualified account name
36
+ # prefer to compare Principal instances with == operator or by #sid
36
37
  def to_s
37
- @sid
38
+ @domain_account
38
39
  end
39
40
 
40
41
  # = 8 + max sub identifiers (15) * 4
@@ -64,14 +65,14 @@ module Puppet::Util::Windows::SID
64
65
  last_error = FFI.errno
65
66
 
66
67
  if (success == FFI::WIN32_FALSE && last_error != ERROR_INSUFFICIENT_BUFFER)
67
- raise Puppet::Util::Windows::Error.new('Failed to call LookupAccountNameW', last_error)
68
+ raise Puppet::Util::Windows::Error.new(_('Failed to call LookupAccountNameW with account: %{account_name}') % { account_name: account_name}, last_error)
68
69
  end
69
70
 
70
71
  FFI::MemoryPointer.new(:lpwstr, domain_length_ptr.read_dword) do |domain_ptr|
71
72
  if LookupAccountNameW(system_name_ptr, account_name_ptr,
72
73
  sid_ptr, sid_length_ptr,
73
74
  domain_ptr, domain_length_ptr, name_use_enum_ptr) == FFI::WIN32_FALSE
74
- raise Puppet::Util::Windows::Error.new('Failed to call LookupAccountNameW')
75
+ raise Puppet::Util::Windows::Error.new(_('Failed to call LookupAccountNameW with account: %{account_name}') % { account_name: account_name} )
75
76
  end
76
77
 
77
78
  # with a SID returned, loop back through lookup_account_sid to retrieve official name
@@ -93,7 +94,8 @@ module Puppet::Util::Windows::SID
93
94
  def self.lookup_account_sid(system_name = nil, sid_bytes)
94
95
  system_name_ptr = FFI::Pointer::NULL
95
96
  if (sid_bytes.nil? || (!sid_bytes.is_a? Array) || (sid_bytes.length == 0))
96
- raise Puppet::Util::Windows::Error.new('Byte array for lookup_account_sid must not be nil and must be at least 1 byte long')
97
+ #TRANSLATORS `lookup_account_sid` is a variable name and should not be translated
98
+ raise Puppet::Util::Windows::Error.new(_('Byte array for lookup_account_sid must not be nil and must be at least 1 byte long'))
97
99
  end
98
100
 
99
101
  begin
@@ -115,14 +117,14 @@ module Puppet::Util::Windows::SID
115
117
  last_error = FFI.errno
116
118
 
117
119
  if (success == FFI::WIN32_FALSE && last_error != ERROR_INSUFFICIENT_BUFFER)
118
- raise Puppet::Util::Windows::Error.new('Failed to call LookupAccountSidW', last_error)
120
+ raise Puppet::Util::Windows::Error.new(_('Failed to call LookupAccountSidW with bytes: %{sid_bytes}') % { sid_bytes: sid_bytes}, last_error)
119
121
  end
120
122
 
121
123
  FFI::MemoryPointer.new(:lpwstr, name_length_ptr.read_dword) do |name_ptr|
122
124
  FFI::MemoryPointer.new(:lpwstr, domain_length_ptr.read_dword) do |domain_ptr|
123
125
  if LookupAccountSidW(system_name_ptr, sid_ptr, name_ptr, name_length_ptr,
124
126
  domain_ptr, domain_length_ptr, name_use_enum_ptr) == FFI::WIN32_FALSE
125
- raise Puppet::Util::Windows::Error.new('Failed to call LookupAccountSidW')
127
+ raise Puppet::Util::Windows::Error.new(_('Failed to call LookupAccountSidW with bytes: %{sid_bytes}') % { sid_bytes: sid_bytes} )
126
128
  end
127
129
 
128
130
  return new(
@@ -52,18 +52,18 @@ module Puppet::Util::Windows
52
52
  # 'BUILTIN\Administrators', or 'S-1-5-32-544', and will return the
53
53
  # SID. Returns nil if the account doesn't exist.
54
54
  def name_to_sid(name)
55
- sid = name_to_sid_object(name)
55
+ sid = name_to_principal(name)
56
56
 
57
57
  sid ? sid.sid : nil
58
58
  end
59
59
  module_function :name_to_sid
60
60
 
61
- # Convert an account name, e.g. 'Administrators' into a SID object,
61
+ # Convert an account name, e.g. 'Administrators' into a Principal::SID object,
62
62
  # e.g. 'S-1-5-32-544'. The name can be specified as 'Administrators',
63
63
  # 'BUILTIN\Administrators', or 'S-1-5-32-544', and will return the
64
64
  # SID object. Returns nil if the account doesn't exist.
65
65
  # This method returns a SID::Principal with the account, domain, SID, etc
66
- def name_to_sid_object(name)
66
+ def name_to_principal(name)
67
67
  # Apparently, we accept a symbol..
68
68
  name = name.to_s.strip if name
69
69
 
@@ -81,21 +81,50 @@ module Puppet::Util::Windows
81
81
  rescue
82
82
  nil
83
83
  end
84
- module_function :name_to_sid_object
84
+ module_function :name_to_principal
85
+ class << self; alias name_to_sid_object name_to_principal; end
85
86
 
86
- # Converts an octet string array of bytes to a SID object,
87
+ # Converts an octet string array of bytes to a SID::Principal object,
87
88
  # e.g. [1, 1, 0, 0, 0, 0, 0, 5, 18, 0, 0, 0] is the representation for
88
89
  # S-1-5-18, the local 'SYSTEM' account.
89
90
  # Raises an Error for nil or non-array input.
90
91
  # This method returns a SID::Principal with the account, domain, SID, etc
91
- def octet_string_to_sid_object(bytes)
92
+ def octet_string_to_principal(bytes)
92
93
  if !bytes || !bytes.respond_to?('pack') || bytes.empty?
93
94
  raise Puppet::Util::Windows::Error.new("Octet string must be an array of bytes")
94
95
  end
95
96
 
96
97
  Principal.lookup_account_sid(bytes)
97
98
  end
98
- module_function :octet_string_to_sid_object
99
+ module_function :octet_string_to_principal
100
+ class << self; alias octet_string_to_sid_object octet_string_to_principal; end
101
+
102
+ # Converts a COM instance of IAdsUser or IAdsGroup to a SID::Principal object,
103
+ # Raises an Error for nil or an object without an objectSID / Name property.
104
+ # This method returns a SID::Principal with the account, domain, SID, etc
105
+ # This method will return instances even when the SID is unresolvable, as
106
+ # may be the case when domain users have been added to local groups, but
107
+ # removed from the domain
108
+ def ads_to_principal(ads_object)
109
+ if !ads_object || !ads_object.respond_to?(:ole_respond_to?) ||
110
+ !ads_object.ole_respond_to?(:objectSID) || !ads_object.ole_respond_to?(:Name)
111
+ raise Puppet::Error.new("ads_object must be an IAdsUser or IAdsGroup instance")
112
+ end
113
+ octet_string_to_principal(ads_object.objectSID)
114
+ rescue Puppet::Util::Windows::Error => e
115
+ # if the error is not a lookup / mapping problem, immediately re-raise
116
+ raise if e.code != ERROR_NONE_MAPPED
117
+
118
+ # if the Name property isn't formatted like a SID, OR
119
+ if !valid_sid?(ads_object.Name) ||
120
+ # if the objectSID doesn't match the Name property, also raise
121
+ ((converted = octet_string_to_sid_string(ads_object.objectSID)) != ads_object.Name)
122
+ raise Puppet::Error.new("ads_object Name: #{ads_object.Name} invalid or does not match objectSID: #{ads_object.objectSID} (#{converted})", e)
123
+ end
124
+
125
+ unresolved_principal(ads_object.Name, ads_object.objectSID)
126
+ end
127
+ module_function :ads_to_principal
99
128
 
100
129
  # Convert a SID string, e.g. "S-1-5-32-544" to a name,
101
130
  # e.g. 'BUILTIN\Administrators'. Returns nil if an account
@@ -193,6 +222,30 @@ module Puppet::Util::Windows
193
222
  end
194
223
  module_function :get_length_sid
195
224
 
225
+ def octet_string_to_sid_string(sid_bytes)
226
+ sid_string = nil
227
+
228
+ FFI::MemoryPointer.new(:byte, sid_bytes.length) do |sid_ptr|
229
+ sid_ptr.write_array_of_uchar(sid_bytes)
230
+ sid_string = Puppet::Util::Windows::SID.sid_ptr_to_string(sid_ptr)
231
+ end
232
+
233
+ sid_string
234
+ end
235
+ module_function :octet_string_to_sid_string
236
+
237
+ # @api private
238
+ def self.unresolved_principal(name, sid_bytes)
239
+ Principal.new(
240
+ name + " (unresolvable)", # account
241
+ sid_bytes, # sid_bytes
242
+ name, # sid string
243
+ nil, #domain
244
+ # https://msdn.microsoft.com/en-us/library/cc245534.aspx?f=255&MSPPError=-2147217396
245
+ # Indicates that the type of object could not be determined. For example, no object with that SID exists.
246
+ :SidTypeUnknown)
247
+ end
248
+
196
249
  ffi_convention :stdcall
197
250
 
198
251
  # https://msdn.microsoft.com/en-us/library/windows/desktop/aa379151(v=vs.85).aspx
@@ -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 = '4.10.10'
9
+ PUPPETVERSION = '4.10.11'
10
10
 
11
11
  ##
12
12
  # version is a public API method intended to always provide a fast and
@@ -6,11 +6,11 @@
6
6
  #, fuzzy
7
7
  msgid ""
8
8
  msgstr ""
9
- "Project-Id-Version: Puppet automation framework 4.10.9-68-gf02ce86\n"
9
+ "Project-Id-Version: Puppet automation framework 4.10.10-130-ge450355\n"
10
10
  "\n"
11
11
  "Report-Msgid-Bugs-To: https://tickets.puppetlabs.com\n"
12
- "POT-Creation-Date: 2018-01-03 19:17+0000\n"
13
- "PO-Revision-Date: 2018-01-03 19:17+0000\n"
12
+ "POT-Creation-Date: 2018-03-19 17:44+0000\n"
13
+ "PO-Revision-Date: 2018-03-19 17:44+0000\n"
14
14
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
15
15
  "Language-Team: LANGUAGE <LL@li.org>\n"
16
16
  "Language: \n"
@@ -31,6 +31,10 @@ msgstr ""
31
31
  msgid "`puppet %{name}` is deprecated and will be removed in a future release."
32
32
  msgstr ""
33
33
 
34
+ #: ../lib/puppet/application/cert.rb:268
35
+ msgid "Refusing to destroy all certs, provide an explicit list of certs to destroy"
36
+ msgstr ""
37
+
34
38
  #: ../lib/puppet/defaults.rb:1749
35
39
  msgid "Setting 'archive_files' is deprecated. It will be removed in a future release along with the `inspect` command."
36
40
  msgstr ""
@@ -146,6 +150,10 @@ msgstr ""
146
150
  msgid "GettextSetup initialization for %{module_name} failed with: %{error_message}"
147
151
  msgstr ""
148
152
 
153
+ #: ../lib/puppet/network/http/connection.rb:214
154
+ msgid "request %{uri} interrupted after %{elapsed} seconds"
155
+ msgstr ""
156
+
149
157
  #: ../lib/puppet/pops/lookup/environment_data_provider.rb:20
150
158
  msgid "hiera.yaml version 3 found at the environment root was ignored"
151
159
  msgstr ""
@@ -178,15 +186,75 @@ msgstr ""
178
186
  msgid "%{value} is not valid UTF-8 and result of overriding encoding would be invalid."
179
187
  msgstr ""
180
188
 
181
- #. TRANSLATORS message accompanied by date of generation
182
- #: ../lib/puppet/util/reference.rb:17
183
- msgid "This page autogenerated on "
184
- msgstr ""
185
-
186
- #. TRANSLATORS message accompanied by date of generation
187
- #: ../lib/puppet/util/reference.rb:116
189
+ #: ../lib/puppet/util/reference.rb:111
188
190
  msgid ""
189
191
  "\n"
190
192
  "\n"
191
- "**This page is autogenerated; any changes will get overwritten** *(last generated on "
193
+ "**This page is autogenerated; any changes will get overwritten**\n"
194
+ "\n"
195
+ msgstr ""
196
+
197
+ #: ../lib/puppet/util/windows/adsi.rb:19
198
+ msgid "ADSI connection error: %{e}"
199
+ msgstr ""
200
+
201
+ #: ../lib/puppet/util/windows/adsi.rb:42
202
+ msgid "Failed to get computer name"
203
+ msgstr ""
204
+
205
+ #: ../lib/puppet/util/windows/adsi.rb:80
206
+ msgid "Must use a valid SID::Principal"
207
+ msgstr ""
208
+
209
+ #: ../lib/puppet/util/windows/adsi.rb:132
210
+ msgid "Value must be in DOMAIN\\user style syntax"
211
+ msgstr ""
212
+
213
+ #: ../lib/puppet/util/windows/adsi.rb:158
214
+ msgid "Could not resolve name: %{name}"
215
+ msgstr ""
216
+
217
+ #: ../lib/puppet/util/windows/adsi.rb:216
218
+ msgid "Puppet is not able to create/delete domain users with the user resource."
219
+ msgstr ""
220
+
221
+ #: ../lib/puppet/util/windows/adsi.rb:221
222
+ msgid "User update failed: %{e}"
223
+ msgstr ""
224
+
225
+ #: ../lib/puppet/util/windows/adsi.rb:316
226
+ msgid "Cannot create user if group '%{name}' exists."
227
+ msgstr ""
228
+
229
+ #: ../lib/puppet/util/windows/adsi.rb:330
230
+ msgid "Failed to get user name"
231
+ msgstr ""
232
+
233
+ #: ../lib/puppet/util/windows/adsi.rb:408
234
+ msgid "Cannot delete user profile for '%{sid}' prior to Vista SP1"
235
+ msgstr ""
236
+
237
+ #: ../lib/puppet/util/windows/adsi.rb:446
238
+ msgid "Puppet is not able to create/delete domain groups with the group resource."
239
+ msgstr ""
240
+
241
+ #: ../lib/puppet/util/windows/adsi.rb:451
242
+ msgid "Group update failed: %{error}"
243
+ msgstr ""
244
+
245
+ #: ../lib/puppet/util/windows/adsi.rb:502
246
+ msgid "Cannot create group if user '%{name}' exists."
247
+ msgstr ""
248
+
249
+ #: ../lib/puppet/util/windows/principal.rb:68 ../lib/puppet/util/windows/principal.rb:75
250
+ msgid "Failed to call LookupAccountNameW with account: %{account_name}"
251
+ msgstr ""
252
+
253
+ #. TRANSLATORS `lookup_account_sid` is a variable name and should not be translated
254
+ #: ../lib/puppet/util/windows/principal.rb:98
255
+ msgid "Byte array for lookup_account_sid must not be nil and must be at least 1 byte long"
256
+ msgstr ""
257
+
258
+ #: ../lib/puppet/util/windows/principal.rb:120 ../lib/puppet/util/windows/principal.rb:127
259
+ msgid "Failed to call LookupAccountSidW with bytes: %{sid_bytes}"
192
260
  msgstr ""
@@ -1,8 +1,8 @@
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" "January 2018" "Puppet Labs, LLC" "Puppet manual"
5
- \fBThis page is autogenerated; any changes will get overwritten\fR \fI(last generated on 2018\-01\-12 16:59:36 \-0600)\fR
4
+ .TH "PUPPETCONF" "5" "April 2018" "Puppet, Inc." "Puppet manual"
5
+ \fBThis page is autogenerated; any changes will get overwritten\fR
6
6
  .
7
7
  .SH "Configuration Settings"
8
8
  .
@@ -326,7 +326,7 @@ The special value \fBca\fR is reserved, and can\'t be used as the certname for a
326
326
  Defaults to the node\'s fully qualified domain name\.
327
327
  .
328
328
  .IP "\(bu" 4
329
- \fIDefault\fR: jories\-macbook\-air\.local
329
+ \fIDefault\fR: the Host\'s fully qualified domain name, as determined by facter
330
330
  .
331
331
  .IP "" 0
332
332
  .
@@ -942,7 +942,7 @@ The time to wait for one block to be read from an HTTP connection\. If nothing i
942
942
  The HTTP User\-Agent string to send when making network requests\.
943
943
  .
944
944
  .IP "\(bu" 4
945
- \fIDefault\fR: Puppet/4\.10\.9 Ruby/2\.3\.1\-p112 (x86_64\-darwin15)
945
+ \fIDefault\fR: Puppet/4\.10\.11 Ruby/2\.3\.1\-p112 (x86_64\-linux)
946
946
  .
947
947
  .IP "" 0
948
948
  .
@@ -1710,7 +1710,7 @@ The maximum time to delay before runs\. Defaults to being the same as the run in
1710
1710
  The domain which will be queried to find the SRV records of servers to use\.
1711
1711
  .
1712
1712
  .IP "\(bu" 4
1713
- \fIDefault\fR: local
1713
+ \fIDefault\fR: delivery\.puppetlabs\.net
1714
1714
  .
1715
1715
  .IP "" 0
1716
1716
  .
@@ -1976,6 +1976,4 @@ The directory in which YAML data is stored, usually in a subdirectory\.
1976
1976
  \fIDefault\fR: $vardir/yaml
1977
1977
  .
1978
1978
  .IP "" 0
1979
- .
1980
- .P
1981
- \fIThis page autogenerated on 2018\-01\-12 16:59:36 \-0600\fR
1979
+
@@ -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 "EXTLOOKUP2HIERA" "8" "January 2018" "Puppet Labs, LLC" "Puppet manual"
4
+ .TH "EXTLOOKUP2HIERA" "8" "April 2018" "Puppet, Inc." "Puppet manual"
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBextlookup2hiera\fR
@@ -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" "January 2018" "Puppet Labs, LLC" "Puppet manual"
4
+ .TH "PUPPET\-AGENT" "8" "April 2018" "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" "January 2018" "Puppet Labs, LLC" "Puppet manual"
4
+ .TH "PUPPET\-APPLY" "8" "April 2018" "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\-CA" "8" "January 2018" "Puppet Labs, LLC" "Puppet manual"
4
+ .TH "PUPPET\-CA" "8" "April 2018" "Puppet, Inc." "Puppet manual"
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBpuppet\-ca\fR \- Local Puppet Certificate Authority management\.
@@ -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" "January 2018" "Puppet Labs, LLC" "Puppet manual"
4
+ .TH "PUPPET\-CATALOG" "8" "April 2018" "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\-CERT" "8" "January 2018" "Puppet Labs, LLC" "Puppet manual"
4
+ .TH "PUPPET\-CERT" "8" "April 2018" "Puppet, Inc." "Puppet manual"
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBpuppet\-cert\fR \- Manage certificates and requests
@@ -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\-CERTIFICATE" "8" "January 2018" "Puppet Labs, LLC" "Puppet manual"
4
+ .TH "PUPPET\-CERTIFICATE" "8" "April 2018" "Puppet, Inc." "Puppet manual"
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBpuppet\-certificate\fR \- Provide access to the CA for certificate management\.
@@ -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\-CERTIFICATE_REQUEST" "8" "January 2018" "Puppet Labs, LLC" "Puppet manual"
4
+ .TH "PUPPET\-CERTIFICATE_REQUEST" "8" "April 2018" "Puppet, Inc." "Puppet manual"
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBpuppet\-certificate_request\fR \- Manage certificate requests\.
@@ -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\-CERTIFICATE_REVOCATION_LIST" "8" "January 2018" "Puppet Labs, LLC" "Puppet manual"
4
+ .TH "PUPPET\-CERTIFICATE_REVOCATION_LIST" "8" "April 2018" "Puppet, Inc." "Puppet manual"
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBpuppet\-certificate_revocation_list\fR \- Manage the list of revoked certificates\.
@@ -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" "January 2018" "Puppet Labs, LLC" "Puppet manual"
4
+ .TH "PUPPET\-CONFIG" "8" "April 2018" "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" "January 2018" "Puppet Labs, LLC" "Puppet manual"
4
+ .TH "PUPPET\-DESCRIBE" "8" "April 2018" "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" "January 2018" "Puppet Labs, LLC" "Puppet manual"
4
+ .TH "PUPPET\-DEVICE" "8" "April 2018" "Puppet, Inc." "Puppet manual"
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBpuppet\-device\fR \- Manage remote network devices