puppetmodule-netdev_stdlib 0.10.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (66) hide show
  1. data/.gitignore +27 -0
  2. data/.travis.yml +9 -0
  3. data/Gemfile +4 -0
  4. data/Guardfile +15 -0
  5. data/LICENSE +202 -0
  6. data/Modulefile +9 -0
  7. data/README.md +330 -0
  8. data/Rakefile +1 -0
  9. data/lib/netdev_stdlib.rb +4 -0
  10. data/lib/netdev_stdlib/version.rb +3 -0
  11. data/lib/puppet/type/domain_name.rb +17 -0
  12. data/lib/puppet/type/name_server.rb +17 -0
  13. data/lib/puppet/type/network_interface.rb +60 -0
  14. data/lib/puppet/type/network_trunk.rb +83 -0
  15. data/lib/puppet/type/network_vlan.rb +53 -0
  16. data/lib/puppet/type/ntp_config.rb +25 -0
  17. data/lib/puppet/type/ntp_server.rb +20 -0
  18. data/lib/puppet/type/port_channel.rb +82 -0
  19. data/lib/puppet/type/radius.rb +20 -0
  20. data/lib/puppet/type/radius_global.rb +40 -0
  21. data/lib/puppet/type/radius_server.rb +95 -0
  22. data/lib/puppet/type/radius_server_group.rb +25 -0
  23. data/lib/puppet/type/search_domain.rb +17 -0
  24. data/lib/puppet/type/snmp_community.rb +29 -0
  25. data/lib/puppet/type/snmp_contact.rb +17 -0
  26. data/lib/puppet/type/snmp_location.rb +17 -0
  27. data/lib/puppet/type/snmp_notification.rb +20 -0
  28. data/lib/puppet/type/snmp_notification_receiver.rb +77 -0
  29. data/lib/puppet/type/snmp_protocol.rb +20 -0
  30. data/lib/puppet/type/snmp_user.rb +77 -0
  31. data/lib/puppet/type/syslog_server.rb +42 -0
  32. data/lib/puppet/type/syslog_settings.rb +25 -0
  33. data/lib/puppet/type/tacacs.rb +20 -0
  34. data/lib/puppet/type/tacacs_global.rb +40 -0
  35. data/lib/puppet/type/tacacs_server.rb +50 -0
  36. data/lib/puppet/type/tacacs_server_group.rb +25 -0
  37. data/netdev_stdlib.gemspec +36 -0
  38. data/spec/spec_helper.rb +15 -0
  39. data/spec/support/shared_examples_for_types.rb +412 -0
  40. data/spec/unit/puppet/type/domain_name_spec.rb +8 -0
  41. data/spec/unit/puppet/type/name_server_spec.rb +8 -0
  42. data/spec/unit/puppet/type/network_interface_spec.rb +44 -0
  43. data/spec/unit/puppet/type/network_trunk_spec.rb +55 -0
  44. data/spec/unit/puppet/type/network_vlan_spec.rb +57 -0
  45. data/spec/unit/puppet/type/ntp_config_spec.rb +8 -0
  46. data/spec/unit/puppet/type/ntp_server_spec.rb +8 -0
  47. data/spec/unit/puppet/type/port_channel_spec.rb +87 -0
  48. data/spec/unit/puppet/type/radius_global_spec.rb +27 -0
  49. data/spec/unit/puppet/type/radius_server_group_spec.rb +12 -0
  50. data/spec/unit/puppet/type/radius_server_spec.rb +51 -0
  51. data/spec/unit/puppet/type/radius_spec.rb +8 -0
  52. data/spec/unit/puppet/type/search_domain_spec.rb +8 -0
  53. data/spec/unit/puppet/type/snmp_community_spec.rb +27 -0
  54. data/spec/unit/puppet/type/snmp_contact_spec.rb +8 -0
  55. data/spec/unit/puppet/type/snmp_location_spec.rb +8 -0
  56. data/spec/unit/puppet/type/snmp_notification_receiver_spec.rb +50 -0
  57. data/spec/unit/puppet/type/snmp_notification_spec.rb +8 -0
  58. data/spec/unit/puppet/type/snmp_protocol_spec.rb +8 -0
  59. data/spec/unit/puppet/type/snmp_user_spec.rb +63 -0
  60. data/spec/unit/puppet/type/syslog_server_spec.rb +20 -0
  61. data/spec/unit/puppet/type/syslog_settings_spec.rb +19 -0
  62. data/spec/unit/puppet/type/tacacs_global_spec.rb +27 -0
  63. data/spec/unit/puppet/type/tacacs_server_group_spec.rb +12 -0
  64. data/spec/unit/puppet/type/tacacs_server_spec.rb +25 -0
  65. data/spec/unit/puppet/type/tacacs_spec.rb +8 -0
  66. metadata +338 -0
