puppet 2.7.18 → 2.7.19
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.
- data/CHANGELOG +82 -0
- data/CONTRIBUTING.md +114 -171
- data/README.md +8 -0
- data/README_DEVELOPER.md +38 -3
- data/Rakefile +19 -3
- data/conf/osx/createpackage.sh +3 -1
- data/conf/redhat/logrotate +1 -1
- data/conf/redhat/puppet.spec +35 -8
- data/lib/puppet.rb +1 -1
- data/lib/puppet/application/agent.rb +2 -0
- data/lib/puppet/application/master.rb +2 -0
- data/lib/puppet/configurer.rb +2 -3
- data/lib/puppet/defaults.rb +6 -5
- data/lib/puppet/face/module/install.rb +2 -1
- data/lib/puppet/file_bucket/dipper.rb +1 -1
- data/lib/puppet/indirector/file_content.rb +2 -2
- data/lib/puppet/indirector/file_metadata.rb +2 -2
- data/lib/puppet/indirector/indirection.rb +3 -4
- data/lib/puppet/indirector/rest.rb +12 -6
- data/lib/puppet/interface/action_manager.rb +1 -2
- data/lib/puppet/module_tool/applications/unpacker.rb +22 -3
- data/lib/puppet/network/handler/fileserver.rb +2 -2
- data/lib/puppet/parser/ast/resource.rb +9 -2
- data/lib/puppet/parser/functions/fqdn_rand.rb +2 -1
- data/lib/puppet/parser/functions/md5.rb +2 -2
- data/lib/puppet/parser/functions/sha1.rb +2 -2
- data/lib/puppet/parser/functions/template.rb +0 -2
- data/lib/puppet/parser/type_loader.rb +1 -2
- data/lib/puppet/provider/augeas/augeas.rb +19 -1
- data/lib/puppet/provider/confine.rb +1 -1
- data/lib/puppet/provider/package/msi.rb +97 -51
- data/lib/puppet/provider/scheduled_task/win32_taskscheduler.rb +1 -0
- data/lib/puppet/provider/service/gentoo.rb +0 -2
- data/lib/puppet/provider/service/openrc.rb +69 -0
- data/lib/puppet/provider/service/windows.rb +6 -4
- data/lib/puppet/provider/user/aix.rb +8 -4
- data/lib/puppet/provider/user/useradd.rb +6 -0
- data/lib/puppet/rails/benchmark.rb +2 -2
- data/lib/puppet/reports/store.rb +9 -9
- data/lib/puppet/resource/catalog.rb +2 -1
- data/lib/puppet/resource/type_collection.rb +2 -1
- data/lib/puppet/ssl/base.rb +1 -2
- data/lib/puppet/ssl/certificate_authority/interface.rb +1 -0
- data/lib/puppet/test/test_helper.rb +2 -1
- data/lib/puppet/type.rb +1 -1
- data/lib/puppet/type/augeas.rb +1 -1
- data/lib/puppet/type/file.rb +4 -2
- data/lib/puppet/type/scheduled_task.rb +8 -10
- data/lib/puppet/type/tidy.rb +1 -1
- data/lib/puppet/util.rb +63 -25
- data/lib/puppet/util/autoload.rb +6 -4
- data/lib/puppet/util/checksums.rb +3 -8
- data/lib/puppet/util/diff.rb +2 -1
- data/lib/puppet/util/filetype.rb +1 -3
- data/lib/puppet/util/run_mode.rb +2 -1
- data/lib/puppet/util/suidmanager.rb +1 -1
- data/lib/puppet/util/windows.rb +1 -0
- data/lib/puppet/util/windows/file.rb +27 -0
- data/lib/puppet/util/windows/user.rb +1 -2
- data/man/man8/puppet-agent.8 +4 -0
- data/man/man8/puppet-master.8 +4 -0
- data/man/man8/puppetmasterd.8 +4 -0
- data/spec/fixtures/unit/provider/augeas/augeas/augeas/lenses/test.aug +13 -0
- data/spec/fixtures/unit/provider/augeas/augeas/etc/fstab +10 -0
- data/spec/fixtures/unit/provider/augeas/augeas/etc/hosts +6 -0
- data/spec/fixtures/unit/provider/augeas/augeas/etc/test +3 -0
- data/spec/fixtures/unit/provider/augeas/augeas/test.aug +13 -0
- data/spec/fixtures/unit/provider/service/openrc/rcservice_list +8 -0
- data/spec/fixtures/unit/provider/service/openrc/rcstatus +43 -0
- data/spec/integration/defaults_spec.rb +3 -3
- data/spec/integration/network/server/mongrel_spec.rb +8 -6
- data/spec/integration/parser/parser_spec.rb +1 -1
- data/spec/integration/type/file_spec.rb +49 -12
- data/spec/lib/puppet_spec/database.rb +5 -3
- data/spec/lib/puppet_spec/files.rb +2 -1
- data/spec/monkey_patches/alias_should_to_must.rb +15 -2
- data/spec/shared_behaviours/file_serving_model.rb +9 -6
- data/spec/shared_behaviours/path_parameters.rb +5 -5
- data/spec/shared_behaviours/things_that_declare_options.rb +5 -5
- data/spec/unit/application/facts_spec.rb +1 -1
- data/spec/unit/application_spec.rb +10 -8
- data/spec/unit/configurer_spec.rb +11 -2
- data/spec/unit/face/ca_spec.rb +15 -15
- data/spec/unit/face/help_spec.rb +5 -5
- data/spec/unit/face/module/install_spec.rb +13 -2
- data/spec/unit/face/node_spec.rb +7 -6
- data/spec/unit/indirector/certificate_request/ca_spec.rb +1 -1
- data/spec/unit/indirector/envelope_spec.rb +0 -13
- data/spec/unit/indirector/facts/inventory_service_spec.rb +1 -1
- data/spec/unit/indirector/queue_spec.rb +3 -3
- data/spec/unit/indirector/rest_spec.rb +31 -20
- data/spec/unit/indirector_spec.rb +5 -5
- data/spec/unit/interface/action_builder_spec.rb +3 -2
- data/spec/unit/interface/action_manager_spec.rb +1 -1
- data/spec/unit/interface/action_spec.rb +4 -3
- data/spec/unit/interface/face_collection_spec.rb +1 -1
- data/spec/unit/interface/option_spec.rb +13 -9
- data/spec/unit/interface_spec.rb +5 -5
- data/spec/unit/module_tool/applications/unpacker_spec.rb +61 -0
- data/spec/unit/network/handler/fileserver_spec.rb +3 -3
- data/spec/unit/other/transbucket_spec.rb +6 -9
- data/spec/unit/parser/ast/resource_spec.rb +27 -0
- data/spec/unit/parser/functions/create_resources_spec.rb +12 -12
- data/spec/unit/parser/lexer_spec.rb +5 -5
- data/spec/unit/provider/augeas/augeas_spec.rb +78 -0
- data/spec/unit/provider/nameservice/directoryservice_spec.rb +6 -6
- data/spec/unit/provider/package/freebsd_spec.rb +2 -2
- data/spec/unit/provider/package/msi_spec.rb +181 -114
- data/spec/unit/provider/package/openbsd_spec.rb +1 -0
- data/spec/unit/provider/package/pkgdmg_spec.rb +3 -3
- data/spec/unit/provider/scheduled_task/win32_taskscheduler_spec.rb +1 -1
- data/spec/unit/provider/service/openrc_spec.rb +209 -0
- data/spec/unit/provider/service/windows_spec.rb +57 -59
- data/spec/unit/provider/user/useradd_spec.rb +7 -0
- data/spec/unit/reports/store_spec.rb +13 -13
- data/spec/unit/resource/catalog_spec.rb +29 -24
- data/spec/unit/resource_spec.rb +13 -13
- data/spec/unit/simple_graph_spec.rb +12 -12
- data/spec/unit/ssl/certificate_authority/interface_spec.rb +3 -3
- data/spec/unit/ssl/certificate_authority_spec.rb +11 -10
- data/spec/unit/transaction_spec.rb +3 -3
- data/spec/unit/type/cron_spec.rb +171 -171
- data/spec/unit/type/exec_spec.rb +29 -27
- data/spec/unit/type/file_spec.rb +22 -13
- data/spec/unit/type/interface_spec.rb +1 -1
- data/spec/unit/type/scheduled_task_spec.rb +15 -14
- data/spec/unit/type/tidy_spec.rb +2 -2
- data/spec/unit/type/user_spec.rb +15 -15
- data/spec/unit/type/vlan_spec.rb +1 -1
- data/spec/unit/type_spec.rb +22 -25
- data/spec/unit/util/autoload_spec.rb +13 -7
- data/spec/unit/util/backups_spec.rb +36 -67
- data/spec/unit/util/storage_spec.rb +2 -9
- data/spec/unit/util/suidmanager_spec.rb +1 -1
- data/spec/unit/util_spec.rb +20 -28
- data/test/ral/manager/attributes.rb +1 -1
- metadata +1553 -1542
@@ -227,7 +227,7 @@ class TestTypeAttributes < Test::Unit::TestCase
|
|
227
227
|
no.each do |a|
|
228
228
|
assert_nil(resource.should(a), "Got value for unsupported %s in %s" % [a, prov.name])
|
229
229
|
if Puppet::Util::Log.sendlevel?(:info)
|
230
|
-
assert(@logs.find { |l| l.message =~ /not managing attribute #{a}/ and l.level == :
|
230
|
+
assert(@logs.find { |l| l.message =~ /not managing attribute #{a}/ and l.level == :debug }, "No warning about failed %s" % a)
|
231
231
|
end
|
232
232
|
end
|
233
233
|
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: puppet
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 53
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 2
|
8
8
|
- 7
|
9
|
-
-
|
10
|
-
version: 2.7.
|
9
|
+
- 19
|
10
|
+
version: 2.7.19
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Puppet Labs
|
@@ -15,9 +15,10 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date: 2012-
|
18
|
+
date: 2012-08-21 00:00:00 Z
|
19
19
|
dependencies:
|
20
20
|
- !ruby/object:Gem::Dependency
|
21
|
+
name: facter
|
21
22
|
prerelease: false
|
22
23
|
requirement: &id001 !ruby/object:Gem::Requirement
|
23
24
|
none: false
|
@@ -30,1819 +31,1829 @@ dependencies:
|
|
30
31
|
- 5
|
31
32
|
version: "1.5"
|
32
33
|
type: :runtime
|
33
|
-
name: facter
|
34
34
|
version_requirements: *id001
|
35
35
|
description: Puppet, an automated configuration management tool
|
36
36
|
email: puppet@puppetlabs.com
|
37
37
|
executables:
|
38
|
+
- puppet
|
38
39
|
- filebucket
|
39
40
|
- pi
|
40
|
-
- puppet
|
41
41
|
- puppetdoc
|
42
42
|
- ralsh
|
43
|
-
- puppetca
|
44
|
-
- puppetd
|
45
43
|
- puppetmasterd
|
46
44
|
- puppetqd
|
47
45
|
- puppetrun
|
46
|
+
- puppetd
|
47
|
+
- puppetca
|
48
48
|
extensions: []
|
49
49
|
|
50
50
|
extra_rdoc_files: []
|
51
51
|
|
52
52
|
files:
|
53
|
+
- README.md
|
53
54
|
- CHANGELOG
|
54
55
|
- CONTRIBUTING.md
|
56
|
+
- README_DEVELOPER.md
|
55
57
|
- LICENSE
|
56
58
|
- Rakefile
|
57
|
-
- README.md
|
58
|
-
- README_DEVELOPER.md
|
59
59
|
- install.rb
|
60
|
+
- bin/puppet
|
60
61
|
- bin/filebucket
|
61
62
|
- bin/pi
|
62
|
-
- bin/puppet
|
63
63
|
- bin/puppetdoc
|
64
64
|
- bin/ralsh
|
65
|
-
- lib/puppet/
|
66
|
-
- lib/puppet/
|
67
|
-
- lib/puppet/
|
68
|
-
- lib/puppet/
|
69
|
-
- lib/puppet/
|
70
|
-
- lib/puppet/
|
71
|
-
- lib/puppet/
|
72
|
-
- lib/puppet/
|
73
|
-
- lib/puppet/
|
74
|
-
- lib/puppet/
|
75
|
-
- lib/puppet/
|
76
|
-
- lib/puppet/
|
77
|
-
- lib/puppet/
|
78
|
-
- lib/puppet/
|
79
|
-
- lib/puppet/
|
80
|
-
- lib/puppet/
|
81
|
-
- lib/puppet/
|
82
|
-
- lib/puppet/
|
83
|
-
- lib/puppet/
|
84
|
-
- lib/puppet/
|
85
|
-
- lib/puppet/
|
86
|
-
- lib/puppet/
|
87
|
-
- lib/puppet/
|
88
|
-
- lib/puppet/
|
89
|
-
- lib/puppet/
|
90
|
-
- lib/puppet/
|
91
|
-
- lib/puppet/
|
92
|
-
- lib/puppet/
|
93
|
-
- lib/puppet/
|
94
|
-
- lib/puppet/
|
95
|
-
- lib/puppet/
|
96
|
-
- lib/puppet/
|
97
|
-
- lib/puppet/
|
98
|
-
- lib/puppet/
|
99
|
-
- lib/puppet/
|
100
|
-
- lib/puppet/
|
101
|
-
- lib/puppet/
|
102
|
-
- lib/puppet/
|
103
|
-
- lib/puppet/
|
104
|
-
- lib/puppet/
|
105
|
-
- lib/puppet/
|
106
|
-
- lib/puppet/
|
107
|
-
- lib/puppet/
|
108
|
-
- lib/puppet/
|
109
|
-
- lib/puppet/
|
110
|
-
- lib/puppet/
|
111
|
-
- lib/puppet/
|
112
|
-
- lib/puppet/
|
113
|
-
- lib/puppet/
|
114
|
-
- lib/puppet/
|
115
|
-
- lib/puppet/
|
116
|
-
- lib/puppet/
|
117
|
-
- lib/puppet/
|
118
|
-
- lib/puppet/
|
119
|
-
- lib/puppet/
|
120
|
-
- lib/puppet/
|
121
|
-
- lib/puppet/external/nagios.rb
|
122
|
-
- lib/puppet/external/pson/common.rb
|
123
|
-
- lib/puppet/external/pson/pure/generator.rb
|
124
|
-
- lib/puppet/external/pson/pure/parser.rb
|
125
|
-
- lib/puppet/external/pson/pure.rb
|
126
|
-
- lib/puppet/external/pson/version.rb
|
127
|
-
- lib/puppet/face/ca.rb
|
65
|
+
- lib/puppet/file_collection.rb
|
66
|
+
- lib/puppet/transaction/report.rb
|
67
|
+
- lib/puppet/transaction/event_manager.rb
|
68
|
+
- lib/puppet/transaction/event.rb
|
69
|
+
- lib/puppet/transaction/resource_harness.rb
|
70
|
+
- lib/puppet/network/format.rb
|
71
|
+
- lib/puppet/network/rest_authconfig.rb
|
72
|
+
- lib/puppet/network/http_server/mongrel.rb
|
73
|
+
- lib/puppet/network/rest_controller.rb
|
74
|
+
- lib/puppet/network/formats.rb
|
75
|
+
- lib/puppet/network/client_request.rb
|
76
|
+
- lib/puppet/network/http/rack.rb
|
77
|
+
- lib/puppet/network/http/api/v1.rb
|
78
|
+
- lib/puppet/network/http/api.rb
|
79
|
+
- lib/puppet/network/http/mongrel.rb
|
80
|
+
- lib/puppet/network/http/webrick/rest.rb
|
81
|
+
- lib/puppet/network/http/compression.rb
|
82
|
+
- lib/puppet/network/http/webrick.rb
|
83
|
+
- lib/puppet/network/http/handler.rb
|
84
|
+
- lib/puppet/network/http/rack/httphandler.rb
|
85
|
+
- lib/puppet/network/http/rack/xmlrpc.rb
|
86
|
+
- lib/puppet/network/http/rack/rest.rb
|
87
|
+
- lib/puppet/network/http/mongrel/rest.rb
|
88
|
+
- lib/puppet/network/http_pool.rb
|
89
|
+
- lib/puppet/network/server.rb
|
90
|
+
- lib/puppet/network/rights.rb
|
91
|
+
- lib/puppet/network/handler.rb
|
92
|
+
- lib/puppet/network/http_server.rb
|
93
|
+
- lib/puppet/network/rest_authorization.rb
|
94
|
+
- lib/puppet/network/xmlrpc/server.rb
|
95
|
+
- lib/puppet/network/xmlrpc/processor.rb
|
96
|
+
- lib/puppet/network/xmlrpc/webrick_servlet.rb
|
97
|
+
- lib/puppet/network/http.rb
|
98
|
+
- lib/puppet/network/format_handler.rb
|
99
|
+
- lib/puppet/network/authconfig.rb
|
100
|
+
- lib/puppet/network/authstore.rb
|
101
|
+
- lib/puppet/network/handler/status.rb
|
102
|
+
- lib/puppet/network/handler/runner.rb
|
103
|
+
- lib/puppet/network/handler/report.rb
|
104
|
+
- lib/puppet/network/handler/master.rb
|
105
|
+
- lib/puppet/network/handler/filebucket.rb
|
106
|
+
- lib/puppet/network/handler/fileserver.rb
|
107
|
+
- lib/puppet/network/handler/ca.rb
|
108
|
+
- lib/puppet/network/authorization.rb
|
109
|
+
- lib/puppet/status.rb
|
110
|
+
- lib/puppet/ssl.rb
|
111
|
+
- lib/puppet/provider.rb
|
112
|
+
- lib/puppet/face/module/changes.rb
|
113
|
+
- lib/puppet/face/module/list.rb
|
114
|
+
- lib/puppet/face/module/install.rb
|
115
|
+
- lib/puppet/face/module/build.rb
|
116
|
+
- lib/puppet/face/module/upgrade.rb
|
117
|
+
- lib/puppet/face/module/search.rb
|
118
|
+
- lib/puppet/face/module/uninstall.rb
|
119
|
+
- lib/puppet/face/module/generate.rb
|
120
|
+
- lib/puppet/face/status.rb
|
128
121
|
- lib/puppet/face/catalog/select.rb
|
129
|
-
- lib/puppet/face/catalog.rb
|
130
|
-
- lib/puppet/face/certificate.rb
|
131
|
-
- lib/puppet/face/certificate_request.rb
|
132
122
|
- lib/puppet/face/certificate_revocation_list.rb
|
133
|
-
- lib/puppet/face/
|
134
|
-
- lib/puppet/face/
|
123
|
+
- lib/puppet/face/parser.rb
|
124
|
+
- lib/puppet/face/man.rb
|
125
|
+
- lib/puppet/face/resource.rb
|
135
126
|
- lib/puppet/face/file/download.rb
|
136
127
|
- lib/puppet/face/file/store.rb
|
137
|
-
- lib/puppet/face/
|
128
|
+
- lib/puppet/face/node.rb
|
129
|
+
- lib/puppet/face/report.rb
|
130
|
+
- lib/puppet/face/node/clean.rb
|
131
|
+
- lib/puppet/face/facts.rb
|
132
|
+
- lib/puppet/face/module.rb
|
133
|
+
- lib/puppet/face/config.rb
|
134
|
+
- lib/puppet/face/instrumentation_probe.rb
|
135
|
+
- lib/puppet/face/help/man.erb
|
138
136
|
- lib/puppet/face/help/action.erb
|
139
137
|
- lib/puppet/face/help/face.erb
|
140
138
|
- lib/puppet/face/help/global.erb
|
141
|
-
- lib/puppet/face/
|
142
|
-
- lib/puppet/face/help.rb
|
143
|
-
- lib/puppet/face/instrumentation_data.rb
|
139
|
+
- lib/puppet/face/plugin.rb
|
144
140
|
- lib/puppet/face/instrumentation_listener.rb
|
145
|
-
- lib/puppet/face/instrumentation_probe.rb
|
146
141
|
- lib/puppet/face/key.rb
|
147
|
-
- lib/puppet/face/man.rb
|
148
|
-
- lib/puppet/face/module/build.rb
|
149
|
-
- lib/puppet/face/module/changes.rb
|
150
|
-
- lib/puppet/face/module/generate.rb
|
151
|
-
- lib/puppet/face/module/install.rb
|
152
|
-
- lib/puppet/face/module/list.rb
|
153
|
-
- lib/puppet/face/module/search.rb
|
154
|
-
- lib/puppet/face/module/uninstall.rb
|
155
|
-
- lib/puppet/face/module/upgrade.rb
|
156
|
-
- lib/puppet/face/module.rb
|
157
|
-
- lib/puppet/face/node/clean.rb
|
158
|
-
- lib/puppet/face/node.rb
|
159
|
-
- lib/puppet/face/parser.rb
|
160
|
-
- lib/puppet/face/plugin.rb
|
161
|
-
- lib/puppet/face/report.rb
|
162
|
-
- lib/puppet/face/resource.rb
|
163
|
-
- lib/puppet/face/resource_type.rb
|
164
142
|
- lib/puppet/face/secret_agent.rb
|
165
|
-
- lib/puppet/face/
|
166
|
-
- lib/puppet/face.rb
|
167
|
-
- lib/puppet/
|
168
|
-
- lib/puppet/
|
169
|
-
- lib/puppet/
|
170
|
-
- lib/puppet/
|
171
|
-
- lib/puppet/
|
172
|
-
- lib/puppet/
|
173
|
-
- lib/puppet/
|
174
|
-
- lib/puppet/
|
175
|
-
- lib/puppet/
|
176
|
-
- lib/puppet/
|
177
|
-
- lib/puppet/
|
178
|
-
- lib/puppet/
|
179
|
-
- lib/puppet/
|
143
|
+
- lib/puppet/face/file.rb
|
144
|
+
- lib/puppet/face/certificate.rb
|
145
|
+
- lib/puppet/face/certificate_request.rb
|
146
|
+
- lib/puppet/face/instrumentation_data.rb
|
147
|
+
- lib/puppet/face/help.rb
|
148
|
+
- lib/puppet/face/catalog.rb
|
149
|
+
- lib/puppet/face/resource_type.rb
|
150
|
+
- lib/puppet/face/ca.rb
|
151
|
+
- lib/puppet/agent.rb
|
152
|
+
- lib/puppet/rails.rb
|
153
|
+
- lib/puppet/agent/locker.rb
|
154
|
+
- lib/puppet/application.rb
|
155
|
+
- lib/puppet/parameter.rb
|
156
|
+
- lib/puppet/rails/inventory_node.rb
|
157
|
+
- lib/puppet/rails/fact_value.rb
|
158
|
+
- lib/puppet/rails/resource.rb
|
159
|
+
- lib/puppet/rails/puppet_tag.rb
|
160
|
+
- lib/puppet/rails/param_name.rb
|
161
|
+
- lib/puppet/rails/param_value.rb
|
162
|
+
- lib/puppet/rails/host.rb
|
163
|
+
- lib/puppet/rails/resource_tag.rb
|
164
|
+
- lib/puppet/rails/fact_name.rb
|
165
|
+
- lib/puppet/rails/benchmark.rb
|
166
|
+
- lib/puppet/rails/database/001_add_created_at_to_all_tables.rb
|
167
|
+
- lib/puppet/rails/database/004_add_inventory_service_tables.rb
|
168
|
+
- lib/puppet/rails/database/003_add_environment_to_host.rb
|
169
|
+
- lib/puppet/rails/database/schema.rb
|
170
|
+
- lib/puppet/rails/database/002_remove_duplicated_index_on_all_tables.rb
|
171
|
+
- lib/puppet/rails/inventory_fact.rb
|
172
|
+
- lib/puppet/rails/source_file.rb
|
173
|
+
- lib/puppet/run.rb
|
174
|
+
- lib/puppet/parser.rb
|
175
|
+
- lib/puppet/transaction.rb
|
176
|
+
- lib/puppet/simple_graph.rb
|
177
|
+
- lib/puppet/resource.rb
|
178
|
+
- lib/puppet/parameter/path.rb
|
179
|
+
- lib/puppet/parameter/value_collection.rb
|
180
|
+
- lib/puppet/parameter/value.rb
|
181
|
+
- lib/puppet/transportable.rb
|
180
182
|
- lib/puppet/file_collection/lookup.rb
|
181
|
-
- lib/puppet/
|
182
|
-
- lib/puppet/
|
183
|
-
- lib/puppet/
|
184
|
-
- lib/puppet/
|
185
|
-
- lib/puppet/
|
186
|
-
- lib/puppet/
|
187
|
-
- lib/puppet/
|
188
|
-
- lib/puppet/
|
189
|
-
- lib/puppet/
|
190
|
-
- lib/puppet/
|
191
|
-
- lib/puppet/
|
192
|
-
- lib/puppet/
|
193
|
-
- lib/puppet/
|
194
|
-
- lib/puppet/
|
195
|
-
- lib/puppet/
|
196
|
-
- lib/puppet/
|
197
|
-
- lib/puppet/
|
198
|
-
- lib/puppet/
|
199
|
-
- lib/puppet/
|
200
|
-
- lib/puppet/
|
201
|
-
- lib/puppet/
|
202
|
-
- lib/puppet/
|
203
|
-
- lib/puppet/
|
204
|
-
- lib/puppet/
|
205
|
-
- lib/puppet/
|
206
|
-
- lib/puppet/
|
207
|
-
- lib/puppet/
|
208
|
-
- lib/puppet/
|
209
|
-
- lib/puppet/
|
210
|
-
- lib/puppet/
|
211
|
-
- lib/puppet/
|
212
|
-
- lib/puppet/
|
213
|
-
- lib/puppet/
|
214
|
-
- lib/puppet/
|
215
|
-
- lib/puppet/
|
216
|
-
- lib/puppet/
|
217
|
-
- lib/puppet/
|
218
|
-
- lib/puppet/
|
183
|
+
- lib/puppet/dsl/resource_type_api.rb
|
184
|
+
- lib/puppet/dsl/resource_api.rb
|
185
|
+
- lib/puppet/module_tool/modulefile.rb
|
186
|
+
- lib/puppet/module_tool/skeleton/templates/generator/README.erb
|
187
|
+
- lib/puppet/module_tool/skeleton/templates/generator/Modulefile.erb
|
188
|
+
- lib/puppet/module_tool/skeleton/templates/generator/manifests/init.pp.erb
|
189
|
+
- lib/puppet/module_tool/skeleton/templates/generator/spec/spec_helper.rb
|
190
|
+
- lib/puppet/module_tool/skeleton/templates/generator/tests/init.pp.erb
|
191
|
+
- lib/puppet/module_tool/metadata.rb
|
192
|
+
- lib/puppet/module_tool/errors.rb
|
193
|
+
- lib/puppet/module_tool/checksums.rb
|
194
|
+
- lib/puppet/module_tool/shared_behaviors.rb
|
195
|
+
- lib/puppet/module_tool/applications.rb
|
196
|
+
- lib/puppet/module_tool/errors/shared.rb
|
197
|
+
- lib/puppet/module_tool/errors/upgrader.rb
|
198
|
+
- lib/puppet/module_tool/errors/base.rb
|
199
|
+
- lib/puppet/module_tool/errors/installer.rb
|
200
|
+
- lib/puppet/module_tool/errors/uninstaller.rb
|
201
|
+
- lib/puppet/module_tool/contents_description.rb
|
202
|
+
- lib/puppet/module_tool/dependency.rb
|
203
|
+
- lib/puppet/module_tool/skeleton.rb
|
204
|
+
- lib/puppet/module_tool/applications/application.rb
|
205
|
+
- lib/puppet/module_tool/applications/checksummer.rb
|
206
|
+
- lib/puppet/module_tool/applications/unpacker.rb
|
207
|
+
- lib/puppet/module_tool/applications/upgrader.rb
|
208
|
+
- lib/puppet/module_tool/applications/generator.rb
|
209
|
+
- lib/puppet/module_tool/applications/installer.rb
|
210
|
+
- lib/puppet/module_tool/applications/builder.rb
|
211
|
+
- lib/puppet/module_tool/applications/searcher.rb
|
212
|
+
- lib/puppet/module_tool/applications/uninstaller.rb
|
213
|
+
- lib/puppet/property/ordered_list.rb
|
214
|
+
- lib/puppet/property/list.rb
|
215
|
+
- lib/puppet/property/keyvalue.rb
|
216
|
+
- lib/puppet/property/ensure.rb
|
217
|
+
- lib/puppet/file_bucket/dipper.rb
|
218
|
+
- lib/puppet/file_bucket/file.rb
|
219
|
+
- lib/puppet/ssl/certificate_revocation_list.rb
|
220
|
+
- lib/puppet/ssl/certificate_authority/interface.rb
|
221
|
+
- lib/puppet/ssl/inventory.rb
|
222
|
+
- lib/puppet/ssl/base.rb
|
223
|
+
- lib/puppet/ssl/host.rb
|
224
|
+
- lib/puppet/ssl/certificate_factory.rb
|
225
|
+
- lib/puppet/ssl/key.rb
|
226
|
+
- lib/puppet/ssl/certificate.rb
|
227
|
+
- lib/puppet/ssl/certificate_request.rb
|
228
|
+
- lib/puppet/ssl/certificate_authority.rb
|
229
|
+
- lib/puppet/node.rb
|
230
|
+
- lib/puppet/rb_tree_map.rb
|
231
|
+
- lib/puppet/dsl.rb
|
232
|
+
- lib/puppet/error.rb
|
233
|
+
- lib/puppet/node/inventory.rb
|
234
|
+
- lib/puppet/node/facts.rb
|
235
|
+
- lib/puppet/node/environment.rb
|
236
|
+
- lib/puppet/metatype/manager.rb
|
237
|
+
- lib/puppet/application/status.rb
|
238
|
+
- lib/puppet/application/agent.rb
|
239
|
+
- lib/puppet/application/indirection_base.rb
|
240
|
+
- lib/puppet/application/certificate_revocation_list.rb
|
241
|
+
- lib/puppet/application/parser.rb
|
242
|
+
- lib/puppet/application/man.rb
|
243
|
+
- lib/puppet/application/resource.rb
|
244
|
+
- lib/puppet/application/inspect.rb
|
245
|
+
- lib/puppet/application/apply.rb
|
246
|
+
- lib/puppet/application/node.rb
|
247
|
+
- lib/puppet/application/report.rb
|
248
|
+
- lib/puppet/application/facts.rb
|
249
|
+
- lib/puppet/application/module.rb
|
250
|
+
- lib/puppet/application/kick.rb
|
251
|
+
- lib/puppet/application/config.rb
|
252
|
+
- lib/puppet/application/device.rb
|
253
|
+
- lib/puppet/application/instrumentation_probe.rb
|
254
|
+
- lib/puppet/application/describe.rb
|
255
|
+
- lib/puppet/application/doc.rb
|
256
|
+
- lib/puppet/application/plugin.rb
|
257
|
+
- lib/puppet/application/instrumentation_listener.rb
|
258
|
+
- lib/puppet/application/master.rb
|
259
|
+
- lib/puppet/application/cert.rb
|
260
|
+
- lib/puppet/application/key.rb
|
261
|
+
- lib/puppet/application/secret_agent.rb
|
262
|
+
- lib/puppet/application/file.rb
|
263
|
+
- lib/puppet/application/filebucket.rb
|
264
|
+
- lib/puppet/application/certificate.rb
|
265
|
+
- lib/puppet/application/certificate_request.rb
|
266
|
+
- lib/puppet/application/instrumentation_data.rb
|
267
|
+
- lib/puppet/application/help.rb
|
268
|
+
- lib/puppet/application/queue.rb
|
269
|
+
- lib/puppet/application/catalog.rb
|
270
|
+
- lib/puppet/application/face_base.rb
|
271
|
+
- lib/puppet/application/resource_type.rb
|
272
|
+
- lib/puppet/application/ca.rb
|
273
|
+
- lib/puppet/file_serving.rb
|
274
|
+
- lib/puppet/test/test_helper.rb
|
275
|
+
- lib/puppet/module.rb
|
276
|
+
- lib/puppet/indirector.rb
|
277
|
+
- lib/puppet/reference/report.rb
|
278
|
+
- lib/puppet/reference/configuration.rb
|
279
|
+
- lib/puppet/reference/indirection.rb
|
280
|
+
- lib/puppet/reference/network.rb
|
281
|
+
- lib/puppet/reference/metaparameter.rb
|
282
|
+
- lib/puppet/reference/providers.rb
|
283
|
+
- lib/puppet/reference/type.rb
|
284
|
+
- lib/puppet/reference/function.rb
|
285
|
+
- lib/puppet/file_serving/content.rb
|
286
|
+
- lib/puppet/file_serving/fileset.rb
|
287
|
+
- lib/puppet/file_serving/terminus_helper.rb
|
288
|
+
- lib/puppet/file_serving/configuration/parser.rb
|
289
|
+
- lib/puppet/file_serving/metadata.rb
|
290
|
+
- lib/puppet/file_serving/configuration.rb
|
291
|
+
- lib/puppet/file_serving/base.rb
|
292
|
+
- lib/puppet/file_serving/terminus_selector.rb
|
293
|
+
- lib/puppet/file_serving/mount.rb
|
294
|
+
- lib/puppet/file_serving/mount/modules.rb
|
295
|
+
- lib/puppet/file_serving/mount/file.rb
|
296
|
+
- lib/puppet/file_serving/mount/plugins.rb
|
297
|
+
- lib/puppet/property.rb
|
298
|
+
- lib/puppet/parser/yaml_trimmer.rb
|
299
|
+
- lib/puppet/parser/lexer.rb
|
300
|
+
- lib/puppet/parser/parser.rb
|
301
|
+
- lib/puppet/parser/functions.rb
|
302
|
+
- lib/puppet/parser/resource.rb
|
303
|
+
- lib/puppet/parser/ast/branch.rb
|
304
|
+
- lib/puppet/parser/ast/resource_override.rb
|
305
|
+
- lib/puppet/parser/ast/top_level_construct.rb
|
306
|
+
- lib/puppet/parser/ast/caseopt.rb
|
307
|
+
- lib/puppet/parser/ast/resourceparam.rb
|
308
|
+
- lib/puppet/parser/ast/resource.rb
|
309
|
+
- lib/puppet/parser/ast/selector.rb
|
310
|
+
- lib/puppet/parser/ast/node.rb
|
311
|
+
- lib/puppet/parser/ast/collexpr.rb
|
312
|
+
- lib/puppet/parser/ast/boolean_operator.rb
|
313
|
+
- lib/puppet/parser/ast/hostclass.rb
|
314
|
+
- lib/puppet/parser/ast/resource_reference.rb
|
315
|
+
- lib/puppet/parser/ast/arithmetic_operator.rb
|
316
|
+
- lib/puppet/parser/ast/tag.rb
|
317
|
+
- lib/puppet/parser/ast/vardef.rb
|
318
|
+
- lib/puppet/parser/ast/resource_instance.rb
|
319
|
+
- lib/puppet/parser/ast/collection.rb
|
320
|
+
- lib/puppet/parser/ast/else.rb
|
321
|
+
- lib/puppet/parser/ast/function.rb
|
322
|
+
- lib/puppet/parser/ast/not.rb
|
323
|
+
- lib/puppet/parser/ast/ifstatement.rb
|
324
|
+
- lib/puppet/parser/ast/comparison_operator.rb
|
325
|
+
- lib/puppet/parser/ast/casestatement.rb
|
326
|
+
- lib/puppet/parser/ast/relationship.rb
|
327
|
+
- lib/puppet/parser/ast/leaf.rb
|
328
|
+
- lib/puppet/parser/ast/nop.rb
|
329
|
+
- lib/puppet/parser/ast/match_operator.rb
|
330
|
+
- lib/puppet/parser/ast/in_operator.rb
|
331
|
+
- lib/puppet/parser/ast/definition.rb
|
332
|
+
- lib/puppet/parser/ast/asthash.rb
|
333
|
+
- lib/puppet/parser/ast/resource_defaults.rb
|
334
|
+
- lib/puppet/parser/ast/minus.rb
|
335
|
+
- lib/puppet/parser/ast/astarray.rb
|
336
|
+
- lib/puppet/parser/compiler.rb
|
337
|
+
- lib/puppet/parser/type_loader.rb
|
338
|
+
- lib/puppet/parser/files.rb
|
339
|
+
- lib/puppet/parser/grammar.ra
|
340
|
+
- lib/puppet/parser/collector.rb
|
341
|
+
- lib/puppet/parser/scope.rb
|
342
|
+
- lib/puppet/parser/templatewrapper.rb
|
343
|
+
- lib/puppet/parser/makefile
|
344
|
+
- lib/puppet/parser/relationship.rb
|
345
|
+
- lib/puppet/parser/ast.rb
|
346
|
+
- lib/puppet/parser/parser_support.rb
|
347
|
+
- lib/puppet/parser/functions/versioncmp.rb
|
348
|
+
- lib/puppet/parser/functions/include.rb
|
349
|
+
- lib/puppet/parser/functions/regsubst.rb
|
350
|
+
- lib/puppet/parser/functions/extlookup.rb
|
351
|
+
- lib/puppet/parser/functions/tag.rb
|
352
|
+
- lib/puppet/parser/functions/realize.rb
|
353
|
+
- lib/puppet/parser/functions/template.rb
|
354
|
+
- lib/puppet/parser/functions/tagged.rb
|
355
|
+
- lib/puppet/parser/functions/fail.rb
|
356
|
+
- lib/puppet/parser/functions/shellquote.rb
|
357
|
+
- lib/puppet/parser/functions/search.rb
|
358
|
+
- lib/puppet/parser/functions/generate.rb
|
359
|
+
- lib/puppet/parser/functions/sprintf.rb
|
360
|
+
- lib/puppet/parser/functions/fqdn_rand.rb
|
361
|
+
- lib/puppet/parser/functions/require.rb
|
362
|
+
- lib/puppet/parser/functions/sha1.rb
|
363
|
+
- lib/puppet/parser/functions/file.rb
|
364
|
+
- lib/puppet/parser/functions/defined.rb
|
365
|
+
- lib/puppet/parser/functions/create_resources.rb
|
366
|
+
- lib/puppet/parser/functions/md5.rb
|
367
|
+
- lib/puppet/parser/functions/inline_template.rb
|
368
|
+
- lib/puppet/parser/functions/split.rb
|
369
|
+
- lib/puppet/parser/resource/param.rb
|
370
|
+
- lib/puppet/network.rb
|
371
|
+
- lib/puppet/defaults.rb
|
372
|
+
- lib/puppet/indirector/status.rb
|
373
|
+
- lib/puppet/indirector/file_content/selector.rb
|
374
|
+
- lib/puppet/indirector/file_content/file_server.rb
|
375
|
+
- lib/puppet/indirector/file_content/rest.rb
|
376
|
+
- lib/puppet/indirector/file_content/file.rb
|
219
377
|
- lib/puppet/indirector/couch.rb
|
220
|
-
- lib/puppet/indirector/
|
221
|
-
- lib/puppet/indirector/
|
222
|
-
- lib/puppet/indirector/
|
223
|
-
- lib/puppet/indirector/
|
224
|
-
- lib/puppet/indirector/
|
378
|
+
- lib/puppet/indirector/catalog/compiler.rb
|
379
|
+
- lib/puppet/indirector/catalog/yaml.rb
|
380
|
+
- lib/puppet/indirector/catalog/static_compiler.rb
|
381
|
+
- lib/puppet/indirector/catalog/rest.rb
|
382
|
+
- lib/puppet/indirector/catalog/store_configs.rb
|
383
|
+
- lib/puppet/indirector/catalog/active_record.rb
|
384
|
+
- lib/puppet/indirector/catalog/queue.rb
|
225
385
|
- lib/puppet/indirector/facts/couch.rb
|
226
386
|
- lib/puppet/indirector/facts/facter.rb
|
227
|
-
- lib/puppet/indirector/facts/inventory_active_record.rb
|
228
387
|
- lib/puppet/indirector/facts/inventory_service.rb
|
229
|
-
- lib/puppet/indirector/facts/
|
388
|
+
- lib/puppet/indirector/facts/yaml.rb
|
230
389
|
- lib/puppet/indirector/facts/network_device.rb
|
231
390
|
- lib/puppet/indirector/facts/rest.rb
|
232
391
|
- lib/puppet/indirector/facts/store_configs.rb
|
233
|
-
- lib/puppet/indirector/facts/
|
234
|
-
- lib/puppet/indirector/
|
235
|
-
- lib/puppet/indirector/
|
236
|
-
- lib/puppet/indirector/
|
237
|
-
- lib/puppet/indirector/
|
238
|
-
- lib/puppet/indirector/
|
239
|
-
- lib/puppet/indirector/
|
240
|
-
- lib/puppet/indirector/
|
241
|
-
- lib/puppet/indirector/
|
242
|
-
- lib/puppet/indirector/
|
392
|
+
- lib/puppet/indirector/facts/active_record.rb
|
393
|
+
- lib/puppet/indirector/facts/memory.rb
|
394
|
+
- lib/puppet/indirector/facts/inventory_active_record.rb
|
395
|
+
- lib/puppet/indirector/inventory/yaml.rb
|
396
|
+
- lib/puppet/indirector/request.rb
|
397
|
+
- lib/puppet/indirector/report/yaml.rb
|
398
|
+
- lib/puppet/indirector/report/rest.rb
|
399
|
+
- lib/puppet/indirector/report/processor.rb
|
400
|
+
- lib/puppet/indirector/certificate_request/rest.rb
|
401
|
+
- lib/puppet/indirector/certificate_request/file.rb
|
402
|
+
- lib/puppet/indirector/certificate_request/ca.rb
|
403
|
+
- lib/puppet/indirector/key/file.rb
|
404
|
+
- lib/puppet/indirector/key/ca.rb
|
405
|
+
- lib/puppet/indirector/exec.rb
|
406
|
+
- lib/puppet/indirector/plain.rb
|
407
|
+
- lib/puppet/indirector/file_metadata/selector.rb
|
243
408
|
- lib/puppet/indirector/file_metadata/file_server.rb
|
244
409
|
- lib/puppet/indirector/file_metadata/rest.rb
|
245
|
-
- lib/puppet/indirector/file_metadata/
|
246
|
-
- lib/puppet/indirector/file_metadata.rb
|
247
|
-
- lib/puppet/indirector/file_server.rb
|
248
|
-
- lib/puppet/indirector/indirection.rb
|
249
|
-
- lib/puppet/indirector/instrumentation_data/local.rb
|
250
|
-
- lib/puppet/indirector/instrumentation_data/rest.rb
|
251
|
-
- lib/puppet/indirector/instrumentation_data.rb
|
410
|
+
- lib/puppet/indirector/file_metadata/file.rb
|
252
411
|
- lib/puppet/indirector/instrumentation_listener/local.rb
|
253
412
|
- lib/puppet/indirector/instrumentation_listener/rest.rb
|
254
|
-
- lib/puppet/indirector/
|
255
|
-
- lib/puppet/indirector/
|
256
|
-
- lib/puppet/indirector/
|
257
|
-
- lib/puppet/indirector/
|
258
|
-
- lib/puppet/indirector/
|
259
|
-
- lib/puppet/indirector/key/ca.rb
|
260
|
-
- lib/puppet/indirector/key/file.rb
|
261
|
-
- lib/puppet/indirector/ldap.rb
|
262
|
-
- lib/puppet/indirector/memory.rb
|
263
|
-
- lib/puppet/indirector/node/active_record.rb
|
413
|
+
- lib/puppet/indirector/ssl_file.rb
|
414
|
+
- lib/puppet/indirector/instrumentation_data/local.rb
|
415
|
+
- lib/puppet/indirector/instrumentation_data/rest.rb
|
416
|
+
- lib/puppet/indirector/run/local.rb
|
417
|
+
- lib/puppet/indirector/run/rest.rb
|
264
418
|
- lib/puppet/indirector/node/exec.rb
|
265
|
-
- lib/puppet/indirector/node/ldap.rb
|
266
|
-
- lib/puppet/indirector/node/memory.rb
|
267
419
|
- lib/puppet/indirector/node/plain.rb
|
420
|
+
- lib/puppet/indirector/node/yaml.rb
|
268
421
|
- lib/puppet/indirector/node/rest.rb
|
269
422
|
- lib/puppet/indirector/node/store_configs.rb
|
270
|
-
- lib/puppet/indirector/node/
|
271
|
-
- lib/puppet/indirector/
|
423
|
+
- lib/puppet/indirector/node/active_record.rb
|
424
|
+
- lib/puppet/indirector/node/memory.rb
|
425
|
+
- lib/puppet/indirector/node/ldap.rb
|
426
|
+
- lib/puppet/indirector/file_content.rb
|
427
|
+
- lib/puppet/indirector/envelope.rb
|
428
|
+
- lib/puppet/indirector/instrumentation_probe/local.rb
|
429
|
+
- lib/puppet/indirector/instrumentation_probe/rest.rb
|
430
|
+
- lib/puppet/indirector/yaml.rb
|
431
|
+
- lib/puppet/indirector/terminus.rb
|
432
|
+
- lib/puppet/indirector/code.rb
|
433
|
+
- lib/puppet/indirector/indirection.rb
|
434
|
+
- lib/puppet/indirector/instrumentation_probe.rb
|
435
|
+
- lib/puppet/indirector/certificate_revocation_list/rest.rb
|
436
|
+
- lib/puppet/indirector/certificate_revocation_list/file.rb
|
437
|
+
- lib/puppet/indirector/certificate_revocation_list/ca.rb
|
438
|
+
- lib/puppet/indirector/instrumentation_listener.rb
|
439
|
+
- lib/puppet/indirector/file_server.rb
|
440
|
+
- lib/puppet/indirector/certificate/rest.rb
|
441
|
+
- lib/puppet/indirector/certificate/file.rb
|
442
|
+
- lib/puppet/indirector/certificate/ca.rb
|
443
|
+
- lib/puppet/indirector/certificate_status/rest.rb
|
444
|
+
- lib/puppet/indirector/certificate_status/file.rb
|
445
|
+
- lib/puppet/indirector/rest.rb
|
446
|
+
- lib/puppet/indirector/store_configs.rb
|
447
|
+
- lib/puppet/indirector/active_record.rb
|
448
|
+
- lib/puppet/indirector/status/local.rb
|
449
|
+
- lib/puppet/indirector/status/rest.rb
|
450
|
+
- lib/puppet/indirector/memory.rb
|
451
|
+
- lib/puppet/indirector/instrumentation_data.rb
|
452
|
+
- lib/puppet/indirector/face.rb
|
272
453
|
- lib/puppet/indirector/queue.rb
|
273
|
-
- lib/puppet/indirector/
|
274
|
-
- lib/puppet/indirector/report/rest.rb
|
275
|
-
- lib/puppet/indirector/report/yaml.rb
|
276
|
-
- lib/puppet/indirector/request.rb
|
277
|
-
- lib/puppet/indirector/resource/active_record.rb
|
278
|
-
- lib/puppet/indirector/resource/ral.rb
|
454
|
+
- lib/puppet/indirector/certificate_status.rb
|
279
455
|
- lib/puppet/indirector/resource/rest.rb
|
280
456
|
- lib/puppet/indirector/resource/store_configs.rb
|
457
|
+
- lib/puppet/indirector/resource/active_record.rb
|
458
|
+
- lib/puppet/indirector/resource/ral.rb
|
459
|
+
- lib/puppet/indirector/resource_type.rb
|
460
|
+
- lib/puppet/indirector/ldap.rb
|
281
461
|
- lib/puppet/indirector/resource_type/parser.rb
|
282
462
|
- lib/puppet/indirector/resource_type/rest.rb
|
283
|
-
- lib/puppet/indirector/
|
284
|
-
- lib/puppet/indirector/
|
285
|
-
- lib/puppet/indirector/
|
286
|
-
- lib/puppet/indirector/
|
287
|
-
- lib/puppet/indirector/
|
288
|
-
- lib/puppet/indirector/status/local.rb
|
289
|
-
- lib/puppet/indirector/status/rest.rb
|
290
|
-
- lib/puppet/indirector/status.rb
|
291
|
-
- lib/puppet/indirector/store_configs.rb
|
292
|
-
- lib/puppet/indirector/terminus.rb
|
293
|
-
- lib/puppet/indirector/yaml.rb
|
294
|
-
- lib/puppet/indirector.rb
|
295
|
-
- lib/puppet/interface/action.rb
|
296
|
-
- lib/puppet/interface/action_builder.rb
|
297
|
-
- lib/puppet/interface/action_manager.rb
|
298
|
-
- lib/puppet/interface/documentation.rb
|
299
|
-
- lib/puppet/interface/face_collection.rb
|
300
|
-
- lib/puppet/interface/option.rb
|
301
|
-
- lib/puppet/interface/option_builder.rb
|
302
|
-
- lib/puppet/interface/option_manager.rb
|
303
|
-
- lib/puppet/interface.rb
|
304
|
-
- lib/puppet/metatype/manager.rb
|
305
|
-
- lib/puppet/module.rb
|
306
|
-
- lib/puppet/module_tool/applications/application.rb
|
307
|
-
- lib/puppet/module_tool/applications/builder.rb
|
308
|
-
- lib/puppet/module_tool/applications/checksummer.rb
|
309
|
-
- lib/puppet/module_tool/applications/generator.rb
|
310
|
-
- lib/puppet/module_tool/applications/installer.rb
|
311
|
-
- lib/puppet/module_tool/applications/searcher.rb
|
312
|
-
- lib/puppet/module_tool/applications/uninstaller.rb
|
313
|
-
- lib/puppet/module_tool/applications/unpacker.rb
|
314
|
-
- lib/puppet/module_tool/applications/upgrader.rb
|
315
|
-
- lib/puppet/module_tool/applications.rb
|
316
|
-
- lib/puppet/module_tool/checksums.rb
|
317
|
-
- lib/puppet/module_tool/contents_description.rb
|
318
|
-
- lib/puppet/module_tool/dependency.rb
|
319
|
-
- lib/puppet/module_tool/errors/base.rb
|
320
|
-
- lib/puppet/module_tool/errors/installer.rb
|
321
|
-
- lib/puppet/module_tool/errors/shared.rb
|
322
|
-
- lib/puppet/module_tool/errors/uninstaller.rb
|
323
|
-
- lib/puppet/module_tool/errors/upgrader.rb
|
324
|
-
- lib/puppet/module_tool/errors.rb
|
325
|
-
- lib/puppet/module_tool/metadata.rb
|
326
|
-
- lib/puppet/module_tool/modulefile.rb
|
327
|
-
- lib/puppet/module_tool/shared_behaviors.rb
|
328
|
-
- lib/puppet/module_tool/skeleton/templates/generator/manifests/init.pp.erb
|
329
|
-
- lib/puppet/module_tool/skeleton/templates/generator/Modulefile.erb
|
330
|
-
- lib/puppet/module_tool/skeleton/templates/generator/README.erb
|
331
|
-
- lib/puppet/module_tool/skeleton/templates/generator/spec/spec_helper.rb
|
332
|
-
- lib/puppet/module_tool/skeleton/templates/generator/tests/init.pp.erb
|
333
|
-
- lib/puppet/module_tool/skeleton.rb
|
463
|
+
- lib/puppet/indirector/file_metadata.rb
|
464
|
+
- lib/puppet/indirector/file_bucket_file/selector.rb
|
465
|
+
- lib/puppet/indirector/file_bucket_file/rest.rb
|
466
|
+
- lib/puppet/indirector/file_bucket_file/file.rb
|
467
|
+
- lib/puppet/indirector/direct_file_server.rb
|
334
468
|
- lib/puppet/module_tool.rb
|
335
|
-
- lib/puppet/
|
336
|
-
- lib/puppet/
|
337
|
-
- lib/puppet/
|
338
|
-
- lib/puppet/
|
339
|
-
- lib/puppet/
|
340
|
-
- lib/puppet/
|
341
|
-
- lib/puppet/
|
342
|
-
- lib/puppet/
|
343
|
-
- lib/puppet/
|
344
|
-
- lib/puppet/
|
345
|
-
- lib/puppet/
|
346
|
-
- lib/puppet/
|
347
|
-
- lib/puppet/
|
348
|
-
- lib/puppet/
|
349
|
-
- lib/puppet/
|
350
|
-
- lib/puppet/
|
351
|
-
- lib/puppet/
|
352
|
-
- lib/puppet/
|
353
|
-
- lib/puppet/
|
354
|
-
- lib/puppet/
|
355
|
-
- lib/puppet/
|
356
|
-
- lib/puppet/
|
357
|
-
- lib/puppet/
|
358
|
-
- lib/puppet/
|
359
|
-
- lib/puppet/
|
360
|
-
- lib/puppet/
|
361
|
-
- lib/puppet/
|
362
|
-
- lib/puppet/
|
363
|
-
- lib/puppet/
|
364
|
-
- lib/puppet/
|
365
|
-
- lib/puppet/
|
366
|
-
- lib/puppet/
|
367
|
-
- lib/puppet/
|
368
|
-
- lib/puppet/
|
369
|
-
- lib/puppet/
|
370
|
-
- lib/puppet/
|
371
|
-
- lib/puppet/
|
372
|
-
- lib/puppet/
|
373
|
-
- lib/puppet/
|
374
|
-
- lib/puppet/
|
375
|
-
- lib/puppet/
|
376
|
-
- lib/puppet/
|
377
|
-
- lib/puppet/
|
378
|
-
- lib/puppet/
|
379
|
-
- lib/puppet/
|
380
|
-
- lib/puppet/
|
381
|
-
- lib/puppet/
|
382
|
-
- lib/puppet/
|
383
|
-
- lib/puppet/
|
384
|
-
- lib/puppet/
|
385
|
-
- lib/puppet/
|
386
|
-
- lib/puppet/
|
387
|
-
- lib/puppet/
|
388
|
-
- lib/puppet/
|
389
|
-
- lib/puppet/
|
390
|
-
- lib/puppet/
|
391
|
-
- lib/puppet/
|
392
|
-
- lib/puppet/
|
393
|
-
- lib/puppet/
|
394
|
-
- lib/puppet/
|
395
|
-
- lib/puppet/
|
396
|
-
- lib/puppet/
|
397
|
-
- lib/puppet/
|
398
|
-
- lib/puppet/
|
399
|
-
- lib/puppet/
|
400
|
-
- lib/puppet/
|
401
|
-
- lib/puppet/
|
402
|
-
- lib/puppet/
|
403
|
-
- lib/puppet/
|
404
|
-
- lib/puppet/
|
405
|
-
- lib/puppet/
|
406
|
-
- lib/puppet/
|
407
|
-
- lib/puppet/
|
408
|
-
- lib/puppet/
|
409
|
-
- lib/puppet/
|
410
|
-
- lib/puppet/
|
411
|
-
- lib/puppet/
|
412
|
-
- lib/puppet/
|
413
|
-
- lib/puppet/
|
414
|
-
- lib/puppet/
|
415
|
-
- lib/puppet/
|
416
|
-
- lib/puppet/
|
417
|
-
- lib/puppet/
|
418
|
-
- lib/puppet/
|
419
|
-
- lib/puppet/
|
420
|
-
- lib/puppet/
|
421
|
-
- lib/puppet/
|
422
|
-
- lib/puppet/
|
423
|
-
- lib/puppet/
|
424
|
-
- lib/puppet/
|
425
|
-
- lib/puppet/
|
426
|
-
- lib/puppet/
|
427
|
-
- lib/puppet/
|
428
|
-
- lib/puppet/
|
429
|
-
- lib/puppet/
|
430
|
-
- lib/puppet/
|
431
|
-
- lib/puppet/
|
432
|
-
- lib/puppet/
|
433
|
-
- lib/puppet/
|
434
|
-
- lib/puppet/
|
435
|
-
- lib/puppet/
|
436
|
-
- lib/puppet/
|
437
|
-
- lib/puppet/
|
438
|
-
- lib/puppet/
|
439
|
-
- lib/puppet/
|
440
|
-
- lib/puppet/
|
441
|
-
- lib/puppet/
|
442
|
-
- lib/puppet/
|
443
|
-
- lib/puppet/
|
444
|
-
- lib/puppet/
|
445
|
-
- lib/puppet/
|
446
|
-
- lib/puppet/
|
447
|
-
- lib/puppet/
|
448
|
-
- lib/puppet/parser/relationship.rb
|
449
|
-
- lib/puppet/parser/resource/param.rb
|
450
|
-
- lib/puppet/parser/resource.rb
|
451
|
-
- lib/puppet/parser/scope.rb
|
452
|
-
- lib/puppet/parser/templatewrapper.rb
|
453
|
-
- lib/puppet/parser/type_loader.rb
|
454
|
-
- lib/puppet/parser/yaml_trimmer.rb
|
455
|
-
- lib/puppet/parser.rb
|
456
|
-
- lib/puppet/property/ensure.rb
|
457
|
-
- lib/puppet/property/keyvalue.rb
|
458
|
-
- lib/puppet/property/list.rb
|
459
|
-
- lib/puppet/property/ordered_list.rb
|
460
|
-
- lib/puppet/property.rb
|
461
|
-
- lib/puppet/provider/aixobject.rb
|
462
|
-
- lib/puppet/provider/augeas/augeas.rb
|
463
|
-
- lib/puppet/provider/cisco.rb
|
464
|
-
- lib/puppet/provider/computer/computer.rb
|
465
|
-
- lib/puppet/provider/confine/exists.rb
|
466
|
-
- lib/puppet/provider/confine/false.rb
|
467
|
-
- lib/puppet/provider/confine/feature.rb
|
468
|
-
- lib/puppet/provider/confine/true.rb
|
469
|
-
- lib/puppet/provider/confine/variable.rb
|
470
|
-
- lib/puppet/provider/confine.rb
|
471
|
-
- lib/puppet/provider/confine_collection.rb
|
472
|
-
- lib/puppet/provider/confiner.rb
|
473
|
-
- lib/puppet/provider/cron/crontab.rb
|
474
|
-
- lib/puppet/provider/exec/posix.rb
|
475
|
-
- lib/puppet/provider/exec/shell.rb
|
476
|
-
- lib/puppet/provider/exec/windows.rb
|
477
|
-
- lib/puppet/provider/exec.rb
|
478
|
-
- lib/puppet/provider/file/posix.rb
|
469
|
+
- lib/puppet/type.rb
|
470
|
+
- lib/puppet/forge/repository.rb
|
471
|
+
- lib/puppet/forge/cache.rb
|
472
|
+
- lib/puppet/util/retryaction.rb
|
473
|
+
- lib/puppet/util/symbolic_file_mode.rb
|
474
|
+
- lib/puppet/util/diff.rb
|
475
|
+
- lib/puppet/util/inline_docs.rb
|
476
|
+
- lib/puppet/util/provider_features.rb
|
477
|
+
- lib/puppet/util/methodhelper.rb
|
478
|
+
- lib/puppet/util/classgen.rb
|
479
|
+
- lib/puppet/util/monkey_patches.rb
|
480
|
+
- lib/puppet/util/adsi.rb
|
481
|
+
- lib/puppet/util/rails/cache_accumulator.rb
|
482
|
+
- lib/puppet/util/rails/collection_merger.rb
|
483
|
+
- lib/puppet/util/rails/reference_serializer.rb
|
484
|
+
- lib/puppet/util/metric.rb
|
485
|
+
- lib/puppet/util/log.rb
|
486
|
+
- lib/puppet/util/storage.rb
|
487
|
+
- lib/puppet/util/settings.rb
|
488
|
+
- lib/puppet/util/zaml.rb
|
489
|
+
- lib/puppet/util/colors.rb
|
490
|
+
- lib/puppet/util/pson.rb
|
491
|
+
- lib/puppet/util/package.rb
|
492
|
+
- lib/puppet/util/posix.rb
|
493
|
+
- lib/puppet/util/metaid.rb
|
494
|
+
- lib/puppet/util/logging.rb
|
495
|
+
- lib/puppet/util/log_paths.rb
|
496
|
+
- lib/puppet/util/execution_stub.rb
|
497
|
+
- lib/puppet/util/run_mode.rb
|
498
|
+
- lib/puppet/util/reference.rb
|
499
|
+
- lib/puppet/util/errors.rb
|
500
|
+
- lib/puppet/util/execution.rb
|
501
|
+
- lib/puppet/util/resource_template.rb
|
502
|
+
- lib/puppet/util/instance_loader.rb
|
503
|
+
- lib/puppet/util/checksums.rb
|
504
|
+
- lib/puppet/util/rdoc/parser.rb
|
505
|
+
- lib/puppet/util/rdoc/generators/puppet_generator.rb
|
506
|
+
- lib/puppet/util/rdoc/generators/template/puppet/puppet.rb
|
507
|
+
- lib/puppet/util/rdoc/code_objects.rb
|
508
|
+
- lib/puppet/util/suidmanager.rb
|
509
|
+
- lib/puppet/util/network_device/ipcalc.rb
|
510
|
+
- lib/puppet/util/network_device/cisco.rb
|
511
|
+
- lib/puppet/util/network_device/cisco/facts.rb
|
512
|
+
- lib/puppet/util/network_device/cisco/device.rb
|
513
|
+
- lib/puppet/util/network_device/cisco/interface.rb
|
514
|
+
- lib/puppet/util/network_device/transport.rb
|
515
|
+
- lib/puppet/util/network_device/base.rb
|
516
|
+
- lib/puppet/util/network_device/config.rb
|
517
|
+
- lib/puppet/util/network_device/transport/base.rb
|
518
|
+
- lib/puppet/util/network_device/transport/telnet.rb
|
519
|
+
- lib/puppet/util/network_device/transport/ssh.rb
|
520
|
+
- lib/puppet/util/docs.rb
|
521
|
+
- lib/puppet/util/network_device.rb
|
522
|
+
- lib/puppet/util/pidlock.rb
|
523
|
+
- lib/puppet/util/loadedfile.rb
|
524
|
+
- lib/puppet/util/inifile.rb
|
525
|
+
- lib/puppet/util/user_attr.rb
|
526
|
+
- lib/puppet/util/feature.rb
|
527
|
+
- lib/puppet/util/selinux.rb
|
528
|
+
- lib/puppet/util/autoload/file_cache.rb
|
529
|
+
- lib/puppet/util/queue/stomp.rb
|
530
|
+
- lib/puppet/util/settings/boolean_setting.rb
|
531
|
+
- lib/puppet/util/settings/file_setting.rb
|
532
|
+
- lib/puppet/util/settings/setting.rb
|
533
|
+
- lib/puppet/util/instrumentation.rb
|
534
|
+
- lib/puppet/util/fileparsing.rb
|
535
|
+
- lib/puppet/util/command_line.rb
|
536
|
+
- lib/puppet/util/log/destination.rb
|
537
|
+
- lib/puppet/util/log/destinations.rb
|
538
|
+
- lib/puppet/util/autoload.rb
|
539
|
+
- lib/puppet/util/tagging.rb
|
540
|
+
- lib/puppet/util/rdoc.rb
|
541
|
+
- lib/puppet/util/file_locking.rb
|
542
|
+
- lib/puppet/util/plugins.rb
|
543
|
+
- lib/puppet/util/ldap/generator.rb
|
544
|
+
- lib/puppet/util/ldap/manager.rb
|
545
|
+
- lib/puppet/util/ldap/connection.rb
|
546
|
+
- lib/puppet/util/backups.rb
|
547
|
+
- lib/puppet/util/platform.rb
|
548
|
+
- lib/puppet/util/nagios_maker.rb
|
549
|
+
- lib/puppet/util/queue.rb
|
550
|
+
- lib/puppet/util/filetype.rb
|
551
|
+
- lib/puppet/util/constant_inflector.rb
|
552
|
+
- lib/puppet/util/graph.rb
|
553
|
+
- lib/puppet/util/instrumentation/data.rb
|
554
|
+
- lib/puppet/util/instrumentation/listener.rb
|
555
|
+
- lib/puppet/util/instrumentation/instrumentable.rb
|
556
|
+
- lib/puppet/util/instrumentation/listeners/log.rb
|
557
|
+
- lib/puppet/util/instrumentation/listeners/performance.rb
|
558
|
+
- lib/puppet/util/instrumentation/indirection_probe.rb
|
559
|
+
- lib/puppet/util/subclass_loader.rb
|
560
|
+
- lib/puppet/util/terminal.rb
|
561
|
+
- lib/puppet/util/ldap.rb
|
562
|
+
- lib/puppet/util/windows/process.rb
|
563
|
+
- lib/puppet/util/windows/user.rb
|
564
|
+
- lib/puppet/util/windows/error.rb
|
565
|
+
- lib/puppet/util/windows/file.rb
|
566
|
+
- lib/puppet/util/windows/security.rb
|
567
|
+
- lib/puppet/util/windows.rb
|
568
|
+
- lib/puppet/util/warnings.rb
|
569
|
+
- lib/puppet/util/cacher.rb
|
570
|
+
- lib/puppet/provider/vlan/cisco.rb
|
571
|
+
- lib/puppet/provider/macauthorization/macauthorization.rb
|
572
|
+
- lib/puppet/provider/selboolean/getsetsebool.rb
|
573
|
+
- lib/puppet/provider/cisco.rb
|
574
|
+
- lib/puppet/provider/scheduled_task/win32_taskscheduler.rb
|
575
|
+
- lib/puppet/provider/aixobject.rb
|
576
|
+
- lib/puppet/provider/exec.rb
|
577
|
+
- lib/puppet/provider/nameservice/directoryservice.rb
|
578
|
+
- lib/puppet/provider/nameservice/pw.rb
|
579
|
+
- lib/puppet/provider/nameservice/objectadd.rb
|
580
|
+
- lib/puppet/provider/naginator.rb
|
581
|
+
- lib/puppet/provider/file/posix.rb
|
479
582
|
- lib/puppet/provider/file/windows.rb
|
480
|
-
- lib/puppet/provider/group/aix.rb
|
481
|
-
- lib/puppet/provider/group/directoryservice.rb
|
482
583
|
- lib/puppet/provider/group/groupadd.rb
|
483
|
-
- lib/puppet/provider/group/
|
584
|
+
- lib/puppet/provider/group/directoryservice.rb
|
484
585
|
- lib/puppet/provider/group/pw.rb
|
586
|
+
- lib/puppet/provider/group/aix.rb
|
485
587
|
- lib/puppet/provider/group/windows_adsi.rb
|
486
|
-
- lib/puppet/provider/
|
487
|
-
- lib/puppet/provider/
|
488
|
-
- lib/puppet/provider/
|
489
|
-
- lib/puppet/provider/
|
490
|
-
- lib/puppet/provider/macauthorization/macauthorization.rb
|
491
|
-
- lib/puppet/provider/mailalias/aliases.rb
|
588
|
+
- lib/puppet/provider/group/ldap.rb
|
589
|
+
- lib/puppet/provider/confiner.rb
|
590
|
+
- lib/puppet/provider/package.rb
|
591
|
+
- lib/puppet/provider/computer/computer.rb
|
492
592
|
- lib/puppet/provider/maillist/mailman.rb
|
493
|
-
- lib/puppet/provider/
|
494
|
-
- lib/puppet/provider/
|
495
|
-
- lib/puppet/provider/
|
496
|
-
- lib/puppet/provider/
|
497
|
-
- lib/puppet/provider/
|
498
|
-
- lib/puppet/provider/
|
499
|
-
- lib/puppet/provider/
|
500
|
-
- lib/puppet/provider/
|
501
|
-
- lib/puppet/provider/
|
502
|
-
- lib/puppet/provider/
|
503
|
-
- lib/puppet/provider/
|
593
|
+
- lib/puppet/provider/exec/shell.rb
|
594
|
+
- lib/puppet/provider/exec/posix.rb
|
595
|
+
- lib/puppet/provider/exec/windows.rb
|
596
|
+
- lib/puppet/provider/zone/solaris.rb
|
597
|
+
- lib/puppet/provider/ssh_authorized_key/parsed.rb
|
598
|
+
- lib/puppet/provider/zpool/solaris.rb
|
599
|
+
- lib/puppet/provider/confine/variable.rb
|
600
|
+
- lib/puppet/provider/confine/false.rb
|
601
|
+
- lib/puppet/provider/confine/exists.rb
|
602
|
+
- lib/puppet/provider/confine/true.rb
|
603
|
+
- lib/puppet/provider/confine/feature.rb
|
604
|
+
- lib/puppet/provider/confine.rb
|
605
|
+
- lib/puppet/provider/mailalias/aliases.rb
|
606
|
+
- lib/puppet/provider/package/rug.rb
|
504
607
|
- lib/puppet/provider/package/apple.rb
|
608
|
+
- lib/puppet/provider/package/rpm.rb
|
609
|
+
- lib/puppet/provider/package/pip.rb
|
610
|
+
- lib/puppet/provider/package/yum.rb
|
611
|
+
- lib/puppet/provider/package/portupgrade.rb
|
612
|
+
- lib/puppet/provider/package/nim.rb
|
613
|
+
- lib/puppet/provider/package/appdmg.rb
|
614
|
+
- lib/puppet/provider/package/openbsd.rb
|
615
|
+
- lib/puppet/provider/package/sunfreeware.rb
|
616
|
+
- lib/puppet/provider/package/yumhelper.py
|
617
|
+
- lib/puppet/provider/package/pacman.rb
|
505
618
|
- lib/puppet/provider/package/apt.rb
|
506
619
|
- lib/puppet/provider/package/aptitude.rb
|
507
|
-
- lib/puppet/provider/package/aptrpm.rb
|
508
|
-
- lib/puppet/provider/package/blastwave.rb
|
509
|
-
- lib/puppet/provider/package/dpkg.rb
|
510
|
-
- lib/puppet/provider/package/fink.rb
|
511
|
-
- lib/puppet/provider/package/freebsd.rb
|
512
620
|
- lib/puppet/provider/package/gem.rb
|
621
|
+
- lib/puppet/provider/package/aix.rb
|
622
|
+
- lib/puppet/provider/package/dpkg.rb
|
513
623
|
- lib/puppet/provider/package/hpux.rb
|
514
|
-
- lib/puppet/provider/package/
|
624
|
+
- lib/puppet/provider/package/blastwave.rb
|
625
|
+
- lib/puppet/provider/package/up2date.rb
|
515
626
|
- lib/puppet/provider/package/msi.rb
|
516
|
-
- lib/puppet/provider/package/nim.rb
|
517
|
-
- lib/puppet/provider/package/openbsd.rb
|
518
|
-
- lib/puppet/provider/package/pacman.rb
|
519
|
-
- lib/puppet/provider/package/pip.rb
|
520
|
-
- lib/puppet/provider/package/pkg.rb
|
521
627
|
- lib/puppet/provider/package/pkgdmg.rb
|
522
|
-
- lib/puppet/provider/package/pkgutil.rb
|
523
|
-
- lib/puppet/provider/package/portage.rb
|
524
628
|
- lib/puppet/provider/package/ports.rb
|
525
|
-
- lib/puppet/provider/package/
|
526
|
-
- lib/puppet/provider/package/
|
527
|
-
- lib/puppet/provider/package/
|
629
|
+
- lib/puppet/provider/package/aptrpm.rb
|
630
|
+
- lib/puppet/provider/package/macports.rb
|
631
|
+
- lib/puppet/provider/package/zypper.rb
|
632
|
+
- lib/puppet/provider/package/pkg.rb
|
633
|
+
- lib/puppet/provider/package/portage.rb
|
634
|
+
- lib/puppet/provider/package/fink.rb
|
528
635
|
- lib/puppet/provider/package/sun.rb
|
529
|
-
- lib/puppet/provider/package/sunfreeware.rb
|
530
|
-
- lib/puppet/provider/package/up2date.rb
|
531
636
|
- lib/puppet/provider/package/urpmi.rb
|
532
|
-
- lib/puppet/provider/package/
|
533
|
-
- lib/puppet/provider/package/
|
534
|
-
- lib/puppet/provider/
|
535
|
-
- lib/puppet/provider/
|
536
|
-
- lib/puppet/provider/
|
537
|
-
- lib/puppet/provider/
|
538
|
-
- lib/puppet/provider/
|
539
|
-
- lib/puppet/provider/
|
540
|
-
- lib/puppet/provider/
|
541
|
-
- lib/puppet/provider/
|
542
|
-
- lib/puppet/provider/
|
637
|
+
- lib/puppet/provider/package/freebsd.rb
|
638
|
+
- lib/puppet/provider/package/pkgutil.rb
|
639
|
+
- lib/puppet/provider/sshkey/parsed.rb
|
640
|
+
- lib/puppet/provider/host/parsed.rb
|
641
|
+
- lib/puppet/provider/network_device.rb
|
642
|
+
- lib/puppet/provider/mount.rb
|
643
|
+
- lib/puppet/provider/user/user_role_add.rb
|
644
|
+
- lib/puppet/provider/user/directoryservice.rb
|
645
|
+
- lib/puppet/provider/user/useradd.rb
|
646
|
+
- lib/puppet/provider/user/pw.rb
|
647
|
+
- lib/puppet/provider/user/aix.rb
|
648
|
+
- lib/puppet/provider/user/hpux.rb
|
649
|
+
- lib/puppet/provider/user/windows_adsi.rb
|
650
|
+
- lib/puppet/provider/user/ldap.rb
|
651
|
+
- lib/puppet/provider/cron/crontab.rb
|
652
|
+
- lib/puppet/provider/mount/parsed.rb
|
543
653
|
- lib/puppet/provider/service/daemontools.rb
|
544
654
|
- lib/puppet/provider/service/debian.rb
|
545
|
-
- lib/puppet/provider/service/
|
546
|
-
- lib/puppet/provider/service/gentoo.rb
|
547
|
-
- lib/puppet/provider/service/init.rb
|
548
|
-
- lib/puppet/provider/service/launchd.rb
|
549
|
-
- lib/puppet/provider/service/redhat.rb
|
655
|
+
- lib/puppet/provider/service/openrc.rb
|
550
656
|
- lib/puppet/provider/service/runit.rb
|
551
|
-
- lib/puppet/provider/service/
|
552
|
-
- lib/puppet/provider/service/
|
657
|
+
- lib/puppet/provider/service/base.rb
|
658
|
+
- lib/puppet/provider/service/init.rb
|
659
|
+
- lib/puppet/provider/service/gentoo.rb
|
553
660
|
- lib/puppet/provider/service/systemd.rb
|
661
|
+
- lib/puppet/provider/service/smf.rb
|
662
|
+
- lib/puppet/provider/service/bsd.rb
|
663
|
+
- lib/puppet/provider/service/redhat.rb
|
554
664
|
- lib/puppet/provider/service/upstart.rb
|
665
|
+
- lib/puppet/provider/service/launchd.rb
|
666
|
+
- lib/puppet/provider/service/freebsd.rb
|
555
667
|
- lib/puppet/provider/service/windows.rb
|
556
|
-
- lib/puppet/provider/
|
557
|
-
- lib/puppet/provider/
|
558
|
-
- lib/puppet/provider/
|
559
|
-
- lib/puppet/provider/
|
560
|
-
- lib/puppet/provider/
|
561
|
-
- lib/puppet/provider/
|
562
|
-
- lib/puppet/provider/
|
563
|
-
- lib/puppet/provider/
|
564
|
-
- lib/puppet/provider/
|
565
|
-
- lib/puppet/provider/
|
566
|
-
- lib/puppet/provider/
|
668
|
+
- lib/puppet/provider/service/src.rb
|
669
|
+
- lib/puppet/provider/parsedfile.rb
|
670
|
+
- lib/puppet/provider/augeas/augeas.rb
|
671
|
+
- lib/puppet/provider/mcx/mcxcontent.rb
|
672
|
+
- lib/puppet/provider/interface/cisco.rb
|
673
|
+
- lib/puppet/provider/interface/base.rb
|
674
|
+
- lib/puppet/provider/selmodule/semodule.rb
|
675
|
+
- lib/puppet/provider/port/parsed.rb
|
676
|
+
- lib/puppet/provider/ldap.rb
|
677
|
+
- lib/puppet/provider/nameservice.rb
|
678
|
+
- lib/puppet/provider/confine_collection.rb
|
567
679
|
- lib/puppet/provider/zfs/solaris.rb
|
568
|
-
- lib/puppet/provider/zone/solaris.rb
|
569
|
-
- lib/puppet/provider/zpool/solaris.rb
|
570
|
-
- lib/puppet/provider.rb
|
571
|
-
- lib/puppet/rails/benchmark.rb
|
572
|
-
- lib/puppet/rails/database/001_add_created_at_to_all_tables.rb
|
573
|
-
- lib/puppet/rails/database/002_remove_duplicated_index_on_all_tables.rb
|
574
|
-
- lib/puppet/rails/database/003_add_environment_to_host.rb
|
575
|
-
- lib/puppet/rails/database/004_add_inventory_service_tables.rb
|
576
|
-
- lib/puppet/rails/database/schema.rb
|
577
|
-
- lib/puppet/rails/fact_name.rb
|
578
|
-
- lib/puppet/rails/fact_value.rb
|
579
|
-
- lib/puppet/rails/host.rb
|
580
|
-
- lib/puppet/rails/inventory_fact.rb
|
581
|
-
- lib/puppet/rails/inventory_node.rb
|
582
|
-
- lib/puppet/rails/param_name.rb
|
583
|
-
- lib/puppet/rails/param_value.rb
|
584
|
-
- lib/puppet/rails/puppet_tag.rb
|
585
|
-
- lib/puppet/rails/resource.rb
|
586
|
-
- lib/puppet/rails/resource_tag.rb
|
587
|
-
- lib/puppet/rails/source_file.rb
|
588
|
-
- lib/puppet/rails.rb
|
589
|
-
- lib/puppet/rb_tree_map.rb
|
590
|
-
- lib/puppet/reference/configuration.rb
|
591
|
-
- lib/puppet/reference/function.rb
|
592
|
-
- lib/puppet/reference/indirection.rb
|
593
|
-
- lib/puppet/reference/metaparameter.rb
|
594
|
-
- lib/puppet/reference/network.rb
|
595
|
-
- lib/puppet/reference/providers.rb
|
596
|
-
- lib/puppet/reference/report.rb
|
597
|
-
- lib/puppet/reference/type.rb
|
598
680
|
- lib/puppet/relationship.rb
|
599
|
-
- lib/puppet/
|
681
|
+
- lib/puppet/interface.rb
|
682
|
+
- lib/puppet/forge.rb
|
683
|
+
- lib/puppet/configurer.rb
|
684
|
+
- lib/puppet/reports.rb
|
685
|
+
- lib/puppet/face.rb
|
686
|
+
- lib/puppet/external/nagios/parser.rb
|
687
|
+
- lib/puppet/external/nagios/base.rb
|
688
|
+
- lib/puppet/external/nagios/grammar.ry
|
689
|
+
- lib/puppet/external/nagios/makefile
|
690
|
+
- lib/puppet/external/nagios.rb
|
691
|
+
- lib/puppet/external/dot.rb
|
692
|
+
- lib/puppet/external/pson/version.rb
|
693
|
+
- lib/puppet/external/pson/pure.rb
|
694
|
+
- lib/puppet/external/pson/pure/parser.rb
|
695
|
+
- lib/puppet/external/pson/pure/generator.rb
|
696
|
+
- lib/puppet/external/pson/common.rb
|
697
|
+
- lib/puppet/external/lock.rb
|
698
|
+
- lib/puppet/external/base64.rb
|
699
|
+
- lib/puppet/reports/tagmail.rb
|
600
700
|
- lib/puppet/reports/log.rb
|
601
|
-
- lib/puppet/reports/rrdgraph.rb
|
602
701
|
- lib/puppet/reports/store.rb
|
603
|
-
- lib/puppet/reports/
|
604
|
-
- lib/puppet/reports.rb
|
605
|
-
- lib/puppet/
|
702
|
+
- lib/puppet/reports/rrdgraph.rb
|
703
|
+
- lib/puppet/reports/http.rb
|
704
|
+
- lib/puppet/interface/action_builder.rb
|
705
|
+
- lib/puppet/interface/action.rb
|
706
|
+
- lib/puppet/interface/option_manager.rb
|
707
|
+
- lib/puppet/interface/face_collection.rb
|
708
|
+
- lib/puppet/interface/action_manager.rb
|
709
|
+
- lib/puppet/interface/option_builder.rb
|
710
|
+
- lib/puppet/interface/documentation.rb
|
711
|
+
- lib/puppet/interface/option.rb
|
712
|
+
- lib/puppet/daemon.rb
|
606
713
|
- lib/puppet/resource/status.rb
|
607
|
-
- lib/puppet/resource/type.rb
|
608
|
-
- lib/puppet/resource/type_collection.rb
|
609
714
|
- lib/puppet/resource/type_collection_helper.rb
|
610
|
-
- lib/puppet/resource.rb
|
611
|
-
- lib/puppet/
|
612
|
-
- lib/puppet/
|
613
|
-
- lib/puppet/
|
614
|
-
- lib/puppet/
|
615
|
-
- lib/puppet/
|
616
|
-
- lib/puppet/
|
617
|
-
- lib/puppet/
|
618
|
-
- lib/puppet/
|
619
|
-
- lib/puppet/
|
620
|
-
- lib/puppet/
|
621
|
-
- lib/puppet/
|
622
|
-
- lib/puppet/ssl/key.rb
|
623
|
-
- lib/puppet/ssl.rb
|
624
|
-
- lib/puppet/status.rb
|
625
|
-
- lib/puppet/test/test_helper.rb
|
626
|
-
- lib/puppet/transaction/event.rb
|
627
|
-
- lib/puppet/transaction/event_manager.rb
|
628
|
-
- lib/puppet/transaction/report.rb
|
629
|
-
- lib/puppet/transaction/resource_harness.rb
|
630
|
-
- lib/puppet/transaction.rb
|
631
|
-
- lib/puppet/transportable.rb
|
632
|
-
- lib/puppet/type/augeas.rb
|
715
|
+
- lib/puppet/resource/type_collection.rb
|
716
|
+
- lib/puppet/resource/type.rb
|
717
|
+
- lib/puppet/resource/catalog.rb
|
718
|
+
- lib/puppet/file_bucket.rb
|
719
|
+
- lib/puppet/type/mcx.rb
|
720
|
+
- lib/puppet/type/user.rb
|
721
|
+
- lib/puppet/type/notify.rb
|
722
|
+
- lib/puppet/type/nagios_servicegroup.rb
|
723
|
+
- lib/puppet/type/maillist.rb
|
724
|
+
- lib/puppet/type/nagios_hostdependency.rb
|
725
|
+
- lib/puppet/type/resources.rb
|
726
|
+
- lib/puppet/type/nagios_serviceextinfo.rb
|
633
727
|
- lib/puppet/type/component.rb
|
634
|
-
- lib/puppet/type/
|
635
|
-
- lib/puppet/type/
|
728
|
+
- lib/puppet/type/zone.rb
|
729
|
+
- lib/puppet/type/nagios_command.rb
|
636
730
|
- lib/puppet/type/exec.rb
|
637
|
-
- lib/puppet/type/
|
731
|
+
- lib/puppet/type/nagios_serviceescalation.rb
|
638
732
|
- lib/puppet/type/file/content.rb
|
639
|
-
- lib/puppet/type/file/ctime.rb
|
640
|
-
- lib/puppet/type/file/ensure.rb
|
641
|
-
- lib/puppet/type/file/group.rb
|
642
733
|
- lib/puppet/type/file/mode.rb
|
643
|
-
- lib/puppet/type/file/mtime.rb
|
644
734
|
- lib/puppet/type/file/owner.rb
|
735
|
+
- lib/puppet/type/file/ctime.rb
|
736
|
+
- lib/puppet/type/file/ensure.rb
|
645
737
|
- lib/puppet/type/file/selcontext.rb
|
738
|
+
- lib/puppet/type/file/checksum.rb
|
646
739
|
- lib/puppet/type/file/source.rb
|
647
|
-
- lib/puppet/type/file/target.rb
|
648
740
|
- lib/puppet/type/file/type.rb
|
649
|
-
- lib/puppet/type/file.rb
|
650
|
-
- lib/puppet/type/
|
651
|
-
- lib/puppet/type/group.rb
|
652
|
-
- lib/puppet/type/
|
653
|
-
- lib/puppet/type/
|
741
|
+
- lib/puppet/type/file/target.rb
|
742
|
+
- lib/puppet/type/file/mtime.rb
|
743
|
+
- lib/puppet/type/file/group.rb
|
744
|
+
- lib/puppet/type/package.rb
|
745
|
+
- lib/puppet/type/tidy.rb
|
746
|
+
- lib/puppet/type/nagios_service.rb
|
654
747
|
- lib/puppet/type/k5login.rb
|
748
|
+
- lib/puppet/type/selboolean.rb
|
749
|
+
- lib/puppet/type/ssh_authorized_key.rb
|
750
|
+
- lib/puppet/type/computer.rb
|
751
|
+
- lib/puppet/type/nagios_hostescalation.rb
|
752
|
+
- lib/puppet/type/router.rb
|
753
|
+
- lib/puppet/type/nagios_hostextinfo.rb
|
754
|
+
- lib/puppet/type/zpool.rb
|
755
|
+
- lib/puppet/type/schedule.rb
|
756
|
+
- lib/puppet/type/host.rb
|
655
757
|
- lib/puppet/type/macauthorization.rb
|
656
|
-
- lib/puppet/type/mailalias.rb
|
657
|
-
- lib/puppet/type/maillist.rb
|
658
|
-
- lib/puppet/type/mcx.rb
|
659
758
|
- lib/puppet/type/mount.rb
|
660
|
-
- lib/puppet/type/
|
759
|
+
- lib/puppet/type/sshkey.rb
|
760
|
+
- lib/puppet/type/selmodule.rb
|
761
|
+
- lib/puppet/type/stage.rb
|
661
762
|
- lib/puppet/type/nagios_contact.rb
|
763
|
+
- lib/puppet/type/augeas.rb
|
764
|
+
- lib/puppet/type/file.rb
|
662
765
|
- lib/puppet/type/nagios_contactgroup.rb
|
663
|
-
- lib/puppet/type/
|
664
|
-
- lib/puppet/type/nagios_hostdependency.rb
|
665
|
-
- lib/puppet/type/nagios_hostescalation.rb
|
666
|
-
- lib/puppet/type/nagios_hostextinfo.rb
|
667
|
-
- lib/puppet/type/nagios_hostgroup.rb
|
668
|
-
- lib/puppet/type/nagios_service.rb
|
669
|
-
- lib/puppet/type/nagios_servicedependency.rb
|
670
|
-
- lib/puppet/type/nagios_serviceescalation.rb
|
671
|
-
- lib/puppet/type/nagios_serviceextinfo.rb
|
672
|
-
- lib/puppet/type/nagios_servicegroup.rb
|
766
|
+
- lib/puppet/type/filebucket.rb
|
673
767
|
- lib/puppet/type/nagios_timeperiod.rb
|
674
|
-
- lib/puppet/type/
|
675
|
-
- lib/puppet/type/package.rb
|
676
|
-
- lib/puppet/type/port.rb
|
677
|
-
- lib/puppet/type/resources.rb
|
678
|
-
- lib/puppet/type/router.rb
|
679
|
-
- lib/puppet/type/schedule.rb
|
768
|
+
- lib/puppet/type/interface.rb
|
680
769
|
- lib/puppet/type/scheduled_task.rb
|
681
|
-
- lib/puppet/type/selboolean.rb
|
682
|
-
- lib/puppet/type/selmodule.rb
|
683
|
-
- lib/puppet/type/service.rb
|
684
|
-
- lib/puppet/type/ssh_authorized_key.rb
|
685
|
-
- lib/puppet/type/sshkey.rb
|
686
|
-
- lib/puppet/type/stage.rb
|
687
|
-
- lib/puppet/type/tidy.rb
|
688
|
-
- lib/puppet/type/user.rb
|
689
770
|
- lib/puppet/type/vlan.rb
|
690
|
-
- lib/puppet/type/
|
691
|
-
- lib/puppet/type/
|
771
|
+
- lib/puppet/type/service.rb
|
772
|
+
- lib/puppet/type/nagios_servicedependency.rb
|
692
773
|
- lib/puppet/type/zfs.rb
|
693
|
-
- lib/puppet/type/
|
694
|
-
- lib/puppet/type/
|
695
|
-
- lib/puppet/type.rb
|
696
|
-
- lib/puppet/
|
697
|
-
- lib/puppet/
|
698
|
-
- lib/puppet/
|
699
|
-
- lib/puppet/
|
700
|
-
- lib/puppet/
|
701
|
-
- lib/puppet/
|
702
|
-
- lib/puppet/
|
703
|
-
- lib/puppet/
|
704
|
-
- lib/puppet/
|
705
|
-
- lib/puppet/
|
706
|
-
- lib/puppet/
|
707
|
-
- lib/puppet/
|
708
|
-
- lib/puppet/
|
709
|
-
- lib/puppet/
|
710
|
-
- lib/puppet/
|
711
|
-
- lib/puppet/
|
712
|
-
- lib/puppet/
|
713
|
-
- lib/puppet/
|
714
|
-
- lib/puppet/util/filetype.rb
|
715
|
-
- lib/puppet/util/graph.rb
|
716
|
-
- lib/puppet/util/inifile.rb
|
717
|
-
- lib/puppet/util/inline_docs.rb
|
718
|
-
- lib/puppet/util/instance_loader.rb
|
719
|
-
- lib/puppet/util/instrumentation/data.rb
|
720
|
-
- lib/puppet/util/instrumentation/indirection_probe.rb
|
721
|
-
- lib/puppet/util/instrumentation/instrumentable.rb
|
722
|
-
- lib/puppet/util/instrumentation/listener.rb
|
723
|
-
- lib/puppet/util/instrumentation/listeners/log.rb
|
724
|
-
- lib/puppet/util/instrumentation/listeners/performance.rb
|
725
|
-
- lib/puppet/util/instrumentation.rb
|
726
|
-
- lib/puppet/util/ldap/connection.rb
|
727
|
-
- lib/puppet/util/ldap/generator.rb
|
728
|
-
- lib/puppet/util/ldap/manager.rb
|
729
|
-
- lib/puppet/util/ldap.rb
|
730
|
-
- lib/puppet/util/loadedfile.rb
|
731
|
-
- lib/puppet/util/log/destination.rb
|
732
|
-
- lib/puppet/util/log/destinations.rb
|
733
|
-
- lib/puppet/util/log.rb
|
734
|
-
- lib/puppet/util/log_paths.rb
|
735
|
-
- lib/puppet/util/logging.rb
|
736
|
-
- lib/puppet/util/metaid.rb
|
737
|
-
- lib/puppet/util/methodhelper.rb
|
738
|
-
- lib/puppet/util/metric.rb
|
739
|
-
- lib/puppet/util/monkey_patches.rb
|
740
|
-
- lib/puppet/util/nagios_maker.rb
|
741
|
-
- lib/puppet/util/network_device/base.rb
|
742
|
-
- lib/puppet/util/network_device/cisco/device.rb
|
743
|
-
- lib/puppet/util/network_device/cisco/facts.rb
|
744
|
-
- lib/puppet/util/network_device/cisco/interface.rb
|
745
|
-
- lib/puppet/util/network_device/cisco.rb
|
746
|
-
- lib/puppet/util/network_device/config.rb
|
747
|
-
- lib/puppet/util/network_device/ipcalc.rb
|
748
|
-
- lib/puppet/util/network_device/transport/base.rb
|
749
|
-
- lib/puppet/util/network_device/transport/ssh.rb
|
750
|
-
- lib/puppet/util/network_device/transport/telnet.rb
|
751
|
-
- lib/puppet/util/network_device/transport.rb
|
752
|
-
- lib/puppet/util/network_device.rb
|
753
|
-
- lib/puppet/util/package.rb
|
754
|
-
- lib/puppet/util/pidlock.rb
|
755
|
-
- lib/puppet/util/platform.rb
|
756
|
-
- lib/puppet/util/plugins.rb
|
757
|
-
- lib/puppet/util/posix.rb
|
758
|
-
- lib/puppet/util/provider_features.rb
|
759
|
-
- lib/puppet/util/pson.rb
|
760
|
-
- lib/puppet/util/queue/stomp.rb
|
761
|
-
- lib/puppet/util/queue.rb
|
762
|
-
- lib/puppet/util/rails/cache_accumulator.rb
|
763
|
-
- lib/puppet/util/rails/collection_merger.rb
|
764
|
-
- lib/puppet/util/rails/reference_serializer.rb
|
765
|
-
- lib/puppet/util/rdoc/code_objects.rb
|
766
|
-
- lib/puppet/util/rdoc/generators/puppet_generator.rb
|
767
|
-
- lib/puppet/util/rdoc/generators/template/puppet/puppet.rb
|
768
|
-
- lib/puppet/util/rdoc/parser.rb
|
769
|
-
- lib/puppet/util/rdoc.rb
|
770
|
-
- lib/puppet/util/reference.rb
|
771
|
-
- lib/puppet/util/resource_template.rb
|
772
|
-
- lib/puppet/util/retryaction.rb
|
773
|
-
- lib/puppet/util/run_mode.rb
|
774
|
-
- lib/puppet/util/selinux.rb
|
775
|
-
- lib/puppet/util/settings/boolean_setting.rb
|
776
|
-
- lib/puppet/util/settings/file_setting.rb
|
777
|
-
- lib/puppet/util/settings/setting.rb
|
778
|
-
- lib/puppet/util/settings.rb
|
779
|
-
- lib/puppet/util/storage.rb
|
780
|
-
- lib/puppet/util/subclass_loader.rb
|
781
|
-
- lib/puppet/util/suidmanager.rb
|
782
|
-
- lib/puppet/util/symbolic_file_mode.rb
|
783
|
-
- lib/puppet/util/tagging.rb
|
784
|
-
- lib/puppet/util/terminal.rb
|
785
|
-
- lib/puppet/util/user_attr.rb
|
786
|
-
- lib/puppet/util/warnings.rb
|
787
|
-
- lib/puppet/util/windows/error.rb
|
788
|
-
- lib/puppet/util/windows/process.rb
|
789
|
-
- lib/puppet/util/windows/security.rb
|
790
|
-
- lib/puppet/util/windows/user.rb
|
791
|
-
- lib/puppet/util/windows.rb
|
792
|
-
- lib/puppet/util/zaml.rb
|
774
|
+
- lib/puppet/type/nagios_host.rb
|
775
|
+
- lib/puppet/type/yumrepo.rb
|
776
|
+
- lib/puppet/type/nagios_hostgroup.rb
|
777
|
+
- lib/puppet/type/cron.rb
|
778
|
+
- lib/puppet/type/group.rb
|
779
|
+
- lib/puppet/type/port.rb
|
780
|
+
- lib/puppet/type/mailalias.rb
|
781
|
+
- lib/puppet/type/whit.rb
|
782
|
+
- lib/puppet/feature/rack.rb
|
783
|
+
- lib/puppet/feature/rails.rb
|
784
|
+
- lib/puppet/feature/rubygems.rb
|
785
|
+
- lib/puppet/feature/pson.rb
|
786
|
+
- lib/puppet/feature/eventlog.rb
|
787
|
+
- lib/puppet/feature/stomp.rb
|
788
|
+
- lib/puppet/feature/base.rb
|
789
|
+
- lib/puppet/feature/selinux.rb
|
790
|
+
- lib/puppet/feature/ssh.rb
|
791
|
+
- lib/puppet/feature/zlib.rb
|
792
|
+
- lib/puppet/configurer/downloader.rb
|
793
|
+
- lib/puppet/configurer/fact_handler.rb
|
794
|
+
- lib/puppet/configurer/plugin_handler.rb
|
793
795
|
- lib/puppet/util.rb
|
794
796
|
- lib/puppet.rb
|
795
797
|
- lib/semver.rb
|
796
|
-
- conf/auth.conf
|
797
798
|
- conf/epm.list
|
798
|
-
- conf/freebsd/puppetd
|
799
|
-
- conf/freebsd/puppetmasterd
|
800
|
-
- conf/gentoo/conf.d/puppet
|
801
|
-
- conf/gentoo/conf.d/puppetmaster
|
802
|
-
- conf/gentoo/init.d/puppet
|
803
|
-
- conf/gentoo/init.d/puppetmaster
|
804
|
-
- conf/gentoo/puppet/fileserver.conf
|
805
|
-
- conf/gentoo/puppet/puppet.conf
|
806
799
|
- conf/namespaceauth.conf
|
807
|
-
- conf/
|
808
|
-
- conf/
|
809
|
-
- conf/
|
810
|
-
- conf/puppet-queue.conf
|
800
|
+
- conf/freebsd/puppetmasterd
|
801
|
+
- conf/freebsd/puppetd
|
802
|
+
- conf/redhat/server.init
|
811
803
|
- conf/redhat/client.init
|
812
|
-
- conf/redhat/
|
804
|
+
- conf/redhat/puppet.spec
|
805
|
+
- conf/redhat/server.sysconfig
|
813
806
|
- conf/redhat/fileserver.conf
|
807
|
+
- conf/redhat/client.sysconfig
|
814
808
|
- conf/redhat/logrotate
|
815
|
-
- conf/redhat/puppet.conf
|
816
|
-
- conf/redhat/puppet.spec
|
817
809
|
- conf/redhat/rundir-perms.patch
|
818
|
-
- conf/redhat/
|
819
|
-
- conf/
|
820
|
-
- conf/solaris/pkginfo
|
810
|
+
- conf/redhat/puppet.conf
|
811
|
+
- conf/solaris/smf/svc-puppetmasterd
|
821
812
|
- conf/solaris/smf/puppetd.xml
|
822
|
-
- conf/solaris/smf/puppetmasterd.xml
|
823
813
|
- conf/solaris/smf/svc-puppetd
|
824
|
-
- conf/solaris/smf/
|
814
|
+
- conf/solaris/smf/puppetmasterd.xml
|
815
|
+
- conf/solaris/pkginfo
|
816
|
+
- conf/auth.conf
|
817
|
+
- conf/suse/server.init
|
825
818
|
- conf/suse/client.init
|
819
|
+
- conf/suse/puppet.spec
|
826
820
|
- conf/suse/fileserver.conf
|
827
821
|
- conf/suse/logrotate
|
828
822
|
- conf/suse/puppet.conf
|
829
|
-
- conf/
|
830
|
-
- conf/
|
823
|
+
- conf/osx/preflight
|
824
|
+
- conf/osx/createpackage.sh
|
825
|
+
- conf/osx/PackageInfo.plist
|
826
|
+
- conf/puppet-queue.conf
|
831
827
|
- conf/windows/eventlog/puppetres.dll
|
832
828
|
- conf/windows/eventlog/puppetres.mc
|
833
829
|
- conf/windows/eventlog/Rakefile
|
834
|
-
-
|
835
|
-
-
|
836
|
-
-
|
830
|
+
- conf/gentoo/puppet/fileserver.conf
|
831
|
+
- conf/gentoo/puppet/puppet.conf
|
832
|
+
- conf/gentoo/conf.d/puppet
|
833
|
+
- conf/gentoo/conf.d/puppetmaster
|
834
|
+
- conf/gentoo/init.d/puppet
|
835
|
+
- conf/gentoo/init.d/puppetmaster
|
836
|
+
- man/man8/puppet-node.8
|
837
|
+
- man/man8/puppet-resource.8
|
838
|
+
- man/man8/puppet-describe.8
|
839
|
+
- man/man8/puppet-catalog.8
|
837
840
|
- man/man8/puppet-agent.8
|
841
|
+
- man/man8/puppetdoc.8
|
842
|
+
- man/man8/ralsh.8
|
843
|
+
- man/man8/puppet-file.8
|
838
844
|
- man/man8/puppet-apply.8
|
839
|
-
- man/man8/
|
840
|
-
- man/man8/puppet-catalog.8
|
841
|
-
- man/man8/puppet-cert.8
|
842
|
-
- man/man8/puppet-certificate.8
|
843
|
-
- man/man8/puppet-certificate_request.8
|
845
|
+
- man/man8/puppetqd.8
|
844
846
|
- man/man8/puppet-certificate_revocation_list.8
|
847
|
+
- man/man8/pi.8
|
845
848
|
- man/man8/puppet-config.8
|
846
|
-
- man/man8/puppet-
|
847
|
-
- man/man8/puppet-
|
848
|
-
- man/man8/puppet-doc.8
|
849
|
-
- man/man8/puppet-facts.8
|
850
|
-
- man/man8/puppet-file.8
|
851
|
-
- man/man8/puppet-filebucket.8
|
852
|
-
- man/man8/puppet-help.8
|
849
|
+
- man/man8/puppet-queue.8
|
850
|
+
- man/man8/puppet-man.8
|
853
851
|
- man/man8/puppet-inspect.8
|
854
|
-
- man/man8/puppet-
|
855
|
-
- man/man8/
|
852
|
+
- man/man8/puppet-help.8
|
853
|
+
- man/man8/puppetrun.8
|
854
|
+
- man/man8/puppetmasterd.8
|
856
855
|
- man/man8/puppet-instrumentation_probe.8
|
857
|
-
- man/man8/puppet-key.8
|
858
856
|
- man/man8/puppet-kick.8
|
859
|
-
- man/man8/puppet-
|
860
|
-
- man/man8/puppet-
|
861
|
-
- man/man8/puppet-module.8
|
862
|
-
- man/man8/puppet-node.8
|
863
|
-
- man/man8/puppet-parser.8
|
864
|
-
- man/man8/puppet-plugin.8
|
865
|
-
- man/man8/puppet-queue.8
|
857
|
+
- man/man8/puppet-facts.8
|
858
|
+
- man/man8/puppet-key.8
|
866
859
|
- man/man8/puppet-report.8
|
867
|
-
- man/man8/
|
868
|
-
- man/man8/
|
860
|
+
- man/man8/puppetca.8
|
861
|
+
- man/man8/filebucket.8
|
862
|
+
- man/man8/puppet-instrumentation_listener.8
|
863
|
+
- man/man8/puppet.8
|
864
|
+
- man/man8/puppet-filebucket.8
|
865
|
+
- man/man8/puppet-cert.8
|
866
|
+
- man/man8/puppet-ca.8
|
867
|
+
- man/man8/puppet-master.8
|
869
868
|
- man/man8/puppet-secret_agent.8
|
870
869
|
- man/man8/puppet-status.8
|
871
|
-
- man/man8/puppet.8
|
872
|
-
- man/man8/puppetca.8
|
870
|
+
- man/man8/puppet-certificate.8
|
873
871
|
- man/man8/puppetd.8
|
874
|
-
- man/man8/
|
875
|
-
- man/man8/
|
876
|
-
- man/man8/
|
877
|
-
- man/man8/
|
878
|
-
- man/man8/
|
879
|
-
-
|
880
|
-
-
|
881
|
-
-
|
882
|
-
-
|
883
|
-
- examples/etc/otherfile
|
884
|
-
- examples/etc/puppet/fileserver.conf
|
872
|
+
- man/man8/puppet-parser.8
|
873
|
+
- man/man8/puppet-certificate_request.8
|
874
|
+
- man/man8/puppet-instrumentation_data.8
|
875
|
+
- man/man8/puppet-resource_type.8
|
876
|
+
- man/man8/puppet-device.8
|
877
|
+
- man/man8/puppet-plugin.8
|
878
|
+
- man/man8/puppet-module.8
|
879
|
+
- man/man8/puppet-doc.8
|
880
|
+
- man/man5/puppet.conf.5
|
885
881
|
- examples/etc/puppet/namespaceauth.conf
|
886
|
-
- examples/etc/puppet/puppet.conf
|
887
882
|
- examples/etc/puppet/tagmail.conf
|
888
|
-
- examples/
|
889
|
-
- examples/
|
890
|
-
- examples/
|
883
|
+
- examples/etc/puppet/fileserver.conf
|
884
|
+
- examples/etc/puppet/puppet.conf
|
885
|
+
- examples/etc/init.d/sleeper
|
886
|
+
- examples/etc/otherfile
|
891
887
|
- examples/fileparsing
|
892
|
-
- examples/
|
893
|
-
- examples/
|
894
|
-
- examples/groups
|
895
|
-
- examples/head
|
896
|
-
- examples/importing
|
897
|
-
- examples/mac_automount.pp
|
888
|
+
- examples/components
|
889
|
+
- examples/mcx_dock_default.pp
|
898
890
|
- examples/mac_dscl.pp
|
899
|
-
- examples/
|
891
|
+
- examples/mcx_dock_invalid.pp
|
900
892
|
- examples/mac_pkgdmg.pp
|
893
|
+
- examples/svncommit
|
894
|
+
- examples/importing
|
895
|
+
- examples/execs
|
901
896
|
- examples/mcx_dock_absent.pp
|
902
|
-
- examples/
|
903
|
-
- examples/
|
904
|
-
- examples/mcx_dock_invalid.pp
|
905
|
-
- examples/mcx_nogroup.pp
|
897
|
+
- examples/mac_dscl_revert.pp
|
898
|
+
- examples/assignments
|
906
899
|
- examples/mcx_notexists_absent.pp
|
907
|
-
- examples/
|
900
|
+
- examples/mac_automount.pp
|
908
901
|
- examples/modules/sample-module/manifests/init.pp
|
902
|
+
- examples/modules/sample-module/lib/puppet/parser/functions/hostname_to_dn.rb
|
909
903
|
- examples/modules/sample-module/README.txt
|
910
904
|
- examples/modules/sample-module/templates/sample.erb
|
911
905
|
- examples/modules/sample-module.pp
|
906
|
+
- examples/filedefaults
|
912
907
|
- examples/nodes
|
908
|
+
- examples/groups
|
909
|
+
- examples/filerecursion
|
913
910
|
- examples/one
|
914
911
|
- examples/relationships
|
912
|
+
- examples/mcx_nogroup.pp
|
913
|
+
- examples/file.bl
|
914
|
+
- examples/functions
|
915
915
|
- examples/selectors
|
916
|
+
- examples/allatonce
|
917
|
+
- examples/mcx_dock_full.pp
|
918
|
+
- examples/head
|
916
919
|
- examples/simpletests
|
917
|
-
-
|
918
|
-
- ext/
|
919
|
-
- ext/
|
920
|
-
- ext/
|
921
|
-
- ext/
|
922
|
-
- ext/dbfix.sql
|
923
|
-
- ext/emacs/puppet-mode-init.el
|
924
|
-
- ext/emacs/puppet-mode.el
|
925
|
-
- ext/envpuppet
|
926
|
-
- ext/envpuppet.bat
|
927
|
-
- ext/ldap/puppet.schema
|
928
|
-
- ext/logcheck/puppet
|
920
|
+
- ext/vim/ftdetect/puppet.vim
|
921
|
+
- ext/vim/syntax/puppet.vim
|
922
|
+
- ext/vim/ftplugin/puppet.vim
|
923
|
+
- ext/vim/README
|
924
|
+
- ext/vim/indent/puppet.vim
|
929
925
|
- ext/nagios/check_puppet.rb
|
930
926
|
- ext/nagios/naggen
|
931
927
|
- ext/puppet-load.rb
|
932
|
-
- ext/
|
928
|
+
- ext/cert_inspector
|
929
|
+
- ext/regexp_nodes/regexp_nodes.rb
|
930
|
+
- ext/regexp_nodes/parameters/environment/qa
|
931
|
+
- ext/regexp_nodes/parameters/environment/prod
|
932
|
+
- ext/regexp_nodes/classes/databases
|
933
|
+
- ext/regexp_nodes/classes/webservers
|
934
|
+
- ext/logcheck/puppet
|
935
|
+
- ext/emacs/puppet-mode.el
|
936
|
+
- ext/emacs/puppet-mode-init.el
|
937
|
+
- ext/envpuppet
|
933
938
|
- ext/puppetlisten/puppetlisten.rb
|
934
939
|
- ext/puppetlisten/puppetrun.rb
|
935
|
-
- ext/
|
936
|
-
- ext/
|
940
|
+
- ext/ldap/puppet.schema
|
941
|
+
- ext/puppet-test
|
942
|
+
- ext/upload_facts.rb
|
937
943
|
- ext/rack/files/config.ru
|
944
|
+
- ext/rack/files/apache2.conf
|
938
945
|
- ext/rack/manifest.pp
|
939
946
|
- ext/rack/README
|
940
|
-
- ext/regexp_nodes/classes/databases
|
941
|
-
- ext/regexp_nodes/classes/webservers
|
942
|
-
- ext/regexp_nodes/parameters/environment/prod
|
943
|
-
- ext/regexp_nodes/parameters/environment/qa
|
944
|
-
- ext/regexp_nodes/regexp_nodes.rb
|
945
|
-
- ext/upload_facts.rb
|
946
|
-
- ext/vim/ftdetect/puppet.vim
|
947
|
-
- ext/vim/ftplugin/puppet.vim
|
948
|
-
- ext/vim/indent/puppet.vim
|
949
|
-
- ext/vim/README
|
950
|
-
- ext/vim/syntax/puppet.vim
|
951
947
|
- ext/yaml_nodes.rb
|
948
|
+
- ext/dbfix.sql
|
949
|
+
- ext/autotest/readme.rst
|
950
|
+
- ext/autotest/config
|
951
|
+
- ext/autotest/Rakefile
|
952
|
+
- ext/pure_ruby_dsl/dsl_test.rb
|
953
|
+
- ext/envpuppet.bat
|
954
|
+
- tasks/rake/ci.rake
|
955
|
+
- tasks/rake/testbranch.rake
|
952
956
|
- tasks/rake/apple.rake
|
957
|
+
- tasks/rake/yard.rake
|
958
|
+
- tasks/rake/templates/prototype.plist.erb
|
959
|
+
- tasks/rake/manpages.rake
|
960
|
+
- tasks/rake/metrics.rake
|
953
961
|
- tasks/rake/changelog.rake
|
954
|
-
- tasks/rake/ci.rake
|
955
962
|
- tasks/rake/dailybuild.rake
|
956
|
-
- tasks/rake/gem.rake
|
957
963
|
- tasks/rake/git_workflow.rake
|
958
|
-
- tasks/rake/manpages.rake
|
959
|
-
- tasks/rake/metrics.rake
|
960
964
|
- tasks/rake/sign.rake
|
961
|
-
- tasks/rake/
|
962
|
-
-
|
963
|
-
-
|
964
|
-
- test/data/failers/badclassnoparam
|
965
|
-
- test/data/failers/badclassparam
|
966
|
-
- test/data/failers/badcompnoparam
|
967
|
-
- test/data/failers/badcompparam
|
968
|
-
- test/data/failers/badtypeparam
|
969
|
-
- test/data/failers/noobjectrvalue
|
970
|
-
- test/data/providers/cron/crontab.allthree
|
971
|
-
- test/data/providers/cron/crontab.envNcomment
|
972
|
-
- test/data/providers/cron/crontab.envNname
|
973
|
-
- test/data/providers/cron/crontab.multirecords
|
974
|
-
- test/data/providers/cron/crontab_collections.yaml
|
975
|
-
- test/data/providers/cron/crontab_multiple_with_env.yaml
|
976
|
-
- test/data/providers/cron/crontab_sample_records.yaml
|
977
|
-
- test/data/providers/cron/examples/freebsd
|
978
|
-
- test/data/providers/cron/examples/one
|
979
|
-
- test/data/providers/cron/examples/openbsd
|
980
|
-
- test/data/providers/host/parsed/valid_hosts
|
981
|
-
- test/data/providers/mailalias/aliases/test1
|
982
|
-
- test/data/providers/mount/parsed/aix.mount
|
983
|
-
- test/data/providers/mount/parsed/darwin.mount
|
984
|
-
- test/data/providers/mount/parsed/hpux.mount
|
985
|
-
- test/data/providers/mount/parsed/linux.mount
|
986
|
-
- test/data/providers/mount/parsed/solaris.mount
|
987
|
-
- test/data/providers/package/testpackages.yaml
|
988
|
-
- test/data/providers/ssh_authorized_key/parsed/authorized_keys
|
989
|
-
- test/data/providers/ssh_authorized_key/parsed/authorized_keys1
|
990
|
-
- test/data/providers/ssh_authorized_key/parsed/authorized_keys2
|
991
|
-
- test/data/reports/1.yaml
|
992
|
-
- test/data/reports/2.yaml
|
993
|
-
- test/data/reports/tagmail_failers.conf
|
994
|
-
- test/data/reports/tagmail_passers.conf
|
995
|
-
- test/data/snippets/aliastest.pp
|
996
|
-
- test/data/snippets/append.pp
|
997
|
-
- test/data/snippets/argumentdefaults
|
998
|
-
- test/data/snippets/arithmetic_expression.pp
|
999
|
-
- test/data/snippets/arraytrailingcomma.pp
|
1000
|
-
- test/data/snippets/casestatement.pp
|
1001
|
-
- test/data/snippets/classheirarchy.pp
|
1002
|
-
- test/data/snippets/classincludes.pp
|
1003
|
-
- test/data/snippets/classpathtest
|
1004
|
-
- test/data/snippets/collection.pp
|
1005
|
-
- test/data/snippets/collection_override.pp
|
1006
|
-
- test/data/snippets/collection_within_virtual_definitions.pp
|
1007
|
-
- test/data/snippets/componentmetaparams.pp
|
1008
|
-
- test/data/snippets/componentrequire.pp
|
1009
|
-
- test/data/snippets/deepclassheirarchy.pp
|
1010
|
-
- test/data/snippets/defineoverrides.pp
|
1011
|
-
- test/data/snippets/emptyclass.pp
|
1012
|
-
- test/data/snippets/emptyexec.pp
|
1013
|
-
- test/data/snippets/emptyifelse.pp
|
1014
|
-
- test/data/snippets/falsevalues.pp
|
1015
|
-
- test/data/snippets/filecreate
|
1016
|
-
- test/data/snippets/fqdefinition.pp
|
1017
|
-
- test/data/snippets/fqparents.pp
|
1018
|
-
- test/data/snippets/funccomma.pp
|
1019
|
-
- test/data/snippets/hash.pp
|
1020
|
-
- test/data/snippets/ifexpression.pp
|
1021
|
-
- test/data/snippets/implicititeration
|
1022
|
-
- test/data/snippets/multilinecomments.pp
|
1023
|
-
- test/data/snippets/multipleclass.pp
|
1024
|
-
- test/data/snippets/multipleinstances
|
1025
|
-
- test/data/snippets/multisubs.pp
|
1026
|
-
- test/data/snippets/namevartest
|
1027
|
-
- test/data/snippets/scopetest
|
1028
|
-
- test/data/snippets/selectorvalues.pp
|
1029
|
-
- test/data/snippets/simpledefaults
|
1030
|
-
- test/data/snippets/simpleselector
|
1031
|
-
- test/data/snippets/singleary.pp
|
1032
|
-
- test/data/snippets/singlequote.pp
|
1033
|
-
- test/data/snippets/singleselector.pp
|
1034
|
-
- test/data/snippets/subclass_name_duplication.pp
|
1035
|
-
- test/data/snippets/tag.pp
|
1036
|
-
- test/data/snippets/tagged.pp
|
1037
|
-
- test/data/snippets/virtualresources.pp
|
1038
|
-
- test/data/types/hosts/1
|
1039
|
-
- test/data/types/hosts/2
|
1040
|
-
- test/data/types/hosts/solaris
|
1041
|
-
- test/data/types/mailalias/file1
|
1042
|
-
- test/data/types/mount/freebsd.fstab
|
1043
|
-
- test/data/types/mount/linux.fstab
|
1044
|
-
- test/data/types/mount/solaris.fstab
|
1045
|
-
- test/data/types/port/1
|
1046
|
-
- test/data/types/port/darwin
|
1047
|
-
- test/data/types/ssh_authorized_key/1
|
1048
|
-
- test/data/types/sshkey/1
|
1049
|
-
- test/data/types/yumrepos/fedora-devel.repo
|
1050
|
-
- test/data/types/yumrepos/fedora.repo
|
1051
|
-
- test/language/ast/variable.rb
|
1052
|
-
- test/language/ast.rb
|
1053
|
-
- test/language/functions.rb
|
1054
|
-
- test/language/parser.rb
|
1055
|
-
- test/language/scope.rb
|
1056
|
-
- test/language/snippets.rb
|
1057
|
-
- test/language/transportable.rb
|
1058
|
-
- test/lib/puppettest/certificates.rb
|
1059
|
-
- test/lib/puppettest/exetest.rb
|
1060
|
-
- test/lib/puppettest/fakes.rb
|
1061
|
-
- test/lib/puppettest/fileparsing.rb
|
1062
|
-
- test/lib/puppettest/filetesting.rb
|
1063
|
-
- test/lib/puppettest/parsertesting.rb
|
1064
|
-
- test/lib/puppettest/railstesting.rb
|
1065
|
-
- test/lib/puppettest/reporttesting.rb
|
1066
|
-
- test/lib/puppettest/resourcetesting.rb
|
1067
|
-
- test/lib/puppettest/runnable_test.rb
|
1068
|
-
- test/lib/puppettest/servertest.rb
|
1069
|
-
- test/lib/puppettest/support/assertions.rb
|
1070
|
-
- test/lib/puppettest/support/helpers.rb
|
1071
|
-
- test/lib/puppettest/support/resources.rb
|
1072
|
-
- test/lib/puppettest/support/utils.rb
|
1073
|
-
- test/lib/puppettest/support.rb
|
1074
|
-
- test/lib/puppettest/testcase.rb
|
1075
|
-
- test/lib/puppettest.rb
|
1076
|
-
- test/lib/rake/puppet_test_loader.rb
|
1077
|
-
- test/lib/rake/puppet_testtask.rb
|
1078
|
-
- test/lib/stubba.rb
|
1079
|
-
- test/network/authconfig.rb
|
1080
|
-
- test/network/authorization.rb
|
1081
|
-
- test/network/authstore.rb
|
965
|
+
- tasks/rake/gem.rake
|
966
|
+
- test/puppet/errortest.rb
|
967
|
+
- test/puppet/defaults.rb
|
1082
968
|
- test/network/client_request.rb
|
1083
|
-
- test/network/handler/fileserver.rb
|
1084
|
-
- test/network/handler/master.rb
|
1085
|
-
- test/network/handler/report.rb
|
1086
|
-
- test/network/handler/runner.rb
|
1087
969
|
- test/network/rights.rb
|
1088
|
-
- test/network/xmlrpc/processor.rb
|
1089
970
|
- test/network/xmlrpc/server.rb
|
971
|
+
- test/network/xmlrpc/processor.rb
|
1090
972
|
- test/network/xmlrpc/webrick_servlet.rb
|
973
|
+
- test/network/authconfig.rb
|
974
|
+
- test/network/authstore.rb
|
975
|
+
- test/network/handler/runner.rb
|
976
|
+
- test/network/handler/report.rb
|
977
|
+
- test/network/handler/master.rb
|
978
|
+
- test/network/handler/fileserver.rb
|
979
|
+
- test/network/authorization.rb
|
980
|
+
- test/rails/rails.rb
|
981
|
+
- test/rails/railsparameter.rb
|
982
|
+
- test/test
|
983
|
+
- test/lib/rake/puppet_test_loader.rb
|
984
|
+
- test/lib/rake/puppet_testtask.rb
|
985
|
+
- test/lib/puppettest.rb
|
986
|
+
- test/lib/stubba.rb
|
987
|
+
- test/lib/puppettest/runnable_test.rb
|
988
|
+
- test/lib/puppettest/support.rb
|
989
|
+
- test/lib/puppettest/support/resources.rb
|
990
|
+
- test/lib/puppettest/support/assertions.rb
|
991
|
+
- test/lib/puppettest/support/utils.rb
|
992
|
+
- test/lib/puppettest/support/helpers.rb
|
993
|
+
- test/lib/puppettest/reporttesting.rb
|
994
|
+
- test/lib/puppettest/resourcetesting.rb
|
995
|
+
- test/lib/puppettest/parsertesting.rb
|
996
|
+
- test/lib/puppettest/testcase.rb
|
997
|
+
- test/lib/puppettest/railstesting.rb
|
998
|
+
- test/lib/puppettest/fileparsing.rb
|
999
|
+
- test/lib/puppettest/filetesting.rb
|
1000
|
+
- test/lib/puppettest/servertest.rb
|
1001
|
+
- test/lib/puppettest/exetest.rb
|
1002
|
+
- test/lib/puppettest/fakes.rb
|
1003
|
+
- test/lib/puppettest/certificates.rb
|
1091
1004
|
- test/other/provider.rb
|
1092
1005
|
- test/other/puppet.rb
|
1093
|
-
- test/other/relationships.rb
|
1094
1006
|
- test/other/report.rb
|
1007
|
+
- test/other/relationships.rb
|
1095
1008
|
- test/other/transactions.rb
|
1096
|
-
- test/
|
1097
|
-
- test/
|
1098
|
-
- test/
|
1099
|
-
- test/
|
1100
|
-
- test/
|
1101
|
-
- test/
|
1102
|
-
- test/
|
1103
|
-
- test/
|
1104
|
-
- test/
|
1105
|
-
- test/
|
1106
|
-
- test/
|
1107
|
-
- test/
|
1108
|
-
- test/
|
1009
|
+
- test/util/classgen.rb
|
1010
|
+
- test/util/log.rb
|
1011
|
+
- test/util/storage.rb
|
1012
|
+
- test/util/settings.rb
|
1013
|
+
- test/util/utiltest.rb
|
1014
|
+
- test/util/package.rb
|
1015
|
+
- test/util/execution.rb
|
1016
|
+
- test/util/instance_loader.rb
|
1017
|
+
- test/util/pidlock.rb
|
1018
|
+
- test/util/inifile.rb
|
1019
|
+
- test/util/fileparsing.rb
|
1020
|
+
- test/util/metrics.rb
|
1021
|
+
- test/util/subclass_loader.rb
|
1022
|
+
- test/ral/providers/user.rb
|
1023
|
+
- test/ral/providers/provider.rb
|
1024
|
+
- test/ral/providers/package.rb
|
1109
1025
|
- test/ral/providers/mailalias/aliases.rb
|
1110
|
-
- test/ral/providers/nameservice.rb
|
1111
1026
|
- test/ral/providers/package/aptitude.rb
|
1112
1027
|
- test/ral/providers/package/aptrpm.rb
|
1113
|
-
- test/ral/providers/package.rb
|
1114
|
-
- test/ral/providers/parsedfile.rb
|
1115
|
-
- test/ral/providers/port/parsed.rb
|
1116
|
-
- test/ral/providers/provider.rb
|
1117
|
-
- test/ral/providers/service/base.rb
|
1118
1028
|
- test/ral/providers/sshkey/parsed.rb
|
1029
|
+
- test/ral/providers/host/parsed.rb
|
1119
1030
|
- test/ral/providers/user/useradd.rb
|
1120
|
-
- test/ral/providers/
|
1121
|
-
- test/ral/
|
1031
|
+
- test/ral/providers/cron/crontab.rb
|
1032
|
+
- test/ral/providers/service/base.rb
|
1033
|
+
- test/ral/providers/parsedfile.rb
|
1034
|
+
- test/ral/providers/port/parsed.rb
|
1035
|
+
- test/ral/providers/group.rb
|
1036
|
+
- test/ral/providers/nameservice.rb
|
1037
|
+
- test/ral/manager/provider.rb
|
1038
|
+
- test/ral/manager/instances.rb
|
1039
|
+
- test/ral/manager/manager.rb
|
1040
|
+
- test/ral/manager/type.rb
|
1041
|
+
- test/ral/manager/attributes.rb
|
1042
|
+
- test/ral/type/user.rb
|
1043
|
+
- test/ral/type/resources.rb
|
1044
|
+
- test/ral/type/zone.rb
|
1122
1045
|
- test/ral/type/exec.rb
|
1123
1046
|
- test/ral/type/file/target.rb
|
1124
|
-
- test/ral/type/file.rb
|
1125
|
-
- test/ral/type/fileignoresource.rb
|
1126
1047
|
- test/ral/type/filesources.rb
|
1127
1048
|
- test/ral/type/host.rb
|
1128
|
-
- test/ral/type/mailalias.rb
|
1129
|
-
- test/ral/type/port.rb
|
1130
|
-
- test/ral/type/resources.rb
|
1131
|
-
- test/ral/type/service.rb
|
1132
1049
|
- test/ral/type/sshkey.rb
|
1133
|
-
- test/ral/type/
|
1050
|
+
- test/ral/type/file.rb
|
1051
|
+
- test/ral/type/service.rb
|
1052
|
+
- test/ral/type/fileignoresource.rb
|
1134
1053
|
- test/ral/type/yumrepo.rb
|
1135
|
-
- test/ral/type/
|
1136
|
-
- test/
|
1137
|
-
- test/
|
1138
|
-
- test/
|
1139
|
-
- test/
|
1140
|
-
- test/
|
1141
|
-
- test/
|
1142
|
-
- test/
|
1143
|
-
- test/
|
1144
|
-
- test/
|
1145
|
-
- test/
|
1146
|
-
- test/
|
1147
|
-
- test/
|
1148
|
-
- test/
|
1149
|
-
- test/
|
1150
|
-
- test/
|
1151
|
-
-
|
1152
|
-
-
|
1153
|
-
-
|
1154
|
-
-
|
1155
|
-
-
|
1156
|
-
-
|
1157
|
-
-
|
1158
|
-
-
|
1159
|
-
-
|
1160
|
-
-
|
1161
|
-
-
|
1162
|
-
-
|
1163
|
-
-
|
1164
|
-
-
|
1165
|
-
-
|
1166
|
-
-
|
1167
|
-
-
|
1168
|
-
-
|
1169
|
-
-
|
1170
|
-
-
|
1171
|
-
-
|
1172
|
-
-
|
1173
|
-
-
|
1174
|
-
-
|
1175
|
-
-
|
1176
|
-
-
|
1177
|
-
-
|
1178
|
-
-
|
1179
|
-
-
|
1054
|
+
- test/ral/type/cron.rb
|
1055
|
+
- test/ral/type/port.rb
|
1056
|
+
- test/ral/type/mailalias.rb
|
1057
|
+
- test/data/types/ssh_authorized_key/1
|
1058
|
+
- test/data/types/mailalias/file1
|
1059
|
+
- test/data/types/sshkey/1
|
1060
|
+
- test/data/types/hosts/solaris
|
1061
|
+
- test/data/types/hosts/1
|
1062
|
+
- test/data/types/hosts/2
|
1063
|
+
- test/data/types/yumrepos/fedora-devel.repo
|
1064
|
+
- test/data/types/yumrepos/fedora.repo
|
1065
|
+
- test/data/types/mount/freebsd.fstab
|
1066
|
+
- test/data/types/mount/linux.fstab
|
1067
|
+
- test/data/types/mount/solaris.fstab
|
1068
|
+
- test/data/types/port/darwin
|
1069
|
+
- test/data/types/port/1
|
1070
|
+
- test/data/snippets/falsevalues.pp
|
1071
|
+
- test/data/snippets/tag.pp
|
1072
|
+
- test/data/snippets/scopetest
|
1073
|
+
- test/data/snippets/collection_override.pp
|
1074
|
+
- test/data/snippets/fqparents.pp
|
1075
|
+
- test/data/snippets/classpathtest
|
1076
|
+
- test/data/snippets/arithmetic_expression.pp
|
1077
|
+
- test/data/snippets/selectorvalues.pp
|
1078
|
+
- test/data/snippets/collection.pp
|
1079
|
+
- test/data/snippets/classincludes.pp
|
1080
|
+
- test/data/snippets/componentrequire.pp
|
1081
|
+
- test/data/snippets/implicititeration
|
1082
|
+
- test/data/snippets/virtualresources.pp
|
1083
|
+
- test/data/snippets/singleselector.pp
|
1084
|
+
- test/data/snippets/componentmetaparams.pp
|
1085
|
+
- test/data/snippets/emptyexec.pp
|
1086
|
+
- test/data/snippets/append.pp
|
1087
|
+
- test/data/snippets/multipleinstances
|
1088
|
+
- test/data/snippets/filecreate
|
1089
|
+
- test/data/snippets/collection_within_virtual_definitions.pp
|
1090
|
+
- test/data/snippets/deepclassheirarchy.pp
|
1091
|
+
- test/data/snippets/namevartest
|
1092
|
+
- test/data/snippets/tagged.pp
|
1093
|
+
- test/data/snippets/multilinecomments.pp
|
1094
|
+
- test/data/snippets/simpledefaults
|
1095
|
+
- test/data/snippets/casestatement.pp
|
1096
|
+
- test/data/snippets/defineoverrides.pp
|
1097
|
+
- test/data/snippets/multisubs.pp
|
1098
|
+
- test/data/snippets/singleary.pp
|
1099
|
+
- test/data/snippets/multipleclass.pp
|
1100
|
+
- test/data/snippets/aliastest.pp
|
1101
|
+
- test/data/snippets/fqdefinition.pp
|
1102
|
+
- test/data/snippets/simpleselector
|
1103
|
+
- test/data/snippets/arraytrailingcomma.pp
|
1104
|
+
- test/data/snippets/emptyclass.pp
|
1105
|
+
- test/data/snippets/ifexpression.pp
|
1106
|
+
- test/data/snippets/subclass_name_duplication.pp
|
1107
|
+
- test/data/snippets/emptyifelse.pp
|
1108
|
+
- test/data/snippets/hash.pp
|
1109
|
+
- test/data/snippets/singlequote.pp
|
1110
|
+
- test/data/snippets/classheirarchy.pp
|
1111
|
+
- test/data/snippets/argumentdefaults
|
1112
|
+
- test/data/snippets/funccomma.pp
|
1113
|
+
- test/data/failers/badclassparam
|
1114
|
+
- test/data/failers/noobjectrvalue
|
1115
|
+
- test/data/failers/badcompnoparam
|
1116
|
+
- test/data/failers/badtypeparam
|
1117
|
+
- test/data/failers/badclassnoparam
|
1118
|
+
- test/data/failers/badcompparam
|
1119
|
+
- test/data/providers/ssh_authorized_key/parsed/authorized_keys1
|
1120
|
+
- test/data/providers/ssh_authorized_key/parsed/authorized_keys
|
1121
|
+
- test/data/providers/ssh_authorized_key/parsed/authorized_keys2
|
1122
|
+
- test/data/providers/mailalias/aliases/test1
|
1123
|
+
- test/data/providers/package/testpackages.yaml
|
1124
|
+
- test/data/providers/host/parsed/valid_hosts
|
1125
|
+
- test/data/providers/cron/crontab_multiple_with_env.yaml
|
1126
|
+
- test/data/providers/cron/examples/openbsd
|
1127
|
+
- test/data/providers/cron/examples/freebsd
|
1128
|
+
- test/data/providers/cron/examples/one
|
1129
|
+
- test/data/providers/cron/crontab.envNcomment
|
1130
|
+
- test/data/providers/cron/crontab_sample_records.yaml
|
1131
|
+
- test/data/providers/cron/crontab.allthree
|
1132
|
+
- test/data/providers/cron/crontab_collections.yaml
|
1133
|
+
- test/data/providers/cron/crontab.multirecords
|
1134
|
+
- test/data/providers/cron/crontab.envNname
|
1135
|
+
- test/data/providers/mount/parsed/solaris.mount
|
1136
|
+
- test/data/providers/mount/parsed/linux.mount
|
1137
|
+
- test/data/providers/mount/parsed/aix.mount
|
1138
|
+
- test/data/providers/mount/parsed/darwin.mount
|
1139
|
+
- test/data/providers/mount/parsed/hpux.mount
|
1140
|
+
- test/data/reports/1.yaml
|
1141
|
+
- test/data/reports/tagmail_failers.conf
|
1142
|
+
- test/data/reports/2.yaml
|
1143
|
+
- test/data/reports/tagmail_passers.conf
|
1144
|
+
- test/README
|
1145
|
+
- test/language/parser.rb
|
1146
|
+
- test/language/functions.rb
|
1147
|
+
- test/language/transportable.rb
|
1148
|
+
- test/language/ast/variable.rb
|
1149
|
+
- test/language/scope.rb
|
1150
|
+
- test/language/ast.rb
|
1151
|
+
- test/language/snippets.rb
|
1152
|
+
- test/Rakefile
|
1153
|
+
- spec/spec.opts
|
1154
|
+
- spec/fixtures/unit/parser/lexer/falsevalues.pp
|
1155
|
+
- spec/fixtures/unit/parser/lexer/tag.pp
|
1156
|
+
- spec/fixtures/unit/parser/lexer/collection_override.pp
|
1157
|
+
- spec/fixtures/unit/parser/lexer/fqparents.pp
|
1180
1158
|
- spec/fixtures/unit/parser/lexer/classpathtest.pp
|
1159
|
+
- spec/fixtures/unit/parser/lexer/filecreate.pp
|
1160
|
+
- spec/fixtures/unit/parser/lexer/arithmetic_expression.pp
|
1161
|
+
- spec/fixtures/unit/parser/lexer/selectorvalues.pp
|
1162
|
+
- spec/fixtures/unit/parser/lexer/simpledefaults.pp
|
1163
|
+
- spec/fixtures/unit/parser/lexer/namevartest.pp
|
1181
1164
|
- spec/fixtures/unit/parser/lexer/collection.pp
|
1182
|
-
- spec/fixtures/unit/parser/lexer/
|
1183
|
-
- spec/fixtures/unit/parser/lexer/collection_within_virtual_definitions.pp
|
1184
|
-
- spec/fixtures/unit/parser/lexer/componentmetaparams.pp
|
1165
|
+
- spec/fixtures/unit/parser/lexer/classincludes.pp
|
1185
1166
|
- spec/fixtures/unit/parser/lexer/componentrequire.pp
|
1186
|
-
- spec/fixtures/unit/parser/lexer/
|
1187
|
-
- spec/fixtures/unit/parser/lexer/
|
1188
|
-
- spec/fixtures/unit/parser/lexer/
|
1167
|
+
- spec/fixtures/unit/parser/lexer/virtualresources.pp
|
1168
|
+
- spec/fixtures/unit/parser/lexer/singleselector.pp
|
1169
|
+
- spec/fixtures/unit/parser/lexer/componentmetaparams.pp
|
1189
1170
|
- spec/fixtures/unit/parser/lexer/emptyexec.pp
|
1190
|
-
- spec/fixtures/unit/parser/lexer/
|
1191
|
-
- spec/fixtures/unit/parser/lexer/
|
1192
|
-
- spec/fixtures/unit/parser/lexer/
|
1193
|
-
- spec/fixtures/unit/parser/lexer/
|
1194
|
-
- spec/fixtures/unit/parser/lexer/
|
1195
|
-
- spec/fixtures/unit/parser/lexer/
|
1196
|
-
- spec/fixtures/unit/parser/lexer/hash.pp
|
1197
|
-
- spec/fixtures/unit/parser/lexer/ifexpression.pp
|
1198
|
-
- spec/fixtures/unit/parser/lexer/implicititeration.pp
|
1171
|
+
- spec/fixtures/unit/parser/lexer/append.pp
|
1172
|
+
- spec/fixtures/unit/parser/lexer/argumentdefaults.pp
|
1173
|
+
- spec/fixtures/unit/parser/lexer/scopetest.pp
|
1174
|
+
- spec/fixtures/unit/parser/lexer/collection_within_virtual_definitions.pp
|
1175
|
+
- spec/fixtures/unit/parser/lexer/deepclassheirarchy.pp
|
1176
|
+
- spec/fixtures/unit/parser/lexer/tagged.pp
|
1199
1177
|
- spec/fixtures/unit/parser/lexer/multilinecomments.pp
|
1178
|
+
- spec/fixtures/unit/parser/lexer/casestatement.pp
|
1179
|
+
- spec/fixtures/unit/parser/lexer/defineoverrides.pp
|
1180
|
+
- spec/fixtures/unit/parser/lexer/multisubs.pp
|
1181
|
+
- spec/fixtures/unit/parser/lexer/singleary.pp
|
1200
1182
|
- spec/fixtures/unit/parser/lexer/multipleclass.pp
|
1183
|
+
- spec/fixtures/unit/parser/lexer/aliastest.pp
|
1184
|
+
- spec/fixtures/unit/parser/lexer/fqdefinition.pp
|
1201
1185
|
- spec/fixtures/unit/parser/lexer/multipleinstances.pp
|
1202
|
-
- spec/fixtures/unit/parser/lexer/
|
1203
|
-
- spec/fixtures/unit/parser/lexer/namevartest.pp
|
1204
|
-
- spec/fixtures/unit/parser/lexer/scopetest.pp
|
1205
|
-
- spec/fixtures/unit/parser/lexer/selectorvalues.pp
|
1206
|
-
- spec/fixtures/unit/parser/lexer/simpledefaults.pp
|
1186
|
+
- spec/fixtures/unit/parser/lexer/arraytrailingcomma.pp
|
1207
1187
|
- spec/fixtures/unit/parser/lexer/simpleselector.pp
|
1208
|
-
- spec/fixtures/unit/parser/lexer/
|
1209
|
-
- spec/fixtures/unit/parser/lexer/
|
1210
|
-
- spec/fixtures/unit/parser/lexer/singleselector.pp
|
1188
|
+
- spec/fixtures/unit/parser/lexer/emptyclass.pp
|
1189
|
+
- spec/fixtures/unit/parser/lexer/ifexpression.pp
|
1211
1190
|
- spec/fixtures/unit/parser/lexer/subclass_name_duplication.pp
|
1212
|
-
- spec/fixtures/unit/parser/lexer/
|
1213
|
-
- spec/fixtures/unit/parser/lexer/
|
1214
|
-
- spec/fixtures/unit/parser/lexer/
|
1191
|
+
- spec/fixtures/unit/parser/lexer/emptyifelse.pp
|
1192
|
+
- spec/fixtures/unit/parser/lexer/hash.pp
|
1193
|
+
- spec/fixtures/unit/parser/lexer/singlequote.pp
|
1194
|
+
- spec/fixtures/unit/parser/lexer/implicititeration.pp
|
1195
|
+
- spec/fixtures/unit/parser/lexer/classheirarchy.pp
|
1196
|
+
- spec/fixtures/unit/parser/lexer/funccomma.pp
|
1197
|
+
- spec/fixtures/unit/util/rdoc/basic.pp
|
1198
|
+
- spec/fixtures/unit/provider/ssh_authorized_key/parsed/authorized_keys1
|
1199
|
+
- spec/fixtures/unit/provider/ssh_authorized_key/parsed/authorized_keys
|
1200
|
+
- spec/fixtures/unit/provider/ssh_authorized_key/parsed/authorized_keys2
|
1201
|
+
- spec/fixtures/unit/provider/package/pkg/simple
|
1202
|
+
- spec/fixtures/unit/provider/package/pkg/unknown_status
|
1203
|
+
- spec/fixtures/unit/provider/package/pkg/dummy_solaris10
|
1204
|
+
- spec/fixtures/unit/provider/package/pkg/publisher
|
1205
|
+
- spec/fixtures/unit/provider/package/pkg/dummy_solaris11
|
1206
|
+
- spec/fixtures/unit/provider/package/pkg/solaris11
|
1207
|
+
- spec/fixtures/unit/provider/package/pkg/incomplete
|
1208
|
+
- spec/fixtures/unit/provider/package/openbsd/pkginfo.list
|
1209
|
+
- spec/fixtures/unit/provider/package/openbsd/pkginfo.detail
|
1210
|
+
- spec/fixtures/unit/provider/package/openbsd/pkginfo.query
|
1211
|
+
- spec/fixtures/unit/provider/package/zypper/zypper-list-updates-SLES11sp1.out
|
1212
|
+
- spec/fixtures/unit/provider/package/gem/line-with-1.8.5-warning
|
1215
1213
|
- spec/fixtures/unit/provider/host/parsed/valid_hosts
|
1216
|
-
- spec/fixtures/unit/provider/mount/mount
|
1217
|
-
- spec/fixtures/unit/provider/mount/parsed/
|
1214
|
+
- spec/fixtures/unit/provider/mount/parsed/solaris.mount
|
1215
|
+
- spec/fixtures/unit/provider/mount/parsed/openbsd.mount
|
1216
|
+
- spec/fixtures/unit/provider/mount/parsed/linux.mount
|
1217
|
+
- spec/fixtures/unit/provider/mount/parsed/freebsd.mount
|
1218
1218
|
- spec/fixtures/unit/provider/mount/parsed/aix.mount
|
1219
|
-
- spec/fixtures/unit/provider/mount/parsed/
|
1219
|
+
- spec/fixtures/unit/provider/mount/parsed/netbsd.mount
|
1220
|
+
- spec/fixtures/unit/provider/mount/parsed/aix.filesystems
|
1220
1221
|
- spec/fixtures/unit/provider/mount/parsed/freebsd.fstab
|
1221
|
-
- spec/fixtures/unit/provider/mount/parsed/
|
1222
|
-
- spec/fixtures/unit/provider/mount/parsed/hpux.mount
|
1223
|
-
- spec/fixtures/unit/provider/mount/parsed/linux.fstab
|
1224
|
-
- spec/fixtures/unit/provider/mount/parsed/linux.mount
|
1222
|
+
- spec/fixtures/unit/provider/mount/parsed/darwin.mount
|
1225
1223
|
- spec/fixtures/unit/provider/mount/parsed/netbsd.fstab
|
1226
|
-
- spec/fixtures/unit/provider/mount/parsed/
|
1224
|
+
- spec/fixtures/unit/provider/mount/parsed/hpux.mount
|
1227
1225
|
- spec/fixtures/unit/provider/mount/parsed/openbsd.fstab
|
1228
|
-
- spec/fixtures/unit/provider/mount/parsed/
|
1226
|
+
- spec/fixtures/unit/provider/mount/parsed/linux.fstab
|
1229
1227
|
- spec/fixtures/unit/provider/mount/parsed/solaris.fstab
|
1230
|
-
- spec/fixtures/unit/provider/mount/
|
1231
|
-
- spec/fixtures/unit/provider/
|
1232
|
-
- spec/fixtures/unit/provider/
|
1233
|
-
- spec/fixtures/unit/provider/package/openbsd/pkginfo.list
|
1234
|
-
- spec/fixtures/unit/provider/package/openbsd/pkginfo.query
|
1235
|
-
- spec/fixtures/unit/provider/package/pkg/dummy_solaris10
|
1236
|
-
- spec/fixtures/unit/provider/package/pkg/dummy_solaris11
|
1237
|
-
- spec/fixtures/unit/provider/package/pkg/incomplete
|
1238
|
-
- spec/fixtures/unit/provider/package/pkg/publisher
|
1239
|
-
- spec/fixtures/unit/provider/package/pkg/simple
|
1240
|
-
- spec/fixtures/unit/provider/package/pkg/solaris11
|
1241
|
-
- spec/fixtures/unit/provider/package/pkg/unknown_status
|
1242
|
-
- spec/fixtures/unit/provider/package/zypper/zypper-list-updates-SLES11sp1.out
|
1228
|
+
- spec/fixtures/unit/provider/mount/mount-output.aix.txt
|
1229
|
+
- spec/fixtures/unit/provider/service/openrc/rcservice_list
|
1230
|
+
- spec/fixtures/unit/provider/service/openrc/rcstatus
|
1243
1231
|
- spec/fixtures/unit/provider/service/gentoo/rc_update_show
|
1244
|
-
- spec/fixtures/unit/provider/
|
1245
|
-
- spec/fixtures/unit/provider/
|
1246
|
-
- spec/fixtures/unit/provider/
|
1232
|
+
- spec/fixtures/unit/provider/augeas/augeas/etc/test
|
1233
|
+
- spec/fixtures/unit/provider/augeas/augeas/etc/fstab
|
1234
|
+
- spec/fixtures/unit/provider/augeas/augeas/etc/hosts
|
1235
|
+
- spec/fixtures/unit/provider/augeas/augeas/test.aug
|
1236
|
+
- spec/fixtures/unit/provider/augeas/augeas/augeas/lenses/test.aug
|
1247
1237
|
- spec/fixtures/unit/reports/tagmail/tagmail_email.conf
|
1248
1238
|
- spec/fixtures/unit/reports/tagmail/tagmail_failers.conf
|
1249
1239
|
- spec/fixtures/unit/reports/tagmail/tagmail_passers.conf
|
1250
|
-
- spec/fixtures/
|
1240
|
+
- spec/fixtures/yaml/test.local.yaml
|
1251
1241
|
- spec/fixtures/yaml/report0.25.x.yaml
|
1252
1242
|
- spec/fixtures/yaml/report2.6.x.yaml
|
1253
|
-
- spec/fixtures/
|
1254
|
-
- spec/
|
1255
|
-
- spec/
|
1256
|
-
- spec/
|
1257
|
-
- spec/
|
1258
|
-
- spec/
|
1259
|
-
- spec/
|
1260
|
-
- spec/
|
1261
|
-
- spec/
|
1262
|
-
- spec/
|
1263
|
-
- spec/
|
1264
|
-
- spec/
|
1265
|
-
- spec/
|
1266
|
-
- spec/
|
1267
|
-
- spec/
|
1268
|
-
- spec/
|
1269
|
-
- spec/
|
1270
|
-
- spec/
|
1271
|
-
- spec/
|
1272
|
-
- spec/
|
1273
|
-
- spec/integration/
|
1274
|
-
- spec/
|
1275
|
-
- spec/
|
1276
|
-
- spec/
|
1277
|
-
- spec/
|
1278
|
-
- spec/
|
1279
|
-
- spec/
|
1280
|
-
- spec/
|
1281
|
-
- spec/
|
1282
|
-
- spec/integration/parser/parser_spec.rb
|
1283
|
-
- spec/integration/parser/ruby_manifest_spec.rb
|
1284
|
-
- spec/integration/provider/mailalias/aliases_spec.rb
|
1285
|
-
- spec/integration/provider/mount_spec.rb
|
1286
|
-
- spec/integration/provider/package_spec.rb
|
1287
|
-
- spec/integration/provider/service/init_spec.rb
|
1288
|
-
- spec/integration/provider/ssh_authorized_key_spec.rb
|
1289
|
-
- spec/integration/reference/providers_spec.rb
|
1290
|
-
- spec/integration/reports_spec.rb
|
1291
|
-
- spec/integration/resource/catalog_spec.rb
|
1292
|
-
- spec/integration/resource/type_collection_spec.rb
|
1293
|
-
- spec/integration/ssl/certificate_authority_spec.rb
|
1294
|
-
- spec/integration/ssl/certificate_request_spec.rb
|
1295
|
-
- spec/integration/ssl/certificate_revocation_list_spec.rb
|
1296
|
-
- spec/integration/ssl/host_spec.rb
|
1297
|
-
- spec/integration/transaction/report_spec.rb
|
1298
|
-
- spec/integration/transaction_spec.rb
|
1299
|
-
- spec/integration/type/exec_spec.rb
|
1300
|
-
- spec/integration/type/file_spec.rb
|
1301
|
-
- spec/integration/type/package_spec.rb
|
1302
|
-
- spec/integration/type/tidy_spec.rb
|
1303
|
-
- spec/integration/type_spec.rb
|
1304
|
-
- spec/integration/util/autoload_spec.rb
|
1305
|
-
- spec/integration/util/feature_spec.rb
|
1306
|
-
- spec/integration/util/file_locking_spec.rb
|
1307
|
-
- spec/integration/util/rdoc/parser_spec.rb
|
1308
|
-
- spec/integration/util/settings_spec.rb
|
1309
|
-
- spec/integration/util/windows/security_spec.rb
|
1310
|
-
- spec/integration/util/windows/user_spec.rb
|
1311
|
-
- spec/integration/util_spec.rb
|
1312
|
-
- spec/lib/matchers/json.rb
|
1313
|
-
- spec/lib/puppet/face/1.0.0/huzzah.rb
|
1314
|
-
- spec/lib/puppet/face/basetest.rb
|
1315
|
-
- spec/lib/puppet/face/huzzah/obsolete.rb
|
1316
|
-
- spec/lib/puppet/face/huzzah.rb
|
1317
|
-
- spec/lib/puppet/face/version_matching.rb
|
1318
|
-
- spec/lib/puppet_spec/compiler.rb
|
1319
|
-
- spec/lib/puppet_spec/database.rb
|
1320
|
-
- spec/lib/puppet_spec/files.rb
|
1321
|
-
- spec/lib/puppet_spec/fixtures.rb
|
1322
|
-
- spec/lib/puppet_spec/matchers.rb
|
1323
|
-
- spec/lib/puppet_spec/modules.rb
|
1324
|
-
- spec/lib/puppet_spec/verbose.rb
|
1325
|
-
- spec/monkey_patches/alias_should_to_must.rb
|
1326
|
-
- spec/monkey_patches/publicize_methods.rb
|
1327
|
-
- spec/shared_behaviours/all_parsedfile_providers.rb
|
1328
|
-
- spec/shared_behaviours/an_indirector_face.rb
|
1329
|
-
- spec/shared_behaviours/documentation_on_faces.rb
|
1330
|
-
- spec/shared_behaviours/file_server_terminus.rb
|
1331
|
-
- spec/shared_behaviours/file_serving.rb
|
1332
|
-
- spec/shared_behaviours/file_serving_model.rb
|
1333
|
-
- spec/shared_behaviours/memory_terminus.rb
|
1334
|
-
- spec/shared_behaviours/path_parameters.rb
|
1335
|
-
- spec/shared_behaviours/store_configs_terminus.rb
|
1336
|
-
- spec/shared_behaviours/things_that_declare_options.rb
|
1337
|
-
- spec/shared_contexts/platform.rb
|
1338
|
-
- spec/spec.opts
|
1339
|
-
- spec/spec_helper.rb
|
1340
|
-
- spec/unit/agent/locker_spec.rb
|
1341
|
-
- spec/unit/agent_backward_compatibility_spec.rb
|
1342
|
-
- spec/unit/agent_spec.rb
|
1343
|
-
- spec/unit/application/agent_spec.rb
|
1344
|
-
- spec/unit/application/apply_spec.rb
|
1345
|
-
- spec/unit/application/cert_spec.rb
|
1346
|
-
- spec/unit/application/certificate_spec.rb
|
1347
|
-
- spec/unit/application/config_spec.rb
|
1348
|
-
- spec/unit/application/describe_spec.rb
|
1349
|
-
- spec/unit/application/device_spec.rb
|
1350
|
-
- spec/unit/application/doc_spec.rb
|
1351
|
-
- spec/unit/application/face_base_spec.rb
|
1352
|
-
- spec/unit/application/facts_spec.rb
|
1353
|
-
- spec/unit/application/filebucket_spec.rb
|
1354
|
-
- spec/unit/application/indirection_base_spec.rb
|
1355
|
-
- spec/unit/application/inspect_spec.rb
|
1356
|
-
- spec/unit/application/kick_spec.rb
|
1357
|
-
- spec/unit/application/master_spec.rb
|
1358
|
-
- spec/unit/application/queue_spec.rb
|
1359
|
-
- spec/unit/application/resource_spec.rb
|
1360
|
-
- spec/unit/application/secret_agent_spec.rb
|
1361
|
-
- spec/unit/application_spec.rb
|
1362
|
-
- spec/unit/configurer/downloader_spec.rb
|
1363
|
-
- spec/unit/configurer/fact_handler_spec.rb
|
1364
|
-
- spec/unit/configurer/plugin_handler_spec.rb
|
1365
|
-
- spec/unit/configurer_spec.rb
|
1366
|
-
- spec/unit/daemon_spec.rb
|
1367
|
-
- spec/unit/dsl/resource_api_spec.rb
|
1368
|
-
- spec/unit/dsl/resource_type_api_spec.rb
|
1369
|
-
- spec/unit/face/ca_spec.rb
|
1370
|
-
- spec/unit/face/catalog_spec.rb
|
1371
|
-
- spec/unit/face/certificate_request_spec.rb
|
1372
|
-
- spec/unit/face/certificate_revocation_list_spec.rb
|
1373
|
-
- spec/unit/face/certificate_spec.rb
|
1374
|
-
- spec/unit/face/config_spec.rb
|
1375
|
-
- spec/unit/face/facts_spec.rb
|
1376
|
-
- spec/unit/face/file_spec.rb
|
1377
|
-
- spec/unit/face/help_spec.rb
|
1378
|
-
- spec/unit/face/instrumentation_data.rb
|
1379
|
-
- spec/unit/face/instrumentation_listener.rb
|
1380
|
-
- spec/unit/face/instrumentation_probe.rb
|
1381
|
-
- spec/unit/face/key_spec.rb
|
1382
|
-
- spec/unit/face/module/install_spec.rb
|
1383
|
-
- spec/unit/face/module/list_spec.rb
|
1384
|
-
- spec/unit/face/module/search_spec.rb
|
1385
|
-
- spec/unit/face/module/uninstall_spec.rb
|
1386
|
-
- spec/unit/face/module/upgrade_spec.rb
|
1387
|
-
- spec/unit/face/module_spec.rb
|
1388
|
-
- spec/unit/face/node_spec.rb
|
1389
|
-
- spec/unit/face/plugin_spec.rb
|
1390
|
-
- spec/unit/face/report_spec.rb
|
1391
|
-
- spec/unit/face/resource_spec.rb
|
1392
|
-
- spec/unit/face/resource_type_spec.rb
|
1393
|
-
- spec/unit/face/secret_agent_spec.rb
|
1394
|
-
- spec/unit/face_spec.rb
|
1395
|
-
- spec/unit/file_bucket/dipper_spec.rb
|
1396
|
-
- spec/unit/file_bucket/file_spec.rb
|
1397
|
-
- spec/unit/file_collection/lookup_spec.rb
|
1398
|
-
- spec/unit/file_collection_spec.rb
|
1399
|
-
- spec/unit/file_serving/base_spec.rb
|
1400
|
-
- spec/unit/file_serving/configuration/parser_spec.rb
|
1401
|
-
- spec/unit/file_serving/configuration_spec.rb
|
1402
|
-
- spec/unit/file_serving/content_spec.rb
|
1403
|
-
- spec/unit/file_serving/fileset_spec.rb
|
1404
|
-
- spec/unit/file_serving/metadata_spec.rb
|
1405
|
-
- spec/unit/file_serving/mount/file_spec.rb
|
1406
|
-
- spec/unit/file_serving/mount/modules_spec.rb
|
1407
|
-
- spec/unit/file_serving/mount/plugins_spec.rb
|
1408
|
-
- spec/unit/file_serving/mount_spec.rb
|
1409
|
-
- spec/unit/file_serving/terminus_helper_spec.rb
|
1410
|
-
- spec/unit/file_serving/terminus_selector_spec.rb
|
1411
|
-
- spec/unit/forge/repository_spec.rb
|
1412
|
-
- spec/unit/forge_spec.rb
|
1413
|
-
- spec/unit/indirector/active_record_spec.rb
|
1414
|
-
- spec/unit/indirector/catalog/active_record_spec.rb
|
1415
|
-
- spec/unit/indirector/catalog/compiler_spec.rb
|
1416
|
-
- spec/unit/indirector/catalog/queue_spec.rb
|
1417
|
-
- spec/unit/indirector/catalog/rest_spec.rb
|
1418
|
-
- spec/unit/indirector/catalog/store_configs_spec.rb
|
1419
|
-
- spec/unit/indirector/catalog/yaml_spec.rb
|
1420
|
-
- spec/unit/indirector/certificate/ca_spec.rb
|
1421
|
-
- spec/unit/indirector/certificate/file_spec.rb
|
1422
|
-
- spec/unit/indirector/certificate/rest_spec.rb
|
1423
|
-
- spec/unit/indirector/certificate_request/ca_spec.rb
|
1424
|
-
- spec/unit/indirector/certificate_request/file_spec.rb
|
1425
|
-
- spec/unit/indirector/certificate_request/rest_spec.rb
|
1426
|
-
- spec/unit/indirector/certificate_revocation_list/ca_spec.rb
|
1427
|
-
- spec/unit/indirector/certificate_revocation_list/file_spec.rb
|
1428
|
-
- spec/unit/indirector/certificate_revocation_list/rest_spec.rb
|
1429
|
-
- spec/unit/indirector/certificate_status/file_spec.rb
|
1430
|
-
- spec/unit/indirector/certificate_status/rest_spec.rb
|
1431
|
-
- spec/unit/indirector/code_spec.rb
|
1432
|
-
- spec/unit/indirector/direct_file_server_spec.rb
|
1433
|
-
- spec/unit/indirector/envelope_spec.rb
|
1434
|
-
- spec/unit/indirector/exec_spec.rb
|
1435
|
-
- spec/unit/indirector/face_spec.rb
|
1436
|
-
- spec/unit/indirector/facts/active_record_spec.rb
|
1437
|
-
- spec/unit/indirector/facts/couch_spec.rb
|
1438
|
-
- spec/unit/indirector/facts/facter_spec.rb
|
1439
|
-
- spec/unit/indirector/facts/inventory_active_record_spec.rb
|
1440
|
-
- spec/unit/indirector/facts/inventory_service_spec.rb
|
1441
|
-
- spec/unit/indirector/facts/network_device_spec.rb
|
1442
|
-
- spec/unit/indirector/facts/rest_spec.rb
|
1443
|
-
- spec/unit/indirector/facts/store_configs_spec.rb
|
1444
|
-
- spec/unit/indirector/facts/yaml_spec.rb
|
1445
|
-
- spec/unit/indirector/file_bucket_file/file_spec.rb
|
1446
|
-
- spec/unit/indirector/file_bucket_file/rest_spec.rb
|
1447
|
-
- spec/unit/indirector/file_bucket_file/selector_spec.rb
|
1448
|
-
- spec/unit/indirector/file_content/file_server_spec.rb
|
1449
|
-
- spec/unit/indirector/file_content/file_spec.rb
|
1450
|
-
- spec/unit/indirector/file_content/rest_spec.rb
|
1451
|
-
- spec/unit/indirector/file_content/selector_spec.rb
|
1452
|
-
- spec/unit/indirector/file_metadata/file_server_spec.rb
|
1453
|
-
- spec/unit/indirector/file_metadata/file_spec.rb
|
1454
|
-
- spec/unit/indirector/file_metadata/rest_spec.rb
|
1455
|
-
- spec/unit/indirector/file_metadata/selector_spec.rb
|
1456
|
-
- spec/unit/indirector/file_server_spec.rb
|
1457
|
-
- spec/unit/indirector/indirection_spec.rb
|
1458
|
-
- spec/unit/indirector/instrumentation_data/local_spec.rb
|
1459
|
-
- spec/unit/indirector/instrumentation_data/rest_spec.rb
|
1460
|
-
- spec/unit/indirector/instrumentation_listener/local_spec.rb
|
1461
|
-
- spec/unit/indirector/instrumentation_listener/rest_spec.rb
|
1462
|
-
- spec/unit/indirector/instrumentation_probe/local_spec.rb
|
1463
|
-
- spec/unit/indirector/instrumentation_probe/rest_spec.rb
|
1464
|
-
- spec/unit/indirector/inventory/yaml_spec.rb
|
1465
|
-
- spec/unit/indirector/key/ca_spec.rb
|
1466
|
-
- spec/unit/indirector/key/file_spec.rb
|
1467
|
-
- spec/unit/indirector/ldap_spec.rb
|
1468
|
-
- spec/unit/indirector/memory_spec.rb
|
1469
|
-
- spec/unit/indirector/node/active_record_spec.rb
|
1470
|
-
- spec/unit/indirector/node/exec_spec.rb
|
1471
|
-
- spec/unit/indirector/node/ldap_spec.rb
|
1472
|
-
- spec/unit/indirector/node/memory_spec.rb
|
1473
|
-
- spec/unit/indirector/node/plain_spec.rb
|
1474
|
-
- spec/unit/indirector/node/rest_spec.rb
|
1475
|
-
- spec/unit/indirector/node/store_configs_spec.rb
|
1476
|
-
- spec/unit/indirector/node/yaml_spec.rb
|
1477
|
-
- spec/unit/indirector/plain_spec.rb
|
1478
|
-
- spec/unit/indirector/queue_spec.rb
|
1479
|
-
- spec/unit/indirector/report/processor_spec.rb
|
1480
|
-
- spec/unit/indirector/report/rest_spec.rb
|
1481
|
-
- spec/unit/indirector/report/yaml_spec.rb
|
1482
|
-
- spec/unit/indirector/request_spec.rb
|
1483
|
-
- spec/unit/indirector/resource/active_record_spec.rb
|
1484
|
-
- spec/unit/indirector/resource/ral_spec.rb
|
1485
|
-
- spec/unit/indirector/resource/rest_spec.rb
|
1486
|
-
- spec/unit/indirector/resource/store_configs_spec.rb
|
1487
|
-
- spec/unit/indirector/resource_type/parser_spec.rb
|
1488
|
-
- spec/unit/indirector/resource_type/rest_spec.rb
|
1489
|
-
- spec/unit/indirector/rest_spec.rb
|
1490
|
-
- spec/unit/indirector/run/local_spec.rb
|
1491
|
-
- spec/unit/indirector/run/rest_spec.rb
|
1492
|
-
- spec/unit/indirector/ssl_file_spec.rb
|
1493
|
-
- spec/unit/indirector/status/rest_spec.rb
|
1494
|
-
- spec/unit/indirector/store_configs_spec.rb
|
1495
|
-
- spec/unit/indirector/terminus_spec.rb
|
1496
|
-
- spec/unit/indirector/yaml_spec.rb
|
1497
|
-
- spec/unit/indirector_spec.rb
|
1498
|
-
- spec/unit/interface/action_builder_spec.rb
|
1499
|
-
- spec/unit/interface/action_manager_spec.rb
|
1500
|
-
- spec/unit/interface/action_spec.rb
|
1501
|
-
- spec/unit/interface/documentation_spec.rb
|
1502
|
-
- spec/unit/interface/face_collection_spec.rb
|
1503
|
-
- spec/unit/interface/option_builder_spec.rb
|
1504
|
-
- spec/unit/interface/option_spec.rb
|
1505
|
-
- spec/unit/interface_spec.rb
|
1506
|
-
- spec/unit/module_spec.rb
|
1507
|
-
- spec/unit/module_tool/application_spec.rb
|
1508
|
-
- spec/unit/module_tool/applications/application_spec.rb
|
1509
|
-
- spec/unit/module_tool/applications/installer_spec.rb
|
1510
|
-
- spec/unit/module_tool/applications/uninstaller_spec.rb
|
1511
|
-
- spec/unit/module_tool/applications/upgrader_spec.rb
|
1512
|
-
- spec/unit/module_tool/metadata_spec.rb
|
1513
|
-
- spec/unit/module_tool_spec.rb
|
1514
|
-
- spec/unit/network/authconfig_spec.rb
|
1515
|
-
- spec/unit/network/authstore_spec.rb
|
1516
|
-
- spec/unit/network/format_handler_spec.rb
|
1517
|
-
- spec/unit/network/format_spec.rb
|
1243
|
+
- spec/fixtures/faulty_face/puppet/face/syntax.rb
|
1244
|
+
- spec/fixtures/releases/jamtur01-apache/metadata.json
|
1245
|
+
- spec/fixtures/releases/jamtur01-apache/manifests/dev.pp
|
1246
|
+
- spec/fixtures/releases/jamtur01-apache/manifests/php.pp
|
1247
|
+
- spec/fixtures/releases/jamtur01-apache/manifests/params.pp
|
1248
|
+
- spec/fixtures/releases/jamtur01-apache/manifests/init.pp
|
1249
|
+
- spec/fixtures/releases/jamtur01-apache/manifests/ssl.pp
|
1250
|
+
- spec/fixtures/releases/jamtur01-apache/manifests/vhost.pp
|
1251
|
+
- spec/fixtures/releases/jamtur01-apache/Modulefile
|
1252
|
+
- spec/fixtures/releases/jamtur01-apache/files/test.vhost
|
1253
|
+
- spec/fixtures/releases/jamtur01-apache/files/httpd
|
1254
|
+
- spec/fixtures/releases/jamtur01-apache/lib/puppet/provider/a2mod/debian.rb
|
1255
|
+
- spec/fixtures/releases/jamtur01-apache/lib/puppet/type/a2mod.rb
|
1256
|
+
- spec/fixtures/releases/jamtur01-apache/templates/vhost-default.conf.erb
|
1257
|
+
- spec/fixtures/releases/jamtur01-apache/tests/apache.pp
|
1258
|
+
- spec/fixtures/releases/jamtur01-apache/tests/dev.pp
|
1259
|
+
- spec/fixtures/releases/jamtur01-apache/tests/php.pp
|
1260
|
+
- spec/fixtures/releases/jamtur01-apache/tests/init.pp
|
1261
|
+
- spec/fixtures/releases/jamtur01-apache/tests/ssl.pp
|
1262
|
+
- spec/fixtures/releases/jamtur01-apache/tests/vhost.pp
|
1263
|
+
- spec/fixtures/integration/provider/mailalias/aliases/test1
|
1264
|
+
- spec/unit/puppet/provider/README.markdown
|
1265
|
+
- spec/unit/puppet/type/README.markdown
|
1266
|
+
- spec/unit/daemon_spec.rb
|
1267
|
+
- spec/unit/application_spec.rb
|
1268
|
+
- spec/unit/transaction/resource_harness_spec.rb
|
1269
|
+
- spec/unit/transaction/report_spec.rb
|
1270
|
+
- spec/unit/transaction/event_spec.rb
|
1271
|
+
- spec/unit/transaction/event_manager_spec.rb
|
1518
1272
|
- spec/unit/network/formats_spec.rb
|
1519
|
-
- spec/unit/network/
|
1520
|
-
- spec/unit/network/handler/fileserver_spec.rb
|
1273
|
+
- spec/unit/network/http_pool_spec.rb
|
1521
1274
|
- spec/unit/network/http/api/v1_spec.rb
|
1522
|
-
- spec/unit/network/http/compression_spec.rb
|
1523
|
-
- spec/unit/network/http/handler_spec.rb
|
1524
|
-
- spec/unit/network/http/mongrel/rest_spec.rb
|
1525
|
-
- spec/unit/network/http/mongrel/xmlrpc_spec.rb
|
1526
1275
|
- spec/unit/network/http/mongrel_spec.rb
|
1527
|
-
- spec/unit/network/http/
|
1528
|
-
- spec/unit/network/http/rack/xmlrpc_spec.rb
|
1529
|
-
- spec/unit/network/http/rack_spec.rb
|
1530
|
-
- spec/unit/network/http/webrick/rest_spec.rb
|
1276
|
+
- spec/unit/network/http/compression_spec.rb
|
1531
1277
|
- spec/unit/network/http/webrick/xmlrpc_spec.rb
|
1278
|
+
- spec/unit/network/http/webrick/rest_spec.rb
|
1532
1279
|
- spec/unit/network/http/webrick_spec.rb
|
1533
|
-
- spec/unit/network/
|
1280
|
+
- spec/unit/network/http/rack_spec.rb
|
1281
|
+
- spec/unit/network/http/handler_spec.rb
|
1282
|
+
- spec/unit/network/http/rack/xmlrpc_spec.rb
|
1283
|
+
- spec/unit/network/http/rack/rest_spec.rb
|
1284
|
+
- spec/unit/network/http/mongrel/xmlrpc_spec.rb
|
1285
|
+
- spec/unit/network/http/mongrel/rest_spec.rb
|
1286
|
+
- spec/unit/network/server_spec.rb
|
1534
1287
|
- spec/unit/network/http_spec.rb
|
1535
|
-
- spec/unit/network/
|
1288
|
+
- spec/unit/network/authconfig_spec.rb
|
1536
1289
|
- spec/unit/network/rights_spec.rb
|
1537
|
-
- spec/unit/network/
|
1538
|
-
- spec/unit/
|
1539
|
-
- spec/unit/
|
1540
|
-
- spec/unit/
|
1541
|
-
- spec/unit/
|
1542
|
-
- spec/unit/
|
1543
|
-
- spec/unit/
|
1290
|
+
- spec/unit/network/rest_authconfig_spec.rb
|
1291
|
+
- spec/unit/network/authstore_spec.rb
|
1292
|
+
- spec/unit/network/handler/fileserver_spec.rb
|
1293
|
+
- spec/unit/network/handler/ca_spec.rb
|
1294
|
+
- spec/unit/network/format_handler_spec.rb
|
1295
|
+
- spec/unit/network/format_spec.rb
|
1296
|
+
- spec/unit/property_spec.rb
|
1297
|
+
- spec/unit/transaction_spec.rb
|
1298
|
+
- spec/unit/face/module/upgrade_spec.rb
|
1299
|
+
- spec/unit/face/module/uninstall_spec.rb
|
1300
|
+
- spec/unit/face/module/list_spec.rb
|
1301
|
+
- spec/unit/face/module/install_spec.rb
|
1302
|
+
- spec/unit/face/module/search_spec.rb
|
1303
|
+
- spec/unit/face/catalog_spec.rb
|
1304
|
+
- spec/unit/face/secret_agent_spec.rb
|
1305
|
+
- spec/unit/face/certificate_revocation_list_spec.rb
|
1306
|
+
- spec/unit/face/key_spec.rb
|
1307
|
+
- spec/unit/face/file_spec.rb
|
1308
|
+
- spec/unit/face/resource_type_spec.rb
|
1309
|
+
- spec/unit/face/certificate_spec.rb
|
1310
|
+
- spec/unit/face/plugin_spec.rb
|
1311
|
+
- spec/unit/face/certificate_request_spec.rb
|
1312
|
+
- spec/unit/face/config_spec.rb
|
1313
|
+
- spec/unit/face/instrumentation_probe.rb
|
1314
|
+
- spec/unit/face/instrumentation_listener.rb
|
1315
|
+
- spec/unit/face/resource_spec.rb
|
1316
|
+
- spec/unit/face/node_spec.rb
|
1317
|
+
- spec/unit/face/help_spec.rb
|
1318
|
+
- spec/unit/face/instrumentation_data.rb
|
1319
|
+
- spec/unit/face/facts_spec.rb
|
1320
|
+
- spec/unit/face/ca_spec.rb
|
1321
|
+
- spec/unit/face/report_spec.rb
|
1322
|
+
- spec/unit/face/module_spec.rb
|
1323
|
+
- spec/unit/agent_backward_compatibility_spec.rb
|
1324
|
+
- spec/unit/parameter_spec.rb
|
1325
|
+
- spec/unit/agent/locker_spec.rb
|
1326
|
+
- spec/unit/run_spec.rb
|
1327
|
+
- spec/unit/rails/param_value_spec.rb
|
1328
|
+
- spec/unit/rails/resource_spec.rb
|
1329
|
+
- spec/unit/rails/host_spec.rb
|
1330
|
+
- spec/unit/module_tool_spec.rb
|
1331
|
+
- spec/unit/rb_tree_map_spec.rb
|
1544
1332
|
- spec/unit/parameter/path_spec.rb
|
1545
|
-
- spec/unit/parameter/value_collection_spec.rb
|
1546
1333
|
- spec/unit/parameter/value_spec.rb
|
1547
|
-
- spec/unit/
|
1334
|
+
- spec/unit/parameter/value_collection_spec.rb
|
1335
|
+
- spec/unit/puppet_spec.rb
|
1336
|
+
- spec/unit/indirector_spec.rb
|
1337
|
+
- spec/unit/file_collection/lookup_spec.rb
|
1338
|
+
- spec/unit/dsl/resource_type_api_spec.rb
|
1339
|
+
- spec/unit/dsl/resource_api_spec.rb
|
1340
|
+
- spec/unit/module_tool/application_spec.rb
|
1341
|
+
- spec/unit/module_tool/metadata_spec.rb
|
1342
|
+
- spec/unit/module_tool/applications/application_spec.rb
|
1343
|
+
- spec/unit/module_tool/applications/installer_spec.rb
|
1344
|
+
- spec/unit/module_tool/applications/unpacker_spec.rb
|
1345
|
+
- spec/unit/module_tool/applications/upgrader_spec.rb
|
1346
|
+
- spec/unit/module_tool/applications/uninstaller_spec.rb
|
1347
|
+
- spec/unit/property/ensure_spec.rb
|
1348
|
+
- spec/unit/property/list_spec.rb
|
1349
|
+
- spec/unit/property/keyvalue_spec.rb
|
1350
|
+
- spec/unit/property/ordered_list_spec.rb
|
1351
|
+
- spec/unit/file_bucket/file_spec.rb
|
1352
|
+
- spec/unit/file_bucket/dipper_spec.rb
|
1353
|
+
- spec/unit/ssl/certificate_revocation_list_spec.rb
|
1354
|
+
- spec/unit/ssl/key_spec.rb
|
1355
|
+
- spec/unit/ssl/certificate_spec.rb
|
1356
|
+
- spec/unit/ssl/certificate_authority/interface_spec.rb
|
1357
|
+
- spec/unit/ssl/base_spec.rb
|
1358
|
+
- spec/unit/ssl/certificate_request_spec.rb
|
1359
|
+
- spec/unit/ssl/inventory_spec.rb
|
1360
|
+
- spec/unit/ssl/certificate_factory_spec.rb
|
1361
|
+
- spec/unit/ssl/host_spec.rb
|
1362
|
+
- spec/unit/ssl/certificate_authority_spec.rb
|
1363
|
+
- spec/unit/semver_spec.rb
|
1364
|
+
- spec/unit/node/environment_spec.rb
|
1365
|
+
- spec/unit/node/facts_spec.rb
|
1366
|
+
- spec/unit/simple_graph_spec.rb
|
1367
|
+
- spec/unit/application/inspect_spec.rb
|
1368
|
+
- spec/unit/application/secret_agent_spec.rb
|
1369
|
+
- spec/unit/application/queue_spec.rb
|
1370
|
+
- spec/unit/application/cert_spec.rb
|
1371
|
+
- spec/unit/application/certificate_spec.rb
|
1372
|
+
- spec/unit/application/device_spec.rb
|
1373
|
+
- spec/unit/application/config_spec.rb
|
1374
|
+
- spec/unit/application/kick_spec.rb
|
1375
|
+
- spec/unit/application/describe_spec.rb
|
1376
|
+
- spec/unit/application/master_spec.rb
|
1377
|
+
- spec/unit/application/apply_spec.rb
|
1378
|
+
- spec/unit/application/agent_spec.rb
|
1379
|
+
- spec/unit/application/resource_spec.rb
|
1380
|
+
- spec/unit/application/filebucket_spec.rb
|
1381
|
+
- spec/unit/application/indirection_base_spec.rb
|
1382
|
+
- spec/unit/application/facts_spec.rb
|
1383
|
+
- spec/unit/application/face_base_spec.rb
|
1384
|
+
- spec/unit/application/doc_spec.rb
|
1385
|
+
- spec/unit/file_serving/configuration_spec.rb
|
1386
|
+
- spec/unit/file_serving/base_spec.rb
|
1387
|
+
- spec/unit/file_serving/configuration/parser_spec.rb
|
1388
|
+
- spec/unit/file_serving/fileset_spec.rb
|
1389
|
+
- spec/unit/file_serving/mount_spec.rb
|
1390
|
+
- spec/unit/file_serving/terminus_selector_spec.rb
|
1391
|
+
- spec/unit/file_serving/metadata_spec.rb
|
1392
|
+
- spec/unit/file_serving/mount/file_spec.rb
|
1393
|
+
- spec/unit/file_serving/mount/modules_spec.rb
|
1394
|
+
- spec/unit/file_serving/mount/plugins_spec.rb
|
1395
|
+
- spec/unit/file_serving/content_spec.rb
|
1396
|
+
- spec/unit/file_serving/terminus_helper_spec.rb
|
1397
|
+
- spec/unit/parser/templatewrapper_spec.rb
|
1398
|
+
- spec/unit/parser/ast_spec.rb
|
1548
1399
|
- spec/unit/parser/ast/arithmetic_operator_spec.rb
|
1549
|
-
- spec/unit/parser/ast/
|
1550
|
-
- spec/unit/parser/ast/
|
1551
|
-
- spec/unit/parser/ast/boolean_operator_spec.rb
|
1552
|
-
- spec/unit/parser/ast/casestatement_spec.rb
|
1400
|
+
- spec/unit/parser/ast/ifstatement_spec.rb
|
1401
|
+
- spec/unit/parser/ast/function_spec.rb
|
1553
1402
|
- spec/unit/parser/ast/collection_spec.rb
|
1554
|
-
- spec/unit/parser/ast/collexpr_spec.rb
|
1555
|
-
- spec/unit/parser/ast/comparison_operator_spec.rb
|
1556
1403
|
- spec/unit/parser/ast/definition_spec.rb
|
1557
|
-
- spec/unit/parser/ast/function_spec.rb
|
1558
|
-
- spec/unit/parser/ast/hostclass_spec.rb
|
1559
|
-
- spec/unit/parser/ast/ifstatement_spec.rb
|
1560
|
-
- spec/unit/parser/ast/in_operator_spec.rb
|
1561
|
-
- spec/unit/parser/ast/leaf_spec.rb
|
1562
1404
|
- spec/unit/parser/ast/match_operator_spec.rb
|
1563
|
-
- spec/unit/parser/ast/
|
1564
|
-
- spec/unit/parser/ast/node_spec.rb
|
1565
|
-
- spec/unit/parser/ast/nop_spec.rb
|
1566
|
-
- spec/unit/parser/ast/not_spec.rb
|
1567
|
-
- spec/unit/parser/ast/relationship_spec.rb
|
1405
|
+
- spec/unit/parser/ast/comparison_operator_spec.rb
|
1568
1406
|
- spec/unit/parser/ast/resource_defaults_spec.rb
|
1569
|
-
- spec/unit/parser/ast/resource_override_spec.rb
|
1570
1407
|
- spec/unit/parser/ast/resource_reference_spec.rb
|
1408
|
+
- spec/unit/parser/ast/collexpr_spec.rb
|
1409
|
+
- spec/unit/parser/ast/nop_spec.rb
|
1410
|
+
- spec/unit/parser/ast/vardef_spec.rb
|
1411
|
+
- spec/unit/parser/ast/not_spec.rb
|
1571
1412
|
- spec/unit/parser/ast/resource_spec.rb
|
1413
|
+
- spec/unit/parser/ast/node_spec.rb
|
1414
|
+
- spec/unit/parser/ast/hostclass_spec.rb
|
1415
|
+
- spec/unit/parser/ast/minus_spec.rb
|
1416
|
+
- spec/unit/parser/ast/in_operator_spec.rb
|
1417
|
+
- spec/unit/parser/ast/casestatement_spec.rb
|
1418
|
+
- spec/unit/parser/ast/astarray_spec.rb
|
1419
|
+
- spec/unit/parser/ast/leaf_spec.rb
|
1572
1420
|
- spec/unit/parser/ast/selector_spec.rb
|
1573
|
-
- spec/unit/parser/ast/
|
1574
|
-
- spec/unit/parser/
|
1421
|
+
- spec/unit/parser/ast/relationship_spec.rb
|
1422
|
+
- spec/unit/parser/ast/asthash_spec.rb
|
1423
|
+
- spec/unit/parser/ast/resource_override_spec.rb
|
1424
|
+
- spec/unit/parser/ast/boolean_operator_spec.rb
|
1575
1425
|
- spec/unit/parser/collector_spec.rb
|
1426
|
+
- spec/unit/parser/type_loader_spec.rb
|
1427
|
+
- spec/unit/parser/scope_spec.rb
|
1428
|
+
- spec/unit/parser/parser_spec.rb
|
1429
|
+
- spec/unit/parser/functions_spec.rb
|
1576
1430
|
- spec/unit/parser/compiler_spec.rb
|
1431
|
+
- spec/unit/parser/resource_spec.rb
|
1577
1432
|
- spec/unit/parser/files_spec.rb
|
1578
1433
|
- spec/unit/parser/functions/create_resources_spec.rb
|
1434
|
+
- spec/unit/parser/functions/shellquote_spec.rb
|
1435
|
+
- spec/unit/parser/functions/sprintf_spec.rb
|
1436
|
+
- spec/unit/parser/functions/require_spec.rb
|
1437
|
+
- spec/unit/parser/functions/fqdn_rand_spec.rb
|
1579
1438
|
- spec/unit/parser/functions/defined_spec.rb
|
1439
|
+
- spec/unit/parser/functions/versioncmp_spec.rb
|
1440
|
+
- spec/unit/parser/functions/regsubst_spec.rb
|
1441
|
+
- spec/unit/parser/functions/template_spec.rb
|
1442
|
+
- spec/unit/parser/functions/tag_spec.rb
|
1580
1443
|
- spec/unit/parser/functions/extlookup_spec.rb
|
1581
|
-
- spec/unit/parser/functions/
|
1444
|
+
- spec/unit/parser/functions/split_spec.rb
|
1445
|
+
- spec/unit/parser/functions/inline_template_spec.rb
|
1582
1446
|
- spec/unit/parser/functions/generate_spec.rb
|
1583
1447
|
- spec/unit/parser/functions/include_spec.rb
|
1584
|
-
- spec/unit/parser/functions/inline_template_spec.rb
|
1585
1448
|
- spec/unit/parser/functions/realize_spec.rb
|
1586
|
-
- spec/unit/parser/functions/regsubst_spec.rb
|
1587
|
-
- spec/unit/parser/functions/require_spec.rb
|
1588
|
-
- spec/unit/parser/functions/shellquote_spec.rb
|
1589
|
-
- spec/unit/parser/functions/split_spec.rb
|
1590
|
-
- spec/unit/parser/functions/sprintf_spec.rb
|
1591
|
-
- spec/unit/parser/functions/tag_spec.rb
|
1592
|
-
- spec/unit/parser/functions/template_spec.rb
|
1593
|
-
- spec/unit/parser/functions/versioncmp_spec.rb
|
1594
|
-
- spec/unit/parser/functions_spec.rb
|
1595
|
-
- spec/unit/parser/lexer_spec.rb
|
1596
|
-
- spec/unit/parser/parser_spec.rb
|
1597
1449
|
- spec/unit/parser/relationship_spec.rb
|
1598
|
-
- spec/unit/parser/
|
1599
|
-
- spec/unit/
|
1600
|
-
- spec/unit/
|
1601
|
-
- spec/unit/
|
1602
|
-
- spec/unit/
|
1603
|
-
- spec/unit/
|
1604
|
-
- spec/unit/
|
1605
|
-
- spec/unit/
|
1606
|
-
- spec/unit/
|
1607
|
-
- spec/unit/
|
1608
|
-
- spec/unit/
|
1609
|
-
- spec/unit/
|
1610
|
-
- spec/unit/
|
1611
|
-
- spec/unit/
|
1612
|
-
- spec/unit/
|
1613
|
-
- spec/unit/
|
1614
|
-
- spec/unit/
|
1450
|
+
- spec/unit/parser/lexer_spec.rb
|
1451
|
+
- spec/unit/type_spec.rb
|
1452
|
+
- spec/unit/reports_spec.rb
|
1453
|
+
- spec/unit/agent_spec.rb
|
1454
|
+
- spec/unit/indirector/file_content/file_spec.rb
|
1455
|
+
- spec/unit/indirector/file_content/file_server_spec.rb
|
1456
|
+
- spec/unit/indirector/file_content/selector_spec.rb
|
1457
|
+
- spec/unit/indirector/file_content/rest_spec.rb
|
1458
|
+
- spec/unit/indirector/queue_spec.rb
|
1459
|
+
- spec/unit/indirector/catalog/queue_spec.rb
|
1460
|
+
- spec/unit/indirector/catalog/yaml_spec.rb
|
1461
|
+
- spec/unit/indirector/catalog/active_record_spec.rb
|
1462
|
+
- spec/unit/indirector/catalog/compiler_spec.rb
|
1463
|
+
- spec/unit/indirector/catalog/rest_spec.rb
|
1464
|
+
- spec/unit/indirector/catalog/store_configs_spec.rb
|
1465
|
+
- spec/unit/indirector/facts/yaml_spec.rb
|
1466
|
+
- spec/unit/indirector/facts/active_record_spec.rb
|
1467
|
+
- spec/unit/indirector/facts/inventory_service_spec.rb
|
1468
|
+
- spec/unit/indirector/facts/network_device_spec.rb
|
1469
|
+
- spec/unit/indirector/facts/couch_spec.rb
|
1470
|
+
- spec/unit/indirector/facts/facter_spec.rb
|
1471
|
+
- spec/unit/indirector/facts/inventory_active_record_spec.rb
|
1472
|
+
- spec/unit/indirector/facts/rest_spec.rb
|
1473
|
+
- spec/unit/indirector/facts/store_configs_spec.rb
|
1474
|
+
- spec/unit/indirector/inventory/yaml_spec.rb
|
1475
|
+
- spec/unit/indirector/yaml_spec.rb
|
1476
|
+
- spec/unit/indirector/report/yaml_spec.rb
|
1477
|
+
- spec/unit/indirector/report/processor_spec.rb
|
1478
|
+
- spec/unit/indirector/report/rest_spec.rb
|
1479
|
+
- spec/unit/indirector/certificate_request/file_spec.rb
|
1480
|
+
- spec/unit/indirector/certificate_request/ca_spec.rb
|
1481
|
+
- spec/unit/indirector/certificate_request/rest_spec.rb
|
1482
|
+
- spec/unit/indirector/terminus_spec.rb
|
1483
|
+
- spec/unit/indirector/key/file_spec.rb
|
1484
|
+
- spec/unit/indirector/key/ca_spec.rb
|
1485
|
+
- spec/unit/indirector/file_metadata/file_spec.rb
|
1486
|
+
- spec/unit/indirector/file_metadata/file_server_spec.rb
|
1487
|
+
- spec/unit/indirector/file_metadata/selector_spec.rb
|
1488
|
+
- spec/unit/indirector/file_metadata/rest_spec.rb
|
1489
|
+
- spec/unit/indirector/plain_spec.rb
|
1490
|
+
- spec/unit/indirector/instrumentation_listener/local_spec.rb
|
1491
|
+
- spec/unit/indirector/instrumentation_listener/rest_spec.rb
|
1492
|
+
- spec/unit/indirector/instrumentation_data/local_spec.rb
|
1493
|
+
- spec/unit/indirector/instrumentation_data/rest_spec.rb
|
1494
|
+
- spec/unit/indirector/active_record_spec.rb
|
1495
|
+
- spec/unit/indirector/run/local_spec.rb
|
1496
|
+
- spec/unit/indirector/run/rest_spec.rb
|
1497
|
+
- spec/unit/indirector/node/yaml_spec.rb
|
1498
|
+
- spec/unit/indirector/node/plain_spec.rb
|
1499
|
+
- spec/unit/indirector/node/active_record_spec.rb
|
1500
|
+
- spec/unit/indirector/node/exec_spec.rb
|
1501
|
+
- spec/unit/indirector/node/ldap_spec.rb
|
1502
|
+
- spec/unit/indirector/node/memory_spec.rb
|
1503
|
+
- spec/unit/indirector/node/rest_spec.rb
|
1504
|
+
- spec/unit/indirector/node/store_configs_spec.rb
|
1505
|
+
- spec/unit/indirector/exec_spec.rb
|
1506
|
+
- spec/unit/indirector/indirection_spec.rb
|
1507
|
+
- spec/unit/indirector/instrumentation_probe/local_spec.rb
|
1508
|
+
- spec/unit/indirector/instrumentation_probe/rest_spec.rb
|
1509
|
+
- spec/unit/indirector/ssl_file_spec.rb
|
1510
|
+
- spec/unit/indirector/request_spec.rb
|
1511
|
+
- spec/unit/indirector/face_spec.rb
|
1512
|
+
- spec/unit/indirector/certificate_revocation_list/file_spec.rb
|
1513
|
+
- spec/unit/indirector/certificate_revocation_list/ca_spec.rb
|
1514
|
+
- spec/unit/indirector/certificate_revocation_list/rest_spec.rb
|
1515
|
+
- spec/unit/indirector/file_server_spec.rb
|
1516
|
+
- spec/unit/indirector/direct_file_server_spec.rb
|
1517
|
+
- spec/unit/indirector/ldap_spec.rb
|
1518
|
+
- spec/unit/indirector/certificate/file_spec.rb
|
1519
|
+
- spec/unit/indirector/certificate/ca_spec.rb
|
1520
|
+
- spec/unit/indirector/certificate/rest_spec.rb
|
1521
|
+
- spec/unit/indirector/certificate_status/file_spec.rb
|
1522
|
+
- spec/unit/indirector/certificate_status/rest_spec.rb
|
1523
|
+
- spec/unit/indirector/envelope_spec.rb
|
1524
|
+
- spec/unit/indirector/status/rest_spec.rb
|
1525
|
+
- spec/unit/indirector/memory_spec.rb
|
1526
|
+
- spec/unit/indirector/code_spec.rb
|
1527
|
+
- spec/unit/indirector/resource/active_record_spec.rb
|
1528
|
+
- spec/unit/indirector/resource/ral_spec.rb
|
1529
|
+
- spec/unit/indirector/resource/rest_spec.rb
|
1530
|
+
- spec/unit/indirector/resource/store_configs_spec.rb
|
1531
|
+
- spec/unit/indirector/rest_spec.rb
|
1532
|
+
- spec/unit/indirector/resource_type/parser_spec.rb
|
1533
|
+
- spec/unit/indirector/resource_type/rest_spec.rb
|
1534
|
+
- spec/unit/indirector/store_configs_spec.rb
|
1535
|
+
- spec/unit/indirector/file_bucket_file/file_spec.rb
|
1536
|
+
- spec/unit/indirector/file_bucket_file/selector_spec.rb
|
1537
|
+
- spec/unit/indirector/file_bucket_file/rest_spec.rb
|
1538
|
+
- spec/unit/face_spec.rb
|
1539
|
+
- spec/unit/forge/repository_spec.rb
|
1540
|
+
- spec/unit/status_spec.rb
|
1541
|
+
- spec/unit/other/selinux_spec.rb
|
1542
|
+
- spec/unit/other/transbucket_spec.rb
|
1543
|
+
- spec/unit/other/transobject_spec.rb
|
1544
|
+
- spec/unit/resource_spec.rb
|
1545
|
+
- spec/unit/util/inline_docs_spec.rb
|
1546
|
+
- spec/unit/util/command_line_spec.rb
|
1547
|
+
- spec/unit/util/rdoc_spec.rb
|
1548
|
+
- spec/unit/util/metric_spec.rb
|
1549
|
+
- spec/unit/util/queue_spec.rb
|
1550
|
+
- spec/unit/util/filetype_spec.rb
|
1551
|
+
- spec/unit/util/autoload_spec.rb
|
1552
|
+
- spec/unit/util/cache_accumulator_spec.rb
|
1553
|
+
- spec/unit/util/logging_spec.rb
|
1554
|
+
- spec/unit/util/nagios_maker_spec.rb
|
1555
|
+
- spec/unit/util/cacher_spec.rb
|
1556
|
+
- spec/unit/util/resource_template_spec.rb
|
1557
|
+
- spec/unit/util/instrumentation_spec.rb
|
1558
|
+
- spec/unit/util/user_attr_spec.rb
|
1559
|
+
- spec/unit/util/pson_spec.rb
|
1560
|
+
- spec/unit/util/run_mode_spec.rb
|
1561
|
+
- spec/unit/util/reference_serializer_spec.rb
|
1562
|
+
- spec/unit/util/selinux_spec.rb
|
1563
|
+
- spec/unit/util/file_locking_spec.rb
|
1564
|
+
- spec/unit/util/execution_stub_spec.rb
|
1565
|
+
- spec/unit/util/symbolic_file_mode_spec.rb
|
1566
|
+
- spec/unit/util/diff_spec.rb
|
1567
|
+
- spec/unit/util/rdoc/parser_spec.rb
|
1568
|
+
- spec/unit/util/backups_spec.rb
|
1569
|
+
- spec/unit/util/network_device/config_spec.rb
|
1570
|
+
- spec/unit/util/network_device/cisco/device_spec.rb
|
1571
|
+
- spec/unit/util/network_device/cisco/interface_spec.rb
|
1572
|
+
- spec/unit/util/network_device/cisco/facts_spec.rb
|
1573
|
+
- spec/unit/util/network_device/transport/base_spec.rb
|
1574
|
+
- spec/unit/util/network_device/transport/ssh_spec.rb
|
1575
|
+
- spec/unit/util/network_device/transport/telnet_spec.rb
|
1576
|
+
- spec/unit/util/network_device/ipcalc_spec.rb
|
1577
|
+
- spec/unit/util/posix_spec.rb
|
1578
|
+
- spec/unit/util/adsi_spec.rb
|
1579
|
+
- spec/unit/util/loadedfile_spec.rb
|
1580
|
+
- spec/unit/util/storage_spec.rb
|
1581
|
+
- spec/unit/util/monkey_patches_spec.rb
|
1582
|
+
- spec/unit/util/execution_spec.rb
|
1583
|
+
- spec/unit/util/autoload/file_cache_spec.rb
|
1584
|
+
- spec/unit/util/queue/stomp_spec.rb
|
1585
|
+
- spec/unit/util/settings/file_setting_spec.rb
|
1586
|
+
- spec/unit/util/reference_spec.rb
|
1587
|
+
- spec/unit/util/network_device_spec.rb
|
1588
|
+
- spec/unit/util/suidmanager_spec.rb
|
1589
|
+
- spec/unit/util/log/destinations_spec.rb
|
1590
|
+
- spec/unit/util/warnings_spec.rb
|
1591
|
+
- spec/unit/util/zaml_spec.rb
|
1592
|
+
- spec/unit/util/ldap/connection_spec.rb
|
1593
|
+
- spec/unit/util/ldap/manager_spec.rb
|
1594
|
+
- spec/unit/util/ldap/generator_spec.rb
|
1595
|
+
- spec/unit/util/tagging_spec.rb
|
1596
|
+
- spec/unit/util/log_spec.rb
|
1597
|
+
- spec/unit/util/checksums_spec.rb
|
1598
|
+
- spec/unit/util/retryaction_spec.rb
|
1599
|
+
- spec/unit/util/instrumentation/data_spec.rb
|
1600
|
+
- spec/unit/util/instrumentation/indirection_probe_spec.rb
|
1601
|
+
- spec/unit/util/instrumentation/listener_spec.rb
|
1602
|
+
- spec/unit/util/instrumentation/listeners/log_spec.rb
|
1603
|
+
- spec/unit/util/instrumentation/listeners/performance_spec.rb
|
1604
|
+
- spec/unit/util/instrumentation/instrumentable_spec.rb
|
1605
|
+
- spec/unit/util/constant_inflector_spec.rb
|
1606
|
+
- spec/unit/util/colors_spec.rb
|
1607
|
+
- spec/unit/util/errors_spec.rb
|
1608
|
+
- spec/unit/util/settings_spec.rb
|
1609
|
+
- spec/unit/util/package_spec.rb
|
1610
|
+
- spec/unit/util/feature_spec.rb
|
1611
|
+
- spec/unit/util/terminal_spec.rb
|
1612
|
+
- spec/unit/provider/macauthorization_spec.rb
|
1613
|
+
- spec/unit/provider/vlan/cisco_spec.rb
|
1615
1614
|
- spec/unit/provider/confine_spec.rb
|
1616
1615
|
- spec/unit/provider/confiner_spec.rb
|
1617
|
-
- spec/unit/provider/
|
1618
|
-
- spec/unit/provider/
|
1619
|
-
- spec/unit/provider/exec/windows_spec.rb
|
1620
|
-
- spec/unit/provider/exec_spec.rb
|
1621
|
-
- spec/unit/provider/file/posix_spec.rb
|
1616
|
+
- spec/unit/provider/scheduled_task/win32_taskscheduler_spec.rb
|
1617
|
+
- spec/unit/provider/nameservice/directoryservice_spec.rb
|
1622
1618
|
- spec/unit/provider/file/windows_spec.rb
|
1619
|
+
- spec/unit/provider/file/posix_spec.rb
|
1623
1620
|
- spec/unit/provider/group/groupadd_spec.rb
|
1624
1621
|
- spec/unit/provider/group/ldap_spec.rb
|
1625
1622
|
- spec/unit/provider/group/pw_spec.rb
|
1626
1623
|
- spec/unit/provider/group/windows_adsi_spec.rb
|
1627
|
-
- spec/unit/provider/
|
1628
|
-
- spec/unit/provider/
|
1629
|
-
- spec/unit/provider/
|
1630
|
-
- spec/unit/provider/
|
1631
|
-
- spec/unit/provider/
|
1632
|
-
- spec/unit/provider/
|
1624
|
+
- spec/unit/provider/exec/windows_spec.rb
|
1625
|
+
- spec/unit/provider/exec/posix_spec.rb
|
1626
|
+
- spec/unit/provider/exec/shell_spec.rb
|
1627
|
+
- spec/unit/provider/zone/solaris_spec.rb
|
1628
|
+
- spec/unit/provider/exec_spec.rb
|
1629
|
+
- spec/unit/provider/ssh_authorized_key/parsed_spec.rb
|
1630
|
+
- spec/unit/provider/zpool/solaris_spec.rb
|
1631
|
+
- spec/unit/provider/selboolean_spec.rb
|
1632
|
+
- spec/unit/provider/confine/false_spec.rb
|
1633
|
+
- spec/unit/provider/confine/true_spec.rb
|
1634
|
+
- spec/unit/provider/confine/variable_spec.rb
|
1635
|
+
- spec/unit/provider/confine/exists_spec.rb
|
1636
|
+
- spec/unit/provider/confine/feature_spec.rb
|
1637
|
+
- spec/unit/provider/parsedfile_spec.rb
|
1633
1638
|
- spec/unit/provider/mount_spec.rb
|
1634
|
-
- spec/unit/provider/
|
1635
|
-
- spec/unit/provider/nameservice/directoryservice_spec.rb
|
1636
|
-
- spec/unit/provider/network_device_spec.rb
|
1637
|
-
- spec/unit/provider/package/aix_spec.rb
|
1638
|
-
- spec/unit/provider/package/appdmg_spec.rb
|
1639
|
-
- spec/unit/provider/package/apt_spec.rb
|
1640
|
-
- spec/unit/provider/package/dpkg_spec.rb
|
1639
|
+
- spec/unit/provider/package/pkgdmg_spec.rb
|
1641
1640
|
- spec/unit/provider/package/freebsd_spec.rb
|
1642
|
-
- spec/unit/provider/package/
|
1643
|
-
- spec/unit/provider/package/
|
1641
|
+
- spec/unit/provider/package/pkgutil_spec.rb
|
1642
|
+
- spec/unit/provider/package/appdmg_spec.rb
|
1643
|
+
- spec/unit/provider/package/pkg_spec.rb
|
1644
|
+
- spec/unit/provider/package/openbsd_spec.rb
|
1645
|
+
- spec/unit/provider/package/pip_spec.rb
|
1644
1646
|
- spec/unit/provider/package/macports_spec.rb
|
1647
|
+
- spec/unit/provider/package/gem_spec.rb
|
1648
|
+
- spec/unit/provider/package/aix_spec.rb
|
1645
1649
|
- spec/unit/provider/package/msi_spec.rb
|
1646
1650
|
- spec/unit/provider/package/nim_spec.rb
|
1647
|
-
- spec/unit/provider/package/
|
1648
|
-
- spec/unit/provider/package/pacman_spec.rb
|
1649
|
-
- spec/unit/provider/package/pip_spec.rb
|
1650
|
-
- spec/unit/provider/package/pkg_spec.rb
|
1651
|
-
- spec/unit/provider/package/pkgdmg_spec.rb
|
1652
|
-
- spec/unit/provider/package/pkgutil_spec.rb
|
1651
|
+
- spec/unit/provider/package/dpkg_spec.rb
|
1653
1652
|
- spec/unit/provider/package/yum_spec.rb
|
1653
|
+
- spec/unit/provider/package/apt_spec.rb
|
1654
1654
|
- spec/unit/provider/package/zypper_spec.rb
|
1655
|
-
- spec/unit/provider/
|
1656
|
-
- spec/unit/provider/
|
1657
|
-
- spec/unit/provider/
|
1655
|
+
- spec/unit/provider/package/hpux_spec.rb
|
1656
|
+
- spec/unit/provider/package/pacman_spec.rb
|
1657
|
+
- spec/unit/provider/sshkey/parsed_spec.rb
|
1658
|
+
- spec/unit/provider/host/parsed_spec.rb
|
1659
|
+
- spec/unit/provider/user/user_role_add_spec.rb
|
1660
|
+
- spec/unit/provider/user/ldap_spec.rb
|
1661
|
+
- spec/unit/provider/user/useradd_spec.rb
|
1662
|
+
- spec/unit/provider/user/pw_spec.rb
|
1663
|
+
- spec/unit/provider/user/windows_adsi_spec.rb
|
1664
|
+
- spec/unit/provider/user/hpux_spec.rb
|
1665
|
+
- spec/unit/provider/ldap_spec.rb
|
1666
|
+
- spec/unit/provider/network_device_spec.rb
|
1658
1667
|
- spec/unit/provider/selmodule-example.pp
|
1659
|
-
- spec/unit/provider/
|
1660
|
-
- spec/unit/provider/
|
1661
|
-
- spec/unit/provider/service/debian_spec.rb
|
1668
|
+
- spec/unit/provider/cisco_spec.rb
|
1669
|
+
- spec/unit/provider/mount/parsed_spec.rb
|
1662
1670
|
- spec/unit/provider/service/freebsd_spec.rb
|
1663
1671
|
- spec/unit/provider/service/gentoo_spec.rb
|
1664
|
-
- spec/unit/provider/service/
|
1672
|
+
- spec/unit/provider/service/systemd_spec.rb
|
1673
|
+
- spec/unit/provider/service/src_spec.rb
|
1665
1674
|
- spec/unit/provider/service/launchd_spec.rb
|
1666
1675
|
- spec/unit/provider/service/redhat_spec.rb
|
1667
|
-
- spec/unit/provider/service/runit_spec.rb
|
1668
|
-
- spec/unit/provider/service/smf_spec.rb
|
1669
|
-
- spec/unit/provider/service/src_spec.rb
|
1670
|
-
- spec/unit/provider/service/systemd_spec.rb
|
1671
|
-
- spec/unit/provider/service/upstart_spec.rb
|
1672
1676
|
- spec/unit/provider/service/windows_spec.rb
|
1673
|
-
- spec/unit/provider/
|
1674
|
-
- spec/unit/provider/
|
1675
|
-
- spec/unit/provider/
|
1676
|
-
- spec/unit/provider/
|
1677
|
-
- spec/unit/provider/
|
1678
|
-
- spec/unit/provider/
|
1679
|
-
- spec/unit/provider/
|
1680
|
-
- spec/unit/provider/
|
1681
|
-
- spec/unit/provider/
|
1677
|
+
- spec/unit/provider/service/upstart_spec.rb
|
1678
|
+
- spec/unit/provider/service/debian_spec.rb
|
1679
|
+
- spec/unit/provider/service/daemontools_spec.rb
|
1680
|
+
- spec/unit/provider/service/smf_spec.rb
|
1681
|
+
- spec/unit/provider/service/openrc_spec.rb
|
1682
|
+
- spec/unit/provider/service/init_spec.rb
|
1683
|
+
- spec/unit/provider/service/runit_spec.rb
|
1684
|
+
- spec/unit/provider/confine_collection_spec.rb
|
1685
|
+
- spec/unit/provider/augeas/augeas_spec.rb
|
1686
|
+
- spec/unit/provider/naginator_spec.rb
|
1687
|
+
- spec/unit/provider/mcx/mcxcontent_spec.rb
|
1688
|
+
- spec/unit/provider/interface/cisco_spec.rb
|
1689
|
+
- spec/unit/provider/selmodule_spec.rb
|
1682
1690
|
- spec/unit/provider/zfs/solaris_spec.rb
|
1683
|
-
- spec/unit/
|
1684
|
-
- spec/unit/
|
1691
|
+
- spec/unit/forge_spec.rb
|
1692
|
+
- spec/unit/node_spec.rb
|
1693
|
+
- spec/unit/interface_spec.rb
|
1685
1694
|
- spec/unit/provider_spec.rb
|
1686
|
-
- spec/unit/puppet/provider/README.markdown
|
1687
|
-
- spec/unit/puppet/type/README.markdown
|
1688
|
-
- spec/unit/puppet_spec.rb
|
1689
|
-
- spec/unit/rails/host_spec.rb
|
1690
|
-
- spec/unit/rails/param_value_spec.rb
|
1691
|
-
- spec/unit/rails/resource_spec.rb
|
1692
1695
|
- spec/unit/rails_spec.rb
|
1693
|
-
- spec/unit/
|
1696
|
+
- spec/unit/module_spec.rb
|
1697
|
+
- spec/unit/file_collection_spec.rb
|
1694
1698
|
- spec/unit/relationship_spec.rb
|
1699
|
+
- spec/unit/reports/tagmail_spec.rb
|
1695
1700
|
- spec/unit/reports/http_spec.rb
|
1696
1701
|
- spec/unit/reports/rrdgraph_spec.rb
|
1697
1702
|
- spec/unit/reports/store_spec.rb
|
1698
|
-
- spec/unit/
|
1699
|
-
- spec/unit/
|
1703
|
+
- spec/unit/interface/face_collection_spec.rb
|
1704
|
+
- spec/unit/interface/action_spec.rb
|
1705
|
+
- spec/unit/interface/action_builder_spec.rb
|
1706
|
+
- spec/unit/interface/option_spec.rb
|
1707
|
+
- spec/unit/interface/option_builder_spec.rb
|
1708
|
+
- spec/unit/interface/action_manager_spec.rb
|
1709
|
+
- spec/unit/interface/documentation_spec.rb
|
1710
|
+
- spec/unit/configurer_spec.rb
|
1700
1711
|
- spec/unit/resource/catalog_spec.rb
|
1712
|
+
- spec/unit/resource/type_spec.rb
|
1701
1713
|
- spec/unit/resource/status_spec.rb
|
1702
1714
|
- spec/unit/resource/type_collection_helper_spec.rb
|
1703
1715
|
- spec/unit/resource/type_collection_spec.rb
|
1704
|
-
- spec/unit/resource/type_spec.rb
|
1705
|
-
- spec/unit/resource_spec.rb
|
1706
|
-
- spec/unit/run_spec.rb
|
1707
|
-
- spec/unit/semver_spec.rb
|
1708
|
-
- spec/unit/simple_graph_spec.rb
|
1709
|
-
- spec/unit/ssl/base_spec.rb
|
1710
|
-
- spec/unit/ssl/certificate_authority/interface_spec.rb
|
1711
|
-
- spec/unit/ssl/certificate_authority_spec.rb
|
1712
|
-
- spec/unit/ssl/certificate_factory_spec.rb
|
1713
|
-
- spec/unit/ssl/certificate_request_spec.rb
|
1714
|
-
- spec/unit/ssl/certificate_revocation_list_spec.rb
|
1715
|
-
- spec/unit/ssl/certificate_spec.rb
|
1716
|
-
- spec/unit/ssl/host_spec.rb
|
1717
|
-
- spec/unit/ssl/inventory_spec.rb
|
1718
|
-
- spec/unit/ssl/key_spec.rb
|
1719
|
-
- spec/unit/status_spec.rb
|
1720
|
-
- spec/unit/transaction/event_manager_spec.rb
|
1721
|
-
- spec/unit/transaction/event_spec.rb
|
1722
|
-
- spec/unit/transaction/report_spec.rb
|
1723
|
-
- spec/unit/transaction/resource_harness_spec.rb
|
1724
|
-
- spec/unit/transaction_spec.rb
|
1725
1716
|
- spec/unit/transportable_spec.rb
|
1726
|
-
- spec/unit/type/
|
1727
|
-
- spec/unit/type/
|
1728
|
-
- spec/unit/type/
|
1717
|
+
- spec/unit/type/macauthorization_spec.rb
|
1718
|
+
- spec/unit/type/vlan_spec.rb
|
1719
|
+
- spec/unit/type/maillist_spec.rb
|
1720
|
+
- spec/unit/type/file_spec.rb
|
1729
1721
|
- spec/unit/type/cron_spec.rb
|
1730
|
-
- spec/unit/type/
|
1731
|
-
- spec/unit/type/file/checksum_spec.rb
|
1732
|
-
- spec/unit/type/file/content_spec.rb
|
1722
|
+
- spec/unit/type/augeas_spec.rb
|
1733
1723
|
- spec/unit/type/file/ctime.rb
|
1724
|
+
- spec/unit/type/file/selinux_spec.rb
|
1734
1725
|
- spec/unit/type/file/ensure_spec.rb
|
1735
|
-
- spec/unit/type/file/
|
1736
|
-
- spec/unit/type/file/mode_spec.rb
|
1737
|
-
- spec/unit/type/file/mtime.rb
|
1726
|
+
- spec/unit/type/file/type.rb
|
1738
1727
|
- spec/unit/type/file/owner_spec.rb
|
1739
|
-
- spec/unit/type/file/
|
1728
|
+
- spec/unit/type/file/content_spec.rb
|
1729
|
+
- spec/unit/type/file/mtime.rb
|
1730
|
+
- spec/unit/type/file/mode_spec.rb
|
1740
1731
|
- spec/unit/type/file/source_spec.rb
|
1741
|
-
- spec/unit/type/file/
|
1742
|
-
- spec/unit/type/
|
1743
|
-
- spec/unit/type/
|
1744
|
-
- spec/unit/type/
|
1745
|
-
- spec/unit/type/host_spec.rb
|
1746
|
-
- spec/unit/type/interface_spec.rb
|
1747
|
-
- spec/unit/type/k5login_spec.rb
|
1748
|
-
- spec/unit/type/macauthorization_spec.rb
|
1749
|
-
- spec/unit/type/maillist_spec.rb
|
1750
|
-
- spec/unit/type/mcx_spec.rb
|
1751
|
-
- spec/unit/type/mount_spec.rb
|
1732
|
+
- spec/unit/type/file/group_spec.rb
|
1733
|
+
- spec/unit/type/file/checksum_spec.rb
|
1734
|
+
- spec/unit/type/component_spec.rb
|
1735
|
+
- spec/unit/type/stage_spec.rb
|
1752
1736
|
- spec/unit/type/nagios_spec.rb
|
1753
|
-
- spec/unit/type/
|
1754
|
-
- spec/unit/type/package_spec.rb
|
1737
|
+
- spec/unit/type/ssh_authorized_key_spec.rb
|
1755
1738
|
- spec/unit/type/resources_spec.rb
|
1756
|
-
- spec/unit/type/
|
1757
|
-
- spec/unit/type/
|
1739
|
+
- spec/unit/type/exec_spec.rb
|
1740
|
+
- spec/unit/type/zone_spec.rb
|
1758
1741
|
- spec/unit/type/selboolean_spec.rb
|
1759
|
-
- spec/unit/type/
|
1742
|
+
- spec/unit/type/zfs_spec.rb
|
1743
|
+
- spec/unit/type/mount_spec.rb
|
1744
|
+
- spec/unit/type/user_spec.rb
|
1760
1745
|
- spec/unit/type/service_spec.rb
|
1761
|
-
- spec/unit/type/
|
1746
|
+
- spec/unit/type/interface_spec.rb
|
1747
|
+
- spec/unit/type/scheduled_task_spec.rb
|
1762
1748
|
- spec/unit/type/sshkey_spec.rb
|
1763
|
-
- spec/unit/type/
|
1764
|
-
- spec/unit/type/
|
1765
|
-
- spec/unit/type/
|
1766
|
-
- spec/unit/type/
|
1749
|
+
- spec/unit/type/filebucket_spec.rb
|
1750
|
+
- spec/unit/type/schedule_spec.rb
|
1751
|
+
- spec/unit/type/noop_metaparam_spec.rb
|
1752
|
+
- spec/unit/type/k5login_spec.rb
|
1753
|
+
- spec/unit/type/mcx_spec.rb
|
1754
|
+
- spec/unit/type/group_spec.rb
|
1767
1755
|
- spec/unit/type/whit_spec.rb
|
1768
|
-
- spec/unit/type/
|
1769
|
-
- spec/unit/type/
|
1756
|
+
- spec/unit/type/computer_spec.rb
|
1757
|
+
- spec/unit/type/tidy_spec.rb
|
1758
|
+
- spec/unit/type/host_spec.rb
|
1759
|
+
- spec/unit/type/selmodule_spec.rb
|
1760
|
+
- spec/unit/type/package_spec.rb
|
1770
1761
|
- spec/unit/type/zpool_spec.rb
|
1771
|
-
- spec/unit/
|
1772
|
-
- spec/unit/
|
1773
|
-
- spec/unit/
|
1774
|
-
- spec/unit/util/autoload_spec.rb
|
1775
|
-
- spec/unit/util/backups_spec.rb
|
1776
|
-
- spec/unit/util/cache_accumulator_spec.rb
|
1777
|
-
- spec/unit/util/cacher_spec.rb
|
1778
|
-
- spec/unit/util/checksums_spec.rb
|
1779
|
-
- spec/unit/util/colors_spec.rb
|
1780
|
-
- spec/unit/util/command_line_spec.rb
|
1781
|
-
- spec/unit/util/constant_inflector_spec.rb
|
1782
|
-
- spec/unit/util/diff_spec.rb
|
1783
|
-
- spec/unit/util/errors_spec.rb
|
1784
|
-
- spec/unit/util/execution_spec.rb
|
1785
|
-
- spec/unit/util/execution_stub_spec.rb
|
1786
|
-
- spec/unit/util/feature_spec.rb
|
1787
|
-
- spec/unit/util/file_locking_spec.rb
|
1788
|
-
- spec/unit/util/filetype_spec.rb
|
1789
|
-
- spec/unit/util/inline_docs_spec.rb
|
1790
|
-
- spec/unit/util/instrumentation/data_spec.rb
|
1791
|
-
- spec/unit/util/instrumentation/indirection_probe_spec.rb
|
1792
|
-
- spec/unit/util/instrumentation/instrumentable_spec.rb
|
1793
|
-
- spec/unit/util/instrumentation/listener_spec.rb
|
1794
|
-
- spec/unit/util/instrumentation/listeners/log_spec.rb
|
1795
|
-
- spec/unit/util/instrumentation/listeners/performance_spec.rb
|
1796
|
-
- spec/unit/util/instrumentation_spec.rb
|
1797
|
-
- spec/unit/util/ldap/connection_spec.rb
|
1798
|
-
- spec/unit/util/ldap/generator_spec.rb
|
1799
|
-
- spec/unit/util/ldap/manager_spec.rb
|
1800
|
-
- spec/unit/util/loadedfile_spec.rb
|
1801
|
-
- spec/unit/util/log/destinations_spec.rb
|
1802
|
-
- spec/unit/util/log_spec.rb
|
1803
|
-
- spec/unit/util/logging_spec.rb
|
1804
|
-
- spec/unit/util/metric_spec.rb
|
1805
|
-
- spec/unit/util/monkey_patches_spec.rb
|
1806
|
-
- spec/unit/util/nagios_maker_spec.rb
|
1807
|
-
- spec/unit/util/network_device/cisco/device_spec.rb
|
1808
|
-
- spec/unit/util/network_device/cisco/facts_spec.rb
|
1809
|
-
- spec/unit/util/network_device/cisco/interface_spec.rb
|
1810
|
-
- spec/unit/util/network_device/config_spec.rb
|
1811
|
-
- spec/unit/util/network_device/ipcalc_spec.rb
|
1812
|
-
- spec/unit/util/network_device/transport/base_spec.rb
|
1813
|
-
- spec/unit/util/network_device/transport/ssh_spec.rb
|
1814
|
-
- spec/unit/util/network_device/transport/telnet_spec.rb
|
1815
|
-
- spec/unit/util/network_device_spec.rb
|
1816
|
-
- spec/unit/util/package_spec.rb
|
1817
|
-
- spec/unit/util/posix_spec.rb
|
1818
|
-
- spec/unit/util/pson_spec.rb
|
1819
|
-
- spec/unit/util/queue/stomp_spec.rb
|
1820
|
-
- spec/unit/util/queue_spec.rb
|
1821
|
-
- spec/unit/util/rdoc/parser_spec.rb
|
1822
|
-
- spec/unit/util/rdoc_spec.rb
|
1823
|
-
- spec/unit/util/reference_serializer_spec.rb
|
1824
|
-
- spec/unit/util/reference_spec.rb
|
1825
|
-
- spec/unit/util/resource_template_spec.rb
|
1826
|
-
- spec/unit/util/retryaction_spec.rb
|
1827
|
-
- spec/unit/util/run_mode_spec.rb
|
1828
|
-
- spec/unit/util/selinux_spec.rb
|
1829
|
-
- spec/unit/util/settings/file_setting_spec.rb
|
1830
|
-
- spec/unit/util/settings_spec.rb
|
1831
|
-
- spec/unit/util/storage_spec.rb
|
1832
|
-
- spec/unit/util/suidmanager_spec.rb
|
1833
|
-
- spec/unit/util/symbolic_file_mode_spec.rb
|
1834
|
-
- spec/unit/util/tagging_spec.rb
|
1835
|
-
- spec/unit/util/terminal_spec.rb
|
1836
|
-
- spec/unit/util/user_attr_spec.rb
|
1837
|
-
- spec/unit/util/warnings_spec.rb
|
1838
|
-
- spec/unit/util/zaml_spec.rb
|
1762
|
+
- spec/unit/configurer/plugin_handler_spec.rb
|
1763
|
+
- spec/unit/configurer/fact_handler_spec.rb
|
1764
|
+
- spec/unit/configurer/downloader_spec.rb
|
1839
1765
|
- spec/unit/util_spec.rb
|
1766
|
+
- spec/lib/puppet/face/huzzah/obsolete.rb
|
1767
|
+
- spec/lib/puppet/face/1.0.0/huzzah.rb
|
1768
|
+
- spec/lib/puppet/face/basetest.rb
|
1769
|
+
- spec/lib/puppet/face/version_matching.rb
|
1770
|
+
- spec/lib/puppet/face/huzzah.rb
|
1771
|
+
- spec/lib/matchers/json.rb
|
1772
|
+
- spec/lib/puppet_spec/fixtures.rb
|
1773
|
+
- spec/lib/puppet_spec/matchers.rb
|
1774
|
+
- spec/lib/puppet_spec/database.rb
|
1775
|
+
- spec/lib/puppet_spec/compiler.rb
|
1776
|
+
- spec/lib/puppet_spec/files.rb
|
1777
|
+
- spec/lib/puppet_spec/modules.rb
|
1778
|
+
- spec/lib/puppet_spec/verbose.rb
|
1779
|
+
- spec/spec_helper.rb
|
1780
|
+
- spec/monkey_patches/publicize_methods.rb
|
1781
|
+
- spec/monkey_patches/alias_should_to_must.rb
|
1782
|
+
- spec/shared_contexts/platform.rb
|
1840
1783
|
- spec/watchr.rb
|
1841
|
-
-
|
1842
|
-
-
|
1784
|
+
- spec/shared_behaviours/an_indirector_face.rb
|
1785
|
+
- spec/shared_behaviours/things_that_declare_options.rb
|
1786
|
+
- spec/shared_behaviours/file_serving_model.rb
|
1787
|
+
- spec/shared_behaviours/file_server_terminus.rb
|
1788
|
+
- spec/shared_behaviours/store_configs_terminus.rb
|
1789
|
+
- spec/shared_behaviours/file_serving.rb
|
1790
|
+
- spec/shared_behaviours/all_parsedfile_providers.rb
|
1791
|
+
- spec/shared_behaviours/memory_terminus.rb
|
1792
|
+
- spec/shared_behaviours/documentation_on_faces.rb
|
1793
|
+
- spec/shared_behaviours/path_parameters.rb
|
1794
|
+
- spec/integration/transaction/report_spec.rb
|
1795
|
+
- spec/integration/network/formats_spec.rb
|
1796
|
+
- spec/integration/network/server/mongrel_spec.rb
|
1797
|
+
- spec/integration/network/server/webrick_spec.rb
|
1798
|
+
- spec/integration/network/handler_spec.rb
|
1799
|
+
- spec/integration/network/rest_authconfig_spec.rb
|
1800
|
+
- spec/integration/transaction_spec.rb
|
1801
|
+
- spec/integration/defaults_spec.rb
|
1802
|
+
- spec/integration/file_bucket/file_spec.rb
|
1803
|
+
- spec/integration/ssl/certificate_revocation_list_spec.rb
|
1804
|
+
- spec/integration/ssl/certificate_request_spec.rb
|
1805
|
+
- spec/integration/ssl/host_spec.rb
|
1806
|
+
- spec/integration/ssl/certificate_authority_spec.rb
|
1807
|
+
- spec/integration/node/environment_spec.rb
|
1808
|
+
- spec/integration/node/facts_spec.rb
|
1809
|
+
- spec/integration/application/apply_spec.rb
|
1810
|
+
- spec/integration/application/doc_spec.rb
|
1811
|
+
- spec/integration/reference/providers_spec.rb
|
1812
|
+
- spec/integration/file_serving/fileset_spec.rb
|
1813
|
+
- spec/integration/file_serving/metadata_spec.rb
|
1814
|
+
- spec/integration/file_serving/content_spec.rb
|
1815
|
+
- spec/integration/file_serving/terminus_helper_spec.rb
|
1816
|
+
- spec/integration/parser/collector_spec.rb
|
1817
|
+
- spec/integration/parser/parser_spec.rb
|
1818
|
+
- spec/integration/parser/functions_spec.rb
|
1819
|
+
- spec/integration/parser/compiler_spec.rb
|
1820
|
+
- spec/integration/parser/ruby_manifest_spec.rb
|
1821
|
+
- spec/integration/parser/functions/require_spec.rb
|
1822
|
+
- spec/integration/type_spec.rb
|
1823
|
+
- spec/integration/reports_spec.rb
|
1824
|
+
- spec/integration/indirector/file_content/file_server_spec.rb
|
1825
|
+
- spec/integration/indirector/catalog/queue_spec.rb
|
1826
|
+
- spec/integration/indirector/catalog/compiler_spec.rb
|
1827
|
+
- spec/integration/indirector/file_metadata/file_server_spec.rb
|
1828
|
+
- spec/integration/indirector/node/ldap_spec.rb
|
1829
|
+
- spec/integration/indirector/direct_file_server_spec.rb
|
1830
|
+
- spec/integration/util/autoload_spec.rb
|
1831
|
+
- spec/integration/util/file_locking_spec.rb
|
1832
|
+
- spec/integration/util/rdoc/parser_spec.rb
|
1833
|
+
- spec/integration/util/windows/user_spec.rb
|
1834
|
+
- spec/integration/util/windows/security_spec.rb
|
1835
|
+
- spec/integration/util/settings_spec.rb
|
1836
|
+
- spec/integration/util/feature_spec.rb
|
1837
|
+
- spec/integration/provider/ssh_authorized_key_spec.rb
|
1838
|
+
- spec/integration/provider/mount_spec.rb
|
1839
|
+
- spec/integration/provider/mailalias/aliases_spec.rb
|
1840
|
+
- spec/integration/provider/service/init_spec.rb
|
1841
|
+
- spec/integration/provider/package_spec.rb
|
1842
|
+
- spec/integration/node_spec.rb
|
1843
|
+
- spec/integration/configurer_spec.rb
|
1844
|
+
- spec/integration/resource/catalog_spec.rb
|
1845
|
+
- spec/integration/resource/type_collection_spec.rb
|
1846
|
+
- spec/integration/type/file_spec.rb
|
1847
|
+
- spec/integration/type/exec_spec.rb
|
1848
|
+
- spec/integration/type/tidy_spec.rb
|
1849
|
+
- spec/integration/type/package_spec.rb
|
1850
|
+
- spec/integration/faces/documentation_spec.rb
|
1851
|
+
- spec/integration/util_spec.rb
|
1843
1852
|
- bin/puppetmasterd
|
1844
1853
|
- bin/puppetqd
|
1845
1854
|
- bin/puppetrun
|
1855
|
+
- bin/puppetd
|
1856
|
+
- bin/puppetca
|
1846
1857
|
homepage: http://puppetlabs.com
|
1847
1858
|
licenses: []
|
1848
1859
|
|
@@ -1876,7 +1887,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
1876
1887
|
requirements: []
|
1877
1888
|
|
1878
1889
|
rubyforge_project: puppet
|
1879
|
-
rubygems_version: 1.8.
|
1890
|
+
rubygems_version: 1.8.11
|
1880
1891
|
signing_key:
|
1881
1892
|
specification_version: 3
|
1882
1893
|
summary: Puppet, an automated configuration management tool
|