puppet 2.7.21 → 2.7.22
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 +14 -0
- data/Gemfile.lock +2 -2
- data/ext/build_defaults.yaml +2 -3
- data/ext/debian/control +1 -1
- data/ext/packaging/README.md +496 -8
- data/ext/packaging/spec/tasks/00_utils_spec.rb +7 -7
- data/ext/packaging/spec/tasks/build_object_spec.rb +3 -0
- data/ext/packaging/tasks/00_utils.rake +2 -2
- data/ext/packaging/tasks/10_setupvars.rake +8 -1
- data/ext/packaging/tasks/build.rake +2 -0
- data/ext/packaging/tasks/deb_repos.rake +48 -15
- data/ext/packaging/tasks/jenkins.rake +30 -2
- data/ext/packaging/tasks/mock.rake +3 -2
- data/ext/packaging/tasks/pe_remote.rake +1 -1
- data/ext/packaging/tasks/pe_ship.rake +4 -5
- data/ext/packaging/tasks/pe_sign.rake +8 -0
- data/ext/packaging/tasks/pe_sles.rake +8 -7
- data/ext/packaging/tasks/pre_tasks.rake +0 -0
- data/ext/packaging/tasks/retrieve.rake +11 -1
- data/ext/packaging/tasks/rpm_repos.rake +71 -49
- data/ext/packaging/tasks/ship.rake +14 -2
- data/ext/packaging/tasks/sign.rake +9 -3
- data/ext/packaging/tasks/tar.rake +5 -0
- data/ext/packaging/tasks/vendor_gems.rake +110 -0
- data/install.rb +1 -1
- data/lib/puppet.rb +11 -0
- data/lib/puppet/indirector/report/processor.rb +1 -1
- data/lib/puppet/indirector/report/rest.rb +7 -0
- data/lib/puppet/indirector/resource/rest.rb +9 -0
- data/lib/puppet/indirector/rest.rb +81 -47
- data/lib/puppet/indirector/run/rest.rb +6 -0
- data/lib/puppet/network/formats.rb +20 -10
- data/lib/puppet/network/http/handler.rb +1 -1
- data/lib/puppet/node.rb +25 -0
- data/lib/puppet/node/facts.rb +23 -4
- data/lib/puppet/resource.rb +2 -4
- data/lib/puppet/resource/status.rb +28 -0
- data/lib/puppet/run.rb +24 -2
- data/lib/puppet/status.rb +6 -2
- data/lib/puppet/transaction/event.rb +19 -0
- data/lib/puppet/transaction/report.rb +39 -0
- data/lib/puppet/util/log.rb +19 -0
- data/lib/puppet/util/metric.rb +6 -0
- data/lib/puppet/util/monkey_patches.rb +0 -16
- data/lib/puppet/vendor.rb +55 -0
- data/lib/puppet/vendor/load_safe_yaml.rb +1 -0
- data/lib/puppet/vendor/require_vendored.rb +4 -0
- data/lib/puppet/vendor/safe_yaml/CHANGES.md +104 -0
- data/lib/puppet/vendor/safe_yaml/Gemfile +11 -0
- data/lib/puppet/vendor/safe_yaml/LICENSE.txt +22 -0
- data/lib/puppet/vendor/safe_yaml/README.md +179 -0
- data/lib/puppet/vendor/safe_yaml/Rakefile +6 -0
- data/lib/puppet/vendor/safe_yaml/lib/safe_yaml.rb +253 -0
- data/lib/puppet/vendor/safe_yaml/lib/safe_yaml/deep.rb +34 -0
- data/lib/puppet/vendor/safe_yaml/lib/safe_yaml/parse/date.rb +27 -0
- data/lib/puppet/vendor/safe_yaml/lib/safe_yaml/parse/hexadecimal.rb +12 -0
- data/lib/puppet/vendor/safe_yaml/lib/safe_yaml/parse/sexagesimal.rb +26 -0
- data/lib/puppet/vendor/safe_yaml/lib/safe_yaml/psych_handler.rb +92 -0
- data/lib/puppet/vendor/safe_yaml/lib/safe_yaml/psych_resolver.rb +52 -0
- data/lib/puppet/vendor/safe_yaml/lib/safe_yaml/resolver.rb +94 -0
- data/lib/puppet/vendor/safe_yaml/lib/safe_yaml/safe_to_ruby_visitor.rb +17 -0
- data/lib/puppet/vendor/safe_yaml/lib/safe_yaml/syck_hack.rb +36 -0
- data/lib/puppet/vendor/safe_yaml/lib/safe_yaml/syck_node_monkeypatch.rb +43 -0
- data/lib/puppet/vendor/safe_yaml/lib/safe_yaml/syck_resolver.rb +38 -0
- data/lib/puppet/vendor/safe_yaml/lib/safe_yaml/transform.rb +41 -0
- data/lib/puppet/vendor/safe_yaml/lib/safe_yaml/transform/to_boolean.rb +21 -0
- data/lib/puppet/vendor/safe_yaml/lib/safe_yaml/transform/to_date.rb +11 -0
- data/lib/puppet/vendor/safe_yaml/lib/safe_yaml/transform/to_float.rb +33 -0
- data/lib/puppet/vendor/safe_yaml/lib/safe_yaml/transform/to_integer.rb +25 -0
- data/lib/puppet/vendor/safe_yaml/lib/safe_yaml/transform/to_nil.rb +18 -0
- data/lib/puppet/vendor/safe_yaml/lib/safe_yaml/transform/to_symbol.rb +13 -0
- data/lib/puppet/vendor/safe_yaml/lib/safe_yaml/transform/transformation_map.rb +47 -0
- data/lib/puppet/vendor/safe_yaml/lib/safe_yaml/version.rb +3 -0
- data/lib/puppet/vendor/safe_yaml/run_specs_all_ruby_versions.sh +21 -0
- data/lib/puppet/vendor/safe_yaml/safe_yaml.gemspec +18 -0
- data/lib/puppet/vendor/safe_yaml/spec/exploit.1.9.2.yaml +2 -0
- data/lib/puppet/vendor/safe_yaml/spec/exploit.1.9.3.yaml +2 -0
- data/lib/puppet/vendor/safe_yaml/spec/psych_resolver_spec.rb +10 -0
- data/lib/puppet/vendor/safe_yaml/spec/resolver_specs.rb +250 -0
- data/lib/puppet/vendor/safe_yaml/spec/safe_yaml_spec.rb +702 -0
- data/lib/puppet/vendor/safe_yaml/spec/spec_helper.rb +18 -0
- data/lib/puppet/vendor/safe_yaml/spec/support/exploitable_back_door.rb +29 -0
- data/lib/puppet/vendor/safe_yaml/spec/syck_resolver_spec.rb +10 -0
- data/lib/puppet/vendor/safe_yaml/spec/transform/base64_spec.rb +11 -0
- data/lib/puppet/vendor/safe_yaml/spec/transform/to_date_spec.rb +34 -0
- data/lib/puppet/vendor/safe_yaml/spec/transform/to_float_spec.rb +42 -0
- data/lib/puppet/vendor/safe_yaml/spec/transform/to_integer_spec.rb +59 -0
- data/lib/puppet/vendor/safe_yaml/spec/transform/to_symbol_spec.rb +49 -0
- data/lib/puppet/version.rb +1 -1
- data/spec/lib/puppet_spec/matchers.rb +8 -0
- data/spec/unit/file_serving/metadata_spec.rb +20 -28
- data/spec/unit/indirector/report/rest_spec.rb +41 -0
- data/spec/unit/indirector/rest_spec.rb +314 -339
- data/spec/unit/network/formats_spec.rb +36 -27
- data/spec/unit/network/http/handler_spec.rb +3 -12
- data/spec/unit/node_spec.rb +81 -0
- data/spec/unit/resource_spec.rb +5 -35
- data/spec/unit/run_spec.rb +22 -8
- data/spec/unit/status_spec.rb +6 -0
- data/test/network/handler/report.rb +0 -36
- metadata +148 -102
@@ -55,16 +55,29 @@ describe "Puppet Network Format" do
|
|
55
55
|
@yaml.render_multiple(instances).should == "foo"
|
56
56
|
end
|
57
57
|
|
58
|
-
it "should
|
59
|
-
|
60
|
-
YAML.expects(:safely_load).with("foo").returns "bar"
|
61
|
-
@yaml.intern(String, text).should == "bar"
|
58
|
+
it "should deserialize YAML" do
|
59
|
+
@yaml.intern(String, YAML.dump("foo")).should == "foo"
|
62
60
|
end
|
63
61
|
|
64
|
-
it "should
|
65
|
-
|
66
|
-
|
67
|
-
|
62
|
+
it "should deserialize symbols as strings" do
|
63
|
+
@yaml.intern(String, YAML.dump(:foo)).should == "foo"
|
64
|
+
end
|
65
|
+
|
66
|
+
it "should fail when type does not match deserialized form and has no from_pson" do
|
67
|
+
expect do
|
68
|
+
@yaml.intern(Hash, YAML.dump("foo"))
|
69
|
+
end.to raise_error(NoMethodError)
|
70
|
+
end
|
71
|
+
|
72
|
+
it "should load from yaml when deserializing an array" do
|
73
|
+
text = YAML.dump(["foo"])
|
74
|
+
@yaml.intern_multiple(String, text).should == ["foo"]
|
75
|
+
end
|
76
|
+
|
77
|
+
it "should fail when one element does not have a from_pson" do
|
78
|
+
expect do
|
79
|
+
@yaml.intern_multiple(Hash, YAML.dump(["foo"]))
|
80
|
+
end.to raise_error(NoMethodError)
|
68
81
|
end
|
69
82
|
end
|
70
83
|
|
@@ -108,29 +121,25 @@ describe "Puppet Network Format" do
|
|
108
121
|
@yaml.render(instances).should == "bar"
|
109
122
|
end
|
110
123
|
|
111
|
-
it "should
|
112
|
-
|
113
|
-
@yaml.expects(:decode).with("foo").returns "bar"
|
114
|
-
@yaml.intern(String, text).should == "bar"
|
124
|
+
it "should round trip data" do
|
125
|
+
@yaml.intern(String, @yaml.encode("foo")).should == "foo"
|
115
126
|
end
|
116
127
|
|
117
|
-
it "should
|
118
|
-
|
119
|
-
@yaml.
|
120
|
-
@yaml.intern_multiple(String, text).should == "bar"
|
128
|
+
it "should round trip multiple data elements" do
|
129
|
+
data = @yaml.render_multiple(["foo", "bar"])
|
130
|
+
@yaml.intern_multiple(String, data).should == ["foo", "bar"]
|
121
131
|
end
|
122
132
|
|
123
|
-
it "should
|
124
|
-
Base64.
|
125
|
-
|
126
|
-
|
127
|
-
@yaml.decode("zorg").should == "bar"
|
133
|
+
it "should intern by base64 decoding, uncompressing and safely Yaml loading" do
|
134
|
+
input = Base64.encode64(Zlib::Deflate.deflate(YAML.dump("data in")))
|
135
|
+
|
136
|
+
@yaml.intern(String, input).should == "data in"
|
128
137
|
end
|
129
138
|
|
130
|
-
it "should
|
131
|
-
|
132
|
-
|
133
|
-
|
139
|
+
it "should render by compressing and base64 encoding" do
|
140
|
+
output = @yaml.render("foo")
|
141
|
+
|
142
|
+
YAML.load(Zlib::Inflate.inflate(Base64.decode64(output))).should == "foo"
|
134
143
|
end
|
135
144
|
|
136
145
|
describe "when zlib is disabled" do
|
@@ -143,11 +152,11 @@ describe "Puppet Network Format" do
|
|
143
152
|
end
|
144
153
|
|
145
154
|
it "should refuse to encode" do
|
146
|
-
|
155
|
+
expect { @yaml.render("foo") }.to raise_error(Puppet::Error, /zlib library is not installed/)
|
147
156
|
end
|
148
157
|
|
149
158
|
it "should refuse to decode" do
|
150
|
-
|
159
|
+
expect { @yaml.intern(String, "foo") }.to raise_error(Puppet::Error, /zlib library is not installed/)
|
151
160
|
end
|
152
161
|
end
|
153
162
|
|
@@ -133,21 +133,12 @@ describe Puppet::Network::HTTP::Handler do
|
|
133
133
|
decoded_params.should == {:my_param => [1,2,3]}
|
134
134
|
end
|
135
135
|
|
136
|
-
it "should
|
137
|
-
params = {'my_param' => "--- !ruby/
|
136
|
+
it "should ignore tags on YAML parameters" do
|
137
|
+
params = {'my_param' => "--- !ruby/object:Array {}"}
|
138
138
|
|
139
139
|
decoded_params = @handler.send(:decode_params, params)
|
140
140
|
|
141
|
-
decoded_params[:my_param].should
|
142
|
-
end
|
143
|
-
|
144
|
-
# These are only dangerous with Psych, which is Ruby 1.9-only. Since
|
145
|
-
# there's no real way to change the yamler in Puppet, assume that 1.9 means
|
146
|
-
# Psych, especially in tests.
|
147
|
-
it "should fail if YAML parameters have !ruby/hash tags on Ruby 1.9", :unless => RUBY_VERSION =~ /^1\.8/ do
|
148
|
-
params = {'my_param' => "--- !ruby/hash:Array {}"}
|
149
|
-
|
150
|
-
expect { @handler.send(:decode_params, params) }.to raise_error(ArgumentError, /Illegal YAML mapping found/)
|
141
|
+
decoded_params[:my_param].should be_a(Hash)
|
151
142
|
end
|
152
143
|
|
153
144
|
describe "when finding a model instance" do
|
data/spec/unit/node_spec.rb
CHANGED
@@ -36,6 +36,87 @@ describe Puppet::Node do
|
|
36
36
|
node.environment.name.should == :bar
|
37
37
|
end
|
38
38
|
end
|
39
|
+
|
40
|
+
it "can survive a round-trip through YAML" do
|
41
|
+
facts = Puppet::Node::Facts.new("hello", "one" => "c", "two" => "b")
|
42
|
+
node = Puppet::Node.new("hello",
|
43
|
+
:environment => 'kjhgrg',
|
44
|
+
:classes => ['erth', 'aiu'],
|
45
|
+
:parameters => {"hostname"=>"food"}
|
46
|
+
)
|
47
|
+
new_node = Puppet::Node.convert_from('yaml', node.render('yaml'))
|
48
|
+
new_node.environment.should == node.environment
|
49
|
+
new_node.parameters.should == node.parameters
|
50
|
+
new_node.classes.should == node.classes
|
51
|
+
new_node.name.should == node.name
|
52
|
+
end
|
53
|
+
|
54
|
+
describe "when converting to json" do
|
55
|
+
before do
|
56
|
+
@node = Puppet::Node.new("mynode")
|
57
|
+
end
|
58
|
+
|
59
|
+
it "should provide its name" do
|
60
|
+
@node.should set_json_attribute('name').to("mynode")
|
61
|
+
end
|
62
|
+
|
63
|
+
it "should produce a hash with the document_type set to 'Node'" do
|
64
|
+
@node.should set_json_document_type_to("Node")
|
65
|
+
end
|
66
|
+
|
67
|
+
it "should include the classes if set" do
|
68
|
+
@node.classes = %w{a b c}
|
69
|
+
@node.should set_json_attribute("classes").to(%w{a b c})
|
70
|
+
end
|
71
|
+
|
72
|
+
it "should not include the classes if there are none" do
|
73
|
+
@node.should_not set_json_attribute('classes')
|
74
|
+
end
|
75
|
+
|
76
|
+
it "should include parameters if set" do
|
77
|
+
@node.parameters = {"a" => "b", "c" => "d"}
|
78
|
+
@node.should set_json_attribute('parameters').to({"a" => "b", "c" => "d"})
|
79
|
+
end
|
80
|
+
|
81
|
+
it "should not include the parameters if there are none" do
|
82
|
+
@node.should_not set_json_attribute('parameters')
|
83
|
+
end
|
84
|
+
|
85
|
+
it "should include the environment" do
|
86
|
+
@node.environment = "production"
|
87
|
+
@node.should set_json_attribute('environment').to('production')
|
88
|
+
end
|
89
|
+
end
|
90
|
+
|
91
|
+
describe "when converting from json" do
|
92
|
+
before do
|
93
|
+
@node = Puppet::Node.new("mynode")
|
94
|
+
@format = Puppet::Network::FormatHandler.format('pson')
|
95
|
+
end
|
96
|
+
|
97
|
+
def from_json(json)
|
98
|
+
@format.intern(Puppet::Node, json)
|
99
|
+
end
|
100
|
+
|
101
|
+
it "should set its name" do
|
102
|
+
Puppet::Node.should read_json_attribute('name').from(@node.to_pson).as("mynode")
|
103
|
+
end
|
104
|
+
|
105
|
+
it "should include the classes if set" do
|
106
|
+
@node.classes = %w{a b c}
|
107
|
+
Puppet::Node.should read_json_attribute('classes').from(@node.to_pson).as(%w{a b c})
|
108
|
+
end
|
109
|
+
|
110
|
+
it "should include parameters if set" do
|
111
|
+
@node.parameters = {"a" => "b", "c" => "d"}
|
112
|
+
Puppet::Node.should read_json_attribute('parameters').from(@node.to_pson).as({"a" => "b", "c" => "d"})
|
113
|
+
end
|
114
|
+
|
115
|
+
it "should include the environment" do
|
116
|
+
@node.environment = "production"
|
117
|
+
Puppet::Node.should read_json_attribute('environment').from(@node.to_pson).as(Puppet::Node::Environment.new(:production))
|
118
|
+
end
|
119
|
+
end
|
39
120
|
end
|
40
121
|
|
41
122
|
describe Puppet::Node, "when initializing" do
|
data/spec/unit/resource_spec.rb
CHANGED
@@ -444,41 +444,11 @@ describe Puppet::Resource do
|
|
444
444
|
@resource["two"] = "other"
|
445
445
|
end
|
446
446
|
|
447
|
-
it "should be able to be dumped to yaml" do
|
448
|
-
expect { YAML.dump(@resource) }.to_not raise_error
|
449
|
-
end
|
450
|
-
|
451
447
|
it "should produce an equivalent yaml object" do
|
452
|
-
text =
|
453
|
-
|
454
|
-
newresource = YAML.load(text)
|
455
|
-
newresource.title.should == @resource.title
|
456
|
-
newresource.type.should == @resource.type
|
457
|
-
%w{one two}.each do |param|
|
458
|
-
newresource[param].should == @resource[param]
|
459
|
-
end
|
460
|
-
end
|
461
|
-
end
|
462
|
-
|
463
|
-
describe "when loading 0.25.x storedconfigs YAML" do
|
464
|
-
before :each do
|
465
|
-
@old_storedconfig_yaml = %q{--- !ruby/object:Puppet::Resource::Reference
|
466
|
-
builtin_type:
|
467
|
-
title: /tmp/bar
|
468
|
-
type: File
|
469
|
-
}
|
470
|
-
end
|
471
|
-
|
472
|
-
it "should deserialize a Puppet::Resource::Reference without exceptions" do
|
473
|
-
expect { YAML.load(@old_storedconfig_yaml) }.to_not raise_error
|
474
|
-
end
|
475
|
-
|
476
|
-
it "should deserialize as a Puppet::Resource::Reference as a Puppet::Resource" do
|
477
|
-
YAML.load(@old_storedconfig_yaml).class.should == Puppet::Resource
|
478
|
-
end
|
448
|
+
text = @resource.render('yaml')
|
479
449
|
|
480
|
-
|
481
|
-
|
450
|
+
newresource = Puppet::Resource.convert_from('yaml', text)
|
451
|
+
newresource.should equal_attributes_of @resource
|
482
452
|
end
|
483
453
|
end
|
484
454
|
|
@@ -653,13 +623,13 @@ type: File
|
|
653
623
|
resource = Puppet::Resource.new("File", "/foo")
|
654
624
|
resource.exported = true
|
655
625
|
|
656
|
-
Puppet::Resource.from_pson(PSON.parse(resource.to_pson)).exported
|
626
|
+
Puppet::Resource.from_pson(PSON.parse(resource.to_pson)).exported?.should be_true
|
657
627
|
end
|
658
628
|
|
659
629
|
it "should set 'exported' to false if no value is set" do
|
660
630
|
resource = Puppet::Resource.new("File", "/foo")
|
661
631
|
|
662
|
-
Puppet::Resource.from_pson(PSON.parse(resource.to_pson)).exported
|
632
|
+
Puppet::Resource.from_pson(PSON.parse(resource.to_pson)).exported?.should be_false
|
663
633
|
end
|
664
634
|
|
665
635
|
it "should set all of its parameters as the 'parameters' entry" do
|
data/spec/unit/run_spec.rb
CHANGED
@@ -116,21 +116,35 @@ describe Puppet::Run do
|
|
116
116
|
end
|
117
117
|
|
118
118
|
describe ".from_pson" do
|
119
|
-
it "should
|
119
|
+
it "should read from a hash that represents the 'options' to initialize" do
|
120
120
|
options = {
|
121
121
|
"tags" => "whatever",
|
122
122
|
"background" => true,
|
123
|
+
"ignoreschedules" => false,
|
123
124
|
}
|
125
|
+
run = Puppet::Run.from_pson(options)
|
124
126
|
|
125
|
-
|
126
|
-
Puppet::Run.expects(:new).with(
|
127
|
-
{
|
127
|
+
run.options.should == {
|
128
128
|
:tags => "whatever",
|
129
|
-
:
|
130
|
-
|
131
|
-
|
129
|
+
:ignoreschedules => false,
|
130
|
+
}
|
131
|
+
run.background.should be_true
|
132
|
+
end
|
132
133
|
|
133
|
-
|
134
|
+
it "should read from a hash that follows the actual object structure" do
|
135
|
+
hash = {"background" => true,
|
136
|
+
"options" => {
|
137
|
+
"tags" => [],
|
138
|
+
"ignoreschedules" => false},
|
139
|
+
"status" => "success"}
|
140
|
+
run = Puppet::Run.from_pson(hash)
|
141
|
+
|
142
|
+
run.options.should == {
|
143
|
+
:tags => [],
|
144
|
+
:ignoreschedules => false
|
145
|
+
}
|
146
|
+
run.background.should be_true
|
147
|
+
run.status.should == 'success'
|
134
148
|
end
|
135
149
|
end
|
136
150
|
end
|
data/spec/unit/status_spec.rb
CHANGED
@@ -31,4 +31,10 @@ describe Puppet::Status do
|
|
31
31
|
it "should allow a name to be set" do
|
32
32
|
Puppet::Status.new.name = "status"
|
33
33
|
end
|
34
|
+
|
35
|
+
it "can do a round-trip serialization via YAML" do
|
36
|
+
status = Puppet::Status.new
|
37
|
+
new_status = Puppet::Status.convert_from('yaml', status.render('yaml'))
|
38
|
+
new_status.should equal_attributes_of(status)
|
39
|
+
end
|
34
40
|
end
|
@@ -31,42 +31,6 @@ class TestReportServer < Test::Unit::TestCase
|
|
31
31
|
client
|
32
32
|
end
|
33
33
|
|
34
|
-
def test_process
|
35
|
-
server = Puppet::Network::Handler.report.new
|
36
|
-
|
37
|
-
# We have to run multiple reports to make sure there's no conflict
|
38
|
-
reports = []
|
39
|
-
$run = []
|
40
|
-
2.times do |i|
|
41
|
-
name = "processtest#{i}"
|
42
|
-
reports << name
|
43
|
-
|
44
|
-
Report.newreport(name) do
|
45
|
-
def process
|
46
|
-
$run << self.report_name
|
47
|
-
end
|
48
|
-
end
|
49
|
-
end
|
50
|
-
Puppet[:reports] = reports.collect { |r| r.to_s }.join(",")
|
51
|
-
|
52
|
-
report = fakereport
|
53
|
-
|
54
|
-
retval = nil
|
55
|
-
assert_nothing_raised {
|
56
|
-
retval = server.send(:process, YAML.dump(report))
|
57
|
-
}
|
58
|
-
|
59
|
-
reports.each do |name|
|
60
|
-
assert($run.include?(name.intern), "Did not run #{name}")
|
61
|
-
end
|
62
|
-
|
63
|
-
# Now make sure our server doesn't die on missing reports
|
64
|
-
Puppet[:reports] = "fakereport"
|
65
|
-
assert_nothing_raised {
|
66
|
-
retval = server.send(:process, YAML.dump(report))
|
67
|
-
}
|
68
|
-
end
|
69
|
-
|
70
34
|
def test_reports
|
71
35
|
Puppet[:reports] = "myreport"
|
72
36
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: puppet
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.7.
|
4
|
+
version: 2.7.22
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2013-
|
12
|
+
date: 2013-06-18 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: facter
|
@@ -48,17 +48,19 @@ files:
|
|
48
48
|
- Gemfile
|
49
49
|
- Gemfile.lock
|
50
50
|
- LICENSE
|
51
|
-
- Rakefile
|
52
51
|
- README.md
|
53
52
|
- README_DEVELOPER.md
|
53
|
+
- Rakefile
|
54
54
|
- install.rb
|
55
55
|
- bin/filebucket
|
56
56
|
- bin/pi
|
57
57
|
- bin/puppet
|
58
58
|
- bin/puppetdoc
|
59
59
|
- bin/ralsh
|
60
|
-
- lib/puppet
|
60
|
+
- lib/puppet.rb
|
61
61
|
- lib/puppet/agent.rb
|
62
|
+
- lib/puppet/agent/locker.rb
|
63
|
+
- lib/puppet/application.rb
|
62
64
|
- lib/puppet/application/agent.rb
|
63
65
|
- lib/puppet/application/apply.rb
|
64
66
|
- lib/puppet/application/ca.rb
|
@@ -95,51 +97,52 @@ files:
|
|
95
97
|
- lib/puppet/application/resource_type.rb
|
96
98
|
- lib/puppet/application/secret_agent.rb
|
97
99
|
- lib/puppet/application/status.rb
|
98
|
-
- lib/puppet/
|
100
|
+
- lib/puppet/configurer.rb
|
99
101
|
- lib/puppet/configurer/downloader.rb
|
100
102
|
- lib/puppet/configurer/fact_handler.rb
|
101
103
|
- lib/puppet/configurer/plugin_handler.rb
|
102
|
-
- lib/puppet/configurer.rb
|
103
104
|
- lib/puppet/daemon.rb
|
104
105
|
- lib/puppet/defaults.rb
|
106
|
+
- lib/puppet/dsl.rb
|
105
107
|
- lib/puppet/dsl/resource_api.rb
|
106
108
|
- lib/puppet/dsl/resource_type_api.rb
|
107
|
-
- lib/puppet/dsl.rb
|
108
109
|
- lib/puppet/error.rb
|
109
110
|
- lib/puppet/external/base64.rb
|
110
111
|
- lib/puppet/external/dot.rb
|
111
112
|
- lib/puppet/external/lock.rb
|
113
|
+
- lib/puppet/external/nagios.rb
|
112
114
|
- lib/puppet/external/nagios/base.rb
|
113
115
|
- lib/puppet/external/nagios/grammar.ry
|
114
116
|
- lib/puppet/external/nagios/makefile
|
115
117
|
- lib/puppet/external/nagios/parser.rb
|
116
|
-
- lib/puppet/external/nagios.rb
|
117
118
|
- lib/puppet/external/pson/common.rb
|
119
|
+
- lib/puppet/external/pson/pure.rb
|
118
120
|
- lib/puppet/external/pson/pure/generator.rb
|
119
121
|
- lib/puppet/external/pson/pure/parser.rb
|
120
|
-
- lib/puppet/external/pson/pure.rb
|
121
122
|
- lib/puppet/external/pson/version.rb
|
123
|
+
- lib/puppet/face.rb
|
122
124
|
- lib/puppet/face/ca.rb
|
123
|
-
- lib/puppet/face/catalog/select.rb
|
124
125
|
- lib/puppet/face/catalog.rb
|
126
|
+
- lib/puppet/face/catalog/select.rb
|
125
127
|
- lib/puppet/face/certificate.rb
|
126
128
|
- lib/puppet/face/certificate_request.rb
|
127
129
|
- lib/puppet/face/certificate_revocation_list.rb
|
128
130
|
- lib/puppet/face/config.rb
|
129
131
|
- lib/puppet/face/facts.rb
|
132
|
+
- lib/puppet/face/file.rb
|
130
133
|
- lib/puppet/face/file/download.rb
|
131
134
|
- lib/puppet/face/file/store.rb
|
132
|
-
- lib/puppet/face/
|
135
|
+
- lib/puppet/face/help.rb
|
133
136
|
- lib/puppet/face/help/action.erb
|
134
137
|
- lib/puppet/face/help/face.erb
|
135
138
|
- lib/puppet/face/help/global.erb
|
136
139
|
- lib/puppet/face/help/man.erb
|
137
|
-
- lib/puppet/face/help.rb
|
138
140
|
- lib/puppet/face/instrumentation_data.rb
|
139
141
|
- lib/puppet/face/instrumentation_listener.rb
|
140
142
|
- lib/puppet/face/instrumentation_probe.rb
|
141
143
|
- lib/puppet/face/key.rb
|
142
144
|
- lib/puppet/face/man.rb
|
145
|
+
- lib/puppet/face/module.rb
|
143
146
|
- lib/puppet/face/module/build.rb
|
144
147
|
- lib/puppet/face/module/changes.rb
|
145
148
|
- lib/puppet/face/module/generate.rb
|
@@ -148,9 +151,8 @@ files:
|
|
148
151
|
- lib/puppet/face/module/search.rb
|
149
152
|
- lib/puppet/face/module/uninstall.rb
|
150
153
|
- lib/puppet/face/module/upgrade.rb
|
151
|
-
- lib/puppet/face/module.rb
|
152
|
-
- lib/puppet/face/node/clean.rb
|
153
154
|
- lib/puppet/face/node.rb
|
155
|
+
- lib/puppet/face/node/clean.rb
|
154
156
|
- lib/puppet/face/parser.rb
|
155
157
|
- lib/puppet/face/plugin.rb
|
156
158
|
- lib/puppet/face/report.rb
|
@@ -158,7 +160,6 @@ files:
|
|
158
160
|
- lib/puppet/face/resource_type.rb
|
159
161
|
- lib/puppet/face/secret_agent.rb
|
160
162
|
- lib/puppet/face/status.rb
|
161
|
-
- lib/puppet/face.rb
|
162
163
|
- lib/puppet/feature/base.rb
|
163
164
|
- lib/puppet/feature/eventlog.rb
|
164
165
|
- lib/puppet/feature/pson.rb
|
@@ -169,27 +170,28 @@ files:
|
|
169
170
|
- lib/puppet/feature/ssh.rb
|
170
171
|
- lib/puppet/feature/stomp.rb
|
171
172
|
- lib/puppet/feature/zlib.rb
|
173
|
+
- lib/puppet/file_bucket.rb
|
172
174
|
- lib/puppet/file_bucket/dipper.rb
|
173
175
|
- lib/puppet/file_bucket/file.rb
|
174
|
-
- lib/puppet/file_bucket.rb
|
175
|
-
- lib/puppet/file_collection/lookup.rb
|
176
176
|
- lib/puppet/file_collection.rb
|
177
|
+
- lib/puppet/file_collection/lookup.rb
|
178
|
+
- lib/puppet/file_serving.rb
|
177
179
|
- lib/puppet/file_serving/base.rb
|
178
|
-
- lib/puppet/file_serving/configuration/parser.rb
|
179
180
|
- lib/puppet/file_serving/configuration.rb
|
181
|
+
- lib/puppet/file_serving/configuration/parser.rb
|
180
182
|
- lib/puppet/file_serving/content.rb
|
181
183
|
- lib/puppet/file_serving/fileset.rb
|
182
184
|
- lib/puppet/file_serving/metadata.rb
|
185
|
+
- lib/puppet/file_serving/mount.rb
|
183
186
|
- lib/puppet/file_serving/mount/file.rb
|
184
187
|
- lib/puppet/file_serving/mount/modules.rb
|
185
188
|
- lib/puppet/file_serving/mount/plugins.rb
|
186
|
-
- lib/puppet/file_serving/mount.rb
|
187
189
|
- lib/puppet/file_serving/terminus_helper.rb
|
188
190
|
- lib/puppet/file_serving/terminus_selector.rb
|
189
|
-
- lib/puppet/
|
191
|
+
- lib/puppet/forge.rb
|
190
192
|
- lib/puppet/forge/cache.rb
|
191
193
|
- lib/puppet/forge/repository.rb
|
192
|
-
- lib/puppet/
|
194
|
+
- lib/puppet/indirector.rb
|
193
195
|
- lib/puppet/indirector/active_record.rb
|
194
196
|
- lib/puppet/indirector/catalog/active_record.rb
|
195
197
|
- lib/puppet/indirector/catalog/compiler.rb
|
@@ -210,9 +212,9 @@ files:
|
|
210
212
|
- lib/puppet/indirector/certificate_revocation_list/disabled_ca.rb
|
211
213
|
- lib/puppet/indirector/certificate_revocation_list/file.rb
|
212
214
|
- lib/puppet/indirector/certificate_revocation_list/rest.rb
|
215
|
+
- lib/puppet/indirector/certificate_status.rb
|
213
216
|
- lib/puppet/indirector/certificate_status/file.rb
|
214
217
|
- lib/puppet/indirector/certificate_status/rest.rb
|
215
|
-
- lib/puppet/indirector/certificate_status.rb
|
216
218
|
- lib/puppet/indirector/code.rb
|
217
219
|
- lib/puppet/indirector/couch.rb
|
218
220
|
- lib/puppet/indirector/direct_file_server.rb
|
@@ -233,27 +235,27 @@ files:
|
|
233
235
|
- lib/puppet/indirector/file_bucket_file/file.rb
|
234
236
|
- lib/puppet/indirector/file_bucket_file/rest.rb
|
235
237
|
- lib/puppet/indirector/file_bucket_file/selector.rb
|
238
|
+
- lib/puppet/indirector/file_content.rb
|
236
239
|
- lib/puppet/indirector/file_content/file.rb
|
237
240
|
- lib/puppet/indirector/file_content/file_server.rb
|
238
241
|
- lib/puppet/indirector/file_content/rest.rb
|
239
242
|
- lib/puppet/indirector/file_content/selector.rb
|
240
|
-
- lib/puppet/indirector/
|
243
|
+
- lib/puppet/indirector/file_metadata.rb
|
241
244
|
- lib/puppet/indirector/file_metadata/file.rb
|
242
245
|
- lib/puppet/indirector/file_metadata/file_server.rb
|
243
246
|
- lib/puppet/indirector/file_metadata/rest.rb
|
244
247
|
- lib/puppet/indirector/file_metadata/selector.rb
|
245
|
-
- lib/puppet/indirector/file_metadata.rb
|
246
248
|
- lib/puppet/indirector/file_server.rb
|
247
249
|
- lib/puppet/indirector/indirection.rb
|
250
|
+
- lib/puppet/indirector/instrumentation_data.rb
|
248
251
|
- lib/puppet/indirector/instrumentation_data/local.rb
|
249
252
|
- lib/puppet/indirector/instrumentation_data/rest.rb
|
250
|
-
- lib/puppet/indirector/
|
253
|
+
- lib/puppet/indirector/instrumentation_listener.rb
|
251
254
|
- lib/puppet/indirector/instrumentation_listener/local.rb
|
252
255
|
- lib/puppet/indirector/instrumentation_listener/rest.rb
|
253
|
-
- lib/puppet/indirector/
|
256
|
+
- lib/puppet/indirector/instrumentation_probe.rb
|
254
257
|
- lib/puppet/indirector/instrumentation_probe/local.rb
|
255
258
|
- lib/puppet/indirector/instrumentation_probe/rest.rb
|
256
|
-
- lib/puppet/indirector/instrumentation_probe.rb
|
257
259
|
- lib/puppet/indirector/inventory/yaml.rb
|
258
260
|
- lib/puppet/indirector/key/ca.rb
|
259
261
|
- lib/puppet/indirector/key/disabled_ca.rb
|
@@ -279,20 +281,20 @@ files:
|
|
279
281
|
- lib/puppet/indirector/resource/rest.rb
|
280
282
|
- lib/puppet/indirector/resource/store_configs.rb
|
281
283
|
- lib/puppet/indirector/resource/validator.rb
|
284
|
+
- lib/puppet/indirector/resource_type.rb
|
282
285
|
- lib/puppet/indirector/resource_type/parser.rb
|
283
286
|
- lib/puppet/indirector/resource_type/rest.rb
|
284
|
-
- lib/puppet/indirector/resource_type.rb
|
285
287
|
- lib/puppet/indirector/rest.rb
|
286
288
|
- lib/puppet/indirector/run/local.rb
|
287
289
|
- lib/puppet/indirector/run/rest.rb
|
288
290
|
- lib/puppet/indirector/ssl_file.rb
|
291
|
+
- lib/puppet/indirector/status.rb
|
289
292
|
- lib/puppet/indirector/status/local.rb
|
290
293
|
- lib/puppet/indirector/status/rest.rb
|
291
|
-
- lib/puppet/indirector/status.rb
|
292
294
|
- lib/puppet/indirector/store_configs.rb
|
293
295
|
- lib/puppet/indirector/terminus.rb
|
294
296
|
- lib/puppet/indirector/yaml.rb
|
295
|
-
- lib/puppet/
|
297
|
+
- lib/puppet/interface.rb
|
296
298
|
- lib/puppet/interface/action.rb
|
297
299
|
- lib/puppet/interface/action_builder.rb
|
298
300
|
- lib/puppet/interface/action_manager.rb
|
@@ -301,9 +303,10 @@ files:
|
|
301
303
|
- lib/puppet/interface/option.rb
|
302
304
|
- lib/puppet/interface/option_builder.rb
|
303
305
|
- lib/puppet/interface/option_manager.rb
|
304
|
-
- lib/puppet/interface.rb
|
305
306
|
- lib/puppet/metatype/manager.rb
|
306
307
|
- lib/puppet/module.rb
|
308
|
+
- lib/puppet/module_tool.rb
|
309
|
+
- lib/puppet/module_tool/applications.rb
|
307
310
|
- lib/puppet/module_tool/applications/application.rb
|
308
311
|
- lib/puppet/module_tool/applications/builder.rb
|
309
312
|
- lib/puppet/module_tool/applications/checksummer.rb
|
@@ -313,26 +316,25 @@ files:
|
|
313
316
|
- lib/puppet/module_tool/applications/uninstaller.rb
|
314
317
|
- lib/puppet/module_tool/applications/unpacker.rb
|
315
318
|
- lib/puppet/module_tool/applications/upgrader.rb
|
316
|
-
- lib/puppet/module_tool/applications.rb
|
317
319
|
- lib/puppet/module_tool/checksums.rb
|
318
320
|
- lib/puppet/module_tool/contents_description.rb
|
319
321
|
- lib/puppet/module_tool/dependency.rb
|
322
|
+
- lib/puppet/module_tool/errors.rb
|
320
323
|
- lib/puppet/module_tool/errors/base.rb
|
321
324
|
- lib/puppet/module_tool/errors/installer.rb
|
322
325
|
- lib/puppet/module_tool/errors/shared.rb
|
323
326
|
- lib/puppet/module_tool/errors/uninstaller.rb
|
324
327
|
- lib/puppet/module_tool/errors/upgrader.rb
|
325
|
-
- lib/puppet/module_tool/errors.rb
|
326
328
|
- lib/puppet/module_tool/metadata.rb
|
327
329
|
- lib/puppet/module_tool/modulefile.rb
|
328
330
|
- lib/puppet/module_tool/shared_behaviors.rb
|
329
|
-
- lib/puppet/module_tool/skeleton
|
331
|
+
- lib/puppet/module_tool/skeleton.rb
|
330
332
|
- lib/puppet/module_tool/skeleton/templates/generator/Modulefile.erb
|
331
333
|
- lib/puppet/module_tool/skeleton/templates/generator/README.erb
|
334
|
+
- lib/puppet/module_tool/skeleton/templates/generator/manifests/init.pp.erb
|
332
335
|
- lib/puppet/module_tool/skeleton/templates/generator/spec/spec_helper.rb
|
333
336
|
- lib/puppet/module_tool/skeleton/templates/generator/tests/init.pp.erb
|
334
|
-
- lib/puppet/
|
335
|
-
- lib/puppet/module_tool.rb
|
337
|
+
- lib/puppet/network.rb
|
336
338
|
- lib/puppet/network/authconfig.rb
|
337
339
|
- lib/puppet/network/authorization.rb
|
338
340
|
- lib/puppet/network/authstore.rb
|
@@ -340,6 +342,7 @@ files:
|
|
340
342
|
- lib/puppet/network/format.rb
|
341
343
|
- lib/puppet/network/format_handler.rb
|
342
344
|
- lib/puppet/network/formats.rb
|
345
|
+
- lib/puppet/network/handler.rb
|
343
346
|
- lib/puppet/network/handler/ca.rb
|
344
347
|
- lib/puppet/network/handler/filebucket.rb
|
345
348
|
- lib/puppet/network/handler/fileserver.rb
|
@@ -347,23 +350,22 @@ files:
|
|
347
350
|
- lib/puppet/network/handler/report.rb
|
348
351
|
- lib/puppet/network/handler/runner.rb
|
349
352
|
- lib/puppet/network/handler/status.rb
|
350
|
-
- lib/puppet/network/
|
351
|
-
- lib/puppet/network/http/api/v1.rb
|
353
|
+
- lib/puppet/network/http.rb
|
352
354
|
- lib/puppet/network/http/api.rb
|
355
|
+
- lib/puppet/network/http/api/v1.rb
|
353
356
|
- lib/puppet/network/http/compression.rb
|
354
357
|
- lib/puppet/network/http/handler.rb
|
355
|
-
- lib/puppet/network/http/mongrel/rest.rb
|
356
358
|
- lib/puppet/network/http/mongrel.rb
|
359
|
+
- lib/puppet/network/http/mongrel/rest.rb
|
360
|
+
- lib/puppet/network/http/rack.rb
|
357
361
|
- lib/puppet/network/http/rack/httphandler.rb
|
358
362
|
- lib/puppet/network/http/rack/rest.rb
|
359
363
|
- lib/puppet/network/http/rack/xmlrpc.rb
|
360
|
-
- lib/puppet/network/http/rack.rb
|
361
|
-
- lib/puppet/network/http/webrick/rest.rb
|
362
364
|
- lib/puppet/network/http/webrick.rb
|
363
|
-
- lib/puppet/network/http.rb
|
365
|
+
- lib/puppet/network/http/webrick/rest.rb
|
364
366
|
- lib/puppet/network/http_pool.rb
|
365
|
-
- lib/puppet/network/http_server/mongrel.rb
|
366
367
|
- lib/puppet/network/http_server.rb
|
368
|
+
- lib/puppet/network/http_server/mongrel.rb
|
367
369
|
- lib/puppet/network/rest_authconfig.rb
|
368
370
|
- lib/puppet/network/rest_authorization.rb
|
369
371
|
- lib/puppet/network/rest_controller.rb
|
@@ -372,15 +374,16 @@ files:
|
|
372
374
|
- lib/puppet/network/xmlrpc/processor.rb
|
373
375
|
- lib/puppet/network/xmlrpc/server.rb
|
374
376
|
- lib/puppet/network/xmlrpc/webrick_servlet.rb
|
375
|
-
- lib/puppet/
|
377
|
+
- lib/puppet/node.rb
|
376
378
|
- lib/puppet/node/environment.rb
|
377
379
|
- lib/puppet/node/facts.rb
|
378
380
|
- lib/puppet/node/inventory.rb
|
379
|
-
- lib/puppet/
|
381
|
+
- lib/puppet/parameter.rb
|
380
382
|
- lib/puppet/parameter/path.rb
|
381
383
|
- lib/puppet/parameter/value.rb
|
382
384
|
- lib/puppet/parameter/value_collection.rb
|
383
|
-
- lib/puppet/
|
385
|
+
- lib/puppet/parser.rb
|
386
|
+
- lib/puppet/parser/ast.rb
|
384
387
|
- lib/puppet/parser/ast/arithmetic_operator.rb
|
385
388
|
- lib/puppet/parser/ast/astarray.rb
|
386
389
|
- lib/puppet/parser/ast/asthash.rb
|
@@ -414,10 +417,10 @@ files:
|
|
414
417
|
- lib/puppet/parser/ast/tag.rb
|
415
418
|
- lib/puppet/parser/ast/top_level_construct.rb
|
416
419
|
- lib/puppet/parser/ast/vardef.rb
|
417
|
-
- lib/puppet/parser/ast.rb
|
418
420
|
- lib/puppet/parser/collector.rb
|
419
421
|
- lib/puppet/parser/compiler.rb
|
420
422
|
- lib/puppet/parser/files.rb
|
423
|
+
- lib/puppet/parser/functions.rb
|
421
424
|
- lib/puppet/parser/functions/create_resources.rb
|
422
425
|
- lib/puppet/parser/functions/defined.rb
|
423
426
|
- lib/puppet/parser/functions/extlookup.rb
|
@@ -440,42 +443,41 @@ files:
|
|
440
443
|
- lib/puppet/parser/functions/tagged.rb
|
441
444
|
- lib/puppet/parser/functions/template.rb
|
442
445
|
- lib/puppet/parser/functions/versioncmp.rb
|
443
|
-
- lib/puppet/parser/functions.rb
|
444
446
|
- lib/puppet/parser/grammar.ra
|
445
447
|
- lib/puppet/parser/lexer.rb
|
446
448
|
- lib/puppet/parser/makefile
|
447
449
|
- lib/puppet/parser/parser.rb
|
448
450
|
- lib/puppet/parser/parser_support.rb
|
449
451
|
- lib/puppet/parser/relationship.rb
|
450
|
-
- lib/puppet/parser/resource/param.rb
|
451
452
|
- lib/puppet/parser/resource.rb
|
453
|
+
- lib/puppet/parser/resource/param.rb
|
452
454
|
- lib/puppet/parser/scope.rb
|
453
455
|
- lib/puppet/parser/templatewrapper.rb
|
454
456
|
- lib/puppet/parser/type_loader.rb
|
455
457
|
- lib/puppet/parser/yaml_trimmer.rb
|
456
|
-
- lib/puppet/
|
458
|
+
- lib/puppet/property.rb
|
457
459
|
- lib/puppet/property/ensure.rb
|
458
460
|
- lib/puppet/property/keyvalue.rb
|
459
461
|
- lib/puppet/property/list.rb
|
460
462
|
- lib/puppet/property/ordered_list.rb
|
461
|
-
- lib/puppet/
|
463
|
+
- lib/puppet/provider.rb
|
462
464
|
- lib/puppet/provider/aixobject.rb
|
463
465
|
- lib/puppet/provider/augeas/augeas.rb
|
464
466
|
- lib/puppet/provider/cisco.rb
|
465
467
|
- lib/puppet/provider/computer/computer.rb
|
468
|
+
- lib/puppet/provider/confine.rb
|
466
469
|
- lib/puppet/provider/confine/exists.rb
|
467
470
|
- lib/puppet/provider/confine/false.rb
|
468
471
|
- lib/puppet/provider/confine/feature.rb
|
469
472
|
- lib/puppet/provider/confine/true.rb
|
470
473
|
- lib/puppet/provider/confine/variable.rb
|
471
|
-
- lib/puppet/provider/confine.rb
|
472
474
|
- lib/puppet/provider/confine_collection.rb
|
473
475
|
- lib/puppet/provider/confiner.rb
|
474
476
|
- lib/puppet/provider/cron/crontab.rb
|
477
|
+
- lib/puppet/provider/exec.rb
|
475
478
|
- lib/puppet/provider/exec/posix.rb
|
476
479
|
- lib/puppet/provider/exec/shell.rb
|
477
480
|
- lib/puppet/provider/exec/windows.rb
|
478
|
-
- lib/puppet/provider/exec.rb
|
479
481
|
- lib/puppet/provider/file/posix.rb
|
480
482
|
- lib/puppet/provider/file/windows.rb
|
481
483
|
- lib/puppet/provider/group/aix.rb
|
@@ -492,14 +494,15 @@ files:
|
|
492
494
|
- lib/puppet/provider/mailalias/aliases.rb
|
493
495
|
- lib/puppet/provider/maillist/mailman.rb
|
494
496
|
- lib/puppet/provider/mcx/mcxcontent.rb
|
495
|
-
- lib/puppet/provider/mount/parsed.rb
|
496
497
|
- lib/puppet/provider/mount.rb
|
498
|
+
- lib/puppet/provider/mount/parsed.rb
|
497
499
|
- lib/puppet/provider/naginator.rb
|
500
|
+
- lib/puppet/provider/nameservice.rb
|
498
501
|
- lib/puppet/provider/nameservice/directoryservice.rb
|
499
502
|
- lib/puppet/provider/nameservice/objectadd.rb
|
500
503
|
- lib/puppet/provider/nameservice/pw.rb
|
501
|
-
- lib/puppet/provider/nameservice.rb
|
502
504
|
- lib/puppet/provider/network_device.rb
|
505
|
+
- lib/puppet/provider/package.rb
|
503
506
|
- lib/puppet/provider/package/aix.rb
|
504
507
|
- lib/puppet/provider/package/appdmg.rb
|
505
508
|
- lib/puppet/provider/package/apple.rb
|
@@ -533,7 +536,6 @@ files:
|
|
533
536
|
- lib/puppet/provider/package/yum.rb
|
534
537
|
- lib/puppet/provider/package/yumhelper.py
|
535
538
|
- lib/puppet/provider/package/zypper.rb
|
536
|
-
- lib/puppet/provider/package.rb
|
537
539
|
- lib/puppet/provider/parsedfile.rb
|
538
540
|
- lib/puppet/provider/port/parsed.rb
|
539
541
|
- lib/puppet/provider/scheduled_task/win32_taskscheduler.rb
|
@@ -570,7 +572,7 @@ files:
|
|
570
572
|
- lib/puppet/provider/zfs/solaris.rb
|
571
573
|
- lib/puppet/provider/zone/solaris.rb
|
572
574
|
- lib/puppet/provider/zpool/solaris.rb
|
573
|
-
- lib/puppet/
|
575
|
+
- lib/puppet/rails.rb
|
574
576
|
- lib/puppet/rails/benchmark.rb
|
575
577
|
- lib/puppet/rails/database/001_add_created_at_to_all_tables.rb
|
576
578
|
- lib/puppet/rails/database/002_remove_duplicated_index_on_all_tables.rb
|
@@ -588,7 +590,6 @@ files:
|
|
588
590
|
- lib/puppet/rails/resource.rb
|
589
591
|
- lib/puppet/rails/resource_tag.rb
|
590
592
|
- lib/puppet/rails/source_file.rb
|
591
|
-
- lib/puppet/rails.rb
|
592
593
|
- lib/puppet/rb_tree_map.rb
|
593
594
|
- lib/puppet/reference/configuration.rb
|
594
595
|
- lib/puppet/reference/function.rb
|
@@ -599,44 +600,46 @@ files:
|
|
599
600
|
- lib/puppet/reference/report.rb
|
600
601
|
- lib/puppet/reference/type.rb
|
601
602
|
- lib/puppet/relationship.rb
|
603
|
+
- lib/puppet/reports.rb
|
602
604
|
- lib/puppet/reports/http.rb
|
603
605
|
- lib/puppet/reports/log.rb
|
604
606
|
- lib/puppet/reports/rrdgraph.rb
|
605
607
|
- lib/puppet/reports/store.rb
|
606
608
|
- lib/puppet/reports/tagmail.rb
|
607
|
-
- lib/puppet/
|
609
|
+
- lib/puppet/resource.rb
|
608
610
|
- lib/puppet/resource/catalog.rb
|
609
611
|
- lib/puppet/resource/status.rb
|
610
612
|
- lib/puppet/resource/type.rb
|
611
613
|
- lib/puppet/resource/type_collection.rb
|
612
614
|
- lib/puppet/resource/type_collection_helper.rb
|
613
|
-
- lib/puppet/resource.rb
|
614
615
|
- lib/puppet/run.rb
|
615
616
|
- lib/puppet/simple_graph.rb
|
617
|
+
- lib/puppet/ssl.rb
|
616
618
|
- lib/puppet/ssl/base.rb
|
617
619
|
- lib/puppet/ssl/certificate.rb
|
618
|
-
- lib/puppet/ssl/certificate_authority/interface.rb
|
619
620
|
- lib/puppet/ssl/certificate_authority.rb
|
621
|
+
- lib/puppet/ssl/certificate_authority/interface.rb
|
620
622
|
- lib/puppet/ssl/certificate_factory.rb
|
621
623
|
- lib/puppet/ssl/certificate_request.rb
|
622
624
|
- lib/puppet/ssl/certificate_revocation_list.rb
|
623
625
|
- lib/puppet/ssl/host.rb
|
624
626
|
- lib/puppet/ssl/inventory.rb
|
625
627
|
- lib/puppet/ssl/key.rb
|
626
|
-
- lib/puppet/ssl.rb
|
627
628
|
- lib/puppet/status.rb
|
628
629
|
- lib/puppet/test/test_helper.rb
|
630
|
+
- lib/puppet/transaction.rb
|
629
631
|
- lib/puppet/transaction/event.rb
|
630
632
|
- lib/puppet/transaction/event_manager.rb
|
631
633
|
- lib/puppet/transaction/report.rb
|
632
634
|
- lib/puppet/transaction/resource_harness.rb
|
633
|
-
- lib/puppet/transaction.rb
|
634
635
|
- lib/puppet/transportable.rb
|
636
|
+
- lib/puppet/type.rb
|
635
637
|
- lib/puppet/type/augeas.rb
|
636
638
|
- lib/puppet/type/component.rb
|
637
639
|
- lib/puppet/type/computer.rb
|
638
640
|
- lib/puppet/type/cron.rb
|
639
641
|
- lib/puppet/type/exec.rb
|
642
|
+
- lib/puppet/type/file.rb
|
640
643
|
- lib/puppet/type/file/checksum.rb
|
641
644
|
- lib/puppet/type/file/content.rb
|
642
645
|
- lib/puppet/type/file/ctime.rb
|
@@ -649,7 +652,6 @@ files:
|
|
649
652
|
- lib/puppet/type/file/source.rb
|
650
653
|
- lib/puppet/type/file/target.rb
|
651
654
|
- lib/puppet/type/file/type.rb
|
652
|
-
- lib/puppet/type/file.rb
|
653
655
|
- lib/puppet/type/filebucket.rb
|
654
656
|
- lib/puppet/type/group.rb
|
655
657
|
- lib/puppet/type/host.rb
|
@@ -695,10 +697,10 @@ files:
|
|
695
697
|
- lib/puppet/type/zfs.rb
|
696
698
|
- lib/puppet/type/zone.rb
|
697
699
|
- lib/puppet/type/zpool.rb
|
698
|
-
- lib/puppet/
|
700
|
+
- lib/puppet/util.rb
|
699
701
|
- lib/puppet/util/adsi.rb
|
700
|
-
- lib/puppet/util/autoload/file_cache.rb
|
701
702
|
- lib/puppet/util/autoload.rb
|
703
|
+
- lib/puppet/util/autoload/file_cache.rb
|
702
704
|
- lib/puppet/util/backups.rb
|
703
705
|
- lib/puppet/util/cacher.rb
|
704
706
|
- lib/puppet/util/checksums.rb
|
@@ -719,21 +721,21 @@ files:
|
|
719
721
|
- lib/puppet/util/inifile.rb
|
720
722
|
- lib/puppet/util/inline_docs.rb
|
721
723
|
- lib/puppet/util/instance_loader.rb
|
724
|
+
- lib/puppet/util/instrumentation.rb
|
722
725
|
- lib/puppet/util/instrumentation/data.rb
|
723
726
|
- lib/puppet/util/instrumentation/indirection_probe.rb
|
724
727
|
- lib/puppet/util/instrumentation/instrumentable.rb
|
725
728
|
- lib/puppet/util/instrumentation/listener.rb
|
726
729
|
- lib/puppet/util/instrumentation/listeners/log.rb
|
727
730
|
- lib/puppet/util/instrumentation/listeners/performance.rb
|
728
|
-
- lib/puppet/util/
|
731
|
+
- lib/puppet/util/ldap.rb
|
729
732
|
- lib/puppet/util/ldap/connection.rb
|
730
733
|
- lib/puppet/util/ldap/generator.rb
|
731
734
|
- lib/puppet/util/ldap/manager.rb
|
732
|
-
- lib/puppet/util/ldap.rb
|
733
735
|
- lib/puppet/util/loadedfile.rb
|
736
|
+
- lib/puppet/util/log.rb
|
734
737
|
- lib/puppet/util/log/destination.rb
|
735
738
|
- lib/puppet/util/log/destinations.rb
|
736
|
-
- lib/puppet/util/log.rb
|
737
739
|
- lib/puppet/util/log_paths.rb
|
738
740
|
- lib/puppet/util/logging.rb
|
739
741
|
- lib/puppet/util/metaid.rb
|
@@ -741,18 +743,18 @@ files:
|
|
741
743
|
- lib/puppet/util/metric.rb
|
742
744
|
- lib/puppet/util/monkey_patches.rb
|
743
745
|
- lib/puppet/util/nagios_maker.rb
|
746
|
+
- lib/puppet/util/network_device.rb
|
744
747
|
- lib/puppet/util/network_device/base.rb
|
748
|
+
- lib/puppet/util/network_device/cisco.rb
|
745
749
|
- lib/puppet/util/network_device/cisco/device.rb
|
746
750
|
- lib/puppet/util/network_device/cisco/facts.rb
|
747
751
|
- lib/puppet/util/network_device/cisco/interface.rb
|
748
|
-
- lib/puppet/util/network_device/cisco.rb
|
749
752
|
- lib/puppet/util/network_device/config.rb
|
750
753
|
- lib/puppet/util/network_device/ipcalc.rb
|
754
|
+
- lib/puppet/util/network_device/transport.rb
|
751
755
|
- lib/puppet/util/network_device/transport/base.rb
|
752
756
|
- lib/puppet/util/network_device/transport/ssh.rb
|
753
757
|
- lib/puppet/util/network_device/transport/telnet.rb
|
754
|
-
- lib/puppet/util/network_device/transport.rb
|
755
|
-
- lib/puppet/util/network_device.rb
|
756
758
|
- lib/puppet/util/package.rb
|
757
759
|
- lib/puppet/util/pidlock.rb
|
758
760
|
- lib/puppet/util/platform.rb
|
@@ -760,25 +762,25 @@ files:
|
|
760
762
|
- lib/puppet/util/posix.rb
|
761
763
|
- lib/puppet/util/provider_features.rb
|
762
764
|
- lib/puppet/util/pson.rb
|
763
|
-
- lib/puppet/util/queue/stomp.rb
|
764
765
|
- lib/puppet/util/queue.rb
|
766
|
+
- lib/puppet/util/queue/stomp.rb
|
765
767
|
- lib/puppet/util/rails/cache_accumulator.rb
|
766
768
|
- lib/puppet/util/rails/collection_merger.rb
|
767
769
|
- lib/puppet/util/rails/reference_serializer.rb
|
770
|
+
- lib/puppet/util/rdoc.rb
|
768
771
|
- lib/puppet/util/rdoc/code_objects.rb
|
769
772
|
- lib/puppet/util/rdoc/generators/puppet_generator.rb
|
770
773
|
- lib/puppet/util/rdoc/generators/template/puppet/puppet.rb
|
771
774
|
- lib/puppet/util/rdoc/parser.rb
|
772
|
-
- lib/puppet/util/rdoc.rb
|
773
775
|
- lib/puppet/util/reference.rb
|
774
776
|
- lib/puppet/util/resource_template.rb
|
775
777
|
- lib/puppet/util/retryaction.rb
|
776
778
|
- lib/puppet/util/run_mode.rb
|
777
779
|
- lib/puppet/util/selinux.rb
|
780
|
+
- lib/puppet/util/settings.rb
|
778
781
|
- lib/puppet/util/settings/boolean_setting.rb
|
779
782
|
- lib/puppet/util/settings/file_setting.rb
|
780
783
|
- lib/puppet/util/settings/setting.rb
|
781
|
-
- lib/puppet/util/settings.rb
|
782
784
|
- lib/puppet/util/storage.rb
|
783
785
|
- lib/puppet/util/subclass_loader.rb
|
784
786
|
- lib/puppet/util/suidmanager.rb
|
@@ -787,17 +789,59 @@ files:
|
|
787
789
|
- lib/puppet/util/terminal.rb
|
788
790
|
- lib/puppet/util/user_attr.rb
|
789
791
|
- lib/puppet/util/warnings.rb
|
792
|
+
- lib/puppet/util/windows.rb
|
790
793
|
- lib/puppet/util/windows/error.rb
|
791
794
|
- lib/puppet/util/windows/file.rb
|
792
795
|
- lib/puppet/util/windows/process.rb
|
793
796
|
- lib/puppet/util/windows/security.rb
|
794
797
|
- lib/puppet/util/windows/sid.rb
|
795
798
|
- lib/puppet/util/windows/user.rb
|
796
|
-
- lib/puppet/util/windows.rb
|
797
799
|
- lib/puppet/util/zaml.rb
|
798
|
-
- lib/puppet/
|
800
|
+
- lib/puppet/vendor.rb
|
801
|
+
- lib/puppet/vendor/load_safe_yaml.rb
|
802
|
+
- lib/puppet/vendor/require_vendored.rb
|
803
|
+
- lib/puppet/vendor/safe_yaml/CHANGES.md
|
804
|
+
- lib/puppet/vendor/safe_yaml/Gemfile
|
805
|
+
- lib/puppet/vendor/safe_yaml/LICENSE.txt
|
806
|
+
- lib/puppet/vendor/safe_yaml/README.md
|
807
|
+
- lib/puppet/vendor/safe_yaml/Rakefile
|
808
|
+
- lib/puppet/vendor/safe_yaml/lib/safe_yaml.rb
|
809
|
+
- lib/puppet/vendor/safe_yaml/lib/safe_yaml/deep.rb
|
810
|
+
- lib/puppet/vendor/safe_yaml/lib/safe_yaml/parse/date.rb
|
811
|
+
- lib/puppet/vendor/safe_yaml/lib/safe_yaml/parse/hexadecimal.rb
|
812
|
+
- lib/puppet/vendor/safe_yaml/lib/safe_yaml/parse/sexagesimal.rb
|
813
|
+
- lib/puppet/vendor/safe_yaml/lib/safe_yaml/psych_handler.rb
|
814
|
+
- lib/puppet/vendor/safe_yaml/lib/safe_yaml/psych_resolver.rb
|
815
|
+
- lib/puppet/vendor/safe_yaml/lib/safe_yaml/resolver.rb
|
816
|
+
- lib/puppet/vendor/safe_yaml/lib/safe_yaml/safe_to_ruby_visitor.rb
|
817
|
+
- lib/puppet/vendor/safe_yaml/lib/safe_yaml/syck_hack.rb
|
818
|
+
- lib/puppet/vendor/safe_yaml/lib/safe_yaml/syck_node_monkeypatch.rb
|
819
|
+
- lib/puppet/vendor/safe_yaml/lib/safe_yaml/syck_resolver.rb
|
820
|
+
- lib/puppet/vendor/safe_yaml/lib/safe_yaml/transform.rb
|
821
|
+
- lib/puppet/vendor/safe_yaml/lib/safe_yaml/transform/to_boolean.rb
|
822
|
+
- lib/puppet/vendor/safe_yaml/lib/safe_yaml/transform/to_date.rb
|
823
|
+
- lib/puppet/vendor/safe_yaml/lib/safe_yaml/transform/to_float.rb
|
824
|
+
- lib/puppet/vendor/safe_yaml/lib/safe_yaml/transform/to_integer.rb
|
825
|
+
- lib/puppet/vendor/safe_yaml/lib/safe_yaml/transform/to_nil.rb
|
826
|
+
- lib/puppet/vendor/safe_yaml/lib/safe_yaml/transform/to_symbol.rb
|
827
|
+
- lib/puppet/vendor/safe_yaml/lib/safe_yaml/transform/transformation_map.rb
|
828
|
+
- lib/puppet/vendor/safe_yaml/lib/safe_yaml/version.rb
|
829
|
+
- lib/puppet/vendor/safe_yaml/run_specs_all_ruby_versions.sh
|
830
|
+
- lib/puppet/vendor/safe_yaml/safe_yaml.gemspec
|
831
|
+
- lib/puppet/vendor/safe_yaml/spec/exploit.1.9.2.yaml
|
832
|
+
- lib/puppet/vendor/safe_yaml/spec/exploit.1.9.3.yaml
|
833
|
+
- lib/puppet/vendor/safe_yaml/spec/psych_resolver_spec.rb
|
834
|
+
- lib/puppet/vendor/safe_yaml/spec/resolver_specs.rb
|
835
|
+
- lib/puppet/vendor/safe_yaml/spec/safe_yaml_spec.rb
|
836
|
+
- lib/puppet/vendor/safe_yaml/spec/spec_helper.rb
|
837
|
+
- lib/puppet/vendor/safe_yaml/spec/support/exploitable_back_door.rb
|
838
|
+
- lib/puppet/vendor/safe_yaml/spec/syck_resolver_spec.rb
|
839
|
+
- lib/puppet/vendor/safe_yaml/spec/transform/base64_spec.rb
|
840
|
+
- lib/puppet/vendor/safe_yaml/spec/transform/to_date_spec.rb
|
841
|
+
- lib/puppet/vendor/safe_yaml/spec/transform/to_float_spec.rb
|
842
|
+
- lib/puppet/vendor/safe_yaml/spec/transform/to_integer_spec.rb
|
843
|
+
- lib/puppet/vendor/safe_yaml/spec/transform/to_symbol_spec.rb
|
799
844
|
- lib/puppet/version.rb
|
800
|
-
- lib/puppet.rb
|
801
845
|
- lib/semver.rb
|
802
846
|
- conf/auth.conf
|
803
847
|
- conf/epm.list
|
@@ -830,9 +874,9 @@ files:
|
|
830
874
|
- conf/suse/puppet.conf
|
831
875
|
- conf/suse/puppet.spec
|
832
876
|
- conf/suse/server.init
|
877
|
+
- conf/windows/eventlog/Rakefile
|
833
878
|
- conf/windows/eventlog/puppetres.dll
|
834
879
|
- conf/windows/eventlog/puppetres.mc
|
835
|
-
- conf/windows/eventlog/Rakefile
|
836
880
|
- man/man5/puppet.conf.5
|
837
881
|
- man/man8/filebucket.8
|
838
882
|
- man/man8/pi.8
|
@@ -906,23 +950,26 @@ files:
|
|
906
950
|
- examples/mcx_dock_invalid.pp
|
907
951
|
- examples/mcx_nogroup.pp
|
908
952
|
- examples/mcx_notexists_absent.pp
|
953
|
+
- examples/modules/sample-module.pp
|
954
|
+
- examples/modules/sample-module/README.txt
|
909
955
|
- examples/modules/sample-module/lib/puppet/parser/functions/hostname_to_dn.rb
|
910
956
|
- examples/modules/sample-module/manifests/init.pp
|
911
|
-
- examples/modules/sample-module/README.txt
|
912
957
|
- examples/modules/sample-module/templates/sample.erb
|
913
|
-
- examples/modules/sample-module.pp
|
914
958
|
- examples/nodes
|
915
959
|
- examples/one
|
916
960
|
- examples/relationships
|
917
961
|
- examples/selectors
|
918
962
|
- examples/simpletests
|
919
963
|
- examples/svncommit
|
920
|
-
- ext/autotest/config
|
921
964
|
- ext/autotest/Rakefile
|
965
|
+
- ext/autotest/config
|
922
966
|
- ext/autotest/readme.rst
|
923
967
|
- ext/build_defaults.yaml
|
924
968
|
- ext/cert_inspector
|
925
969
|
- ext/dbfix.sql
|
970
|
+
- ext/debian/README.Debian
|
971
|
+
- ext/debian/README.source
|
972
|
+
- ext/debian/TODO.Debian
|
926
973
|
- ext/debian/changelog.erb
|
927
974
|
- ext/debian/compat
|
928
975
|
- ext/debian/control
|
@@ -942,6 +989,7 @@ files:
|
|
942
989
|
- ext/debian/puppet-el.install
|
943
990
|
- ext/debian/puppet-testsuite.install
|
944
991
|
- ext/debian/puppet-testsuite.lintian-overrides
|
992
|
+
- ext/debian/puppet.NEWS
|
945
993
|
- ext/debian/puppet.conf
|
946
994
|
- ext/debian/puppet.default
|
947
995
|
- ext/debian/puppet.dirs
|
@@ -950,7 +998,6 @@ files:
|
|
950
998
|
- ext/debian/puppet.lintian-overrides
|
951
999
|
- ext/debian/puppet.logrotate
|
952
1000
|
- ext/debian/puppet.manpages
|
953
|
-
- ext/debian/puppet.NEWS
|
954
1001
|
- ext/debian/puppet.postinst
|
955
1002
|
- ext/debian/puppet.postrm
|
956
1003
|
- ext/debian/puppet.preinst
|
@@ -961,25 +1008,22 @@ files:
|
|
961
1008
|
- ext/debian/puppetmaster-passenger.dirs
|
962
1009
|
- ext/debian/puppetmaster-passenger.postinst
|
963
1010
|
- ext/debian/puppetmaster-passenger.postrm
|
1011
|
+
- ext/debian/puppetmaster.NEWS
|
1012
|
+
- ext/debian/puppetmaster.README.debian
|
964
1013
|
- ext/debian/puppetmaster.default
|
965
1014
|
- ext/debian/puppetmaster.dirs
|
966
1015
|
- ext/debian/puppetmaster.init
|
967
1016
|
- ext/debian/puppetmaster.install
|
968
1017
|
- ext/debian/puppetmaster.lintian-overrides
|
969
1018
|
- ext/debian/puppetmaster.manpages
|
970
|
-
- ext/debian/puppetmaster.NEWS
|
971
1019
|
- ext/debian/puppetmaster.postinst
|
972
1020
|
- ext/debian/puppetmaster.postrm
|
973
1021
|
- ext/debian/puppetmaster.preinst
|
974
|
-
- ext/debian/puppetmaster.README.debian
|
975
|
-
- ext/debian/README.Debian
|
976
|
-
- ext/debian/README.source
|
977
1022
|
- ext/debian/rules
|
978
1023
|
- ext/debian/source/format
|
979
1024
|
- ext/debian/source/options
|
980
|
-
- ext/debian/TODO.Debian
|
981
|
-
- ext/debian/vim-puppet.dirs
|
982
1025
|
- ext/debian/vim-puppet.README.Debian
|
1026
|
+
- ext/debian/vim-puppet.dirs
|
983
1027
|
- ext/debian/vim-puppet.yaml
|
984
1028
|
- ext/debian/watch
|
985
1029
|
- ext/emacs/puppet-mode-init.el
|
@@ -990,9 +1034,9 @@ files:
|
|
990
1034
|
- ext/logcheck/puppet
|
991
1035
|
- ext/nagios/check_puppet.rb
|
992
1036
|
- ext/nagios/naggen
|
1037
|
+
- ext/osx/PackageInfo.plist
|
993
1038
|
- ext/osx/createpackage.sh
|
994
1039
|
- ext/osx/file_mapping.yaml
|
995
|
-
- ext/osx/PackageInfo.plist
|
996
1040
|
- ext/osx/preflight.erb
|
997
1041
|
- ext/osx/prototype.plist.erb
|
998
1042
|
- ext/packaging/README-Solaris.md
|
@@ -1022,6 +1066,7 @@ files:
|
|
1022
1066
|
- ext/packaging/tasks/pe_sign.rake
|
1023
1067
|
- ext/packaging/tasks/pe_sles.rake
|
1024
1068
|
- ext/packaging/tasks/pe_tar.rake
|
1069
|
+
- ext/packaging/tasks/pre_tasks.rake
|
1025
1070
|
- ext/packaging/tasks/release.rake
|
1026
1071
|
- ext/packaging/tasks/remote_build.rake
|
1027
1072
|
- ext/packaging/tasks/retrieve.rake
|
@@ -1033,6 +1078,7 @@ files:
|
|
1033
1078
|
- ext/packaging/tasks/tar.rake
|
1034
1079
|
- ext/packaging/tasks/template.rake
|
1035
1080
|
- ext/packaging/tasks/update.rake
|
1081
|
+
- ext/packaging/tasks/vendor_gems.rake
|
1036
1082
|
- ext/packaging/tasks/version.rake
|
1037
1083
|
- ext/packaging/tasks/z_data_dump.rake
|
1038
1084
|
- ext/project_data.yaml
|
@@ -1041,10 +1087,10 @@ files:
|
|
1041
1087
|
- ext/puppetlisten/puppetlisten.rb
|
1042
1088
|
- ext/puppetlisten/puppetrun.rb
|
1043
1089
|
- ext/pure_ruby_dsl/dsl_test.rb
|
1090
|
+
- ext/rack/README
|
1044
1091
|
- ext/rack/files/apache2.conf
|
1045
1092
|
- ext/rack/files/config.ru
|
1046
1093
|
- ext/rack/manifest.pp
|
1047
|
-
- ext/rack/README
|
1048
1094
|
- ext/redhat/puppet.spec.erb
|
1049
1095
|
- ext/regexp_nodes/classes/databases
|
1050
1096
|
- ext/regexp_nodes/classes/webservers
|
@@ -1052,10 +1098,10 @@ files:
|
|
1052
1098
|
- ext/regexp_nodes/parameters/environment/qa
|
1053
1099
|
- ext/regexp_nodes/regexp_nodes.rb
|
1054
1100
|
- ext/upload_facts.rb
|
1101
|
+
- ext/vim/README
|
1055
1102
|
- ext/vim/ftdetect/puppet.vim
|
1056
1103
|
- ext/vim/ftplugin/puppet.vim
|
1057
1104
|
- ext/vim/indent/puppet.vim
|
1058
|
-
- ext/vim/README
|
1059
1105
|
- ext/vim/syntax/puppet.vim
|
1060
1106
|
- ext/yaml_nodes.rb
|
1061
1107
|
- tasks/rake/changelog.rake
|
@@ -1068,6 +1114,8 @@ files:
|
|
1068
1114
|
- tasks/rake/sign.rake
|
1069
1115
|
- tasks/rake/testbranch.rake
|
1070
1116
|
- tasks/rake/yard.rake
|
1117
|
+
- test/README
|
1118
|
+
- test/Rakefile
|
1071
1119
|
- test/data/failers/badclassnoparam
|
1072
1120
|
- test/data/failers/badclassparam
|
1073
1121
|
- test/data/failers/badcompnoparam
|
@@ -1155,13 +1203,14 @@ files:
|
|
1155
1203
|
- test/data/types/sshkey/1
|
1156
1204
|
- test/data/types/yumrepos/fedora-devel.repo
|
1157
1205
|
- test/data/types/yumrepos/fedora.repo
|
1158
|
-
- test/language/ast/variable.rb
|
1159
1206
|
- test/language/ast.rb
|
1207
|
+
- test/language/ast/variable.rb
|
1160
1208
|
- test/language/functions.rb
|
1161
1209
|
- test/language/parser.rb
|
1162
1210
|
- test/language/scope.rb
|
1163
1211
|
- test/language/snippets.rb
|
1164
1212
|
- test/language/transportable.rb
|
1213
|
+
- test/lib/puppettest.rb
|
1165
1214
|
- test/lib/puppettest/certificates.rb
|
1166
1215
|
- test/lib/puppettest/exetest.rb
|
1167
1216
|
- test/lib/puppettest/fakes.rb
|
@@ -1173,13 +1222,12 @@ files:
|
|
1173
1222
|
- test/lib/puppettest/resourcetesting.rb
|
1174
1223
|
- test/lib/puppettest/runnable_test.rb
|
1175
1224
|
- test/lib/puppettest/servertest.rb
|
1225
|
+
- test/lib/puppettest/support.rb
|
1176
1226
|
- test/lib/puppettest/support/assertions.rb
|
1177
1227
|
- test/lib/puppettest/support/helpers.rb
|
1178
1228
|
- test/lib/puppettest/support/resources.rb
|
1179
1229
|
- test/lib/puppettest/support/utils.rb
|
1180
|
-
- test/lib/puppettest/support.rb
|
1181
1230
|
- test/lib/puppettest/testcase.rb
|
1182
|
-
- test/lib/puppettest.rb
|
1183
1231
|
- test/lib/rake/puppet_test_loader.rb
|
1184
1232
|
- test/lib/rake/puppet_testtask.rb
|
1185
1233
|
- test/lib/stubba.rb
|
@@ -1203,7 +1251,6 @@ files:
|
|
1203
1251
|
- test/puppet/defaults.rb
|
1204
1252
|
- test/rails/rails.rb
|
1205
1253
|
- test/rails/railsparameter.rb
|
1206
|
-
- test/Rakefile
|
1207
1254
|
- test/ral/manager/attributes.rb
|
1208
1255
|
- test/ral/manager/instances.rb
|
1209
1256
|
- test/ral/manager/manager.rb
|
@@ -1214,20 +1261,20 @@ files:
|
|
1214
1261
|
- test/ral/providers/host/parsed.rb
|
1215
1262
|
- test/ral/providers/mailalias/aliases.rb
|
1216
1263
|
- test/ral/providers/nameservice.rb
|
1264
|
+
- test/ral/providers/package.rb
|
1217
1265
|
- test/ral/providers/package/aptitude.rb
|
1218
1266
|
- test/ral/providers/package/aptrpm.rb
|
1219
|
-
- test/ral/providers/package.rb
|
1220
1267
|
- test/ral/providers/parsedfile.rb
|
1221
1268
|
- test/ral/providers/port/parsed.rb
|
1222
1269
|
- test/ral/providers/provider.rb
|
1223
1270
|
- test/ral/providers/service/base.rb
|
1224
1271
|
- test/ral/providers/sshkey/parsed.rb
|
1225
|
-
- test/ral/providers/user/useradd.rb
|
1226
1272
|
- test/ral/providers/user.rb
|
1273
|
+
- test/ral/providers/user/useradd.rb
|
1227
1274
|
- test/ral/type/cron.rb
|
1228
1275
|
- test/ral/type/exec.rb
|
1229
|
-
- test/ral/type/file/target.rb
|
1230
1276
|
- test/ral/type/file.rb
|
1277
|
+
- test/ral/type/file/target.rb
|
1231
1278
|
- test/ral/type/fileignoresource.rb
|
1232
1279
|
- test/ral/type/filesources.rb
|
1233
1280
|
- test/ral/type/host.rb
|
@@ -1239,7 +1286,6 @@ files:
|
|
1239
1286
|
- test/ral/type/user.rb
|
1240
1287
|
- test/ral/type/yumrepo.rb
|
1241
1288
|
- test/ral/type/zone.rb
|
1242
|
-
- test/README
|
1243
1289
|
- test/test
|
1244
1290
|
- test/util/classgen.rb
|
1245
1291
|
- test/util/execution.rb
|
@@ -1256,6 +1302,7 @@ files:
|
|
1256
1302
|
- test/util/utiltest.rb
|
1257
1303
|
- spec/fixtures/faulty_face/puppet/face/syntax.rb
|
1258
1304
|
- spec/fixtures/integration/provider/mailalias/aliases/test1
|
1305
|
+
- spec/fixtures/releases/jamtur01-apache/Modulefile
|
1259
1306
|
- spec/fixtures/releases/jamtur01-apache/files/httpd
|
1260
1307
|
- spec/fixtures/releases/jamtur01-apache/files/test.vhost
|
1261
1308
|
- spec/fixtures/releases/jamtur01-apache/lib/puppet/provider/a2mod/debian.rb
|
@@ -1267,7 +1314,6 @@ files:
|
|
1267
1314
|
- spec/fixtures/releases/jamtur01-apache/manifests/ssl.pp
|
1268
1315
|
- spec/fixtures/releases/jamtur01-apache/manifests/vhost.pp
|
1269
1316
|
- spec/fixtures/releases/jamtur01-apache/metadata.json
|
1270
|
-
- spec/fixtures/releases/jamtur01-apache/Modulefile
|
1271
1317
|
- spec/fixtures/releases/jamtur01-apache/templates/vhost-default.conf.erb
|
1272
1318
|
- spec/fixtures/releases/jamtur01-apache/tests/apache.pp
|
1273
1319
|
- spec/fixtures/releases/jamtur01-apache/tests/dev.pp
|
@@ -1427,8 +1473,8 @@ files:
|
|
1427
1473
|
- spec/lib/matchers/json.rb
|
1428
1474
|
- spec/lib/puppet/face/1.0.0/huzzah.rb
|
1429
1475
|
- spec/lib/puppet/face/basetest.rb
|
1430
|
-
- spec/lib/puppet/face/huzzah/obsolete.rb
|
1431
1476
|
- spec/lib/puppet/face/huzzah.rb
|
1477
|
+
- spec/lib/puppet/face/huzzah/obsolete.rb
|
1432
1478
|
- spec/lib/puppet/face/version_matching.rb
|
1433
1479
|
- spec/lib/puppet_spec/compiler.rb
|
1434
1480
|
- spec/lib/puppet_spec/database.rb
|