@@ -0,0 +1,50 @@
1
+ # encoding: utf-8
2
+
3
+ require 'spec_helper'
4
+
5
+ describe Puppet::Type.type(:snmp_notification_receiver) do
6
+ let(:catalog) { Puppet::Resource::Catalog.new }
7
+ let(:type) { described_class.new(name: 'emanon', catalog: catalog) }
8
+
9
+ subject { described_class.attrclass(attribute) }
10
+
11
+ it_behaves_like 'an ensurable type'
12
+ it_behaves_like 'name is the namevar'
13
+ it_behaves_like 'it has a string property', :vrf
14
+ it_behaves_like 'it has a string property', :source_interface
15
+ it_behaves_like 'it has a string property', :username
16
+
17
+ describe 'type' do
18
+ let(:attribute) { :type }
19
+ include_examples '#doc Documentation'
20
+ include_examples 'accepts values', %w(traps informs)
21
+ include_examples 'rejects values', %w(foo bar baz)
22
+ end
23
+
24
+ describe 'version' do
25
+ let(:attribute) { :version }
26
+ include_examples '#doc Documentation'
27
+ include_examples 'accepts values', %w(v1 v2 v3)
28
+ include_examples 'rejects values', %w(foo bar baz)
29
+ end
30
+
31
+ describe 'security' do
32
+ let(:attribute) { :security }
33
+ include_examples '#doc Documentation'
34
+ include_examples 'accepts values', %w(auth noauth priv)
35
+ include_examples 'rejects values', %w(foo bar baz)
36
+ end
37
+
38
+ describe 'port' do
39
+ let(:attribute) { :port }
40
+ include_examples '#doc Documentation'
41
+ include_examples 'numeric parameter', min: 0, max: 65_536
42
+ include_examples 'rejects values', %w(foo bar baz)
43
+ end
44
+
45
+ describe 'community' do
46
+ let(:attribute) { :community }
47
+ include_examples '#doc Documentation'
48
+ include_examples 'string value'
49
+ end
50
+ end
@@ -0,0 +1,8 @@
1
+ # encoding: utf-8
2
+
3
+ require 'spec_helper'
4
+
5
+ describe Puppet::Type.type(:snmp_notification) do
6
+ it_behaves_like 'name is the namevar'
7
+ it_behaves_like 'enabled type'
8
+ end
@@ -0,0 +1,8 @@
1
+ # encoding: utf-8
2
+
3
+ require 'spec_helper'
4
+
5
+ describe Puppet::Type.type(:snmp_protocol) do
6
+ it_behaves_like 'enabled type'
7
+ it_behaves_like 'name is the namevar'
8
+ end
@@ -0,0 +1,63 @@
1
+ # encoding: utf-8
2
+
3
+ require 'spec_helper'
4
+
5
+ describe Puppet::Type.type(:snmp_user) do
6
+ let(:catalog) { Puppet::Resource::Catalog.new }
7
+ let(:type) { described_class.new(name: 'emanon', catalog: catalog) }
8
+
9
+ subject { described_class.attrclass(attribute) }
10
+
11
+ it_behaves_like 'an ensurable type'
12
+ it_behaves_like 'name is the namevar'
13
+
14
+ describe 'roles' do
15
+ let(:attribute) { :roles }
16
+ include_examples '#doc Documentation'
17
+ include_examples 'array of strings value'
18
+ end
19
+
20
+ describe 'auth' do
21
+ let(:attribute) { :auth }
22
+ include_examples '#doc Documentation'
23
+ include_examples 'accepts values', %w(md5 sha)
24
+ include_examples 'rejects values', %w(foo bar baz)
25
+ end
26
+
27
+ describe 'password' do
28
+ let(:attribute) { :password }
29
+ include_examples '#doc Documentation'
30
+ include_examples 'string value'
31
+ end
32
+
33
+ describe 'privacy' do
34
+ let(:attribute) { :privacy }
35
+ include_examples '#doc Documentation'
36
+ include_examples 'accepts values', %w(aes128 des)
37
+ include_examples 'rejects values', %w(foo bar baz)
38
+ end
39
+
40
+ describe 'private_key' do
41
+ let(:attribute) { :private_key }
42
+ include_examples '#doc Documentation'
43
+ include_examples 'string value'
44
+ end
45
+
46
+ describe 'localized_key' do
47
+ let(:attribute) { :localized_key }
48
+ include_examples '#doc Documentation'
49
+ include_examples 'boolean value'
50
+ end
51
+
52
+ describe 'enforce_privacy' do
53
+ let(:attribute) { :enforce_privacy }
54
+ include_examples '#doc Documentation'
55
+ include_examples 'boolean value'
56
+ end
57
+
58
+ describe 'engine_id' do
59
+ let(:attribute) { :engine_id }
60
+ include_examples '#doc Documentation'
61
+ include_examples 'string value'
62
+ end
63
+ end
@@ -0,0 +1,20 @@
1
+ # encoding: utf-8
2
+
3
+ require 'spec_helper'
4
+
5
+ describe Puppet::Type.type(:syslog_server) do
6
+ let(:catalog) { Puppet::Resource::Catalog.new }
7
+ let(:type) { described_class.new(name: 'emanon', catalog: catalog) }
8
+ subject { described_class.attrclass(attribute) }
9
+
10
+ it_behaves_like 'name is the namevar'
11
+ it_behaves_like 'an ensurable type'
12
+ it_behaves_like 'it has a string property', :vrf
13
+ it_behaves_like 'it has a string property', :source_interface
14
+
15
+ describe 'severity_level' do
16
+ let(:attribute) { :severity_level }
17
+ include_examples '#doc Documentation'
18
+ include_examples 'numeric parameter', min: 0, max: 7
19
+ end
20
+ end
@@ -0,0 +1,19 @@
1
+ # encoding: utf-8
2
+
3
+ require 'spec_helper'
4
+
5
+ describe Puppet::Type.type(:syslog_settings) do
6
+ let(:catalog) { Puppet::Resource::Catalog.new }
7
+ let(:type) { described_class.new(name: 'emanon', catalog: catalog) }
8
+ subject { described_class.attrclass(attribute) }
9
+
10
+ it_behaves_like 'name is the namevar'
11
+ it_behaves_like 'enabled type'
12
+
13
+ describe 'time_stamp_units' do
14
+ let(:attribute) { :time_stamp_units }
15
+ include_examples '#doc Documentation'
16
+ include_examples 'accepts values', %w(seconds milliseconds)
17
+ include_examples 'rejects values', %w(foo bar baz)
18
+ end
19
+ end
@@ -0,0 +1,27 @@
1
+ # encoding: utf-8
2
+
3
+ require 'spec_helper'
4
+
5
+ describe Puppet::Type.type(:tacacs_global) do
6
+ let(:catalog) { Puppet::Resource::Catalog.new }
7
+ let(:type) { described_class.new(name: 'emanon', catalog: catalog) }
8
+ subject { described_class.attrclass(attribute) }
9
+
10
+ it_behaves_like 'name is the namevar'
11
+ it_behaves_like 'it has a string property', :key
12
+
13
+ describe 'key_format' do
14
+ let(:attribute) { :key_format }
15
+ include_examples 'numeric parameter', min: 0, max: 7
16
+ end
17
+
18
+ describe 'timeout' do
19
+ let(:attribute) { :timeout }
20
+ include_examples 'numeric parameter', min: 0, max: 604_800
21
+ end
22
+
23
+ describe 'retransmit_count' do
24
+ let(:attribute) { :retransmit_count }
25
+ include_examples 'numeric parameter', min: 0, max: 2048
26
+ end
27
+ end
@@ -0,0 +1,12 @@
1
+ # encoding: utf-8
2
+
3
+ require 'spec_helper'
4
+
5
+ describe Puppet::Type.type(:tacacs_server_group) do
6
+ let(:catalog) { Puppet::Resource::Catalog.new }
7
+ let(:type) { described_class.new(name: 'emanon', catalog: catalog) }
8
+ subject { described_class.attrclass(attribute) }
9
+
10
+ it_behaves_like 'name is the namevar'
11
+ it_behaves_like 'array of strings property', attribute: :servers
12
+ end
@@ -0,0 +1,25 @@
1
+ # encoding: utf-8
2
+
3
+ require 'spec_helper'
4
+
5
+ describe Puppet::Type.type(:tacacs_server) do
6
+ let(:catalog) { Puppet::Resource::Catalog.new }
7
+ let(:type) { described_class.new(name: 'emanon', catalog: catalog) }
8
+ subject { described_class.attrclass(attribute) }
9
+
10
+ it_behaves_like 'name is the namevar'
11
+ it_behaves_like 'it has a string property', :key
12
+
13
+ describe 'key_format' do
14
+ let(:attribute) { :key_format }
15
+ include_examples 'numeric parameter', min: 0, max: 7
16
+ end
17
+
18
+ describe 'timeout' do
19
+ let(:attribute) { :timeout }
20
+ include_examples 'numeric parameter', min: 0, max: 604_800
21
+ end
22
+
23
+ it_behaves_like 'boolean', attribute: :single_connection
24
+ it_behaves_like 'it has a string property', :group
25
+ end
@@ -0,0 +1,8 @@
1
+ # encoding: utf-8
2
+
3
+ require 'spec_helper'
4
+
5
+ describe Puppet::Type.type(:tacacs) do
6
+ it_behaves_like 'enabled type'
7
+ it_behaves_like 'name is the namevar'
8
+ end
metadata ADDED
@@ -0,0 +1,338 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: puppetmodule-netdev_stdlib
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.10.0
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Jeff McCune
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2014-09-09 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: bundler
16
+ requirement: !ruby/object:Gem::Requirement
17
+ none: false
18
+ requirements:
19
+ - - ~>
20
+ - !ruby/object:Gem::Version
21
+ version: '1.3'
22
+ type: :development
23
+ prerelease: false
24
+ version_requirements: !ruby/object:Gem::Requirement
25
+ none: false
26
+ requirements:
27
+ - - ~>
28
+ - !ruby/object:Gem::Version
29
+ version: '1.3'
30
+ - !ruby/object:Gem::Dependency
31
+ name: rake
32
+ requirement: !ruby/object:Gem::Requirement
33
+ none: false
34
+ requirements:
35
+ - - ! '>='
36
+ - !ruby/object:Gem::Version
37
+ version: '0'
38
+ type: :development
39
+ prerelease: false
40
+ version_requirements: !ruby/object:Gem::Requirement
41
+ none: false
42
+ requirements:
43
+ - - ! '>='
44
+ - !ruby/object:Gem::Version
45
+ version: '0'
46
+ - !ruby/object:Gem::Dependency
47
+ name: guard
48
+ requirement: !ruby/object:Gem::Requirement
49
+ none: false
50
+ requirements:
51
+ - - ! '>='
52
+ - !ruby/object:Gem::Version
53
+ version: '0'
54
+ type: :development
55
+ prerelease: false
56
+ version_requirements: !ruby/object:Gem::Requirement
57
+ none: false
58
+ requirements:
59
+ - - ! '>='
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ - !ruby/object:Gem::Dependency
63
+ name: guard-rspec
64
+ requirement: !ruby/object:Gem::Requirement
65
+ none: false
66
+ requirements:
67
+ - - ! '>='
68
+ - !ruby/object:Gem::Version
69
+ version: '0'
70
+ type: :development
71
+ prerelease: false
72
+ version_requirements: !ruby/object:Gem::Requirement
73
+ none: false
74
+ requirements:
75
+ - - ! '>='
76
+ - !ruby/object:Gem::Version
77
+ version: '0'
78
+ - !ruby/object:Gem::Dependency
79
+ name: guard-rubocop
80
+ requirement: !ruby/object:Gem::Requirement
81
+ none: false
82
+ requirements:
83
+ - - ! '>='
84
+ - !ruby/object:Gem::Version
85
+ version: '0'
86
+ type: :development
87
+ prerelease: false
88
+ version_requirements: !ruby/object:Gem::Requirement
89
+ none: false
90
+ requirements:
91
+ - - ! '>='
92
+ - !ruby/object:Gem::Version
93
+ version: '0'
94
+ - !ruby/object:Gem::Dependency
95
+ name: pry-doc
96
+ requirement: !ruby/object:Gem::Requirement
97
+ none: false
98
+ requirements:
99
+ - - ! '>='
100
+ - !ruby/object:Gem::Version
101
+ version: '0'
102
+ type: :development
103
+ prerelease: false
104
+ version_requirements: !ruby/object:Gem::Requirement
105
+ none: false
106
+ requirements:
107
+ - - ! '>='
108
+ - !ruby/object:Gem::Version
109
+ version: '0'
110
+ - !ruby/object:Gem::Dependency
111
+ name: pry
112
+ requirement: !ruby/object:Gem::Requirement
113
+ none: false
114
+ requirements:
115
+ - - ! '>='
116
+ - !ruby/object:Gem::Version
117
+ version: '0'
118
+ type: :development
119
+ prerelease: false
120
+ version_requirements: !ruby/object:Gem::Requirement
121
+ none: false
122
+ requirements:
123
+ - - ! '>='
124
+ - !ruby/object:Gem::Version
125
+ version: '0'
126
+ - !ruby/object:Gem::Dependency
127
+ name: rspec-puppet
128
+ requirement: !ruby/object:Gem::Requirement
129
+ none: false
130
+ requirements:
131
+ - - ! '>='
132
+ - !ruby/object:Gem::Version
133
+ version: '0'
134
+ type: :development
135
+ prerelease: false
136
+ version_requirements: !ruby/object:Gem::Requirement
137
+ none: false
138
+ requirements:
139
+ - - ! '>='
140
+ - !ruby/object:Gem::Version
141
+ version: '0'
142
+ - !ruby/object:Gem::Dependency
143
+ name: rspec
144
+ requirement: !ruby/object:Gem::Requirement
145
+ none: false
146
+ requirements:
147
+ - - ~>
148
+ - !ruby/object:Gem::Version
149
+ version: 2.13.0
150
+ type: :development
151
+ prerelease: false
152
+ version_requirements: !ruby/object:Gem::Requirement
153
+ none: false
154
+ requirements:
155
+ - - ~>
156
+ - !ruby/object:Gem::Version
157
+ version: 2.13.0
158
+ - !ruby/object:Gem::Dependency
159
+ name: puppetlabs_spec_helper
160
+ requirement: !ruby/object:Gem::Requirement
161
+ none: false
162
+ requirements:
163
+ - - ! '>='
164
+ - !ruby/object:Gem::Version
165
+ version: '0'
166
+ type: :development
167
+ prerelease: false
168
+ version_requirements: !ruby/object:Gem::Requirement
169
+ none: false
170
+ requirements:
171
+ - - ! '>='
172
+ - !ruby/object:Gem::Version
173
+ version: '0'
174
+ - !ruby/object:Gem::Dependency
175
+ name: simplecov
176
+ requirement: !ruby/object:Gem::Requirement
177
+ none: false
178
+ requirements:
179
+ - - ! '>='
180
+ - !ruby/object:Gem::Version
181
+ version: '0'
182
+ type: :development
183
+ prerelease: false
184
+ version_requirements: !ruby/object:Gem::Requirement
185
+ none: false
186
+ requirements:
187
+ - - ! '>='
188
+ - !ruby/object:Gem::Version
189
+ version: '0'
190
+ - !ruby/object:Gem::Dependency
191
+ name: puppet
192
+ requirement: !ruby/object:Gem::Requirement
193
+ none: false
194
+ requirements:
195
+ - - ! '>='
196
+ - !ruby/object:Gem::Version
197
+ version: '0'
198
+ type: :runtime
199
+ prerelease: false
200
+ version_requirements: !ruby/object:Gem::Requirement
201
+ none: false
202
+ requirements:
203
+ - - ! '>='
204
+ - !ruby/object:Gem::Version
205
+ version: '0'
206
+ description: NetDev Standard Library provides Puppet types to configure network devices
207
+ email:
208
+ - jeff@puppetlabs.com
209
+ executables: []
210
+ extensions: []
211
+ extra_rdoc_files: []
212
+ files:
213
+ - .gitignore
214
+ - .travis.yml
215
+ - Gemfile
216
+ - Guardfile
217
+ - LICENSE
218
+ - Modulefile
219
+ - README.md
220
+ - Rakefile
221
+ - lib/netdev_stdlib.rb
222
+ - lib/netdev_stdlib/version.rb
223
+ - lib/puppet/type/domain_name.rb
224
+ - lib/puppet/type/name_server.rb
225
+ - lib/puppet/type/network_interface.rb
226
+ - lib/puppet/type/network_trunk.rb
227
+ - lib/puppet/type/network_vlan.rb
228
+ - lib/puppet/type/ntp_config.rb
229
+ - lib/puppet/type/ntp_server.rb
230
+ - lib/puppet/type/port_channel.rb
231
+ - lib/puppet/type/radius.rb
232
+ - lib/puppet/type/radius_global.rb
233
+ - lib/puppet/type/radius_server.rb
234
+ - lib/puppet/type/radius_server_group.rb
235
+ - lib/puppet/type/search_domain.rb
236
+ - lib/puppet/type/snmp_community.rb
237
+ - lib/puppet/type/snmp_contact.rb
238
+ - lib/puppet/type/snmp_location.rb
239
+ - lib/puppet/type/snmp_notification.rb
240
+ - lib/puppet/type/snmp_notification_receiver.rb
241
+ - lib/puppet/type/snmp_protocol.rb
242
+ - lib/puppet/type/snmp_user.rb
243
+ - lib/puppet/type/syslog_server.rb
244
+ - lib/puppet/type/syslog_settings.rb
245
+ - lib/puppet/type/tacacs.rb
246
+ - lib/puppet/type/tacacs_global.rb
247
+ - lib/puppet/type/tacacs_server.rb
248
+ - lib/puppet/type/tacacs_server_group.rb
249
+ - netdev_stdlib.gemspec
250
+ - spec/spec_helper.rb
251
+ - spec/support/shared_examples_for_types.rb
252
+ - spec/unit/puppet/type/domain_name_spec.rb
253
+ - spec/unit/puppet/type/name_server_spec.rb
254
+ - spec/unit/puppet/type/network_interface_spec.rb
255
+ - spec/unit/puppet/type/network_trunk_spec.rb
256
+ - spec/unit/puppet/type/network_vlan_spec.rb
257
+ - spec/unit/puppet/type/ntp_config_spec.rb
258
+ - spec/unit/puppet/type/ntp_server_spec.rb
259
+ - spec/unit/puppet/type/port_channel_spec.rb
260
+ - spec/unit/puppet/type/radius_global_spec.rb
261
+ - spec/unit/puppet/type/radius_server_group_spec.rb
262
+ - spec/unit/puppet/type/radius_server_spec.rb
263
+ - spec/unit/puppet/type/radius_spec.rb
264
+ - spec/unit/puppet/type/search_domain_spec.rb
265
+ - spec/unit/puppet/type/snmp_community_spec.rb
266
+ - spec/unit/puppet/type/snmp_contact_spec.rb
267
+ - spec/unit/puppet/type/snmp_location_spec.rb
268
+ - spec/unit/puppet/type/snmp_notification_receiver_spec.rb
269
+ - spec/unit/puppet/type/snmp_notification_spec.rb
270
+ - spec/unit/puppet/type/snmp_protocol_spec.rb
271
+ - spec/unit/puppet/type/snmp_user_spec.rb
272
+ - spec/unit/puppet/type/syslog_server_spec.rb
273
+ - spec/unit/puppet/type/syslog_settings_spec.rb
274
+ - spec/unit/puppet/type/tacacs_global_spec.rb
275
+ - spec/unit/puppet/type/tacacs_server_group_spec.rb
276
+ - spec/unit/puppet/type/tacacs_server_spec.rb
277
+ - spec/unit/puppet/type/tacacs_spec.rb
278
+ homepage: https://github.com/puppetlabs/netdev_stdlib
279
+ licenses:
280
+ - Apache 2.0
281
+ post_install_message:
282
+ rdoc_options: []
283
+ require_paths:
284
+ - lib
285
+ required_ruby_version: !ruby/object:Gem::Requirement
286
+ none: false
287
+ requirements:
288
+ - - ! '>='
289
+ - !ruby/object:Gem::Version
290
+ version: '0'
291
+ segments:
292
+ - 0
293
+ hash: -3533449702767468311
294
+ required_rubygems_version: !ruby/object:Gem::Requirement
295
+ none: false
296
+ requirements:
297
+ - - ! '>='
298
+ - !ruby/object:Gem::Version
299
+ version: '0'
300
+ segments:
301
+ - 0
302
+ hash: -3533449702767468311
303
+ requirements: []
304
+ rubyforge_project:
305
+ rubygems_version: 1.8.23
306
+ signing_key:
307
+ specification_version: 3
308
+ summary: Type definitions for Networking Device (NetDev) Standard Library
309
+ test_files:
310
+ - spec/spec_helper.rb
311
+ - spec/support/shared_examples_for_types.rb
312
+ - spec/unit/puppet/type/domain_name_spec.rb
313
+ - spec/unit/puppet/type/name_server_spec.rb
314
+ - spec/unit/puppet/type/network_interface_spec.rb
315
+ - spec/unit/puppet/type/network_trunk_spec.rb
316
+ - spec/unit/puppet/type/network_vlan_spec.rb
317
+ - spec/unit/puppet/type/ntp_config_spec.rb
318
+ - spec/unit/puppet/type/ntp_server_spec.rb
319
+ - spec/unit/puppet/type/port_channel_spec.rb
320
+ - spec/unit/puppet/type/radius_global_spec.rb
321
+ - spec/unit/puppet/type/radius_server_group_spec.rb
322
+ - spec/unit/puppet/type/radius_server_spec.rb
323
+ - spec/unit/puppet/type/radius_spec.rb
324
+ - spec/unit/puppet/type/search_domain_spec.rb
325
+ - spec/unit/puppet/type/snmp_community_spec.rb
326
+ - spec/unit/puppet/type/snmp_contact_spec.rb
327
+ - spec/unit/puppet/type/snmp_location_spec.rb
328
+ - spec/unit/puppet/type/snmp_notification_receiver_spec.rb
329
+ - spec/unit/puppet/type/snmp_notification_spec.rb
330
+ - spec/unit/puppet/type/snmp_protocol_spec.rb
331
+ - spec/unit/puppet/type/snmp_user_spec.rb
332
+ - spec/unit/puppet/type/syslog_server_spec.rb
333
+ - spec/unit/puppet/type/syslog_settings_spec.rb
334
+ - spec/unit/puppet/type/tacacs_global_spec.rb
335
+ - spec/unit/puppet/type/tacacs_server_group_spec.rb
336
+ - spec/unit/puppet/type/tacacs_server_spec.rb
337
+ - spec/unit/puppet/type/tacacs_spec.rb
338
+ has_rdoc: