puppet 0.25.4 → 0.25.5
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 +679 -23
- data/LICENSE +2 -2
- data/README +2 -2
- data/README.queueing +1 -1
- data/README.rst +2 -2
- data/Rakefile +4 -2
- data/bin/filebucket +2 -2
- data/bin/pi +1 -1
- data/bin/puppet +2 -2
- data/bin/puppetca +2 -2
- data/bin/puppetd +5 -4
- data/bin/puppetdoc +4 -4
- data/bin/puppetmasterd +2 -2
- data/bin/puppetqd +2 -2
- data/bin/puppetrun +2 -2
- data/bin/ralsh +2 -2
- data/conf/epm.list +2 -2
- data/conf/gentoo/puppet/puppet.conf +0 -4
- data/conf/osx/PackageInfo.plist +1 -1
- data/conf/redhat/logrotate +1 -0
- data/conf/redhat/puppet.conf +0 -4
- data/conf/redhat/puppet.spec +16 -10
- data/conf/solaris/pkginfo +2 -2
- data/conf/solaris/smf/puppetd.xml +3 -3
- data/conf/solaris/smf/puppetmasterd.xml +3 -3
- data/conf/solaris/smf/svc-puppetd +1 -1
- data/conf/solaris/smf/svc-puppetmasterd +1 -1
- data/conf/suse/puppet.spec +16 -14
- data/conf/suse/puppet.suse.patch +16 -0
- data/examples/etc/puppet/fileserver.conf +5 -5
- data/examples/modules/sample-module/README.txt +3 -3
- data/examples/modules/sample-module/lib/puppet/parser/functions/hostname_to_dn.rb +1 -1
- data/ext/extlookup.rb +1 -1
- data/ext/nagios/check_puppet.rb +1 -1
- data/ext/nagios/naggen +2 -2
- data/ext/puppet-test +2 -2
- data/ext/puppetlast +1 -1
- data/ext/puppetstoredconfigclean.rb +1 -1
- data/ext/regexp_nodes/regexp_nodes.rb +4 -4
- data/ext/vim/syntax/puppet.vim +5 -3
- data/install.rb +11 -9
- data/lib/puppet.rb +1 -1
- data/lib/puppet/application/puppetd.rb +5 -4
- data/lib/puppet/configurer.rb +38 -31
- data/lib/puppet/defaults.rb +18 -13
- data/lib/puppet/file_serving/fileset.rb +2 -2
- data/lib/puppet/file_serving/terminus_helper.rb +1 -0
- data/lib/puppet/indirector/indirection.rb +20 -13
- data/lib/puppet/network/authstore.rb +3 -3
- data/lib/puppet/network/format_handler.rb +1 -1
- data/lib/puppet/network/handler/fileserver.rb +2 -2
- data/lib/puppet/network/handler/master.rb +1 -1
- data/lib/puppet/network/http_pool.rb +0 -2
- data/lib/puppet/network/http_server/webrick.rb +1 -1
- data/lib/puppet/parser/ast/casestatement.rb +4 -4
- data/lib/puppet/parser/ast/ifstatement.rb +2 -1
- data/lib/puppet/parser/ast/leaf.rb +1 -0
- data/lib/puppet/parser/ast/selector.rb +2 -3
- data/lib/puppet/parser/functions/generate.rb +3 -5
- data/lib/puppet/parser/functions/require.rb +8 -1
- data/lib/puppet/parser/functions/template.rb +1 -1
- data/lib/puppet/parser/lexer.rb +1 -7
- data/lib/puppet/parser/resource.rb +10 -4
- data/lib/puppet/parser/scope.rb +61 -9
- data/lib/puppet/provider/augeas/augeas.rb +23 -7
- data/lib/puppet/provider/macauthorization/macauthorization.rb +1 -1
- data/lib/puppet/provider/maillist/mailman.rb +2 -2
- data/lib/puppet/provider/package/portage.rb +2 -2
- data/lib/puppet/provider/service/debian.rb +2 -2
- data/lib/puppet/provider/service/redhat.rb +1 -1
- data/lib/puppet/provider/service/smf.rb +4 -1
- data/lib/puppet/provider/ssh_authorized_key/parsed.rb +9 -29
- data/lib/puppet/provider/user/user_role_add.rb +1 -1
- data/lib/puppet/reference/configuration.rb +1 -1
- data/lib/puppet/reference/providers.rb +1 -1
- data/lib/puppet/reports/tagmail.rb +1 -0
- data/lib/puppet/resource/catalog.rb +1 -8
- data/lib/puppet/simple_graph.rb +37 -12
- data/lib/puppet/ssl/certificate.rb +2 -3
- data/lib/puppet/ssl/certificate_authority.rb +1 -1
- data/lib/puppet/ssl/host.rb +19 -12
- data/lib/puppet/sslcertificates/ca.rb +5 -6
- data/lib/puppet/transaction.rb +11 -15
- data/lib/puppet/type/augeas.rb +2 -1
- data/lib/puppet/type/exec.rb +1 -1
- data/lib/puppet/type/file.rb +9 -2
- data/lib/puppet/type/file/checksum.rb +2 -1
- data/lib/puppet/type/file/source.rb +4 -4
- data/lib/puppet/type/maillist.rb +10 -0
- data/lib/puppet/type/mount.rb +5 -3
- data/lib/puppet/type/tidy.rb +36 -30
- data/lib/puppet/util/autoload.rb +2 -2
- data/lib/puppet/util/checksums.rb +5 -0
- data/lib/puppet/util/monkey_patches.rb +38 -0
- data/lib/puppet/util/nagios_maker.rb +1 -1
- data/lib/puppet/util/settings.rb +14 -4
- data/lib/puppet/util/suidmanager.rb +26 -2
- data/lib/puppet/util/zaml.rb +318 -0
- data/man/{man8/puppet.conf.8 → man5/puppet.conf.5} +594 -899
- data/man/man8/filebucket.8 +31 -45
- data/man/man8/pi.8 +16 -22
- data/man/man8/puppet.8 +26 -36
- data/man/man8/puppetca.8 +38 -51
- data/man/man8/puppetd.8 +48 -64
- data/man/man8/puppetdoc.8 +37 -48
- data/man/man8/puppetmasterd.8 +24 -32
- data/man/man8/puppetqd.8 +22 -27
- data/man/man8/puppetrun.8 +46 -58
- data/man/man8/ralsh.8 +43 -48
- data/spec/integration/bin/puppetmasterd.rb +20 -9
- data/spec/integration/defaults.rb +4 -0
- data/spec/integration/indirector/certificate/rest.rb +0 -1
- data/spec/integration/indirector/certificate_request/rest.rb +0 -1
- data/spec/integration/indirector/certificate_revocation_list/rest.rb +0 -1
- data/spec/integration/indirector/report/rest.rb +0 -1
- data/spec/integration/indirector/rest.rb +0 -1
- data/spec/integration/parser/functions/require.rb +18 -1
- data/spec/unit/application/filebucket.rb +2 -2
- data/spec/unit/application/puppetd.rb +4 -5
- data/spec/unit/configurer.rb +46 -8
- data/spec/unit/file_serving/fileset.rb +6 -0
- data/spec/unit/file_serving/terminus_helper.rb +10 -0
- data/spec/unit/indirector/indirection.rb +17 -28
- data/spec/unit/network/format_handler.rb +3 -2
- data/spec/unit/network/http_pool.rb +9 -17
- data/spec/unit/parser/ast/casestatement.rb +4 -12
- data/spec/unit/parser/ast/ifstatement.rb +2 -1
- data/spec/unit/parser/ast/leaf.rb +15 -2
- data/spec/unit/parser/ast/selector.rb +4 -12
- data/spec/unit/parser/functions/generate.rb +41 -0
- data/spec/unit/parser/functions/require.rb +23 -2
- data/spec/unit/parser/resource.rb +18 -0
- data/spec/unit/parser/scope.rb +94 -3
- data/spec/unit/provider/augeas/augeas.rb +27 -3
- data/spec/unit/provider/ssh_authorized_key/parsed.rb +30 -19
- data/spec/unit/resource/catalog.rb +16 -39
- data/spec/unit/simple_graph.rb +14 -0
- data/spec/unit/ssl/host.rb +55 -17
- data/spec/unit/type/file.rb +43 -11
- data/spec/unit/type/file/checksum.rb +28 -0
- data/spec/unit/type/tidy.rb +30 -1
- data/spec/unit/util/autoload.rb +2 -1
- data/spec/unit/util/checksums.rb +7 -1
- data/spec/unit/util/settings.rb +39 -2
- data/spec/unit/util/zaml.rb +38 -0
- data/tasks/rake/changelog.rake +1 -1
- data/tasks/rake/gem.rake +3 -3
- data/tasks/rake/git_workflow.rake +1 -1
- data/tasks/rake/sign.rake +1 -1
- data/tasks/rake/yard.rake +11 -0
- data/test/certmgr/certmgr.rb +1 -1
- data/test/data/providers/ssh_authorized_key/parsed/authorized_keys +1 -1
- data/test/lib/puppettest/support/utils.rb +2 -1
- data/test/network/handler/ca.rb +4 -4
- data/test/network/handler/fileserver.rb +15 -9
- data/test/other/transactions.rb +1 -6
- data/test/puppet/tc_suidmanager.rb +7 -2
- data/test/ral/providers/host/parsed.rb +6 -6
- data/test/ral/providers/package.rb +4 -0
- data/test/ral/providers/sshkey/parsed.rb +5 -5
- data/test/ral/type/file.rb +0 -21
- data/test/ral/type/host.rb +4 -4
- data/test/ral/type/resources.rb +0 -78
- data/test/ral/type/sshkey.rb +2 -2
- data/test/test +1 -1
- data/test/util/settings.rb +6 -6
- metadata +1065 -1050
- data/test/executables/puppetmodule.rb +0 -55
- data/test/ral/providers/service/debian.rb +0 -58
data/test/ral/type/sshkey.rb
CHANGED
@@ -116,13 +116,13 @@ class TestSSHKey < Test::Unit::TestCase
|
|
116
116
|
end
|
117
117
|
|
118
118
|
def test_aliasisproperty
|
119
|
-
assert_equal(:property, @sshkeytype.attrtype(:
|
119
|
+
assert_equal(:property, @sshkeytype.attrtype(:host_aliases))
|
120
120
|
end
|
121
121
|
|
122
122
|
def test_multivalues
|
123
123
|
key = mkkey
|
124
124
|
assert_raise(Puppet::Error) {
|
125
|
-
key[:
|
125
|
+
key[:host_aliases] = "puppetmasterd yayness"
|
126
126
|
}
|
127
127
|
end
|
128
128
|
|
data/test/test
CHANGED
data/test/util/settings.rb
CHANGED
@@ -463,7 +463,7 @@ yay = /a/path
|
|
463
463
|
|
464
464
|
def test_correct_type_assumptions
|
465
465
|
file = Puppet::Util::Settings::FileSetting
|
466
|
-
|
466
|
+
setting = Puppet::Util::Settings::Setting
|
467
467
|
bool = Puppet::Util::Settings::BooleanSetting
|
468
468
|
|
469
469
|
# We have to keep these ordered, unfortunately.
|
@@ -472,8 +472,8 @@ yay = /a/path
|
|
472
472
|
["true", bool],
|
473
473
|
[true, bool],
|
474
474
|
["false", bool],
|
475
|
-
["server",
|
476
|
-
["http://$server/yay",
|
475
|
+
["server", setting],
|
476
|
+
["http://$server/yay", setting],
|
477
477
|
["$server/yayness", file],
|
478
478
|
["$server/yayness.conf", file]
|
479
479
|
].each do |ary|
|
@@ -483,7 +483,7 @@ yay = /a/path
|
|
483
483
|
assert_nothing_raised {
|
484
484
|
config.setdefaults(:yayness, name => { :default => value, :desc => name.to_s})
|
485
485
|
}
|
486
|
-
elem = config.
|
486
|
+
elem = config.setting(name)
|
487
487
|
|
488
488
|
assert_instance_of(type, elem,
|
489
489
|
"%s got created as wrong type" % value.inspect)
|
@@ -529,7 +529,7 @@ yay = /a/path
|
|
529
529
|
assert_nothing_raised do
|
530
530
|
config.setdefaults :test, :blocktest => {:default => "yay", :desc => "boo", :hook => proc { |value| testing = value }}
|
531
531
|
end
|
532
|
-
elem = config.
|
532
|
+
elem = config.setting(:blocktest)
|
533
533
|
|
534
534
|
assert_nothing_raised do
|
535
535
|
assert_equal("yay", elem.value)
|
@@ -578,7 +578,7 @@ yay = /a/path
|
|
578
578
|
:mydir => {:default => tempfile(),
|
579
579
|
:mode => 0644,
|
580
580
|
:owner => "root",
|
581
|
-
:group => "
|
581
|
+
:group => "service",
|
582
582
|
:desc => "yay"
|
583
583
|
},
|
584
584
|
:mkusers => [false, "yay"]
|
metadata
CHANGED
@@ -1,38 +1,47 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: puppet
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
|
4
|
+
prerelease: false
|
5
|
+
segments:
|
6
|
+
- 0
|
7
|
+
- 25
|
8
|
+
- 5
|
9
|
+
version: 0.25.5
|
5
10
|
platform: ruby
|
6
11
|
authors:
|
7
|
-
-
|
12
|
+
- Puppet Labs
|
8
13
|
autorequire:
|
9
14
|
bindir: bin
|
10
15
|
cert_chain: []
|
11
16
|
|
12
|
-
date: 2010-
|
17
|
+
date: 2010-05-18 00:00:00 +10:00
|
13
18
|
default_executable:
|
14
19
|
dependencies:
|
15
20
|
- !ruby/object:Gem::Dependency
|
16
21
|
name: facter
|
17
|
-
|
18
|
-
|
19
|
-
version_requirements: !ruby/object:Gem::Requirement
|
22
|
+
prerelease: false
|
23
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
20
24
|
requirements:
|
21
25
|
- - ">="
|
22
26
|
- !ruby/object:Gem::Version
|
27
|
+
segments:
|
28
|
+
- 1
|
29
|
+
- 5
|
30
|
+
- 1
|
23
31
|
version: 1.5.1
|
24
|
-
|
32
|
+
type: :runtime
|
33
|
+
version_requirements: *id001
|
25
34
|
description: Puppet, an automated configuration management tool
|
26
|
-
email: puppet@
|
35
|
+
email: puppet@puppetlabs.com
|
27
36
|
executables:
|
28
37
|
- filebucket
|
38
|
+
- pi
|
29
39
|
- ralsh
|
30
40
|
- puppet
|
31
41
|
- puppetdoc
|
32
|
-
-
|
42
|
+
- puppetd
|
33
43
|
- puppetca
|
34
44
|
- puppetrun
|
35
|
-
- puppetd
|
36
45
|
- puppetmasterd
|
37
46
|
- puppetqd
|
38
47
|
extensions: []
|
@@ -40,1207 +49,1211 @@ extensions: []
|
|
40
49
|
extra_rdoc_files: []
|
41
50
|
|
42
51
|
files:
|
52
|
+
- README.rst
|
43
53
|
- COPYING
|
44
|
-
-
|
54
|
+
- README.queueing
|
45
55
|
- CHANGELOG
|
46
|
-
-
|
47
|
-
- LICENSE
|
56
|
+
- Rakefile
|
48
57
|
- CHANGELOG.old
|
49
|
-
-
|
50
|
-
- README
|
58
|
+
- LICENSE
|
59
|
+
- README
|
51
60
|
- install.rb
|
52
61
|
- bin/filebucket
|
62
|
+
- bin/pi
|
53
63
|
- bin/ralsh
|
54
64
|
- bin/puppet
|
55
65
|
- bin/puppetdoc
|
56
|
-
-
|
57
|
-
- lib/puppet/module.rb
|
66
|
+
- lib/puppet.rb
|
58
67
|
- lib/puppet/checksum.rb
|
59
|
-
- lib/puppet/
|
60
|
-
- lib/puppet/
|
61
|
-
- lib/puppet/
|
62
|
-
- lib/puppet/
|
63
|
-
- lib/puppet/
|
64
|
-
- lib/puppet/
|
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/provider/augeas/augeas.rb
|
78
|
-
- lib/puppet/provider/user/useradd.rb
|
79
|
-
- lib/puppet/provider/user/user_role_add.rb
|
80
|
-
- lib/puppet/provider/user/hpux.rb
|
81
|
-
- lib/puppet/provider/user/pw.rb
|
82
|
-
- lib/puppet/provider/user/ldap.rb
|
83
|
-
- lib/puppet/provider/user/directoryservice.rb
|
84
|
-
- lib/puppet/provider/confine.rb
|
85
|
-
- lib/puppet/provider/zone/solaris.rb
|
86
|
-
- lib/puppet/provider/mount/parsed.rb
|
87
|
-
- lib/puppet/provider/zfs/solaris.rb
|
88
|
-
- lib/puppet/provider/port/parsed.rb
|
89
|
-
- lib/puppet/provider/cron/crontab.rb
|
90
|
-
- lib/puppet/provider/mount.rb
|
91
|
-
- lib/puppet/provider/service/runit.rb
|
92
|
-
- lib/puppet/provider/service/init.rb
|
93
|
-
- lib/puppet/provider/service/debian.rb
|
94
|
-
- lib/puppet/provider/service/freebsd.rb
|
95
|
-
- lib/puppet/provider/service/redhat.rb
|
96
|
-
- lib/puppet/provider/service/base.rb
|
97
|
-
- lib/puppet/provider/service/daemontools.rb
|
98
|
-
- lib/puppet/provider/service/gentoo.rb
|
99
|
-
- lib/puppet/provider/service/launchd.rb
|
100
|
-
- lib/puppet/provider/service/smf.rb
|
101
|
-
- lib/puppet/provider/host/parsed.rb
|
102
|
-
- lib/puppet/provider/naginator.rb
|
103
|
-
- lib/puppet/provider/mcx/mcxcontent.rb
|
104
|
-
- lib/puppet/provider/selboolean/getsetsebool.rb
|
105
|
-
- lib/puppet/provider/mailalias/aliases.rb
|
106
|
-
- lib/puppet/provider/maillist/mailman.rb
|
107
|
-
- lib/puppet/provider/parsedfile.rb
|
108
|
-
- lib/puppet/provider/nameservice.rb
|
109
|
-
- lib/puppet/provider/zpool/solaris.rb
|
110
|
-
- lib/puppet/provider/nameservice/pw.rb
|
111
|
-
- lib/puppet/provider/nameservice/objectadd.rb
|
112
|
-
- lib/puppet/provider/nameservice/directoryservice.rb
|
113
|
-
- lib/puppet/provider/ldap.rb
|
114
|
-
- lib/puppet/provider/ssh_authorized_key/parsed.rb
|
115
|
-
- lib/puppet/provider/computer/computer.rb
|
116
|
-
- lib/puppet/provider/selmodule/semodule.rb
|
117
|
-
- lib/puppet/provider/package/sunfreeware.rb
|
118
|
-
- lib/puppet/provider/package/appdmg.rb
|
119
|
-
- lib/puppet/provider/package/dpkg.rb
|
120
|
-
- lib/puppet/provider/package/aptitude.rb
|
121
|
-
- lib/puppet/provider/package/freebsd.rb
|
122
|
-
- lib/puppet/provider/package/rug.rb
|
123
|
-
- lib/puppet/provider/package/fink.rb
|
124
|
-
- lib/puppet/provider/package/yum.rb
|
125
|
-
- lib/puppet/provider/package/pkgdmg.rb
|
126
|
-
- lib/puppet/provider/package/gem.rb
|
127
|
-
- lib/puppet/provider/package/sun.rb
|
128
|
-
- lib/puppet/provider/package/blastwave.rb
|
129
|
-
- lib/puppet/provider/package/apple.rb
|
130
|
-
- lib/puppet/provider/package/openbsd.rb
|
131
|
-
- lib/puppet/provider/package/rpm.rb
|
132
|
-
- lib/puppet/provider/package/yumhelper.py
|
133
|
-
- lib/puppet/provider/package/urpmi.rb
|
134
|
-
- lib/puppet/provider/package/hpux.rb
|
135
|
-
- lib/puppet/provider/package/aptrpm.rb
|
136
|
-
- lib/puppet/provider/package/portage.rb
|
137
|
-
- lib/puppet/provider/package/up2date.rb
|
138
|
-
- lib/puppet/provider/package/darwinport.rb
|
139
|
-
- lib/puppet/provider/package/ports.rb
|
140
|
-
- lib/puppet/provider/package/apt.rb
|
141
|
-
- lib/puppet/provider/confine_collection.rb
|
142
|
-
- lib/puppet/network.rb
|
143
|
-
- lib/puppet/configurer.rb
|
68
|
+
- lib/puppet/resource/reference.rb
|
69
|
+
- lib/puppet/resource/catalog.rb
|
70
|
+
- lib/puppet/rails/fact_value.rb
|
71
|
+
- lib/puppet/rails/resource.rb
|
72
|
+
- lib/puppet/rails/param_value.rb
|
73
|
+
- lib/puppet/rails/puppet_tag.rb
|
74
|
+
- lib/puppet/rails/benchmark.rb
|
75
|
+
- lib/puppet/rails/param_name.rb
|
76
|
+
- lib/puppet/rails/database/002_remove_duplicated_index_on_all_tables.rb
|
77
|
+
- lib/puppet/rails/database/003_add_environment_to_host.rb
|
78
|
+
- lib/puppet/rails/database/001_add_created_at_to_all_tables.rb
|
79
|
+
- lib/puppet/rails/database/schema.rb
|
80
|
+
- lib/puppet/rails/host.rb
|
81
|
+
- lib/puppet/rails/fact_name.rb
|
82
|
+
- lib/puppet/rails/resource_tag.rb
|
83
|
+
- lib/puppet/rails/source_file.rb
|
84
|
+
- lib/puppet/rails.rb
|
85
|
+
- lib/puppet/transaction.rb
|
144
86
|
- lib/puppet/ssl/certificate_request.rb
|
145
|
-
- lib/puppet/ssl/
|
146
|
-
- lib/puppet/ssl/
|
147
|
-
- lib/puppet/ssl/base.rb
|
87
|
+
- lib/puppet/ssl/certificate_authority/interface.rb
|
88
|
+
- lib/puppet/ssl/key.rb
|
148
89
|
- lib/puppet/ssl/certificate_authority.rb
|
90
|
+
- lib/puppet/ssl/base.rb
|
91
|
+
- lib/puppet/ssl/inventory.rb
|
92
|
+
- lib/puppet/ssl/certificate_factory.rb
|
149
93
|
- lib/puppet/ssl/host.rb
|
150
|
-
- lib/puppet/ssl/key.rb
|
151
94
|
- lib/puppet/ssl/certificate_revocation_list.rb
|
152
|
-
- lib/puppet/ssl/
|
153
|
-
- lib/puppet/
|
154
|
-
- lib/puppet/
|
155
|
-
- lib/puppet/
|
95
|
+
- lib/puppet/ssl/certificate.rb
|
96
|
+
- lib/puppet/reference/report.rb
|
97
|
+
- lib/puppet/reference/metaparameter.rb
|
98
|
+
- lib/puppet/reference/network.rb
|
99
|
+
- lib/puppet/reference/providers.rb
|
100
|
+
- lib/puppet/reference/type.rb
|
101
|
+
- lib/puppet/reference/function.rb
|
102
|
+
- lib/puppet/reference/indirection.rb
|
103
|
+
- lib/puppet/reference/configuration.rb
|
156
104
|
- lib/puppet/metatype/manager.rb
|
157
|
-
- lib/puppet/
|
158
|
-
- lib/puppet/
|
159
|
-
- lib/puppet/
|
160
|
-
- lib/puppet/util/posix.rb
|
161
|
-
- lib/puppet/util/settings.rb
|
162
|
-
- lib/puppet/util/monkey_patches.rb
|
163
|
-
- lib/puppet/util/pson.rb
|
164
|
-
- lib/puppet/util/tagging.rb
|
165
|
-
- lib/puppet/util/fileparsing.rb
|
166
|
-
- lib/puppet/util/provider_features.rb
|
167
|
-
- lib/puppet/util/classgen.rb
|
168
|
-
- lib/puppet/util/inifile.rb
|
169
|
-
- lib/puppet/util/file_locking.rb
|
170
|
-
- lib/puppet/util/execution.rb
|
171
|
-
- lib/puppet/util/autoload.rb
|
172
|
-
- lib/puppet/util/log.rb
|
173
|
-
- lib/puppet/util/autoload/file_cache.rb
|
174
|
-
- lib/puppet/util/queue.rb
|
175
|
-
- lib/puppet/util/resource_template.rb
|
176
|
-
- lib/puppet/util/docs.rb
|
177
|
-
- lib/puppet/util/suidmanager.rb
|
178
|
-
- lib/puppet/util/settings/setting.rb
|
179
|
-
- lib/puppet/util/settings/file_setting.rb
|
180
|
-
- lib/puppet/util/settings/boolean_setting.rb
|
181
|
-
- lib/puppet/util/ldap/connection.rb
|
182
|
-
- lib/puppet/util/ldap/generator.rb
|
183
|
-
- lib/puppet/util/ldap/manager.rb
|
184
|
-
- lib/puppet/util/diff.rb
|
185
|
-
- lib/puppet/util/logging.rb
|
186
|
-
- lib/puppet/util/pidlock.rb
|
187
|
-
- lib/puppet/util/errors.rb
|
188
|
-
- lib/puppet/util/backups.rb
|
189
|
-
- lib/puppet/util/user_attr.rb
|
190
|
-
- lib/puppet/util/methodhelper.rb
|
191
|
-
- lib/puppet/util/queue/stomp.rb
|
192
|
-
- lib/puppet/util/log_paths.rb
|
193
|
-
- lib/puppet/util/config_store.rb
|
194
|
-
- lib/puppet/util/rdoc/generators/template/puppet/puppet.rb
|
195
|
-
- lib/puppet/util/rdoc/generators/puppet_generator.rb
|
196
|
-
- lib/puppet/util/rdoc/parser.rb
|
197
|
-
- lib/puppet/util/rdoc/code_objects.rb
|
198
|
-
- lib/puppet/util/filetype.rb
|
199
|
-
- lib/puppet/util/nagios_maker.rb
|
200
|
-
- lib/puppet/util/cacher.rb
|
201
|
-
- lib/puppet/util/warnings.rb
|
202
|
-
- lib/puppet/util/ldap.rb
|
203
|
-
- lib/puppet/util/rdoc.rb
|
204
|
-
- lib/puppet/util/reference.rb
|
205
|
-
- lib/puppet/util/instance_loader.rb
|
206
|
-
- lib/puppet/util/metric.rb
|
207
|
-
- lib/puppet/util/checksums.rb
|
208
|
-
- lib/puppet/util/loadedfile.rb
|
209
|
-
- lib/puppet/util/storage.rb
|
210
|
-
- lib/puppet/util/metaid.rb
|
211
|
-
- lib/puppet/util/selinux.rb
|
212
|
-
- lib/puppet/util/rails/reference_serializer.rb
|
213
|
-
- lib/puppet/util/rails/collection_merger.rb
|
214
|
-
- lib/puppet/util/rails/cache_accumulator.rb
|
215
|
-
- lib/puppet/util/feature.rb
|
216
|
-
- lib/puppet/util/constant_inflector.rb
|
217
|
-
- lib/puppet/util/subclass_loader.rb
|
218
|
-
- lib/puppet/indirector.rb
|
105
|
+
- lib/puppet/network/handler.rb
|
106
|
+
- lib/puppet/network/http_server/mongrel.rb
|
107
|
+
- lib/puppet/network/http_server/webrick.rb
|
219
108
|
- lib/puppet/network/client_request.rb
|
220
|
-
- lib/puppet/network/format.rb
|
221
|
-
- lib/puppet/network/rest_authorization.rb
|
222
|
-
- lib/puppet/network/client/runner.rb
|
223
|
-
- lib/puppet/network/client/file.rb
|
224
|
-
- lib/puppet/network/client/ca.rb
|
225
|
-
- lib/puppet/network/client/report.rb
|
226
|
-
- lib/puppet/network/client/dipper.rb
|
227
|
-
- lib/puppet/network/client/proxy.rb
|
228
|
-
- lib/puppet/network/client/resource.rb
|
229
|
-
- lib/puppet/network/client/status.rb
|
230
|
-
- lib/puppet/network/rest_controller.rb
|
231
|
-
- lib/puppet/network/formats.rb
|
232
109
|
- lib/puppet/network/http/mongrel.rb
|
110
|
+
- lib/puppet/network/http/handler.rb
|
233
111
|
- lib/puppet/network/http/api.rb
|
234
|
-
- lib/puppet/network/http/
|
235
|
-
- lib/puppet/network/http/
|
112
|
+
- lib/puppet/network/http/webrick/rest.rb
|
113
|
+
- lib/puppet/network/http/rack.rb
|
236
114
|
- lib/puppet/network/http/webrick.rb
|
115
|
+
- lib/puppet/network/http/rack/rest.rb
|
237
116
|
- lib/puppet/network/http/rack/xmlrpc.rb
|
238
117
|
- lib/puppet/network/http/rack/httphandler.rb
|
239
|
-
- lib/puppet/network/http/
|
240
|
-
- lib/puppet/network/http/
|
241
|
-
- lib/puppet/network/
|
242
|
-
- lib/puppet/network/http/handler.rb
|
243
|
-
- lib/puppet/network/server.rb
|
244
|
-
- lib/puppet/network/authconfig.rb
|
245
|
-
- lib/puppet/network/authstore.rb
|
246
|
-
- lib/puppet/network/rights.rb
|
247
|
-
- lib/puppet/network/rest_authconfig.rb
|
118
|
+
- lib/puppet/network/http/api/v1.rb
|
119
|
+
- lib/puppet/network/http/mongrel/rest.rb
|
120
|
+
- lib/puppet/network/xmlrpc/webrick_servlet.rb
|
248
121
|
- lib/puppet/network/xmlrpc/processor.rb
|
249
122
|
- lib/puppet/network/xmlrpc/server.rb
|
250
123
|
- lib/puppet/network/xmlrpc/client.rb
|
251
|
-
- lib/puppet/network/xmlrpc/webrick_servlet.rb
|
252
124
|
- lib/puppet/network/http.rb
|
125
|
+
- lib/puppet/network/formats.rb
|
253
126
|
- lib/puppet/network/http_server.rb
|
254
|
-
- lib/puppet/network/
|
255
|
-
- lib/puppet/network/
|
256
|
-
- lib/puppet/network/
|
257
|
-
- lib/puppet/network/http_server/webrick.rb
|
258
|
-
- lib/puppet/network/handler/runner.rb
|
259
|
-
- lib/puppet/network/handler/ca.rb
|
127
|
+
- lib/puppet/network/rights.rb
|
128
|
+
- lib/puppet/network/format.rb
|
129
|
+
- lib/puppet/network/handler/master.rb
|
260
130
|
- lib/puppet/network/handler/report.rb
|
261
|
-
- lib/puppet/network/handler/fileserver.rb
|
262
131
|
- lib/puppet/network/handler/filebucket.rb
|
263
|
-
- lib/puppet/network/handler/
|
132
|
+
- lib/puppet/network/handler/ca.rb
|
264
133
|
- lib/puppet/network/handler/resource.rb
|
265
134
|
- lib/puppet/network/handler/status.rb
|
266
|
-
- lib/puppet/network/handler.rb
|
267
|
-
- lib/puppet/network/
|
135
|
+
- lib/puppet/network/handler/fileserver.rb
|
136
|
+
- lib/puppet/network/handler/runner.rb
|
137
|
+
- lib/puppet/network/rest_authconfig.rb
|
138
|
+
- lib/puppet/network/authorization.rb
|
139
|
+
- lib/puppet/network/http_pool.rb
|
140
|
+
- lib/puppet/network/rest_authorization.rb
|
141
|
+
- lib/puppet/network/authstore.rb
|
142
|
+
- lib/puppet/network/authconfig.rb
|
143
|
+
- lib/puppet/network/rest_controller.rb
|
144
|
+
- lib/puppet/network/server.rb
|
268
145
|
- lib/puppet/network/format_handler.rb
|
269
|
-
- lib/puppet/
|
270
|
-
- lib/puppet/
|
271
|
-
- lib/puppet/
|
272
|
-
- lib/puppet/
|
273
|
-
- lib/puppet/
|
274
|
-
- lib/puppet/
|
275
|
-
- lib/puppet/
|
276
|
-
- lib/puppet/
|
277
|
-
- lib/puppet/
|
278
|
-
- lib/puppet/
|
279
|
-
- lib/puppet/
|
280
|
-
- lib/puppet/
|
281
|
-
- lib/puppet/
|
282
|
-
- lib/puppet/
|
283
|
-
- lib/puppet/
|
284
|
-
- lib/puppet/
|
285
|
-
- lib/puppet/
|
286
|
-
- lib/puppet/
|
287
|
-
- lib/puppet/
|
288
|
-
- lib/puppet/
|
289
|
-
- lib/puppet/
|
290
|
-
- lib/puppet/
|
291
|
-
- lib/puppet/
|
292
|
-
- lib/puppet/
|
293
|
-
- lib/puppet/
|
294
|
-
- lib/puppet/
|
295
|
-
- lib/puppet/reference/indirection.rb
|
296
|
-
- lib/puppet/reference/providers.rb
|
297
|
-
- lib/puppet/reference/function.rb
|
298
|
-
- lib/puppet/reference/type.rb
|
299
|
-
- lib/puppet/sslcertificates/monkey_patch.rb
|
300
|
-
- lib/puppet/sslcertificates/support.rb
|
301
|
-
- lib/puppet/sslcertificates/ca.rb
|
302
|
-
- lib/puppet/sslcertificates/certificate.rb
|
303
|
-
- lib/puppet/sslcertificates/inventory.rb
|
304
|
-
- lib/puppet/reports.rb
|
305
|
-
- lib/puppet/feature/pson.rb
|
146
|
+
- lib/puppet/network/client/report.rb
|
147
|
+
- lib/puppet/network/client/proxy.rb
|
148
|
+
- lib/puppet/network/client/ca.rb
|
149
|
+
- lib/puppet/network/client/resource.rb
|
150
|
+
- lib/puppet/network/client/status.rb
|
151
|
+
- lib/puppet/network/client/dipper.rb
|
152
|
+
- lib/puppet/network/client/runner.rb
|
153
|
+
- lib/puppet/network/client/file.rb
|
154
|
+
- lib/puppet/network/client.rb
|
155
|
+
- lib/puppet/provider.rb
|
156
|
+
- lib/puppet/file_serving/mount.rb
|
157
|
+
- lib/puppet/file_serving/base.rb
|
158
|
+
- lib/puppet/file_serving/configuration/parser.rb
|
159
|
+
- lib/puppet/file_serving/indirection_hooks.rb
|
160
|
+
- lib/puppet/file_serving/metadata.rb
|
161
|
+
- lib/puppet/file_serving/fileset.rb
|
162
|
+
- lib/puppet/file_serving/terminus_helper.rb
|
163
|
+
- lib/puppet/file_serving/mount/file.rb
|
164
|
+
- lib/puppet/file_serving/mount/plugins.rb
|
165
|
+
- lib/puppet/file_serving/mount/modules.rb
|
166
|
+
- lib/puppet/file_serving/content.rb
|
167
|
+
- lib/puppet/file_serving/configuration.rb
|
168
|
+
- lib/puppet/simple_graph.rb
|
169
|
+
- lib/puppet/ssl.rb
|
170
|
+
- lib/puppet/feature/selinux.rb
|
171
|
+
- lib/puppet/feature/rubygems.rb
|
306
172
|
- lib/puppet/feature/rails.rb
|
173
|
+
- lib/puppet/feature/base.rb
|
174
|
+
- lib/puppet/feature/pson.rb
|
307
175
|
- lib/puppet/feature/stomp.rb
|
308
|
-
- lib/puppet/feature/rubygems.rb
|
309
176
|
- lib/puppet/feature/rack.rb
|
310
|
-
- lib/puppet/feature/base.rb
|
311
177
|
- lib/puppet/feature/zlib.rb
|
312
|
-
- lib/puppet/
|
313
|
-
- lib/puppet/
|
314
|
-
- lib/puppet/sslcertificates.rb
|
178
|
+
- lib/puppet/network.rb
|
179
|
+
- lib/puppet/dsl.rb
|
315
180
|
- lib/puppet/application.rb
|
316
|
-
- lib/puppet/transaction.rb
|
317
|
-
- lib/puppet/simple_graph.rb
|
318
|
-
- lib/puppet/parser/functions/fail.rb
|
319
|
-
- lib/puppet/parser/functions/inline_template.rb
|
320
|
-
- lib/puppet/parser/functions/sprintf.rb
|
321
|
-
- lib/puppet/parser/functions/sha1.rb
|
322
|
-
- lib/puppet/parser/functions/file.rb
|
323
|
-
- lib/puppet/parser/functions/regsubst.rb
|
324
|
-
- lib/puppet/parser/functions/shellquote.rb
|
325
|
-
- lib/puppet/parser/functions/realize.rb
|
326
|
-
- lib/puppet/parser/functions/generate.rb
|
327
|
-
- lib/puppet/parser/functions/defined.rb
|
328
|
-
- lib/puppet/parser/functions/search.rb
|
329
|
-
- lib/puppet/parser/functions/include.rb
|
330
|
-
- lib/puppet/parser/functions/require.rb
|
331
|
-
- lib/puppet/parser/functions/tag.rb
|
332
|
-
- lib/puppet/parser/functions/split.rb
|
333
|
-
- lib/puppet/parser/functions/fqdn_rand.rb
|
334
|
-
- lib/puppet/parser/functions/tagged.rb
|
335
|
-
- lib/puppet/parser/functions/versioncmp.rb
|
336
|
-
- lib/puppet/parser/functions/template.rb
|
337
|
-
- lib/puppet/parser/yaml_trimmer.rb
|
338
181
|
- lib/puppet/parser/makefile
|
339
|
-
- lib/puppet/parser/
|
340
|
-
- lib/puppet/parser/
|
182
|
+
- lib/puppet/parser/resource/param.rb
|
183
|
+
- lib/puppet/parser/resource/reference.rb
|
184
|
+
- lib/puppet/parser/parser_support.rb
|
185
|
+
- lib/puppet/parser/yaml_trimmer.rb
|
341
186
|
- lib/puppet/parser/compiler.rb
|
342
|
-
- lib/puppet/parser/
|
343
|
-
- lib/puppet/parser/
|
344
|
-
- lib/puppet/parser/ast
|
345
|
-
- lib/puppet/parser/
|
346
|
-
- lib/puppet/parser/ast/
|
347
|
-
- lib/puppet/parser/ast/
|
348
|
-
- lib/puppet/parser/ast/
|
187
|
+
- lib/puppet/parser/grammar.ra
|
188
|
+
- lib/puppet/parser/lexer.rb
|
189
|
+
- lib/puppet/parser/ast.rb
|
190
|
+
- lib/puppet/parser/interpreter.rb
|
191
|
+
- lib/puppet/parser/ast/hostclass.rb
|
192
|
+
- lib/puppet/parser/ast/selector.rb
|
193
|
+
- lib/puppet/parser/ast/caseopt.rb
|
194
|
+
- lib/puppet/parser/ast/collexpr.rb
|
195
|
+
- lib/puppet/parser/ast/definition.rb
|
349
196
|
- lib/puppet/parser/ast/else.rb
|
350
|
-
- lib/puppet/parser/ast/arithmetic_operator.rb
|
351
|
-
- lib/puppet/parser/ast/comparison_operator.rb
|
352
197
|
- lib/puppet/parser/ast/resource_reference.rb
|
353
|
-
- lib/puppet/parser/ast/selector.rb
|
354
|
-
- lib/puppet/parser/ast/hostclass.rb
|
355
|
-
- lib/puppet/parser/ast/resourceparam.rb
|
356
|
-
- lib/puppet/parser/ast/nop.rb
|
357
|
-
- lib/puppet/parser/ast/match_operator.rb
|
358
198
|
- lib/puppet/parser/ast/vardef.rb
|
359
|
-
- lib/puppet/parser/ast/
|
199
|
+
- lib/puppet/parser/ast/resource_defaults.rb
|
200
|
+
- lib/puppet/parser/ast/boolean_operator.rb
|
201
|
+
- lib/puppet/parser/ast/not.rb
|
360
202
|
- lib/puppet/parser/ast/tag.rb
|
203
|
+
- lib/puppet/parser/ast/minus.rb
|
204
|
+
- lib/puppet/parser/ast/nop.rb
|
205
|
+
- lib/puppet/parser/ast/leaf.rb
|
361
206
|
- lib/puppet/parser/ast/branch.rb
|
362
|
-
- lib/puppet/parser/ast/collexpr.rb
|
363
207
|
- lib/puppet/parser/ast/resource.rb
|
208
|
+
- lib/puppet/parser/ast/arithmetic_operator.rb
|
364
209
|
- lib/puppet/parser/ast/ifstatement.rb
|
210
|
+
- lib/puppet/parser/ast/casestatement.rb
|
365
211
|
- lib/puppet/parser/ast/function.rb
|
366
|
-
- lib/puppet/parser/ast/
|
367
|
-
- lib/puppet/parser/ast/definition.rb
|
368
|
-
- lib/puppet/parser/ast/resource_override.rb
|
212
|
+
- lib/puppet/parser/ast/resourceparam.rb
|
369
213
|
- lib/puppet/parser/ast/collection.rb
|
370
|
-
- lib/puppet/parser/
|
371
|
-
- lib/puppet/parser/
|
372
|
-
- lib/puppet/parser/
|
373
|
-
- lib/puppet/parser/
|
214
|
+
- lib/puppet/parser/ast/node.rb
|
215
|
+
- lib/puppet/parser/ast/resource_override.rb
|
216
|
+
- lib/puppet/parser/ast/comparison_operator.rb
|
217
|
+
- lib/puppet/parser/ast/match_operator.rb
|
218
|
+
- lib/puppet/parser/ast/astarray.rb
|
219
|
+
- lib/puppet/parser/functions.rb
|
374
220
|
- lib/puppet/parser/resource.rb
|
375
|
-
- lib/puppet/parser/parser.rb
|
376
221
|
- lib/puppet/parser/templatewrapper.rb
|
377
|
-
- lib/puppet/parser/
|
222
|
+
- lib/puppet/parser/functions/template.rb
|
223
|
+
- lib/puppet/parser/functions/include.rb
|
224
|
+
- lib/puppet/parser/functions/realize.rb
|
225
|
+
- lib/puppet/parser/functions/versioncmp.rb
|
226
|
+
- lib/puppet/parser/functions/regsubst.rb
|
227
|
+
- lib/puppet/parser/functions/sha1.rb
|
228
|
+
- lib/puppet/parser/functions/tag.rb
|
229
|
+
- lib/puppet/parser/functions/inline_template.rb
|
230
|
+
- lib/puppet/parser/functions/generate.rb
|
231
|
+
- lib/puppet/parser/functions/sprintf.rb
|
232
|
+
- lib/puppet/parser/functions/shellquote.rb
|
233
|
+
- lib/puppet/parser/functions/search.rb
|
234
|
+
- lib/puppet/parser/functions/tagged.rb
|
235
|
+
- lib/puppet/parser/functions/split.rb
|
236
|
+
- lib/puppet/parser/functions/file.rb
|
237
|
+
- lib/puppet/parser/functions/fail.rb
|
238
|
+
- lib/puppet/parser/functions/fqdn_rand.rb
|
239
|
+
- lib/puppet/parser/functions/require.rb
|
240
|
+
- lib/puppet/parser/functions/defined.rb
|
378
241
|
- lib/puppet/parser/loaded_code.rb
|
379
|
-
- lib/puppet/parser/functions.rb
|
380
|
-
- lib/puppet/parser/grammar.ra
|
381
242
|
- lib/puppet/parser/collector.rb
|
382
243
|
- lib/puppet/parser/files.rb
|
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/
|
449
|
-
- lib/puppet/
|
450
|
-
- lib/puppet/
|
451
|
-
- lib/puppet/
|
452
|
-
- lib/puppet/
|
453
|
-
- lib/puppet/
|
454
|
-
- lib/puppet/
|
455
|
-
- lib/puppet/
|
456
|
-
- lib/puppet/
|
457
|
-
- lib/puppet/
|
458
|
-
- lib/puppet/
|
459
|
-
- lib/puppet/
|
460
|
-
- lib/puppet/
|
461
|
-
- lib/puppet/
|
462
|
-
- lib/puppet/
|
463
|
-
- lib/puppet/
|
464
|
-
- lib/puppet/
|
465
|
-
- lib/puppet/
|
466
|
-
- lib/puppet/
|
467
|
-
- lib/puppet/
|
468
|
-
- lib/puppet/
|
469
|
-
- lib/puppet/
|
470
|
-
- lib/puppet/
|
471
|
-
- lib/puppet/
|
472
|
-
- lib/puppet/
|
244
|
+
- lib/puppet/parser/scope.rb
|
245
|
+
- lib/puppet/parser/parser.rb
|
246
|
+
- lib/puppet/configurer.rb
|
247
|
+
- lib/puppet/resource.rb
|
248
|
+
- lib/puppet/transportable.rb
|
249
|
+
- lib/puppet/external/pson/common.rb
|
250
|
+
- lib/puppet/external/pson/pure/generator.rb
|
251
|
+
- lib/puppet/external/pson/pure/parser.rb
|
252
|
+
- lib/puppet/external/pson/pure.rb
|
253
|
+
- lib/puppet/external/pson/version.rb
|
254
|
+
- lib/puppet/external/nagios/makefile
|
255
|
+
- lib/puppet/external/nagios/base.rb
|
256
|
+
- lib/puppet/external/nagios/grammar.ry
|
257
|
+
- lib/puppet/external/nagios/parser.rb
|
258
|
+
- lib/puppet/external/nagios.rb
|
259
|
+
- lib/puppet/external/lock.rb
|
260
|
+
- lib/puppet/external/dot.rb
|
261
|
+
- lib/puppet/external/base64.rb
|
262
|
+
- lib/puppet/external/event-loop/better-definers.rb
|
263
|
+
- lib/puppet/external/event-loop/signal-system.rb
|
264
|
+
- lib/puppet/external/event-loop/event-loop.rb
|
265
|
+
- lib/puppet/external/event-loop.rb
|
266
|
+
- lib/puppet/agent.rb
|
267
|
+
- lib/puppet/daemon.rb
|
268
|
+
- lib/puppet/indirector.rb
|
269
|
+
- lib/puppet/reports/tagmail.rb
|
270
|
+
- lib/puppet/reports/store.rb
|
271
|
+
- lib/puppet/reports/rrdgraph.rb
|
272
|
+
- lib/puppet/reports/log.rb
|
273
|
+
- lib/puppet/node/environment.rb
|
274
|
+
- lib/puppet/node/facts.rb
|
275
|
+
- lib/puppet/provider/augeas/augeas.rb
|
276
|
+
- lib/puppet/provider/confine/variable.rb
|
277
|
+
- lib/puppet/provider/confine/true.rb
|
278
|
+
- lib/puppet/provider/confine/false.rb
|
279
|
+
- lib/puppet/provider/confine/feature.rb
|
280
|
+
- lib/puppet/provider/confine/exists.rb
|
281
|
+
- lib/puppet/provider/package.rb
|
282
|
+
- lib/puppet/provider/nameservice/directoryservice.rb
|
283
|
+
- lib/puppet/provider/nameservice/pw.rb
|
284
|
+
- lib/puppet/provider/nameservice/objectadd.rb
|
285
|
+
- lib/puppet/provider/mount.rb
|
286
|
+
- lib/puppet/provider/selboolean/getsetsebool.rb
|
287
|
+
- lib/puppet/provider/zfs/solaris.rb
|
288
|
+
- lib/puppet/provider/selmodule/semodule.rb
|
289
|
+
- lib/puppet/provider/ssh_authorized_key/parsed.rb
|
290
|
+
- lib/puppet/provider/mailalias/aliases.rb
|
291
|
+
- lib/puppet/provider/package/pkgdmg.rb
|
292
|
+
- lib/puppet/provider/package/apt.rb
|
293
|
+
- lib/puppet/provider/package/rpm.rb
|
294
|
+
- lib/puppet/provider/package/appdmg.rb
|
295
|
+
- lib/puppet/provider/package/dpkg.rb
|
296
|
+
- lib/puppet/provider/package/gem.rb
|
297
|
+
- lib/puppet/provider/package/yum.rb
|
298
|
+
- lib/puppet/provider/package/sun.rb
|
299
|
+
- lib/puppet/provider/package/fink.rb
|
300
|
+
- lib/puppet/provider/package/hpux.rb
|
301
|
+
- lib/puppet/provider/package/portage.rb
|
302
|
+
- lib/puppet/provider/package/freebsd.rb
|
303
|
+
- lib/puppet/provider/package/apple.rb
|
304
|
+
- lib/puppet/provider/package/up2date.rb
|
305
|
+
- lib/puppet/provider/package/blastwave.rb
|
306
|
+
- lib/puppet/provider/package/ports.rb
|
307
|
+
- lib/puppet/provider/package/sunfreeware.rb
|
308
|
+
- lib/puppet/provider/package/aptrpm.rb
|
309
|
+
- lib/puppet/provider/package/openbsd.rb
|
310
|
+
- lib/puppet/provider/package/aptitude.rb
|
311
|
+
- lib/puppet/provider/package/darwinport.rb
|
312
|
+
- lib/puppet/provider/package/urpmi.rb
|
313
|
+
- lib/puppet/provider/package/yumhelper.py
|
314
|
+
- lib/puppet/provider/package/rug.rb
|
315
|
+
- lib/puppet/provider/host/parsed.rb
|
316
|
+
- lib/puppet/provider/sshkey/parsed.rb
|
317
|
+
- lib/puppet/provider/group/directoryservice.rb
|
318
|
+
- lib/puppet/provider/group/pw.rb
|
319
|
+
- lib/puppet/provider/group/groupadd.rb
|
320
|
+
- lib/puppet/provider/group/ldap.rb
|
321
|
+
- lib/puppet/provider/confiner.rb
|
322
|
+
- lib/puppet/provider/zpool/solaris.rb
|
323
|
+
- lib/puppet/provider/service/gentoo.rb
|
324
|
+
- lib/puppet/provider/service/base.rb
|
325
|
+
- lib/puppet/provider/service/smf.rb
|
326
|
+
- lib/puppet/provider/service/daemontools.rb
|
327
|
+
- lib/puppet/provider/service/freebsd.rb
|
328
|
+
- lib/puppet/provider/service/launchd.rb
|
329
|
+
- lib/puppet/provider/service/redhat.rb
|
330
|
+
- lib/puppet/provider/service/init.rb
|
331
|
+
- lib/puppet/provider/service/runit.rb
|
332
|
+
- lib/puppet/provider/service/debian.rb
|
333
|
+
- lib/puppet/provider/cron/crontab.rb
|
334
|
+
- lib/puppet/provider/zone/solaris.rb
|
335
|
+
- lib/puppet/provider/nameservice.rb
|
336
|
+
- lib/puppet/provider/computer/computer.rb
|
337
|
+
- lib/puppet/provider/user/directoryservice.rb
|
338
|
+
- lib/puppet/provider/user/pw.rb
|
339
|
+
- lib/puppet/provider/user/hpux.rb
|
340
|
+
- lib/puppet/provider/user/user_role_add.rb
|
341
|
+
- lib/puppet/provider/user/useradd.rb
|
342
|
+
- lib/puppet/provider/user/ldap.rb
|
343
|
+
- lib/puppet/provider/parsedfile.rb
|
344
|
+
- lib/puppet/provider/port/parsed.rb
|
345
|
+
- lib/puppet/provider/mount/parsed.rb
|
346
|
+
- lib/puppet/provider/confine_collection.rb
|
347
|
+
- lib/puppet/provider/macauthorization/macauthorization.rb
|
348
|
+
- lib/puppet/provider/confine.rb
|
349
|
+
- lib/puppet/provider/naginator.rb
|
350
|
+
- lib/puppet/provider/maillist/mailman.rb
|
351
|
+
- lib/puppet/provider/mcx/mcxcontent.rb
|
352
|
+
- lib/puppet/provider/ldap.rb
|
353
|
+
- lib/puppet/type.rb
|
354
|
+
- lib/puppet/sslcertificates.rb
|
355
|
+
- lib/puppet/agent/locker.rb
|
356
|
+
- lib/puppet/agent/runner.rb
|
357
|
+
- lib/puppet/property.rb
|
358
|
+
- lib/puppet/file_collection.rb
|
359
|
+
- lib/puppet/error.rb
|
360
|
+
- lib/puppet/node.rb
|
361
|
+
- lib/puppet/file_serving.rb
|
362
|
+
- lib/puppet/reports.rb
|
363
|
+
- lib/puppet/module.rb
|
364
|
+
- lib/puppet/sslcertificates/support.rb
|
365
|
+
- lib/puppet/sslcertificates/inventory.rb
|
366
|
+
- lib/puppet/sslcertificates/ca.rb
|
367
|
+
- lib/puppet/sslcertificates/monkey_patch.rb
|
368
|
+
- lib/puppet/sslcertificates/certificate.rb
|
369
|
+
- lib/puppet/transaction/change.rb
|
370
|
+
- lib/puppet/transaction/report.rb
|
371
|
+
- lib/puppet/transaction/event.rb
|
372
|
+
- lib/puppet/util.rb
|
373
|
+
- lib/puppet/application/puppetrun.rb
|
374
|
+
- lib/puppet/application/puppetqd.rb
|
375
|
+
- lib/puppet/application/pi.rb
|
376
|
+
- lib/puppet/application/filebucket.rb
|
377
|
+
- lib/puppet/application/puppet.rb
|
378
|
+
- lib/puppet/application/puppetca.rb
|
379
|
+
- lib/puppet/application/puppetdoc.rb
|
380
|
+
- lib/puppet/application/puppetmasterd.rb
|
381
|
+
- lib/puppet/application/ralsh.rb
|
382
|
+
- lib/puppet/application/puppetd.rb
|
383
|
+
- lib/puppet/defaults.rb
|
384
|
+
- lib/puppet/relationship.rb
|
385
|
+
- lib/puppet/file_collection/lookup.rb
|
386
|
+
- lib/puppet/indirector/report/rest.rb
|
387
|
+
- lib/puppet/indirector/report/processor.rb
|
388
|
+
- lib/puppet/indirector/yaml.rb
|
389
|
+
- lib/puppet/indirector/key/ca.rb
|
390
|
+
- lib/puppet/indirector/key/file.rb
|
391
|
+
- lib/puppet/indirector/certificate_request/rest.rb
|
392
|
+
- lib/puppet/indirector/certificate_request/ca.rb
|
393
|
+
- lib/puppet/indirector/certificate_request/file.rb
|
394
|
+
- lib/puppet/indirector/rest.rb
|
473
395
|
- lib/puppet/indirector/catalog/yaml.rb
|
396
|
+
- lib/puppet/indirector/catalog/rest.rb
|
474
397
|
- lib/puppet/indirector/catalog/compiler.rb
|
475
398
|
- lib/puppet/indirector/catalog/queue.rb
|
476
399
|
- lib/puppet/indirector/catalog/active_record.rb
|
477
|
-
- lib/puppet/indirector/
|
400
|
+
- lib/puppet/indirector/file_metadata/rest.rb
|
401
|
+
- lib/puppet/indirector/file_metadata/file_server.rb
|
402
|
+
- lib/puppet/indirector/file_metadata/file.rb
|
403
|
+
- lib/puppet/indirector/file_server.rb
|
404
|
+
- lib/puppet/indirector/exec.rb
|
478
405
|
- lib/puppet/indirector/file_metadata.rb
|
479
|
-
- lib/puppet/indirector/
|
480
|
-
- lib/puppet/indirector/
|
481
|
-
- lib/puppet/indirector/
|
482
|
-
- lib/puppet/indirector/
|
483
|
-
- lib/puppet/indirector/
|
484
|
-
- lib/puppet/indirector/
|
485
|
-
- lib/puppet/indirector/plain.rb
|
486
|
-
- lib/puppet/indirector/facts/facter.rb
|
406
|
+
- lib/puppet/indirector/ssl_file.rb
|
407
|
+
- lib/puppet/indirector/runner/rest.rb
|
408
|
+
- lib/puppet/indirector/queue.rb
|
409
|
+
- lib/puppet/indirector/file_content/rest.rb
|
410
|
+
- lib/puppet/indirector/file_content/file_server.rb
|
411
|
+
- lib/puppet/indirector/file_content/file.rb
|
487
412
|
- lib/puppet/indirector/facts/yaml.rb
|
413
|
+
- lib/puppet/indirector/facts/rest.rb
|
488
414
|
- lib/puppet/indirector/facts/active_record.rb
|
489
415
|
- lib/puppet/indirector/facts/memory.rb
|
490
|
-
- lib/puppet/indirector/facts/
|
491
|
-
- lib/puppet/indirector/
|
492
|
-
- lib/puppet/indirector/
|
493
|
-
- lib/puppet/indirector/
|
494
|
-
- lib/puppet/indirector/
|
495
|
-
- lib/puppet/indirector/
|
496
|
-
- lib/puppet/indirector/
|
497
|
-
- lib/puppet/indirector/
|
416
|
+
- lib/puppet/indirector/facts/facter.rb
|
417
|
+
- lib/puppet/indirector/node/yaml.rb
|
418
|
+
- lib/puppet/indirector/node/rest.rb
|
419
|
+
- lib/puppet/indirector/node/exec.rb
|
420
|
+
- lib/puppet/indirector/node/active_record.rb
|
421
|
+
- lib/puppet/indirector/node/plain.rb
|
422
|
+
- lib/puppet/indirector/node/memory.rb
|
423
|
+
- lib/puppet/indirector/node/ldap.rb
|
498
424
|
- lib/puppet/indirector/envelope.rb
|
499
|
-
- lib/puppet/
|
500
|
-
- lib/puppet/
|
501
|
-
- lib/puppet/
|
502
|
-
- lib/puppet/
|
503
|
-
- lib/puppet/
|
504
|
-
- lib/puppet/
|
505
|
-
- lib/puppet/
|
506
|
-
- lib/puppet/
|
507
|
-
- lib/puppet/
|
508
|
-
- lib/puppet/
|
509
|
-
- lib/puppet/
|
510
|
-
- lib/puppet/
|
511
|
-
- lib/puppet/
|
512
|
-
- lib/puppet/
|
513
|
-
- lib/puppet/
|
514
|
-
- lib/puppet/
|
515
|
-
- lib/puppet/
|
516
|
-
- lib/puppet/
|
517
|
-
- lib/puppet/
|
518
|
-
- lib/puppet/
|
519
|
-
- lib/puppet/
|
520
|
-
- lib/puppet/
|
521
|
-
- lib/puppet/
|
522
|
-
- lib/puppet/
|
523
|
-
- lib/puppet/
|
524
|
-
- lib/puppet/
|
525
|
-
- lib/puppet/
|
526
|
-
- lib/puppet/
|
527
|
-
- lib/puppet/
|
528
|
-
- lib/puppet/
|
529
|
-
- lib/puppet/
|
530
|
-
- lib/puppet/
|
531
|
-
- lib/puppet/
|
532
|
-
- lib/puppet/
|
533
|
-
- lib/puppet/
|
534
|
-
- lib/puppet/
|
535
|
-
- lib/puppet/
|
536
|
-
- lib/puppet/
|
537
|
-
- lib/puppet/
|
538
|
-
- lib/puppet/
|
539
|
-
- lib/puppet/util.rb
|
540
|
-
- lib/puppet/rails/
|
541
|
-
- lib/puppet/
|
542
|
-
- lib/puppet/
|
543
|
-
- lib/puppet/
|
544
|
-
- lib/puppet/
|
545
|
-
- lib/puppet/
|
546
|
-
- lib/puppet/
|
547
|
-
- lib/puppet/
|
548
|
-
- lib/puppet/
|
549
|
-
- lib/puppet/
|
550
|
-
- lib/puppet/
|
551
|
-
- lib/puppet/
|
552
|
-
- lib/puppet/
|
553
|
-
- lib/puppet/
|
554
|
-
- lib/puppet/
|
555
|
-
- lib/puppet.rb
|
556
|
-
-
|
557
|
-
-
|
558
|
-
-
|
559
|
-
-
|
560
|
-
-
|
561
|
-
-
|
562
|
-
-
|
563
|
-
-
|
564
|
-
-
|
565
|
-
-
|
566
|
-
-
|
567
|
-
-
|
568
|
-
-
|
569
|
-
-
|
570
|
-
-
|
571
|
-
-
|
572
|
-
-
|
573
|
-
-
|
574
|
-
-
|
575
|
-
-
|
425
|
+
- lib/puppet/indirector/certificate_revocation_list/rest.rb
|
426
|
+
- lib/puppet/indirector/certificate_revocation_list/ca.rb
|
427
|
+
- lib/puppet/indirector/certificate_revocation_list/file.rb
|
428
|
+
- lib/puppet/indirector/code.rb
|
429
|
+
- lib/puppet/indirector/active_record.rb
|
430
|
+
- lib/puppet/indirector/plain.rb
|
431
|
+
- lib/puppet/indirector/file_content.rb
|
432
|
+
- lib/puppet/indirector/file.rb
|
433
|
+
- lib/puppet/indirector/memory.rb
|
434
|
+
- lib/puppet/indirector/direct_file_server.rb
|
435
|
+
- lib/puppet/indirector/indirection.rb
|
436
|
+
- lib/puppet/indirector/ldap.rb
|
437
|
+
- lib/puppet/indirector/certificate/rest.rb
|
438
|
+
- lib/puppet/indirector/certificate/ca.rb
|
439
|
+
- lib/puppet/indirector/certificate/file.rb
|
440
|
+
- lib/puppet/indirector/checksum/file.rb
|
441
|
+
- lib/puppet/indirector/terminus.rb
|
442
|
+
- lib/puppet/indirector/request.rb
|
443
|
+
- lib/puppet/configurer/plugin_handler.rb
|
444
|
+
- lib/puppet/configurer/downloader.rb
|
445
|
+
- lib/puppet/configurer/fact_handler.rb
|
446
|
+
- lib/puppet/property/keyvalue.rb
|
447
|
+
- lib/puppet/property/list.rb
|
448
|
+
- lib/puppet/property/ordered_list.rb
|
449
|
+
- lib/puppet/parameter.rb
|
450
|
+
- lib/puppet/util/pidlock.rb
|
451
|
+
- lib/puppet/util/suidmanager.rb
|
452
|
+
- lib/puppet/util/inifile.rb
|
453
|
+
- lib/puppet/util/config_store.rb
|
454
|
+
- lib/puppet/util/subclass_loader.rb
|
455
|
+
- lib/puppet/util/cacher.rb
|
456
|
+
- lib/puppet/util/tagging.rb
|
457
|
+
- lib/puppet/util/package.rb
|
458
|
+
- lib/puppet/util/diff.rb
|
459
|
+
- lib/puppet/util/selinux.rb
|
460
|
+
- lib/puppet/util/provider_features.rb
|
461
|
+
- lib/puppet/util/checksums.rb
|
462
|
+
- lib/puppet/util/instance_loader.rb
|
463
|
+
- lib/puppet/util/filetype.rb
|
464
|
+
- lib/puppet/util/rails/collection_merger.rb
|
465
|
+
- lib/puppet/util/rails/reference_serializer.rb
|
466
|
+
- lib/puppet/util/rails/cache_accumulator.rb
|
467
|
+
- lib/puppet/util/posix.rb
|
468
|
+
- lib/puppet/util/metaid.rb
|
469
|
+
- lib/puppet/util/resource_template.rb
|
470
|
+
- lib/puppet/util/metric.rb
|
471
|
+
- lib/puppet/util/nagios_maker.rb
|
472
|
+
- lib/puppet/util/zaml.rb
|
473
|
+
- lib/puppet/util/pson.rb
|
474
|
+
- lib/puppet/util/autoload/file_cache.rb
|
475
|
+
- lib/puppet/util/classgen.rb
|
476
|
+
- lib/puppet/util/monkey_patches.rb
|
477
|
+
- lib/puppet/util/settings.rb
|
478
|
+
- lib/puppet/util/execution.rb
|
479
|
+
- lib/puppet/util/user_attr.rb
|
480
|
+
- lib/puppet/util/settings/file_setting.rb
|
481
|
+
- lib/puppet/util/settings/setting.rb
|
482
|
+
- lib/puppet/util/settings/boolean_setting.rb
|
483
|
+
- lib/puppet/util/rdoc.rb
|
484
|
+
- lib/puppet/util/backups.rb
|
485
|
+
- lib/puppet/util/reference.rb
|
486
|
+
- lib/puppet/util/errors.rb
|
487
|
+
- lib/puppet/util/queue.rb
|
488
|
+
- lib/puppet/util/rdoc/generators/puppet_generator.rb
|
489
|
+
- lib/puppet/util/rdoc/generators/template/puppet/puppet.rb
|
490
|
+
- lib/puppet/util/rdoc/code_objects.rb
|
491
|
+
- lib/puppet/util/rdoc/parser.rb
|
492
|
+
- lib/puppet/util/storage.rb
|
493
|
+
- lib/puppet/util/feature.rb
|
494
|
+
- lib/puppet/util/autoload.rb
|
495
|
+
- lib/puppet/util/constant_inflector.rb
|
496
|
+
- lib/puppet/util/ldap/manager.rb
|
497
|
+
- lib/puppet/util/ldap/generator.rb
|
498
|
+
- lib/puppet/util/ldap/connection.rb
|
499
|
+
- lib/puppet/util/queue/stomp.rb
|
500
|
+
- lib/puppet/util/methodhelper.rb
|
501
|
+
- lib/puppet/util/warnings.rb
|
502
|
+
- lib/puppet/util/graph.rb
|
503
|
+
- lib/puppet/util/logging.rb
|
504
|
+
- lib/puppet/util/loadedfile.rb
|
505
|
+
- lib/puppet/util/log_paths.rb
|
506
|
+
- lib/puppet/util/file_locking.rb
|
507
|
+
- lib/puppet/util/ldap.rb
|
508
|
+
- lib/puppet/util/log.rb
|
509
|
+
- lib/puppet/util/fileparsing.rb
|
510
|
+
- lib/puppet/util/docs.rb
|
511
|
+
- lib/puppet/type/mcx.rb
|
512
|
+
- lib/puppet/type/nagios_host.rb
|
513
|
+
- lib/puppet/type/augeas.rb
|
514
|
+
- lib/puppet/type/package.rb
|
515
|
+
- lib/puppet/type/file/checksum.rb
|
516
|
+
- lib/puppet/type/file/group.rb
|
517
|
+
- lib/puppet/type/file/ensure.rb
|
518
|
+
- lib/puppet/type/file/selcontext.rb
|
519
|
+
- lib/puppet/type/file/type.rb
|
520
|
+
- lib/puppet/type/file/content.rb
|
521
|
+
- lib/puppet/type/file/owner.rb
|
522
|
+
- lib/puppet/type/file/target.rb
|
523
|
+
- lib/puppet/type/file/mode.rb
|
524
|
+
- lib/puppet/type/file/source.rb
|
525
|
+
- lib/puppet/type/computer.rb
|
526
|
+
- lib/puppet/type/group.rb
|
527
|
+
- lib/puppet/type/mount.rb
|
528
|
+
- lib/puppet/type/nagios_servicegroup.rb
|
529
|
+
- lib/puppet/type/k5login.rb
|
530
|
+
- lib/puppet/type/nagios_service.rb
|
531
|
+
- lib/puppet/type/nagios_contactgroup.rb
|
532
|
+
- lib/puppet/type/nagios_hostgroup.rb
|
533
|
+
- lib/puppet/type/nagios_hostextinfo.rb
|
534
|
+
- lib/puppet/type/nagios_serviceescalation.rb
|
535
|
+
- lib/puppet/type/tidy.rb
|
536
|
+
- lib/puppet/type/macauthorization.rb
|
537
|
+
- lib/puppet/type/nagios_hostdependency.rb
|
538
|
+
- lib/puppet/type/filebucket.rb
|
539
|
+
- lib/puppet/type/cron.rb
|
540
|
+
- lib/puppet/type/mailalias.rb
|
541
|
+
- lib/puppet/type/zfs.rb
|
542
|
+
- lib/puppet/type/exec.rb
|
543
|
+
- lib/puppet/type/resources.rb
|
544
|
+
- lib/puppet/type/sshkey.rb
|
545
|
+
- lib/puppet/type/service.rb
|
546
|
+
- lib/puppet/type/nagios_hostescalation.rb
|
547
|
+
- lib/puppet/type/zone.rb
|
548
|
+
- lib/puppet/type/notify.rb
|
549
|
+
- lib/puppet/type/zpool.rb
|
550
|
+
- lib/puppet/type/nagios_command.rb
|
551
|
+
- lib/puppet/type/maillist.rb
|
552
|
+
- lib/puppet/type/component.rb
|
553
|
+
- lib/puppet/type/nagios_contact.rb
|
554
|
+
- lib/puppet/type/schedule.rb
|
555
|
+
- lib/puppet/type/host.rb
|
556
|
+
- lib/puppet/type/port.rb
|
557
|
+
- lib/puppet/type/nagios_timeperiod.rb
|
558
|
+
- lib/puppet/type/file.rb
|
559
|
+
- lib/puppet/type/nagios_servicedependency.rb
|
560
|
+
- lib/puppet/type/ssh_authorized_key.rb
|
561
|
+
- lib/puppet/type/yumrepo.rb
|
562
|
+
- lib/puppet/type/nagios_serviceextinfo.rb
|
563
|
+
- lib/puppet/type/user.rb
|
564
|
+
- lib/puppet/type/selmodule.rb
|
565
|
+
- lib/puppet/type/selboolean.rb
|
576
566
|
- conf/solaris/pkginfo
|
577
567
|
- conf/solaris/smf/svc-puppetmasterd
|
578
|
-
- conf/solaris/smf/svc-puppetd
|
579
568
|
- conf/solaris/smf/puppetmasterd.xml
|
569
|
+
- conf/solaris/smf/svc-puppetd
|
580
570
|
- conf/solaris/smf/puppetd.xml
|
581
|
-
- conf/freebsd/puppetd
|
582
|
-
- conf/freebsd/puppetmasterd
|
583
|
-
- conf/epm.list
|
584
571
|
- conf/auth.conf
|
572
|
+
- conf/namespaceauth.conf
|
573
|
+
- conf/osx/preflight
|
585
574
|
- conf/osx/createpackage.sh
|
586
575
|
- conf/osx/PackageInfo.plist
|
587
|
-
- conf/
|
588
|
-
-
|
576
|
+
- conf/freebsd/puppetd
|
577
|
+
- conf/freebsd/puppetmasterd
|
578
|
+
- conf/epm.list
|
579
|
+
- conf/suse/client.init
|
580
|
+
- conf/suse/puppet.suse.patch
|
581
|
+
- conf/suse/puppet.spec
|
582
|
+
- conf/suse/server.init
|
583
|
+
- conf/puppet-queue.conf
|
584
|
+
- conf/redhat/client.init
|
585
|
+
- conf/redhat/fileserver.conf
|
586
|
+
- conf/redhat/server.sysconfig
|
587
|
+
- conf/redhat/client.sysconfig
|
588
|
+
- conf/redhat/rundir-perms.patch
|
589
|
+
- conf/redhat/puppet.spec
|
590
|
+
- conf/redhat/server.init
|
591
|
+
- conf/redhat/puppet.conf
|
592
|
+
- conf/redhat/logrotate
|
593
|
+
- conf/gentoo/conf.d/puppetmaster
|
594
|
+
- conf/gentoo/conf.d/puppet
|
595
|
+
- conf/gentoo/init.d/puppetmaster
|
596
|
+
- conf/gentoo/init.d/puppet
|
597
|
+
- conf/gentoo/puppet/fileserver.conf
|
598
|
+
- conf/gentoo/puppet/puppet.conf
|
599
|
+
- man/man5/puppet.conf.5
|
589
600
|
- man/man8/filebucket.8
|
590
|
-
- man/man8/
|
591
|
-
- man/man8/
|
601
|
+
- man/man8/ralsh.8
|
602
|
+
- man/man8/puppetrun.8
|
603
|
+
- man/man8/puppetca.8
|
592
604
|
- man/man8/puppetmasterd.8
|
605
|
+
- man/man8/puppetdoc.8
|
593
606
|
- man/man8/puppetd.8
|
594
|
-
- man/man8/puppetqd.8
|
595
|
-
- man/man8/puppetca.8
|
596
|
-
- man/man8/ralsh.8
|
597
607
|
- man/man8/pi.8
|
598
|
-
- man/man8/
|
599
|
-
-
|
600
|
-
- examples/
|
601
|
-
- examples/modules/sample-module/lib/puppet/parser/functions/hostname_to_dn.rb
|
602
|
-
- examples/modules/sample-module/README.txt
|
603
|
-
- examples/modules/sample-module/templates/sample.erb
|
604
|
-
- examples/modules/sample-module.pp
|
605
|
-
- examples/relationships
|
606
|
-
- examples/functions
|
607
|
-
- examples/one
|
608
|
-
- examples/mcx_dock_absent.pp
|
609
|
-
- examples/fileparsing
|
610
|
-
- examples/mcx_notexists_absent.pp
|
611
|
-
- examples/nodes
|
612
|
-
- examples/assignments
|
613
|
-
- examples/mac_dscl.pp
|
614
|
-
- examples/filerecursion
|
615
|
-
- examples/head
|
616
|
-
- examples/mcx_dock_default.pp
|
608
|
+
- man/man8/puppetqd.8
|
609
|
+
- man/man8/puppet.8
|
610
|
+
- examples/file.bl
|
617
611
|
- examples/components
|
618
|
-
- examples/mcx_nogroup.pp
|
619
|
-
- examples/mac_automount.pp
|
620
|
-
- examples/importing
|
621
|
-
- examples/selectors
|
622
|
-
- examples/svncommit
|
623
612
|
- examples/execs
|
624
|
-
- examples/
|
613
|
+
- examples/svncommit
|
614
|
+
- examples/etc/otherfile
|
615
|
+
- examples/etc/init.d/sleeper
|
625
616
|
- examples/etc/puppet/fileserver.conf
|
617
|
+
- examples/etc/puppet/namespaceauth.conf
|
626
618
|
- examples/etc/puppet/puppet.conf
|
627
619
|
- examples/etc/puppet/tagmail.conf
|
628
|
-
- examples/
|
629
|
-
- examples/
|
620
|
+
- examples/importing
|
621
|
+
- examples/filerecursion
|
630
622
|
- examples/simpletests
|
623
|
+
- examples/mac_automount.pp
|
624
|
+
- examples/relationships
|
631
625
|
- examples/mac_dscl_revert.pp
|
626
|
+
- examples/one
|
627
|
+
- examples/mcx_dock_absent.pp
|
628
|
+
- examples/head
|
629
|
+
- examples/mac_dscl.pp
|
632
630
|
- examples/mcx_dock_full.pp
|
631
|
+
- examples/mcx_notexists_absent.pp
|
633
632
|
- examples/allatonce
|
633
|
+
- examples/nodes
|
634
634
|
- examples/filedefaults
|
635
|
-
- examples/
|
636
|
-
- examples/
|
635
|
+
- examples/mcx_nogroup.pp
|
636
|
+
- examples/selectors
|
637
|
+
- examples/functions
|
637
638
|
- examples/mac_pkgdmg.pp
|
639
|
+
- examples/assignments
|
640
|
+
- examples/mcx_dock_invalid.pp
|
641
|
+
- examples/modules/sample-module/templates/sample.erb
|
642
|
+
- examples/modules/sample-module/README.txt
|
643
|
+
- examples/modules/sample-module/lib/puppet/parser/functions/hostname_to_dn.rb
|
644
|
+
- examples/modules/sample-module/manifests/init.pp
|
645
|
+
- examples/modules/sample-module.pp
|
646
|
+
- examples/mcx_dock_default.pp
|
647
|
+
- examples/fileparsing
|
648
|
+
- examples/groups
|
649
|
+
- ext/logcheck/puppet
|
638
650
|
- ext/emacs/puppet-mode-init.el
|
639
651
|
- ext/emacs/puppet-mode.el
|
640
|
-
- ext/
|
652
|
+
- ext/dbfix.sql
|
653
|
+
- ext/puppetstoredconfigclean.rb
|
654
|
+
- ext/autotest/readme.rst
|
655
|
+
- ext/autotest/Rakefile
|
656
|
+
- ext/autotest/config
|
641
657
|
- ext/nagios/check_puppet.rb
|
642
|
-
- ext/
|
643
|
-
- ext/
|
644
|
-
- ext/
|
645
|
-
- ext/
|
646
|
-
- ext/regexp_nodes/parameters/environment/qa
|
658
|
+
- ext/nagios/naggen
|
659
|
+
- ext/puppet-test
|
660
|
+
- ext/puppetlisten/puppetrun.rb
|
661
|
+
- ext/puppetlisten/puppetlisten.rb
|
647
662
|
- ext/regexp_nodes/classes/webservers
|
648
663
|
- ext/regexp_nodes/classes/databases
|
664
|
+
- ext/regexp_nodes/regexp_nodes.rb
|
665
|
+
- ext/regexp_nodes/parameters/environment/qa
|
666
|
+
- ext/regexp_nodes/parameters/environment/prod
|
649
667
|
- ext/ldap/puppet.schema
|
650
|
-
- ext/
|
668
|
+
- ext/rack/files/apache2.conf
|
669
|
+
- ext/rack/files/config.ru
|
651
670
|
- ext/rack/manifest.pp
|
652
671
|
- ext/rack/README
|
653
|
-
- ext/rack/files/config.ru
|
654
|
-
- ext/rack/files/apache2.conf
|
655
|
-
- ext/puppetlisten/puppetrun.rb
|
656
|
-
- ext/puppetlisten/puppetlisten.rb
|
657
|
-
- ext/vim/README
|
658
|
-
- ext/vim/syntax/puppet.vim
|
659
672
|
- ext/vim/ftdetect/puppet.vim
|
673
|
+
- ext/vim/syntax/puppet.vim
|
674
|
+
- ext/vim/README
|
660
675
|
- ext/extlookup.rb
|
661
|
-
- ext/
|
662
|
-
-
|
663
|
-
- ext/autotest/readme.rst
|
664
|
-
- ext/autotest/config
|
665
|
-
- ext/puppet-test
|
666
|
-
- tasks/rake/git_workflow.rake
|
667
|
-
- tasks/rake/dailybuild.rake
|
668
|
-
- tasks/rake/tracdocs.rake
|
669
|
-
- tasks/rake/ci.rake
|
670
|
-
- tasks/rake/changelog.rake
|
676
|
+
- ext/puppetlast
|
677
|
+
- tasks/rake/sign.rake
|
671
678
|
- tasks/rake/testbranch.rake
|
679
|
+
- tasks/rake/dailybuild.rake
|
672
680
|
- tasks/rake/metrics.rake
|
681
|
+
- tasks/rake/changelog.rake
|
682
|
+
- tasks/rake/ci.rake
|
673
683
|
- tasks/rake/gem.rake
|
674
|
-
- tasks/rake/
|
675
|
-
-
|
676
|
-
-
|
677
|
-
- test/certmgr/ca.rb
|
678
|
-
- test/certmgr/certmgr.rb
|
679
|
-
- test/certmgr/inventory.rb
|
680
|
-
- test/puppet/tc_suidmanager.rb
|
681
|
-
- test/puppet/defaults.rb
|
682
|
-
- test/puppet/errortest.rb
|
683
|
-
- test/util/package.rb
|
684
|
-
- test/util/settings.rb
|
685
|
-
- test/util/fileparsing.rb
|
686
|
-
- test/util/utiltest.rb
|
687
|
-
- test/util/classgen.rb
|
688
|
-
- test/util/inifile.rb
|
689
|
-
- test/util/execution.rb
|
690
|
-
- test/util/log.rb
|
691
|
-
- test/util/metrics.rb
|
692
|
-
- test/util/pidlock.rb
|
693
|
-
- test/util/instance_loader.rb
|
694
|
-
- test/util/storage.rb
|
695
|
-
- test/util/subclass_loader.rb
|
696
|
-
- test/language/ast.rb
|
697
|
-
- test/language/ast/casestatement.rb
|
698
|
-
- test/language/ast/resource_reference.rb
|
699
|
-
- test/language/ast/selector.rb
|
700
|
-
- test/language/ast/variable.rb
|
701
|
-
- test/language/ast/resource.rb
|
702
|
-
- test/language/snippets.rb
|
703
|
-
- test/language/scope.rb
|
704
|
-
- test/language/resource.rb
|
705
|
-
- test/language/parser.rb
|
706
|
-
- test/language/transportable.rb
|
707
|
-
- test/language/functions.rb
|
708
|
-
- test/network/client_request.rb
|
709
|
-
- test/network/client/ca.rb
|
710
|
-
- test/network/client/dipper.rb
|
711
|
-
- test/network/client/resource.rb
|
712
|
-
- test/network/authconfig.rb
|
713
|
-
- test/network/authstore.rb
|
714
|
-
- test/network/server/webrick.rb
|
715
|
-
- test/network/server/mongrel_test.rb
|
716
|
-
- test/network/rights.rb
|
717
|
-
- test/network/xmlrpc/processor.rb
|
718
|
-
- test/network/xmlrpc/server.rb
|
719
|
-
- test/network/xmlrpc/client.rb
|
720
|
-
- test/network/xmlrpc/webrick_servlet.rb
|
721
|
-
- test/network/handler/runner.rb
|
722
|
-
- test/network/handler/ca.rb
|
723
|
-
- test/network/handler/bucket.rb
|
724
|
-
- test/network/handler/report.rb
|
725
|
-
- test/network/handler/fileserver.rb
|
726
|
-
- test/network/handler/master.rb
|
727
|
-
- test/network/handler/resource.rb
|
728
|
-
- test/network/authorization.rb
|
729
|
-
- test/README
|
730
|
-
- test/ral/providers/package.rb
|
731
|
-
- test/ral/providers/sshkey/parsed.rb
|
732
|
-
- test/ral/providers/user/useradd.rb
|
733
|
-
- test/ral/providers/user.rb
|
734
|
-
- test/ral/providers/port/parsed.rb
|
735
|
-
- test/ral/providers/cron/crontab.rb
|
736
|
-
- test/ral/providers/service/debian.rb
|
737
|
-
- test/ral/providers/service/base.rb
|
738
|
-
- test/ral/providers/provider.rb
|
739
|
-
- test/ral/providers/host/parsed.rb
|
740
|
-
- test/ral/providers/mailalias/aliases.rb
|
741
|
-
- test/ral/providers/group.rb
|
742
|
-
- test/ral/providers/parsedfile.rb
|
743
|
-
- test/ral/providers/nameservice.rb
|
744
|
-
- test/ral/providers/package/aptitude.rb
|
745
|
-
- test/ral/providers/package/aptrpm.rb
|
746
|
-
- test/ral/type/file/target.rb
|
747
|
-
- test/ral/type/yumrepo.rb
|
748
|
-
- test/ral/type/resources.rb
|
749
|
-
- test/ral/type/file.rb
|
750
|
-
- test/ral/type/user.rb
|
751
|
-
- test/ral/type/exec.rb
|
752
|
-
- test/ral/type/service.rb
|
753
|
-
- test/ral/type/zone.rb
|
754
|
-
- test/ral/type/sshkey.rb
|
755
|
-
- test/ral/type/fileignoresource.rb
|
756
|
-
- test/ral/type/port.rb
|
757
|
-
- test/ral/type/host.rb
|
758
|
-
- test/ral/type/mailalias.rb
|
759
|
-
- test/ral/type/group.rb
|
760
|
-
- test/ral/type/cron.rb
|
761
|
-
- test/ral/type/filesources.rb
|
762
|
-
- test/ral/manager/instances.rb
|
763
|
-
- test/ral/manager/provider.rb
|
764
|
-
- test/ral/manager/attributes.rb
|
765
|
-
- test/ral/manager/manager.rb
|
766
|
-
- test/ral/manager/type.rb
|
767
|
-
- test/executables/puppetmodule.rb
|
684
|
+
- tasks/rake/yard.rake
|
685
|
+
- tasks/rake/git_workflow.rake
|
686
|
+
- tasks/rake/tracdocs.rake
|
768
687
|
- test/data/reports/tagmail_failers.conf
|
769
|
-
- test/data/reports/tagmail_passers.conf
|
770
688
|
- test/data/reports/1.yaml
|
689
|
+
- test/data/reports/tagmail_passers.conf
|
771
690
|
- test/data/reports/2.yaml
|
691
|
+
- test/data/providers/ssh_authorized_key/parsed/authorized_keys2
|
692
|
+
- test/data/providers/ssh_authorized_key/parsed/authorized_keys
|
693
|
+
- test/data/providers/ssh_authorized_key/parsed/authorized_keys1
|
694
|
+
- test/data/providers/mailalias/aliases/test1
|
695
|
+
- test/data/providers/package/testpackages.yaml
|
696
|
+
- test/data/providers/cron/crontab.multirecords
|
772
697
|
- test/data/providers/cron/crontab.envNcomment
|
698
|
+
- test/data/providers/cron/crontab.envNname
|
699
|
+
- test/data/providers/cron/crontab_sample_records.yaml
|
700
|
+
- test/data/providers/cron/crontab_collections.yaml
|
773
701
|
- test/data/providers/cron/examples/one
|
774
702
|
- test/data/providers/cron/examples/freebsd
|
775
703
|
- test/data/providers/cron/examples/openbsd
|
776
|
-
- test/data/providers/cron/crontab.envNname
|
777
704
|
- test/data/providers/cron/crontab_multiple_with_env.yaml
|
778
|
-
- test/data/providers/cron/crontab_collections.yaml
|
779
|
-
- test/data/providers/cron/crontab_sample_records.yaml
|
780
|
-
- test/data/providers/cron/crontab.multirecords
|
781
705
|
- test/data/providers/cron/crontab.allthree
|
782
|
-
- test/data/
|
783
|
-
- test/data/
|
784
|
-
- test/data/providers/ssh_authorized_key/parsed/authorized_keys2
|
785
|
-
- test/data/providers/ssh_authorized_key/parsed/authorized_keys1
|
786
|
-
- test/data/providers/package/testpackages.yaml
|
787
|
-
- test/data/types/sshkey/1
|
706
|
+
- test/data/types/ssh_authorized_key/1
|
707
|
+
- test/data/types/mailalias/file1
|
788
708
|
- test/data/types/yumrepos/fedora.repo
|
789
709
|
- test/data/types/yumrepos/fedora-devel.repo
|
710
|
+
- test/data/types/sshkey/1
|
711
|
+
- test/data/types/hosts/solaris
|
712
|
+
- test/data/types/hosts/1
|
713
|
+
- test/data/types/hosts/2
|
714
|
+
- test/data/types/port/1
|
715
|
+
- test/data/types/port/darwin
|
790
716
|
- test/data/types/mount/solaris.fstab
|
791
717
|
- test/data/types/mount/freebsd.fstab
|
792
718
|
- test/data/types/mount/linux.fstab
|
793
|
-
- test/data/
|
794
|
-
- test/data/
|
795
|
-
- test/data/
|
796
|
-
- test/data/
|
797
|
-
- test/data/
|
798
|
-
- test/data/
|
799
|
-
- test/data/
|
800
|
-
- test/data/snippets/
|
801
|
-
- test/data/snippets/tag.pp
|
719
|
+
- test/data/failers/badclassparam
|
720
|
+
- test/data/failers/badcompnoparam
|
721
|
+
- test/data/failers/badcompparam
|
722
|
+
- test/data/failers/badtypeparam
|
723
|
+
- test/data/failers/badclassnoparam
|
724
|
+
- test/data/failers/noobjectrvalue
|
725
|
+
- test/data/snippets/deepclassheirarchy.pp
|
726
|
+
- test/data/snippets/namevartest
|
802
727
|
- test/data/snippets/componentmetaparams.pp
|
803
|
-
- test/data/snippets/
|
804
|
-
- test/data/snippets/
|
805
|
-
- test/data/snippets/
|
728
|
+
- test/data/snippets/fqdefinition.pp
|
729
|
+
- test/data/snippets/collection_override.pp
|
730
|
+
- test/data/snippets/multipleinstances
|
806
731
|
- test/data/snippets/tagged.pp
|
807
|
-
- test/data/snippets/
|
808
|
-
- test/data/snippets/
|
732
|
+
- test/data/snippets/multisubs.pp
|
733
|
+
- test/data/snippets/virtualresources.pp
|
809
734
|
- test/data/snippets/classpathtest
|
810
|
-
- test/data/snippets/
|
811
|
-
- test/data/snippets/
|
812
|
-
- test/data/snippets/
|
813
|
-
- test/data/snippets/
|
814
|
-
- test/data/snippets/
|
815
|
-
- test/data/snippets/singleary.pp
|
816
|
-
- test/data/snippets/funccomma.pp
|
817
|
-
- test/data/snippets/falsevalues.pp
|
818
|
-
- test/data/snippets/emptyifelse.pp
|
735
|
+
- test/data/snippets/filecreate
|
736
|
+
- test/data/snippets/emptyclass.pp
|
737
|
+
- test/data/snippets/fqparents.pp
|
738
|
+
- test/data/snippets/singleselector.pp
|
739
|
+
- test/data/snippets/simpledefaults
|
819
740
|
- test/data/snippets/append.pp
|
820
|
-
- test/data/snippets/
|
821
|
-
- test/data/snippets/classincludes.pp
|
741
|
+
- test/data/snippets/collection.pp
|
822
742
|
- test/data/snippets/selectorvalues.pp
|
823
|
-
- test/data/snippets/
|
824
|
-
- test/data/snippets/
|
825
|
-
- test/data/snippets/
|
826
|
-
- test/data/snippets/emptyclass.pp
|
743
|
+
- test/data/snippets/tag.pp
|
744
|
+
- test/data/snippets/classincludes.pp
|
745
|
+
- test/data/snippets/classheirarchy.pp
|
827
746
|
- test/data/snippets/multilinecomments.pp
|
747
|
+
- test/data/snippets/falsevalues.pp
|
748
|
+
- test/data/snippets/arraytrailingcomma.pp
|
828
749
|
- test/data/snippets/argumentdefaults
|
829
|
-
- test/data/snippets/
|
830
|
-
- test/data/snippets/
|
831
|
-
- test/data/snippets/ifexpression.pp
|
832
|
-
- test/data/snippets/fqparents.pp
|
750
|
+
- test/data/snippets/funccomma.pp
|
751
|
+
- test/data/snippets/casestatement.pp
|
833
752
|
- test/data/snippets/scopetest
|
753
|
+
- test/data/snippets/simpleselector
|
754
|
+
- test/data/snippets/singleary.pp
|
755
|
+
- test/data/snippets/emptyexec.pp
|
834
756
|
- test/data/snippets/subclass_name_duplication.pp
|
757
|
+
- test/data/snippets/componentrequire.pp
|
758
|
+
- test/data/snippets/ifexpression.pp
|
759
|
+
- test/data/snippets/defineoverrides.pp
|
760
|
+
- test/data/snippets/arithmetic_expression.pp
|
761
|
+
- test/data/snippets/collection_within_virtual_definitions.pp
|
762
|
+
- test/data/snippets/singlequote.pp
|
763
|
+
- test/data/snippets/emptyifelse.pp
|
764
|
+
- test/data/snippets/implicititeration
|
835
765
|
- test/data/snippets/multipleclass.pp
|
836
|
-
- test/data/snippets/casestatement.pp
|
837
|
-
- test/data/snippets/arraytrailingcomma.pp
|
838
|
-
- test/data/snippets/namevartest
|
839
|
-
- test/data/snippets/fqdefinition.pp
|
840
766
|
- test/data/snippets/aliastest.pp
|
841
|
-
- test/
|
842
|
-
- test/
|
843
|
-
- test/
|
844
|
-
- test/
|
845
|
-
- test/
|
846
|
-
- test/
|
847
|
-
- test/
|
848
|
-
- test/
|
849
|
-
- test/
|
767
|
+
- test/other/transactions.rb
|
768
|
+
- test/other/report.rb
|
769
|
+
- test/other/provider.rb
|
770
|
+
- test/other/puppet.rb
|
771
|
+
- test/other/dsl.rb
|
772
|
+
- test/other/relationships.rb
|
773
|
+
- test/other/events.rb
|
774
|
+
- test/rails/rails.rb
|
775
|
+
- test/rails/railsparameter.rb
|
776
|
+
- test/network/client_request.rb
|
777
|
+
- test/network/server/mongrel_test.rb
|
778
|
+
- test/network/server/webrick.rb
|
779
|
+
- test/network/xmlrpc/webrick_servlet.rb
|
780
|
+
- test/network/xmlrpc/processor.rb
|
781
|
+
- test/network/xmlrpc/server.rb
|
782
|
+
- test/network/xmlrpc/client.rb
|
783
|
+
- test/network/rights.rb
|
784
|
+
- test/network/handler/master.rb
|
785
|
+
- test/network/handler/report.rb
|
786
|
+
- test/network/handler/ca.rb
|
787
|
+
- test/network/handler/resource.rb
|
788
|
+
- test/network/handler/fileserver.rb
|
789
|
+
- test/network/handler/runner.rb
|
790
|
+
- test/network/handler/bucket.rb
|
791
|
+
- test/network/authorization.rb
|
792
|
+
- test/network/authstore.rb
|
793
|
+
- test/network/authconfig.rb
|
794
|
+
- test/network/client/ca.rb
|
795
|
+
- test/network/client/resource.rb
|
796
|
+
- test/network/client/dipper.rb
|
797
|
+
- test/certmgr/support.rb
|
798
|
+
- test/certmgr/inventory.rb
|
799
|
+
- test/certmgr/ca.rb
|
800
|
+
- test/certmgr/certmgr.rb
|
801
|
+
- test/Rakefile
|
802
|
+
- test/ral/manager/manager.rb
|
803
|
+
- test/ral/manager/instances.rb
|
804
|
+
- test/ral/manager/provider.rb
|
805
|
+
- test/ral/manager/type.rb
|
806
|
+
- test/ral/manager/attributes.rb
|
807
|
+
- test/ral/providers/package.rb
|
808
|
+
- test/ral/providers/group.rb
|
809
|
+
- test/ral/providers/mailalias/aliases.rb
|
810
|
+
- test/ral/providers/package/aptrpm.rb
|
811
|
+
- test/ral/providers/package/aptitude.rb
|
812
|
+
- test/ral/providers/host/parsed.rb
|
813
|
+
- test/ral/providers/sshkey/parsed.rb
|
814
|
+
- test/ral/providers/provider.rb
|
815
|
+
- test/ral/providers/service/base.rb
|
816
|
+
- test/ral/providers/cron/crontab.rb
|
817
|
+
- test/ral/providers/nameservice.rb
|
818
|
+
- test/ral/providers/user/useradd.rb
|
819
|
+
- test/ral/providers/parsedfile.rb
|
820
|
+
- test/ral/providers/port/parsed.rb
|
821
|
+
- test/ral/providers/user.rb
|
822
|
+
- test/ral/type/filesources.rb
|
823
|
+
- test/ral/type/file/target.rb
|
824
|
+
- test/ral/type/group.rb
|
825
|
+
- test/ral/type/fileignoresource.rb
|
826
|
+
- test/ral/type/cron.rb
|
827
|
+
- test/ral/type/mailalias.rb
|
828
|
+
- test/ral/type/exec.rb
|
829
|
+
- test/ral/type/resources.rb
|
830
|
+
- test/ral/type/sshkey.rb
|
831
|
+
- test/ral/type/service.rb
|
832
|
+
- test/ral/type/zone.rb
|
833
|
+
- test/ral/type/host.rb
|
834
|
+
- test/ral/type/port.rb
|
835
|
+
- test/ral/type/file.rb
|
836
|
+
- test/ral/type/yumrepo.rb
|
837
|
+
- test/ral/type/user.rb
|
838
|
+
- test/test
|
850
839
|
- test/lib/rake/puppet_testtask.rb
|
851
840
|
- test/lib/rake/puppet_test_loader.rb
|
841
|
+
- test/lib/mocha_standalone.rb
|
852
842
|
- test/lib/puppettest.rb
|
853
|
-
- test/lib/puppettest/reporttesting.rb
|
854
|
-
- test/lib/puppettest/support.rb
|
855
|
-
- test/lib/puppettest/fileparsing.rb
|
856
|
-
- test/lib/puppettest/railstesting.rb
|
857
843
|
- test/lib/puppettest/filetesting.rb
|
858
|
-
- test/lib/puppettest/
|
844
|
+
- test/lib/puppettest/runnable_test.rb
|
845
|
+
- test/lib/puppettest/railstesting.rb
|
846
|
+
- test/lib/puppettest/support.rb
|
859
847
|
- test/lib/puppettest/certificates.rb
|
848
|
+
- test/lib/puppettest/parsertesting.rb
|
849
|
+
- test/lib/puppettest/fakes.rb
|
850
|
+
- test/lib/puppettest/resourcetesting.rb
|
860
851
|
- test/lib/puppettest/support/utils.rb
|
861
852
|
- test/lib/puppettest/support/resources.rb
|
862
|
-
- test/lib/puppettest/support/assertions.rb
|
863
|
-
- test/lib/puppettest/support/helpers.rb
|
864
853
|
- test/lib/puppettest/support/collection.rb
|
865
|
-
- test/lib/puppettest/
|
854
|
+
- test/lib/puppettest/support/helpers.rb
|
855
|
+
- test/lib/puppettest/support/assertions.rb
|
856
|
+
- test/lib/puppettest/reporttesting.rb
|
866
857
|
- test/lib/puppettest/testcase.rb
|
867
|
-
- test/lib/puppettest/
|
868
|
-
- test/lib/puppettest/
|
869
|
-
- test/lib/puppettest/
|
870
|
-
- test/lib/
|
871
|
-
- test/
|
872
|
-
- test/
|
873
|
-
- test/
|
874
|
-
- test/
|
875
|
-
- test/
|
876
|
-
- test/
|
877
|
-
- test/
|
878
|
-
- test/
|
879
|
-
- test/
|
880
|
-
- test/
|
881
|
-
-
|
882
|
-
-
|
883
|
-
-
|
884
|
-
-
|
885
|
-
-
|
886
|
-
-
|
887
|
-
-
|
888
|
-
-
|
889
|
-
-
|
890
|
-
-
|
891
|
-
-
|
892
|
-
-
|
893
|
-
-
|
894
|
-
-
|
895
|
-
-
|
896
|
-
-
|
897
|
-
-
|
898
|
-
-
|
899
|
-
-
|
900
|
-
- spec/
|
901
|
-
- spec/
|
902
|
-
- spec/
|
903
|
-
- spec/
|
904
|
-
- spec/
|
905
|
-
- spec/
|
906
|
-
- spec/
|
907
|
-
- spec/
|
908
|
-
- spec/
|
909
|
-
- spec/
|
910
|
-
- spec/
|
911
|
-
- spec/
|
912
|
-
- spec/
|
913
|
-
- spec/
|
914
|
-
- spec/
|
915
|
-
- spec/
|
916
|
-
- spec/
|
917
|
-
- spec/
|
918
|
-
- spec/
|
919
|
-
- spec/
|
920
|
-
- spec/
|
921
|
-
- spec/
|
922
|
-
- spec/
|
923
|
-
- spec/
|
924
|
-
- spec/
|
925
|
-
- spec/
|
926
|
-
- spec/
|
927
|
-
- spec/
|
928
|
-
- spec/
|
929
|
-
- spec/integration/transaction/report.rb
|
930
|
-
- spec/integration/file_serving/terminus_helper.rb
|
931
|
-
- spec/integration/file_serving/fileset.rb
|
932
|
-
- spec/integration/file_serving/metadata.rb
|
933
|
-
- spec/integration/file_serving/content.rb
|
934
|
-
- spec/integration/type.rb
|
935
|
-
- spec/spec.opts
|
936
|
-
- spec/lib/puppet_spec/files.rb
|
937
|
-
- spec/spec_helper.rb
|
938
|
-
- spec/monkey_patches/add_confine_and_runnable_to_rspec_dsl.rb
|
939
|
-
- spec/monkey_patches/alias_should_to_must.rb
|
940
|
-
- spec/unit/module.rb
|
941
|
-
- spec/unit/node.rb
|
942
|
-
- spec/unit/provider/confine/false.rb
|
943
|
-
- spec/unit/provider/confine/exists.rb
|
944
|
-
- spec/unit/provider/confine/true.rb
|
945
|
-
- spec/unit/provider/confine/variable.rb
|
946
|
-
- spec/unit/provider/confine/feature.rb
|
947
|
-
- spec/unit/provider/group/groupadd.rb
|
948
|
-
- spec/unit/provider/group/ldap.rb
|
949
|
-
- spec/unit/provider/confiner.rb
|
950
|
-
- spec/unit/provider/macauthorization.rb
|
951
|
-
- spec/unit/provider/sshkey/parsed.rb
|
952
|
-
- spec/unit/provider/augeas/augeas.rb
|
953
|
-
- spec/unit/provider/user/useradd.rb
|
954
|
-
- spec/unit/provider/user/user_role_add.rb
|
955
|
-
- spec/unit/provider/user/hpux.rb
|
956
|
-
- spec/unit/provider/user/ldap.rb
|
957
|
-
- spec/unit/provider/confine.rb
|
958
|
-
- spec/unit/provider/zone/solaris.rb
|
959
|
-
- spec/unit/provider/mount/parsed.rb
|
960
|
-
- spec/unit/provider/zfs/solaris.rb
|
961
|
-
- spec/unit/provider/mount.rb
|
962
|
-
- spec/unit/provider/selboolean.rb
|
963
|
-
- spec/unit/provider/selmodule-example.pp
|
964
|
-
- spec/unit/provider/service/runit.rb
|
965
|
-
- spec/unit/provider/service/init.rb
|
966
|
-
- spec/unit/provider/service/debian.rb
|
967
|
-
- spec/unit/provider/service/redhat.rb
|
968
|
-
- spec/unit/provider/service/daemontools.rb
|
969
|
-
- spec/unit/provider/service/launchd.rb
|
970
|
-
- spec/unit/provider/naginator.rb
|
971
|
-
- spec/unit/provider/mcx/mcxcontent.rb
|
972
|
-
- spec/unit/provider/selmodule.rb
|
973
|
-
- spec/unit/provider/parsedfile.rb
|
974
|
-
- spec/unit/provider/zpool/solaris.rb
|
975
|
-
- spec/unit/provider/ldap.rb
|
976
|
-
- spec/unit/provider/ssh_authorized_key/parsed.rb
|
977
|
-
- spec/unit/provider/package/dpkg.rb
|
978
|
-
- spec/unit/provider/package/pkgdmg.rb
|
979
|
-
- spec/unit/provider/package/gem.rb
|
980
|
-
- spec/unit/provider/package/hpux.rb
|
981
|
-
- spec/unit/provider/package/apt.rb
|
982
|
-
- spec/unit/provider/confine_collection.rb
|
983
|
-
- spec/unit/configurer.rb
|
984
|
-
- spec/unit/ssl/certificate_request.rb
|
985
|
-
- spec/unit/ssl/certificate_factory.rb
|
986
|
-
- spec/unit/ssl/certificate.rb
|
987
|
-
- spec/unit/ssl/certificate_authority.rb
|
988
|
-
- spec/unit/ssl/host.rb
|
989
|
-
- spec/unit/ssl/key.rb
|
990
|
-
- spec/unit/ssl/certificate_revocation_list.rb
|
991
|
-
- spec/unit/ssl/inventory.rb
|
992
|
-
- spec/unit/ssl/certificate_authority/interface.rb
|
993
|
-
- spec/unit/relationship.rb
|
994
|
-
- spec/unit/rails.rb
|
995
|
-
- spec/unit/util/reference_serializer.rb
|
996
|
-
- spec/unit/util/package.rb
|
997
|
-
- spec/unit/util/posix.rb
|
998
|
-
- spec/unit/util/settings.rb
|
999
|
-
- spec/unit/util/monkey_patches.rb
|
1000
|
-
- spec/unit/util/tagging.rb
|
1001
|
-
- spec/unit/util/file_locking.rb
|
1002
|
-
- spec/unit/util/autoload.rb
|
1003
|
-
- spec/unit/util/log.rb
|
1004
|
-
- spec/unit/util/autoload/file_cache.rb
|
1005
|
-
- spec/unit/util/queue.rb
|
1006
|
-
- spec/unit/util/json.rb
|
1007
|
-
- spec/unit/util/resource_template.rb
|
1008
|
-
- spec/unit/util/settings/file_setting.rb
|
1009
|
-
- spec/unit/util/ldap/connection.rb
|
1010
|
-
- spec/unit/util/ldap/generator.rb
|
1011
|
-
- spec/unit/util/ldap/manager.rb
|
1012
|
-
- spec/unit/util/cache_accumulator.rb
|
1013
|
-
- spec/unit/util/backups.rb
|
1014
|
-
- spec/unit/util/user_attr.rb
|
1015
|
-
- spec/unit/util/queue/stomp.rb
|
1016
|
-
- spec/unit/util/filetype.rb
|
1017
|
-
- spec/unit/util/nagios_maker.rb
|
1018
|
-
- spec/unit/util/cacher.rb
|
1019
|
-
- spec/unit/util/warnings.rb
|
1020
|
-
- spec/unit/util/metric.rb
|
1021
|
-
- spec/unit/util/checksums.rb
|
1022
|
-
- spec/unit/util/loadedfile.rb
|
1023
|
-
- spec/unit/util/storage.rb
|
1024
|
-
- spec/unit/util/selinux.rb
|
1025
|
-
- spec/unit/util/feature.rb
|
1026
|
-
- spec/unit/util/constant_inflector.rb
|
1027
|
-
- spec/unit/indirector.rb
|
1028
|
-
- spec/unit/network/format.rb
|
1029
|
-
- spec/unit/network/rest_authorization.rb
|
1030
|
-
- spec/unit/network/client/dipper.rb
|
1031
|
-
- spec/unit/network/formats.rb
|
858
|
+
- test/lib/puppettest/fileparsing.rb
|
859
|
+
- test/lib/puppettest/servertest.rb
|
860
|
+
- test/lib/puppettest/exetest.rb
|
861
|
+
- test/lib/stubba.rb
|
862
|
+
- test/language/ast.rb
|
863
|
+
- test/language/ast/variable.rb
|
864
|
+
- test/language/ast/selector.rb
|
865
|
+
- test/language/ast/resource_reference.rb
|
866
|
+
- test/language/ast/resource.rb
|
867
|
+
- test/language/ast/casestatement.rb
|
868
|
+
- test/language/snippets.rb
|
869
|
+
- test/language/functions.rb
|
870
|
+
- test/language/resource.rb
|
871
|
+
- test/language/transportable.rb
|
872
|
+
- test/language/scope.rb
|
873
|
+
- test/language/parser.rb
|
874
|
+
- test/puppet/tc_suidmanager.rb
|
875
|
+
- test/puppet/errortest.rb
|
876
|
+
- test/puppet/defaults.rb
|
877
|
+
- test/README
|
878
|
+
- test/util/pidlock.rb
|
879
|
+
- test/util/inifile.rb
|
880
|
+
- test/util/subclass_loader.rb
|
881
|
+
- test/util/package.rb
|
882
|
+
- test/util/instance_loader.rb
|
883
|
+
- test/util/metrics.rb
|
884
|
+
- test/util/classgen.rb
|
885
|
+
- test/util/settings.rb
|
886
|
+
- test/util/execution.rb
|
887
|
+
- test/util/storage.rb
|
888
|
+
- test/util/utiltest.rb
|
889
|
+
- test/util/log.rb
|
890
|
+
- test/util/fileparsing.rb
|
891
|
+
- spec/monkey_patches/alias_should_to_must.rb
|
892
|
+
- spec/monkey_patches/add_confine_and_runnable_to_rspec_dsl.rb
|
893
|
+
- spec/shared_behaviours/memory_terminus.rb
|
894
|
+
- spec/shared_behaviours/file_server_terminus.rb
|
895
|
+
- spec/shared_behaviours/file_serving.rb
|
896
|
+
- spec/Rakefile
|
897
|
+
- spec/spec_helper.rb
|
898
|
+
- spec/lib/puppet_spec/files.rb
|
899
|
+
- spec/spec.opts
|
900
|
+
- spec/unit/resource/reference.rb
|
901
|
+
- spec/unit/resource/catalog.rb
|
902
|
+
- spec/unit/other/checksum.rb
|
903
|
+
- spec/unit/other/selinux.rb
|
904
|
+
- spec/unit/other/transbucket.rb
|
905
|
+
- spec/unit/other/transobject.rb
|
906
|
+
- spec/unit/rails/resource.rb
|
907
|
+
- spec/unit/rails/param_value.rb
|
908
|
+
- spec/unit/rails/host.rb
|
909
|
+
- spec/unit/rails.rb
|
910
|
+
- spec/unit/transaction.rb
|
911
|
+
- spec/unit/ssl/certificate_request.rb
|
912
|
+
- spec/unit/ssl/certificate_authority/interface.rb
|
913
|
+
- spec/unit/ssl/key.rb
|
914
|
+
- spec/unit/ssl/certificate_authority.rb
|
915
|
+
- spec/unit/ssl/inventory.rb
|
916
|
+
- spec/unit/ssl/certificate_factory.rb
|
917
|
+
- spec/unit/ssl/host.rb
|
918
|
+
- spec/unit/ssl/certificate_revocation_list.rb
|
919
|
+
- spec/unit/ssl/certificate.rb
|
1032
920
|
- spec/unit/network/http/mongrel.rb
|
1033
|
-
- spec/unit/network/http/
|
1034
|
-
- spec/unit/network/http/
|
1035
|
-
- spec/unit/network/http/
|
921
|
+
- spec/unit/network/http/handler.rb
|
922
|
+
- spec/unit/network/http/webrick/rest.rb
|
923
|
+
- spec/unit/network/http/webrick/xmlrpc.rb
|
924
|
+
- spec/unit/network/http/rack.rb
|
1036
925
|
- spec/unit/network/http/webrick.rb
|
1037
|
-
- spec/unit/network/http/rack/xmlrpc.rb
|
1038
926
|
- spec/unit/network/http/rack/rest.rb
|
1039
|
-
- spec/unit/network/http/rack.rb
|
1040
|
-
- spec/unit/network/http/
|
1041
|
-
- spec/unit/network/http/
|
1042
|
-
- spec/unit/network/http/
|
1043
|
-
- spec/unit/network/server.rb
|
1044
|
-
- spec/unit/network/authconfig.rb
|
1045
|
-
- spec/unit/network/authstore.rb
|
1046
|
-
- spec/unit/network/rights.rb
|
1047
|
-
- spec/unit/network/rest_authconfig.rb
|
927
|
+
- spec/unit/network/http/rack/xmlrpc.rb
|
928
|
+
- spec/unit/network/http/api/v1.rb
|
929
|
+
- spec/unit/network/http/mongrel/rest.rb
|
930
|
+
- spec/unit/network/http/mongrel/xmlrpc.rb
|
1048
931
|
- spec/unit/network/xmlrpc/client.rb
|
1049
932
|
- spec/unit/network/http.rb
|
1050
|
-
- spec/unit/network/
|
1051
|
-
- spec/unit/network/
|
933
|
+
- spec/unit/network/formats.rb
|
934
|
+
- spec/unit/network/rights.rb
|
935
|
+
- spec/unit/network/format.rb
|
1052
936
|
- spec/unit/network/handler/fileserver.rb
|
937
|
+
- spec/unit/network/rest_authconfig.rb
|
938
|
+
- spec/unit/network/http_pool.rb
|
939
|
+
- spec/unit/network/rest_authorization.rb
|
940
|
+
- spec/unit/network/authstore.rb
|
941
|
+
- spec/unit/network/authconfig.rb
|
942
|
+
- spec/unit/network/server.rb
|
1053
943
|
- spec/unit/network/format_handler.rb
|
1054
|
-
- spec/unit/
|
1055
|
-
- spec/unit/
|
1056
|
-
- spec/unit/application/puppetd.rb
|
1057
|
-
- spec/unit/application/pi.rb
|
1058
|
-
- spec/unit/application/puppet.rb
|
1059
|
-
- spec/unit/application/ralsh.rb
|
1060
|
-
- spec/unit/application/filebucket.rb
|
1061
|
-
- spec/unit/application/puppetmasterd.rb
|
1062
|
-
- spec/unit/application/puppetrun.rb
|
1063
|
-
- spec/unit/application/puppetdoc.rb
|
1064
|
-
- spec/unit/application/puppetca.rb
|
1065
|
-
- spec/unit/application/puppetqd.rb
|
1066
|
-
- spec/unit/file_collection/lookup.rb
|
1067
|
-
- spec/unit/agent/runner.rb
|
1068
|
-
- spec/unit/agent/locker.rb
|
1069
|
-
- spec/unit/property/ordered_list.rb
|
1070
|
-
- spec/unit/property/list.rb
|
1071
|
-
- spec/unit/property/keyvalue.rb
|
1072
|
-
- spec/unit/agent.rb
|
1073
|
-
- spec/unit/configurer/fact_handler.rb
|
1074
|
-
- spec/unit/configurer/plugin_handler.rb
|
1075
|
-
- spec/unit/configurer/downloader.rb
|
1076
|
-
- spec/unit/reports.rb
|
944
|
+
- spec/unit/network/client/dipper.rb
|
945
|
+
- spec/unit/network/client.rb
|
1077
946
|
- spec/unit/provider.rb
|
1078
|
-
- spec/unit/
|
1079
|
-
- spec/unit/
|
947
|
+
- spec/unit/file_serving/mount.rb
|
948
|
+
- spec/unit/file_serving/base.rb
|
949
|
+
- spec/unit/file_serving/configuration/parser.rb
|
950
|
+
- spec/unit/file_serving/indirection_hooks.rb
|
951
|
+
- spec/unit/file_serving/metadata.rb
|
952
|
+
- spec/unit/file_serving/fileset.rb
|
953
|
+
- spec/unit/file_serving/terminus_helper.rb
|
954
|
+
- spec/unit/file_serving/mount/file.rb
|
955
|
+
- spec/unit/file_serving/mount/plugins.rb
|
956
|
+
- spec/unit/file_serving/mount/modules.rb
|
957
|
+
- spec/unit/file_serving/content.rb
|
958
|
+
- spec/unit/file_serving/configuration.rb
|
1080
959
|
- spec/unit/simple_graph.rb
|
1081
|
-
- spec/unit/
|
1082
|
-
- spec/unit/parser/
|
1083
|
-
- spec/unit/parser/functions/regsubst.rb
|
1084
|
-
- spec/unit/parser/functions/shellquote.rb
|
1085
|
-
- spec/unit/parser/functions/realize.rb
|
1086
|
-
- spec/unit/parser/functions/require.rb
|
1087
|
-
- spec/unit/parser/functions/split.rb
|
1088
|
-
- spec/unit/parser/functions/fqdn_rand.rb
|
1089
|
-
- spec/unit/parser/functions/versioncmp.rb
|
1090
|
-
- spec/unit/parser/functions/template.rb
|
1091
|
-
- spec/unit/parser/ast.rb
|
1092
|
-
- spec/unit/parser/lexer.rb
|
960
|
+
- spec/unit/application.rb
|
961
|
+
- spec/unit/parser/resource/reference.rb
|
1093
962
|
- spec/unit/parser/compiler.rb
|
1094
|
-
- spec/unit/parser/
|
1095
|
-
- spec/unit/parser/ast
|
963
|
+
- spec/unit/parser/lexer.rb
|
964
|
+
- spec/unit/parser/ast.rb
|
965
|
+
- spec/unit/parser/interpreter.rb
|
966
|
+
- spec/unit/parser/ast/hostclass.rb
|
967
|
+
- spec/unit/parser/ast/selector.rb
|
968
|
+
- spec/unit/parser/ast/collexpr.rb
|
969
|
+
- spec/unit/parser/ast/definition.rb
|
970
|
+
- spec/unit/parser/ast/resource_reference.rb
|
971
|
+
- spec/unit/parser/ast/vardef.rb
|
1096
972
|
- spec/unit/parser/ast/boolean_operator.rb
|
973
|
+
- spec/unit/parser/ast/not.rb
|
1097
974
|
- spec/unit/parser/ast/minus.rb
|
1098
|
-
- spec/unit/parser/ast/astarray.rb
|
1099
|
-
- spec/unit/parser/ast/casestatement.rb
|
1100
|
-
- spec/unit/parser/ast/arithmetic_operator.rb
|
1101
|
-
- spec/unit/parser/ast/comparison_operator.rb
|
1102
|
-
- spec/unit/parser/ast/resource_reference.rb
|
1103
|
-
- spec/unit/parser/ast/selector.rb
|
1104
|
-
- spec/unit/parser/ast/hostclass.rb
|
1105
975
|
- spec/unit/parser/ast/nop.rb
|
1106
|
-
- spec/unit/parser/ast/
|
1107
|
-
- spec/unit/parser/ast/vardef.rb
|
1108
|
-
- spec/unit/parser/ast/collexpr.rb
|
976
|
+
- spec/unit/parser/ast/leaf.rb
|
1109
977
|
- spec/unit/parser/ast/resource.rb
|
978
|
+
- spec/unit/parser/ast/arithmetic_operator.rb
|
1110
979
|
- spec/unit/parser/ast/ifstatement.rb
|
980
|
+
- spec/unit/parser/ast/casestatement.rb
|
1111
981
|
- spec/unit/parser/ast/function.rb
|
1112
|
-
- spec/unit/parser/ast/not.rb
|
1113
|
-
- spec/unit/parser/ast/definition.rb
|
1114
|
-
- spec/unit/parser/ast/resource_override.rb
|
1115
982
|
- spec/unit/parser/ast/collection.rb
|
1116
|
-
- spec/unit/parser/
|
1117
|
-
- spec/unit/parser/
|
983
|
+
- spec/unit/parser/ast/node.rb
|
984
|
+
- spec/unit/parser/ast/resource_override.rb
|
985
|
+
- spec/unit/parser/ast/comparison_operator.rb
|
986
|
+
- spec/unit/parser/ast/match_operator.rb
|
987
|
+
- spec/unit/parser/ast/astarray.rb
|
988
|
+
- spec/unit/parser/functions.rb
|
1118
989
|
- spec/unit/parser/resource.rb
|
1119
|
-
- spec/unit/parser/parser.rb
|
1120
990
|
- spec/unit/parser/templatewrapper.rb
|
1121
|
-
- spec/unit/parser/
|
991
|
+
- spec/unit/parser/functions/template.rb
|
992
|
+
- spec/unit/parser/functions/realize.rb
|
993
|
+
- spec/unit/parser/functions/versioncmp.rb
|
994
|
+
- spec/unit/parser/functions/regsubst.rb
|
995
|
+
- spec/unit/parser/functions/inline_template.rb
|
996
|
+
- spec/unit/parser/functions/generate.rb
|
997
|
+
- spec/unit/parser/functions/sprintf.rb
|
998
|
+
- spec/unit/parser/functions/shellquote.rb
|
999
|
+
- spec/unit/parser/functions/split.rb
|
1000
|
+
- spec/unit/parser/functions/fqdn_rand.rb
|
1001
|
+
- spec/unit/parser/functions/require.rb
|
1122
1002
|
- spec/unit/parser/loaded_code.rb
|
1123
|
-
- spec/unit/parser/functions.rb
|
1124
1003
|
- spec/unit/parser/collector.rb
|
1125
1004
|
- spec/unit/parser/files.rb
|
1126
|
-
- spec/unit/
|
1127
|
-
- spec/unit/
|
1128
|
-
- spec/unit/
|
1129
|
-
- spec/unit/
|
1130
|
-
- spec/unit/
|
1131
|
-
- spec/unit/
|
1132
|
-
- spec/unit/
|
1133
|
-
- spec/unit/
|
1134
|
-
- spec/unit/
|
1135
|
-
- spec/unit/
|
1136
|
-
- spec/unit/
|
1137
|
-
- spec/unit/
|
1138
|
-
- spec/unit/
|
1139
|
-
- spec/unit/
|
1140
|
-
- spec/unit/
|
1141
|
-
- spec/unit/
|
1142
|
-
- spec/unit/
|
1143
|
-
- spec/unit/
|
1144
|
-
- spec/unit/
|
1145
|
-
- spec/unit/
|
1146
|
-
- spec/unit/
|
1147
|
-
- spec/unit/
|
1148
|
-
- spec/unit/
|
1149
|
-
- spec/unit/
|
1150
|
-
- spec/unit/
|
1151
|
-
- spec/unit/
|
1152
|
-
- spec/unit/
|
1153
|
-
- spec/unit/
|
1154
|
-
- spec/unit/
|
1155
|
-
- spec/unit/
|
1156
|
-
- spec/unit/
|
1157
|
-
- spec/unit/
|
1158
|
-
- spec/unit/
|
1159
|
-
- spec/unit/
|
1160
|
-
- spec/unit/
|
1161
|
-
- spec/unit/
|
1162
|
-
- spec/unit/
|
1163
|
-
- spec/unit/
|
1164
|
-
- spec/unit/
|
1165
|
-
- spec/unit/
|
1005
|
+
- spec/unit/parser/scope.rb
|
1006
|
+
- spec/unit/parser/parser.rb
|
1007
|
+
- spec/unit/configurer.rb
|
1008
|
+
- spec/unit/resource.rb
|
1009
|
+
- spec/unit/agent.rb
|
1010
|
+
- spec/unit/daemon.rb
|
1011
|
+
- spec/unit/indirector.rb
|
1012
|
+
- spec/unit/node/environment.rb
|
1013
|
+
- spec/unit/node/facts.rb
|
1014
|
+
- spec/unit/provider/augeas/augeas.rb
|
1015
|
+
- spec/unit/provider/confine/variable.rb
|
1016
|
+
- spec/unit/provider/confine/true.rb
|
1017
|
+
- spec/unit/provider/confine/false.rb
|
1018
|
+
- spec/unit/provider/confine/feature.rb
|
1019
|
+
- spec/unit/provider/confine/exists.rb
|
1020
|
+
- spec/unit/provider/mount.rb
|
1021
|
+
- spec/unit/provider/zfs/solaris.rb
|
1022
|
+
- spec/unit/provider/ssh_authorized_key/parsed.rb
|
1023
|
+
- spec/unit/provider/package/pkgdmg.rb
|
1024
|
+
- spec/unit/provider/package/apt.rb
|
1025
|
+
- spec/unit/provider/package/dpkg.rb
|
1026
|
+
- spec/unit/provider/package/gem.rb
|
1027
|
+
- spec/unit/provider/package/hpux.rb
|
1028
|
+
- spec/unit/provider/macauthorization.rb
|
1029
|
+
- spec/unit/provider/sshkey/parsed.rb
|
1030
|
+
- spec/unit/provider/group/groupadd.rb
|
1031
|
+
- spec/unit/provider/group/ldap.rb
|
1032
|
+
- spec/unit/provider/confiner.rb
|
1033
|
+
- spec/unit/provider/zpool/solaris.rb
|
1034
|
+
- spec/unit/provider/service/daemontools.rb
|
1035
|
+
- spec/unit/provider/service/launchd.rb
|
1036
|
+
- spec/unit/provider/service/redhat.rb
|
1037
|
+
- spec/unit/provider/service/init.rb
|
1038
|
+
- spec/unit/provider/service/runit.rb
|
1039
|
+
- spec/unit/provider/service/debian.rb
|
1040
|
+
- spec/unit/provider/zone/solaris.rb
|
1041
|
+
- spec/unit/provider/user/hpux.rb
|
1042
|
+
- spec/unit/provider/user/user_role_add.rb
|
1043
|
+
- spec/unit/provider/user/useradd.rb
|
1044
|
+
- spec/unit/provider/user/ldap.rb
|
1045
|
+
- spec/unit/provider/parsedfile.rb
|
1046
|
+
- spec/unit/provider/selmodule-example.pp
|
1047
|
+
- spec/unit/provider/mount/parsed.rb
|
1048
|
+
- spec/unit/provider/confine_collection.rb
|
1049
|
+
- spec/unit/provider/confine.rb
|
1050
|
+
- spec/unit/provider/naginator.rb
|
1051
|
+
- spec/unit/provider/selmodule.rb
|
1052
|
+
- spec/unit/provider/mcx/mcxcontent.rb
|
1053
|
+
- spec/unit/provider/ldap.rb
|
1054
|
+
- spec/unit/provider/selboolean.rb
|
1055
|
+
- spec/unit/type.rb
|
1056
|
+
- spec/unit/agent/locker.rb
|
1057
|
+
- spec/unit/agent/runner.rb
|
1058
|
+
- spec/unit/property.rb
|
1059
|
+
- spec/unit/file_collection.rb
|
1060
|
+
- spec/unit/node.rb
|
1061
|
+
- spec/unit/reports.rb
|
1062
|
+
- spec/unit/module.rb
|
1063
|
+
- spec/unit/transaction/change.rb
|
1064
|
+
- spec/unit/transaction/report.rb
|
1065
|
+
- spec/unit/transaction/event.rb
|
1066
|
+
- spec/unit/application/puppetrun.rb
|
1067
|
+
- spec/unit/application/puppetqd.rb
|
1068
|
+
- spec/unit/application/pi.rb
|
1069
|
+
- spec/unit/application/filebucket.rb
|
1070
|
+
- spec/unit/application/puppet.rb
|
1071
|
+
- spec/unit/application/puppetca.rb
|
1072
|
+
- spec/unit/application/puppetdoc.rb
|
1073
|
+
- spec/unit/application/puppetmasterd.rb
|
1074
|
+
- spec/unit/application/ralsh.rb
|
1075
|
+
- spec/unit/application/puppetd.rb
|
1076
|
+
- spec/unit/relationship.rb
|
1077
|
+
- spec/unit/file_collection/lookup.rb
|
1078
|
+
- spec/unit/indirector/report/rest.rb
|
1079
|
+
- spec/unit/indirector/report/processor.rb
|
1080
|
+
- spec/unit/indirector/yaml.rb
|
1081
|
+
- spec/unit/indirector/key/ca.rb
|
1082
|
+
- spec/unit/indirector/key/file.rb
|
1166
1083
|
- spec/unit/indirector/certificate_request/rest.rb
|
1167
|
-
- spec/unit/indirector/
|
1084
|
+
- spec/unit/indirector/certificate_request/ca.rb
|
1085
|
+
- spec/unit/indirector/certificate_request/file.rb
|
1086
|
+
- spec/unit/indirector/rest.rb
|
1087
|
+
- spec/unit/indirector/catalog/yaml.rb
|
1088
|
+
- spec/unit/indirector/catalog/rest.rb
|
1089
|
+
- spec/unit/indirector/catalog/compiler.rb
|
1090
|
+
- spec/unit/indirector/catalog/queue.rb
|
1091
|
+
- spec/unit/indirector/catalog/active_record.rb
|
1168
1092
|
- spec/unit/indirector/file_metadata/rest.rb
|
1169
1093
|
- spec/unit/indirector/file_metadata/file_server.rb
|
1094
|
+
- spec/unit/indirector/file_metadata/file.rb
|
1095
|
+
- spec/unit/indirector/file_server.rb
|
1096
|
+
- spec/unit/indirector/exec.rb
|
1097
|
+
- spec/unit/indirector/ssl_file.rb
|
1170
1098
|
- spec/unit/indirector/runner/rest.rb
|
1171
|
-
- spec/unit/indirector/
|
1172
|
-
- spec/unit/indirector/
|
1173
|
-
- spec/unit/indirector/
|
1174
|
-
- spec/unit/indirector/
|
1175
|
-
- spec/unit/indirector/
|
1099
|
+
- spec/unit/indirector/queue.rb
|
1100
|
+
- spec/unit/indirector/file_content/rest.rb
|
1101
|
+
- spec/unit/indirector/file_content/file_server.rb
|
1102
|
+
- spec/unit/indirector/file_content/file.rb
|
1103
|
+
- spec/unit/indirector/facts/yaml.rb
|
1104
|
+
- spec/unit/indirector/facts/rest.rb
|
1105
|
+
- spec/unit/indirector/facts/active_record.rb
|
1106
|
+
- spec/unit/indirector/facts/facter.rb
|
1176
1107
|
- spec/unit/indirector/node/yaml.rb
|
1108
|
+
- spec/unit/indirector/node/rest.rb
|
1177
1109
|
- spec/unit/indirector/node/exec.rb
|
1178
1110
|
- spec/unit/indirector/node/active_record.rb
|
1179
|
-
- spec/unit/indirector/node/memory.rb
|
1180
1111
|
- spec/unit/indirector/node/plain.rb
|
1112
|
+
- spec/unit/indirector/node/memory.rb
|
1181
1113
|
- spec/unit/indirector/node/ldap.rb
|
1182
|
-
- spec/unit/indirector/
|
1183
|
-
- spec/unit/indirector/
|
1184
|
-
- spec/unit/indirector/
|
1185
|
-
- spec/unit/indirector/
|
1186
|
-
- spec/unit/indirector/
|
1187
|
-
- spec/unit/indirector/file_content/rest.rb
|
1188
|
-
- spec/unit/indirector/file_content/file_server.rb
|
1189
|
-
- spec/unit/indirector/catalog/yaml.rb
|
1190
|
-
- spec/unit/indirector/catalog/compiler.rb
|
1191
|
-
- spec/unit/indirector/catalog/queue.rb
|
1192
|
-
- spec/unit/indirector/catalog/active_record.rb
|
1193
|
-
- spec/unit/indirector/catalog/rest.rb
|
1194
|
-
- spec/unit/indirector/indirection.rb
|
1195
|
-
- spec/unit/indirector/checksum/file.rb
|
1196
|
-
- spec/unit/indirector/direct_file_server.rb
|
1114
|
+
- spec/unit/indirector/envelope.rb
|
1115
|
+
- spec/unit/indirector/certificate_revocation_list/rest.rb
|
1116
|
+
- spec/unit/indirector/certificate_revocation_list/ca.rb
|
1117
|
+
- spec/unit/indirector/certificate_revocation_list/file.rb
|
1118
|
+
- spec/unit/indirector/code.rb
|
1197
1119
|
- spec/unit/indirector/active_record.rb
|
1198
|
-
- spec/unit/indirector/memory.rb
|
1199
|
-
- spec/unit/indirector/request.rb
|
1200
1120
|
- spec/unit/indirector/plain.rb
|
1201
|
-
- spec/unit/indirector/
|
1202
|
-
- spec/unit/indirector/
|
1203
|
-
- spec/unit/indirector/
|
1204
|
-
- spec/unit/indirector/
|
1205
|
-
- spec/unit/indirector/key/file.rb
|
1206
|
-
- spec/unit/indirector/key/ca.rb
|
1207
|
-
- spec/unit/indirector/report/processor.rb
|
1208
|
-
- spec/unit/indirector/report/rest.rb
|
1121
|
+
- spec/unit/indirector/file.rb
|
1122
|
+
- spec/unit/indirector/memory.rb
|
1123
|
+
- spec/unit/indirector/direct_file_server.rb
|
1124
|
+
- spec/unit/indirector/indirection.rb
|
1209
1125
|
- spec/unit/indirector/ldap.rb
|
1210
|
-
- spec/unit/indirector/rest.rb
|
1211
|
-
- spec/unit/indirector/
|
1212
|
-
- spec/unit/indirector/
|
1213
|
-
- spec/unit/
|
1214
|
-
- spec/unit/
|
1215
|
-
- spec/unit/
|
1216
|
-
- spec/unit/
|
1217
|
-
- spec/unit/
|
1218
|
-
- spec/unit/
|
1219
|
-
- spec/unit/
|
1220
|
-
- spec/unit/
|
1221
|
-
- spec/unit/
|
1222
|
-
- spec/unit/
|
1223
|
-
- spec/unit/
|
1224
|
-
- spec/unit/
|
1225
|
-
- spec/unit/
|
1226
|
-
- spec/unit/
|
1227
|
-
- spec/unit/
|
1228
|
-
- spec/unit/
|
1229
|
-
- spec/unit/
|
1230
|
-
- spec/unit/
|
1231
|
-
- spec/unit/
|
1232
|
-
- spec/unit/
|
1233
|
-
- spec/unit/
|
1234
|
-
- spec/unit/
|
1235
|
-
- spec/unit/
|
1236
|
-
- spec/unit/
|
1237
|
-
- spec/unit/
|
1238
|
-
- spec/unit/
|
1239
|
-
- spec/unit/
|
1240
|
-
- spec/unit/
|
1241
|
-
- spec/unit/
|
1126
|
+
- spec/unit/indirector/certificate/rest.rb
|
1127
|
+
- spec/unit/indirector/certificate/ca.rb
|
1128
|
+
- spec/unit/indirector/certificate/file.rb
|
1129
|
+
- spec/unit/indirector/checksum/file.rb
|
1130
|
+
- spec/unit/indirector/terminus.rb
|
1131
|
+
- spec/unit/indirector/request.rb
|
1132
|
+
- spec/unit/configurer/plugin_handler.rb
|
1133
|
+
- spec/unit/configurer/downloader.rb
|
1134
|
+
- spec/unit/configurer/fact_handler.rb
|
1135
|
+
- spec/unit/property/keyvalue.rb
|
1136
|
+
- spec/unit/property/list.rb
|
1137
|
+
- spec/unit/property/ordered_list.rb
|
1138
|
+
- spec/unit/parameter.rb
|
1139
|
+
- spec/unit/util/cacher.rb
|
1140
|
+
- spec/unit/util/tagging.rb
|
1141
|
+
- spec/unit/util/package.rb
|
1142
|
+
- spec/unit/util/selinux.rb
|
1143
|
+
- spec/unit/util/checksums.rb
|
1144
|
+
- spec/unit/util/filetype.rb
|
1145
|
+
- spec/unit/util/posix.rb
|
1146
|
+
- spec/unit/util/resource_template.rb
|
1147
|
+
- spec/unit/util/metric.rb
|
1148
|
+
- spec/unit/util/nagios_maker.rb
|
1149
|
+
- spec/unit/util/zaml.rb
|
1150
|
+
- spec/unit/util/autoload/file_cache.rb
|
1151
|
+
- spec/unit/util/monkey_patches.rb
|
1152
|
+
- spec/unit/util/settings.rb
|
1153
|
+
- spec/unit/util/user_attr.rb
|
1154
|
+
- spec/unit/util/settings/file_setting.rb
|
1155
|
+
- spec/unit/util/json.rb
|
1156
|
+
- spec/unit/util/backups.rb
|
1157
|
+
- spec/unit/util/queue.rb
|
1158
|
+
- spec/unit/util/reference_serializer.rb
|
1159
|
+
- spec/unit/util/storage.rb
|
1160
|
+
- spec/unit/util/cache_accumulator.rb
|
1161
|
+
- spec/unit/util/feature.rb
|
1162
|
+
- spec/unit/util/autoload.rb
|
1163
|
+
- spec/unit/util/constant_inflector.rb
|
1164
|
+
- spec/unit/util/ldap/manager.rb
|
1165
|
+
- spec/unit/util/ldap/generator.rb
|
1166
|
+
- spec/unit/util/ldap/connection.rb
|
1167
|
+
- spec/unit/util/queue/stomp.rb
|
1168
|
+
- spec/unit/util/warnings.rb
|
1169
|
+
- spec/unit/util/loadedfile.rb
|
1170
|
+
- spec/unit/util/file_locking.rb
|
1171
|
+
- spec/unit/util/log.rb
|
1172
|
+
- spec/unit/type/mcx.rb
|
1173
|
+
- spec/unit/type/augeas.rb
|
1174
|
+
- spec/unit/type/package.rb
|
1175
|
+
- spec/unit/type/file/checksum.rb
|
1176
|
+
- spec/unit/type/file/selinux.rb
|
1177
|
+
- spec/unit/type/file/group.rb
|
1178
|
+
- spec/unit/type/file/ensure.rb
|
1179
|
+
- spec/unit/type/file/content.rb
|
1180
|
+
- spec/unit/type/file/owner.rb
|
1181
|
+
- spec/unit/type/file/source.rb
|
1182
|
+
- spec/unit/type/computer.rb
|
1183
|
+
- spec/unit/type/group.rb
|
1184
|
+
- spec/unit/type/mount.rb
|
1185
|
+
- spec/unit/type/tidy.rb
|
1186
|
+
- spec/unit/type/macauthorization.rb
|
1187
|
+
- spec/unit/type/filebucket.rb
|
1188
|
+
- spec/unit/type/cron.rb
|
1189
|
+
- spec/unit/type/zfs.rb
|
1190
|
+
- spec/unit/type/exec.rb
|
1191
|
+
- spec/unit/type/resources.rb
|
1192
|
+
- spec/unit/type/service.rb
|
1193
|
+
- spec/unit/type/noop_metaparam.rb
|
1194
|
+
- spec/unit/type/nagios.rb
|
1195
|
+
- spec/unit/type/zone.rb
|
1196
|
+
- spec/unit/type/zpool.rb
|
1197
|
+
- spec/unit/type/maillist.rb
|
1198
|
+
- spec/unit/type/component.rb
|
1199
|
+
- spec/unit/type/schedule.rb
|
1200
|
+
- spec/unit/type/file.rb
|
1201
|
+
- spec/unit/type/ssh_authorized_key.rb
|
1202
|
+
- spec/unit/type/user.rb
|
1203
|
+
- spec/unit/type/selmodule.rb
|
1204
|
+
- spec/unit/type/selboolean.rb
|
1205
|
+
- spec/integration/checksum.rb
|
1206
|
+
- spec/integration/resource/catalog.rb
|
1207
|
+
- spec/integration/transaction.rb
|
1208
|
+
- spec/integration/ssl/certificate_request.rb
|
1209
|
+
- spec/integration/ssl/certificate_authority.rb
|
1210
|
+
- spec/integration/ssl/host.rb
|
1211
|
+
- spec/integration/ssl/certificate_revocation_list.rb
|
1212
|
+
- spec/integration/reference/providers.rb
|
1213
|
+
- spec/integration/network/handler.rb
|
1214
|
+
- spec/integration/network/server/mongrel.rb
|
1215
|
+
- spec/integration/network/server/webrick.rb
|
1216
|
+
- spec/integration/network/formats.rb
|
1217
|
+
- spec/integration/network/client.rb
|
1218
|
+
- spec/integration/file_serving/metadata.rb
|
1219
|
+
- spec/integration/file_serving/fileset.rb
|
1220
|
+
- spec/integration/file_serving/terminus_helper.rb
|
1221
|
+
- spec/integration/file_serving/content.rb
|
1222
|
+
- spec/integration/bin/puppetmasterd.rb
|
1223
|
+
- spec/integration/parser/compiler.rb
|
1224
|
+
- spec/integration/parser/functions/require.rb
|
1225
|
+
- spec/integration/configurer.rb
|
1226
|
+
- spec/integration/node/environment.rb
|
1227
|
+
- spec/integration/node/facts.rb
|
1228
|
+
- spec/integration/provider/package.rb
|
1229
|
+
- spec/integration/provider/mailalias/aliases.rb
|
1230
|
+
- spec/integration/provider/service/init.rb
|
1231
|
+
- spec/integration/type.rb
|
1232
|
+
- spec/integration/node.rb
|
1233
|
+
- spec/integration/reports.rb
|
1234
|
+
- spec/integration/transaction/report.rb
|
1235
|
+
- spec/integration/application/puppet.rb
|
1236
|
+
- spec/integration/defaults.rb
|
1237
|
+
- spec/integration/indirector/report/rest.rb
|
1238
|
+
- spec/integration/indirector/certificate_request/rest.rb
|
1239
|
+
- spec/integration/indirector/rest.rb
|
1240
|
+
- spec/integration/indirector/catalog/compiler.rb
|
1241
|
+
- spec/integration/indirector/catalog/queue.rb
|
1242
|
+
- spec/integration/indirector/file_metadata/file_server.rb
|
1243
|
+
- spec/integration/indirector/file_content/file_server.rb
|
1244
|
+
- spec/integration/indirector/node/ldap.rb
|
1245
|
+
- spec/integration/indirector/certificate_revocation_list/rest.rb
|
1246
|
+
- spec/integration/indirector/direct_file_server.rb
|
1247
|
+
- spec/integration/indirector/certificate/rest.rb
|
1248
|
+
- spec/integration/util/settings.rb
|
1249
|
+
- spec/integration/util/feature.rb
|
1250
|
+
- spec/integration/util/autoload.rb
|
1251
|
+
- spec/integration/util/file_locking.rb
|
1252
|
+
- spec/integration/type/package.rb
|
1253
|
+
- spec/integration/type/tidy.rb
|
1254
|
+
- spec/integration/type/file.rb
|
1242
1255
|
has_rdoc: true
|
1243
|
-
homepage: http://
|
1256
|
+
homepage: http://puppetlabs.com
|
1244
1257
|
licenses: []
|
1245
1258
|
|
1246
1259
|
post_install_message:
|
@@ -1256,18 +1269,20 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
1256
1269
|
requirements:
|
1257
1270
|
- - ">="
|
1258
1271
|
- !ruby/object:Gem::Version
|
1272
|
+
segments:
|
1273
|
+
- 0
|
1259
1274
|
version: "0"
|
1260
|
-
version:
|
1261
1275
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
1262
1276
|
requirements:
|
1263
1277
|
- - ">="
|
1264
1278
|
- !ruby/object:Gem::Version
|
1279
|
+
segments:
|
1280
|
+
- 0
|
1265
1281
|
version: "0"
|
1266
|
-
version:
|
1267
1282
|
requirements: []
|
1268
1283
|
|
1269
1284
|
rubyforge_project: puppet
|
1270
|
-
rubygems_version: 1.3.
|
1285
|
+
rubygems_version: 1.3.6
|
1271
1286
|
signing_key:
|
1272
1287
|
specification_version: 3
|
1273
1288
|
summary: Puppet, an automated configuration management tool
|