puppet 3.0.0.rc5 → 3.0.0.rc7
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/LICENSE +1 -1
- data/README_DEVELOPER.md +209 -1
- data/README_HIERA.md +148 -0
- data/Rakefile +25 -27
- data/bin/extlookup2hiera +56 -0
- data/conf/auth.conf +34 -34
- data/examples/hiera/README.md +91 -0
- data/examples/hiera/etc/hiera.yaml +15 -0
- data/examples/hiera/etc/hieradb/common.yaml +3 -0
- data/examples/hiera/etc/hieradb/dc1.yaml +6 -0
- data/examples/hiera/etc/hieradb/development.yaml +2 -0
- data/examples/hiera/etc/puppet.conf +3 -0
- data/examples/hiera/modules/data/manifests/common.pp +3 -0
- data/examples/hiera/modules/ntp/manifests/config.pp +5 -0
- data/examples/hiera/modules/ntp/manifests/data.pp +3 -0
- data/examples/hiera/modules/ntp/templates/ntp.conf.erb +3 -0
- data/examples/hiera/modules/users/manifests/common.pp +3 -0
- data/examples/hiera/modules/users/manifests/dc1.pp +3 -0
- data/examples/hiera/modules/users/manifests/development.pp +3 -0
- data/examples/hiera/site.pp +3 -0
- data/ext/build_defaults.yaml +23 -0
- data/ext/debian/README.Debian +8 -0
- data/ext/debian/README.source +2 -0
- data/ext/debian/TODO.Debian +1 -0
- data/ext/debian/changelog.erb +1104 -0
- data/ext/debian/compat +1 -0
- data/ext/debian/control +143 -0
- data/ext/debian/copyright +361 -0
- data/ext/debian/docs +1 -0
- data/ext/debian/fileserver.conf +17 -0
- data/ext/debian/puppet-common.dirs +8 -0
- data/ext/debian/puppet-common.install +4 -0
- data/ext/debian/puppet-common.lintian-overrides +5 -0
- data/ext/debian/puppet-common.manpages +2 -0
- data/ext/debian/puppet-common.postinst +35 -0
- data/ext/debian/puppet-common.postrm +32 -0
- data/ext/debian/puppet-el.dirs +1 -0
- data/ext/debian/puppet-el.emacsen-install +25 -0
- data/ext/debian/puppet-el.emacsen-remove +11 -0
- data/ext/debian/puppet-el.emacsen-startup +9 -0
- data/ext/debian/puppet-el.install +1 -0
- data/ext/debian/puppet-testsuite.install +2 -0
- data/ext/debian/puppet-testsuite.lintian-overrides +4 -0
- data/ext/debian/puppet.conf +14 -0
- data/ext/debian/puppet.default +7 -0
- data/ext/debian/puppet.init +118 -0
- data/ext/debian/puppet.lintian-overrides +3 -0
- data/ext/debian/puppet.logrotate +11 -0
- data/ext/debian/puppet.manpages +32 -0
- data/ext/debian/puppet.postinst +20 -0
- data/ext/debian/puppet.postrm +20 -0
- data/ext/debian/puppet.preinst +20 -0
- data/ext/debian/puppetmaster-common.install +2 -0
- data/ext/debian/puppetmaster-common.manpages +2 -0
- data/ext/debian/puppetmaster-common.puppetqd.default +27 -0
- data/ext/debian/puppetmaster-common.puppetqd.init +84 -0
- data/ext/debian/puppetmaster-passenger.dirs +4 -0
- data/ext/debian/puppetmaster-passenger.postinst +66 -0
- data/ext/debian/puppetmaster-passenger.postrm +33 -0
- data/ext/debian/puppetmaster.README.debian +16 -0
- data/ext/debian/puppetmaster.default +38 -0
- data/ext/debian/puppetmaster.init +158 -0
- data/ext/debian/puppetmaster.lintian-overrides +3 -0
- data/ext/debian/puppetmaster.postinst +20 -0
- data/ext/debian/puppetmaster.postrm +5 -0
- data/ext/debian/puppetmaster.preinst +22 -0
- data/ext/debian/rules +128 -0
- data/ext/debian/source/format +1 -0
- data/ext/debian/source/options +1 -0
- data/ext/debian/vim-puppet.README.Debian +13 -0
- data/ext/debian/vim-puppet.dirs +3 -0
- data/ext/debian/vim-puppet.yaml +5 -0
- data/ext/debian/watch +2 -0
- data/ext/emacs/puppet-mode.el +1 -0
- data/ext/envpuppet +4 -0
- data/ext/envpuppet.bat +3 -2
- data/{conf → ext}/freebsd/puppetd +0 -0
- data/{conf → ext}/freebsd/puppetmasterd +0 -0
- data/{conf → ext}/gentoo/conf.d/puppet +0 -0
- data/{conf → ext}/gentoo/conf.d/puppetmaster +0 -0
- data/{conf → ext}/gentoo/init.d/puppet +0 -0
- data/{conf → ext}/gentoo/init.d/puppetmaster +0 -0
- data/{conf → ext}/gentoo/puppet/fileserver.conf +0 -0
- data/{conf → ext}/gentoo/puppet/puppet.conf +0 -0
- data/ext/ips/puppet-agent +49 -0
- data/ext/ips/puppet-master +44 -0
- data/ext/ips/puppet.conf +29 -0
- data/ext/ips/puppet.p5m.erb +12 -0
- data/ext/ips/puppetagent.xml +46 -0
- data/ext/ips/puppetmaster.xml +42 -0
- data/ext/ips/rules +19 -0
- data/ext/ips/transforms +34 -0
- data/{conf → ext}/osx/PackageInfo.plist +0 -0
- data/{conf → ext}/osx/createpackage.sh +1 -1
- data/ext/osx/file_mapping.yaml +33 -0
- data/ext/osx/preflight.erb +37 -0
- data/{tasks/rake/templates → ext/osx}/prototype.plist.erb +0 -0
- data/ext/packaging/README-Solaris.md +117 -0
- data/ext/packaging/README.md +89 -0
- data/ext/packaging/tasks/00_utils.rb +236 -0
- data/ext/packaging/tasks/10_setupvars.rake +62 -0
- data/ext/packaging/tasks/apple.rake +201 -0
- data/ext/packaging/tasks/clean.rake +5 -0
- data/ext/packaging/tasks/deb.rake +105 -0
- data/ext/packaging/tasks/gem.rake +52 -0
- data/ext/packaging/tasks/ips.rake +78 -0
- data/ext/packaging/tasks/mock.rake +88 -0
- data/ext/packaging/tasks/release.rake +20 -0
- data/ext/packaging/tasks/rpm.rake +39 -0
- data/ext/packaging/tasks/ship.rake +34 -0
- data/ext/packaging/tasks/sign.rake +76 -0
- data/ext/packaging/tasks/tar.rake +20 -0
- data/ext/project_data.yaml +25 -0
- data/ext/rack/files/apache2.conf +2 -1
- data/{conf → ext}/redhat/client.init +0 -0
- data/{conf → ext}/redhat/client.sysconfig +0 -0
- data/{conf → ext}/redhat/fileserver.conf +0 -0
- data/{conf → ext}/redhat/logrotate +0 -0
- data/{conf → ext}/redhat/puppet.conf +0 -0
- data/{conf/redhat/puppet.spec → ext/redhat/puppet.spec.erb} +140 -33
- data/{conf → ext}/redhat/queue.init +0 -0
- data/{conf → ext}/redhat/rundir-perms.patch +0 -0
- data/{conf → ext}/redhat/server.init +0 -0
- data/{conf → ext}/redhat/server.sysconfig +0 -0
- data/{conf → ext}/solaris/pkginfo +0 -0
- data/{conf → ext}/solaris/smf/puppetd.xml +0 -0
- data/{conf → ext}/solaris/smf/puppetmasterd.xml +0 -0
- data/{conf → ext}/solaris/smf/svc-puppetd +0 -0
- data/{conf → ext}/solaris/smf/svc-puppetmasterd +0 -0
- data/{conf → ext}/suse/client.init +0 -0
- data/{conf → ext}/suse/fileserver.conf +0 -0
- data/{conf → ext}/suse/logrotate +0 -0
- data/{conf → ext}/suse/puppet.conf +0 -0
- data/{conf → ext}/suse/puppet.spec +1 -1
- data/{conf → ext}/suse/server.init +0 -0
- data/ext/systemd/puppetagent.service +13 -0
- data/ext/systemd/puppetmaster.service +13 -0
- data/{conf → ext}/windows/eventlog/Rakefile +0 -0
- data/{conf → ext}/windows/eventlog/puppetres.dll +0 -0
- data/{conf → ext}/windows/eventlog/puppetres.mc +0 -0
- data/ext/windows/service/daemon.bat +6 -0
- data/ext/windows/service/daemon.rb +90 -0
- data/install.rb +22 -32
- data/lib/hiera/backend/puppet_backend.rb +102 -0
- data/lib/hiera/scope.rb +42 -0
- data/lib/hiera_puppet.rb +89 -0
- data/lib/puppet.rb +1 -1
- data/lib/puppet/agent.rb +2 -2
- data/lib/puppet/agent/locker.rb +12 -9
- data/lib/puppet/application.rb +10 -8
- data/lib/puppet/application/agent.rb +12 -8
- data/lib/puppet/application/apply.rb +2 -2
- data/lib/puppet/application/cert.rb +6 -6
- data/lib/puppet/application/certificate.rb +1 -4
- data/lib/puppet/application/describe.rb +1 -1
- data/lib/puppet/application/device.rb +5 -2
- data/lib/puppet/application/doc.rb +1 -1
- data/lib/puppet/application/face_base.rb +3 -13
- data/lib/puppet/application/filebucket.rb +1 -1
- data/lib/puppet/application/inspect.rb +1 -1
- data/lib/puppet/application/kick.rb +4 -2
- data/lib/puppet/application/master.rb +2 -2
- data/lib/puppet/application/queue.rb +3 -1
- data/lib/puppet/application/resource.rb +1 -1
- data/lib/puppet/configurer.rb +11 -7
- data/lib/puppet/configurer/downloader.rb +1 -4
- data/lib/puppet/daemon.rb +4 -4
- data/lib/puppet/defaults.rb +64 -60
- data/lib/puppet/external/dot.rb +1 -1
- data/lib/puppet/external/pson/common.rb +15 -0
- data/lib/puppet/external/pson/pure.rb +0 -62
- data/lib/puppet/external/pson/pure/generator.rb +1 -1
- data/lib/puppet/external/pson/pure/parser.rb +2 -2
- data/lib/puppet/face/ca.rb +19 -14
- data/lib/puppet/face/config.rb +2 -2
- data/lib/puppet/face/facts.rb +1 -1
- data/lib/puppet/face/help/action.erb +0 -1
- data/lib/puppet/face/help/face.erb +0 -1
- data/lib/puppet/face/help/man.erb +3 -6
- data/lib/puppet/face/module/install.rb +1 -1
- data/lib/puppet/face/module/list.rb +1 -1
- data/lib/puppet/face/module/uninstall.rb +1 -1
- data/lib/puppet/face/node.rb +1 -1
- data/lib/puppet/face/node/clean.rb +30 -25
- data/lib/puppet/feature/base.rb +0 -3
- data/lib/puppet/feature/rails.rb +2 -1
- data/lib/puppet/file_serving/terminus_selector.rb +1 -1
- data/lib/puppet/indirector/catalog/active_record.rb +5 -0
- data/lib/puppet/indirector/catalog/static_compiler.rb +2 -3
- data/lib/puppet/indirector/certificate/disabled_ca.rb +22 -0
- data/lib/puppet/indirector/certificate_request/disabled_ca.rb +22 -0
- data/lib/puppet/indirector/certificate_revocation_list/disabled_ca.rb +22 -0
- data/lib/puppet/indirector/face.rb +3 -3
- data/lib/puppet/indirector/facts/active_record.rb +5 -0
- data/lib/puppet/indirector/facts/facter.rb +1 -4
- data/lib/puppet/indirector/facts/inventory_active_record.rb +6 -0
- data/lib/puppet/indirector/file_bucket_file/file.rb +2 -1
- data/lib/puppet/indirector/indirection.rb +2 -2
- data/lib/puppet/indirector/key/disabled_ca.rb +22 -0
- data/lib/puppet/indirector/node/active_record.rb +5 -0
- data/lib/puppet/indirector/request.rb +4 -0
- data/lib/puppet/indirector/resource/active_record.rb +5 -0
- data/lib/puppet/network/authentication.rb +30 -0
- data/lib/puppet/network/http.rb +0 -13
- data/lib/puppet/network/http/connection.rb +10 -2
- data/lib/puppet/network/http/handler.rb +8 -0
- data/lib/puppet/network/http/mongrel/rest.rb +5 -0
- data/lib/puppet/network/http/rack/rest.rb +7 -0
- data/lib/puppet/network/http/webrick.rb +3 -6
- data/lib/puppet/network/http/webrick/rest.rb +4 -0
- data/lib/puppet/network/server.rb +9 -33
- data/lib/puppet/node.rb +1 -1
- data/lib/puppet/node/facts.rb +0 -1
- data/lib/puppet/parser/compiler.rb +1 -1
- data/lib/puppet/parser/functions.rb +12 -1
- data/lib/puppet/parser/functions/hiera.rb +8 -0
- data/lib/puppet/parser/functions/hiera_array.rb +8 -0
- data/lib/puppet/parser/functions/hiera_hash.rb +8 -0
- data/lib/puppet/parser/functions/hiera_include.rb +11 -0
- data/lib/puppet/parser/functions/shellquote.rb +21 -29
- data/lib/puppet/parser/lexer.rb +2 -1
- data/lib/puppet/parser/scope.rb +8 -0
- data/lib/puppet/provider/exec/windows.rb +1 -1
- data/lib/puppet/provider/group/groupadd.rb +2 -3
- data/lib/puppet/provider/package/pkg.rb +37 -10
- data/lib/puppet/provider/service/daemontools.rb +1 -1
- data/lib/puppet/provider/service/launchd.rb +1 -1
- data/lib/puppet/provider/service/redhat.rb +1 -1
- data/lib/puppet/provider/service/runit.rb +1 -1
- data/lib/puppet/provider/user/useradd.rb +8 -3
- data/lib/puppet/provider/user/windows_adsi.rb +11 -0
- data/lib/puppet/provider/zfs/zfs.rb +29 -2
- data/lib/puppet/provider/zone/solaris.rb +144 -39
- data/lib/puppet/provider/zpool/zpool.rb +7 -10
- data/lib/puppet/settings.rb +50 -86
- data/lib/puppet/settings/duration_setting.rb +34 -0
- data/lib/puppet/settings/terminus_setting.rb +16 -0
- data/lib/puppet/ssl/base.rb +49 -9
- data/lib/puppet/ssl/certificate.rb +13 -9
- data/lib/puppet/ssl/certificate_authority.rb +4 -0
- data/lib/puppet/ssl/certificate_authority/interface.rb +10 -17
- data/lib/puppet/ssl/certificate_factory.rb +4 -21
- data/lib/puppet/ssl/certificate_request.rb +1 -10
- data/lib/puppet/ssl/certificate_revocation_list.rb +1 -3
- data/lib/puppet/ssl/digest.rb +20 -0
- data/lib/puppet/ssl/host.rb +31 -6
- data/lib/puppet/test/test_helper.rb +1 -1
- data/lib/puppet/transaction/report.rb +2 -1
- data/lib/puppet/type.rb +1 -1
- data/lib/puppet/type/augeas.rb +1 -1
- data/lib/puppet/type/cron.rb +1 -1
- data/lib/puppet/type/exec.rb +7 -8
- data/lib/puppet/type/file.rb +1 -1
- data/lib/puppet/type/file/content.rb +2 -2
- data/lib/puppet/type/file/ensure.rb +1 -1
- data/lib/puppet/type/file/mode.rb +1 -1
- data/lib/puppet/type/file/selcontext.rb +6 -2
- data/lib/puppet/type/file/source.rb +1 -1
- data/lib/puppet/type/schedule.rb +1 -1
- data/lib/puppet/type/scheduled_task.rb +1 -1
- data/lib/puppet/type/tidy.rb +1 -1
- data/lib/puppet/type/zone.rb +126 -253
- data/lib/puppet/util.rb +10 -23
- data/lib/puppet/util/adsi.rb +22 -14
- data/lib/puppet/util/log/destinations.rb +7 -0
- data/lib/puppet/util/log/rate_limited_logger.rb +40 -0
- data/lib/puppet/util/metric.rb +2 -2
- data/lib/puppet/util/monkey_patches.rb +8 -0
- data/lib/puppet/util/platform.rb +7 -0
- data/lib/puppet/util/selinux.rb +31 -36
- data/lib/puppet/util/windows/error.rb +1 -1
- data/lib/puppet/util/windows/process.rb +3 -3
- data/lib/puppet/util/windows/security.rb +7 -7
- data/lib/puppet/util/windows/user.rb +65 -2
- data/lib/puppet/util/zaml.rb +90 -46
- data/lib/puppet/version.rb +1 -1
- data/spec/fixtures/hiera.yaml +9 -0
- data/spec/fixtures/manifests/site.pp +0 -0
- data/spec/integration/defaults_spec.rb +25 -11
- data/spec/integration/faces/ca_spec.rb +11 -16
- data/spec/integration/network/server/webrick_spec.rb +14 -27
- data/spec/integration/node_spec.rb +4 -1
- data/spec/integration/parser/functions/require_spec.rb +3 -3
- data/spec/integration/parser/undef_param_spec.rb +88 -0
- data/spec/integration/provider/mount_spec.rb +4 -1
- data/spec/integration/ssl/certificate_authority_spec.rb +18 -0
- data/spec/lib/puppet_spec/files.rb +3 -3
- data/spec/lib/puppet_spec/settings.rb +0 -1
- data/spec/shared_contexts/platform.rb +8 -0
- data/spec/spec_helper.rb +6 -0
- data/spec/unit/agent/locker_spec.rb +8 -2
- data/spec/unit/application/agent_spec.rb +29 -7
- data/spec/unit/application/apply_spec.rb +1 -1
- data/spec/unit/application/device_spec.rb +18 -1
- data/spec/unit/application/face_base_spec.rb +16 -2
- data/spec/unit/application/kick_spec.rb +8 -0
- data/spec/unit/application/queue_spec.rb +5 -0
- data/spec/unit/application_spec.rb +13 -23
- data/spec/unit/configurer/downloader_spec.rb +2 -11
- data/spec/unit/configurer_spec.rb +6 -0
- data/spec/unit/face/node_spec.rb +1 -1
- data/spec/unit/hiera/backend/puppet_backend_spec.rb +140 -0
- data/spec/unit/hiera/scope_spec.rb +62 -0
- data/spec/unit/hiera_puppet_spec.rb +111 -0
- data/spec/unit/indirector/catalog/active_record_spec.rb +4 -0
- data/spec/unit/indirector/catalog/static_compiler_spec.rb +194 -0
- data/spec/unit/indirector/certificate/disabled_ca_spec.rb +33 -0
- data/spec/unit/indirector/certificate_request/disabled_ca_spec.rb +33 -0
- data/spec/unit/indirector/certificate_revocation_list/disabled_ca_spec.rb +33 -0
- data/spec/unit/indirector/facts/active_record_spec.rb +37 -26
- data/spec/unit/indirector/facts/inventory_active_record_spec.rb +5 -0
- data/spec/unit/indirector/hiera_spec.rb +2 -1
- data/spec/unit/indirector/key/disabled_ca_spec.rb +33 -0
- data/spec/unit/indirector/node/active_record_spec.rb +7 -0
- data/spec/unit/indirector/request_spec.rb +22 -0
- data/spec/unit/indirector/resource/active_record_spec.rb +5 -0
- data/spec/unit/module_tool/application_spec.rb +1 -1
- data/spec/unit/network/authentication_spec.rb +86 -0
- data/spec/unit/network/http/connection_spec.rb +21 -0
- data/spec/unit/network/http/handler_spec.rb +12 -0
- data/spec/unit/network/http/rack/rest_spec.rb +7 -0
- data/spec/unit/network/http/webrick_spec.rb +11 -26
- data/spec/unit/network/server_spec.rb +79 -192
- data/spec/unit/node/facts_spec.rb +2 -2
- data/spec/unit/parser/ast/vardef_spec.rb +4 -4
- data/spec/unit/parser/files_spec.rb +3 -0
- data/spec/unit/parser/functions/defined_spec.rb +5 -5
- data/spec/unit/parser/functions/fqdn_rand_spec.rb +1 -1
- data/spec/unit/parser/functions/hiera_array_spec.rb +23 -0
- data/spec/unit/parser/functions/hiera_hash_spec.rb +19 -0
- data/spec/unit/parser/functions/hiera_include_spec.rb +19 -0
- data/spec/unit/parser/functions/hiera_spec.rb +21 -0
- data/spec/unit/parser/functions/include_spec.rb +3 -3
- data/spec/unit/parser/functions/realize_spec.rb +3 -3
- data/spec/unit/parser/functions/require_spec.rb +5 -5
- data/spec/unit/parser/functions/shellquote_spec.rb +0 -4
- data/spec/unit/parser/functions_spec.rb +6 -10
- data/spec/unit/parser/lexer_spec.rb +13 -0
- data/spec/unit/parser/scope_spec.rb +16 -1
- data/spec/unit/provider/exec/posix_spec.rb +7 -6
- data/spec/unit/provider/group/groupadd_spec.rb +36 -30
- data/spec/unit/provider/package/pkg_spec.rb +16 -2
- data/spec/unit/provider/service/redhat_spec.rb +2 -2
- data/spec/unit/provider/sshkey/parsed_spec.rb +4 -0
- data/spec/unit/provider/user/user_role_add_spec.rb +125 -126
- data/spec/unit/provider/user/useradd_spec.rb +147 -118
- data/spec/unit/provider/user/windows_adsi_spec.rb +22 -0
- data/spec/unit/provider/zone/solaris_spec.rb +126 -7
- data/spec/unit/provider/zpool/zpool_spec.rb +4 -3
- data/spec/unit/puppet_spec.rb +7 -0
- data/spec/unit/settings/duration_setting_spec.rb +45 -0
- data/spec/unit/settings/terminus_setting_spec.rb +28 -0
- data/spec/unit/settings_spec.rb +21 -23
- data/spec/unit/ssl/base_spec.rb +68 -19
- data/spec/unit/ssl/certificate_authority/interface_spec.rb +19 -30
- data/spec/unit/ssl/certificate_authority_spec.rb +3 -2
- data/spec/unit/ssl/certificate_factory_spec.rb +15 -6
- data/spec/unit/ssl/certificate_request_spec.rb +80 -113
- data/spec/unit/ssl/certificate_revocation_list_spec.rb +1 -1
- data/spec/unit/ssl/certificate_spec.rb +26 -2
- data/spec/unit/ssl/digest_spec.rb +35 -0
- data/spec/unit/ssl/host_spec.rb +73 -27
- data/spec/unit/ssl/key_spec.rb +0 -4
- data/spec/unit/type/exec_spec.rb +1 -1
- data/spec/unit/type/file_spec.rb +2 -1
- data/spec/unit/type/scheduled_task_spec.rb +2 -2
- data/spec/unit/type/zone_spec.rb +52 -10
- data/spec/unit/util/adsi_spec.rb +19 -0
- data/spec/unit/util/checksums_spec.rb +2 -3
- data/spec/unit/util/execution_spec.rb +1 -1
- data/spec/unit/util/log/destinations_spec.rb +1 -0
- data/spec/unit/util/log/rate_limited_logger_spec.rb +51 -0
- data/spec/unit/util/logging_spec.rb +6 -6
- data/spec/unit/util/selinux_spec.rb +24 -32
- data/spec/unit/util/zaml_spec.rb +94 -6
- data/spec/unit/util_spec.rb +17 -0
- data/spec/watchr.rb +2 -6
- data/tasks/{rake/manpages.rake → manpages.rake} +0 -0
- data/tasks/{rake/parser.rake → parser.rake} +0 -0
- metadata +1003 -119
- data/CHANGELOG +0 -9233
- data/conf/osx/preflight +0 -24
- data/lib/puppet/network/http/mongrel.rb +0 -35
- data/lib/puppet/util/config_timeout.rb +0 -24
- data/spec/unit/network/http/mongrel/rest_spec.rb +0 -257
- data/spec/unit/network/http/mongrel_spec.rb +0 -91
- data/spec/unit/network/http_spec.rb +0 -31
- data/spec/unit/util/config_timeout_spec.rb +0 -57
- data/tasks/rake/apple.rake +0 -176
- data/tasks/rake/changelog.rake +0 -15
- data/tasks/rake/ci.rake +0 -22
- data/tasks/rake/dailybuild.rake +0 -9
- data/tasks/rake/gem.rake +0 -63
- data/tasks/rake/git_workflow.rake +0 -134
- data/tasks/rake/metrics.rake +0 -14
- data/tasks/rake/sign.rake +0 -14
- data/tasks/rake/testbranch.rake +0 -16
- data/tasks/rake/yard.rake +0 -11
data/spec/unit/util_spec.rb
CHANGED
@@ -492,4 +492,21 @@ describe Puppet::Util do
|
|
492
492
|
File.read(target.path).should == "hello, world\n"
|
493
493
|
end
|
494
494
|
end
|
495
|
+
|
496
|
+
describe "#pretty_backtrace" do
|
497
|
+
it "should include lines that don't match the standard backtrace pattern" do
|
498
|
+
line = "non-standard line\n"
|
499
|
+
trace = caller[0..2] + [line] + caller[3..-1]
|
500
|
+
Puppet::Util.pretty_backtrace(trace).should =~ /#{line}/
|
501
|
+
end
|
502
|
+
|
503
|
+
it "should include function names" do
|
504
|
+
Puppet::Util.pretty_backtrace.should =~ /:in `\w+'/
|
505
|
+
end
|
506
|
+
|
507
|
+
it "should work with Windows paths" do
|
508
|
+
Puppet::Util.pretty_backtrace(["C:/work/puppet/c.rb:12:in `foo'\n"]).
|
509
|
+
should == "C:/work/puppet/c.rb:12:in `foo'"
|
510
|
+
end
|
511
|
+
end
|
495
512
|
end
|
data/spec/watchr.rb
CHANGED
@@ -80,13 +80,9 @@ end
|
|
80
80
|
def run_spec_files(files)
|
81
81
|
files = Array(files)
|
82
82
|
return if files.empty?
|
83
|
-
if File.exist?(File.expand_path("~/.rspec")) then
|
84
|
-
opts = '' # use the user defaults
|
85
|
-
else
|
86
|
-
opts = File.readlines('spec/spec.opts').collect { |l| l.chomp }.join(" ")
|
87
|
-
end
|
88
83
|
begin
|
89
|
-
|
84
|
+
# End users can put additional options into ~/.rspec
|
85
|
+
run_spec("rspec --tty #{files.join(' ')}")
|
90
86
|
rescue => detail
|
91
87
|
puts "Failed to load #{files}: #{detail}"
|
92
88
|
end
|
File without changes
|
File without changes
|
metadata
CHANGED
@@ -1,72 +1,66 @@
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
name: puppet
|
3
|
-
version: !ruby/object:Gem::Version
|
4
|
-
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
hash: 1331283097
|
5
5
|
prerelease: 6
|
6
|
+
segments:
|
7
|
+
- 3
|
8
|
+
- 0
|
9
|
+
- 0
|
10
|
+
- rc
|
11
|
+
- 7
|
12
|
+
version: 3.0.0.rc7
|
6
13
|
platform: ruby
|
7
|
-
authors:
|
14
|
+
authors:
|
8
15
|
- Puppet Labs
|
9
16
|
autorequire:
|
10
17
|
bindir: bin
|
11
18
|
cert_chain: []
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
requirement: !ruby/object:Gem::Requirement
|
17
|
-
none: false
|
18
|
-
requirements:
|
19
|
-
- - ! '>='
|
20
|
-
- !ruby/object:Gem::Version
|
21
|
-
version: 1.6.11
|
22
|
-
type: :runtime
|
23
|
-
prerelease: false
|
24
|
-
version_requirements: !ruby/object:Gem::Requirement
|
25
|
-
none: false
|
26
|
-
requirements:
|
27
|
-
- - ! '>='
|
28
|
-
- !ruby/object:Gem::Version
|
29
|
-
version: 1.6.11
|
30
|
-
- !ruby/object:Gem::Dependency
|
19
|
+
|
20
|
+
date: 2012-09-21 00:00:00 Z
|
21
|
+
dependencies:
|
22
|
+
- !ruby/object:Gem::Dependency
|
31
23
|
name: hiera
|
32
|
-
requirement: !ruby/object:Gem::Requirement
|
33
|
-
none: false
|
34
|
-
requirements:
|
35
|
-
- - ! '>='
|
36
|
-
- !ruby/object:Gem::Version
|
37
|
-
version: 1.0.0rc
|
38
|
-
type: :runtime
|
39
24
|
prerelease: false
|
40
|
-
|
41
|
-
none: false
|
42
|
-
requirements:
|
43
|
-
- - ! '>='
|
44
|
-
- !ruby/object:Gem::Version
|
45
|
-
version: 1.0.0rc
|
46
|
-
- !ruby/object:Gem::Dependency
|
47
|
-
name: hiera-puppet
|
48
|
-
requirement: !ruby/object:Gem::Requirement
|
25
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
49
26
|
none: false
|
50
|
-
requirements:
|
51
|
-
- -
|
52
|
-
- !ruby/object:Gem::Version
|
27
|
+
requirements:
|
28
|
+
- - ">="
|
29
|
+
- !ruby/object:Gem::Version
|
30
|
+
hash: 665641595
|
31
|
+
segments:
|
32
|
+
- 1
|
33
|
+
- 0
|
34
|
+
- 0
|
35
|
+
- rc
|
53
36
|
version: 1.0.0rc
|
54
37
|
type: :runtime
|
38
|
+
version_requirements: *id001
|
39
|
+
- !ruby/object:Gem::Dependency
|
40
|
+
name: facter
|
55
41
|
prerelease: false
|
56
|
-
|
42
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
57
43
|
none: false
|
58
|
-
requirements:
|
59
|
-
- -
|
60
|
-
- !ruby/object:Gem::Version
|
61
|
-
|
44
|
+
requirements:
|
45
|
+
- - ">="
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
hash: 25
|
48
|
+
segments:
|
49
|
+
- 1
|
50
|
+
- 6
|
51
|
+
- 11
|
52
|
+
version: 1.6.11
|
53
|
+
type: :runtime
|
54
|
+
version_requirements: *id002
|
62
55
|
description: Puppet, an automated configuration management tool
|
63
|
-
email:
|
64
|
-
executables:
|
56
|
+
email: info@puppetlabs.com
|
57
|
+
executables:
|
65
58
|
- puppet
|
66
59
|
extensions: []
|
60
|
+
|
67
61
|
extra_rdoc_files: []
|
68
|
-
|
69
|
-
|
62
|
+
|
63
|
+
files:
|
70
64
|
- CONTRIBUTING.md
|
71
65
|
- Gemfile
|
72
66
|
- Gemfile.lock
|
@@ -74,8 +68,13 @@ files:
|
|
74
68
|
- Rakefile
|
75
69
|
- README.md
|
76
70
|
- README_DEVELOPER.md
|
71
|
+
- README_HIERA.md
|
77
72
|
- install.rb
|
73
|
+
- bin/extlookup2hiera
|
78
74
|
- bin/puppet
|
75
|
+
- lib/hiera/backend/puppet_backend.rb
|
76
|
+
- lib/hiera/scope.rb
|
77
|
+
- lib/hiera_puppet.rb
|
79
78
|
- lib/puppet/agent/disabler.rb
|
80
79
|
- lib/puppet/agent/locker.rb
|
81
80
|
- lib/puppet/agent.rb
|
@@ -223,12 +222,15 @@ files:
|
|
223
222
|
- lib/puppet/indirector/catalog/store_configs.rb
|
224
223
|
- lib/puppet/indirector/catalog/yaml.rb
|
225
224
|
- lib/puppet/indirector/certificate/ca.rb
|
225
|
+
- lib/puppet/indirector/certificate/disabled_ca.rb
|
226
226
|
- lib/puppet/indirector/certificate/file.rb
|
227
227
|
- lib/puppet/indirector/certificate/rest.rb
|
228
228
|
- lib/puppet/indirector/certificate_request/ca.rb
|
229
|
+
- lib/puppet/indirector/certificate_request/disabled_ca.rb
|
229
230
|
- lib/puppet/indirector/certificate_request/file.rb
|
230
231
|
- lib/puppet/indirector/certificate_request/rest.rb
|
231
232
|
- lib/puppet/indirector/certificate_revocation_list/ca.rb
|
233
|
+
- lib/puppet/indirector/certificate_revocation_list/disabled_ca.rb
|
232
234
|
- lib/puppet/indirector/certificate_revocation_list/file.rb
|
233
235
|
- lib/puppet/indirector/certificate_revocation_list/rest.rb
|
234
236
|
- lib/puppet/indirector/certificate_status/file.rb
|
@@ -279,6 +281,7 @@ files:
|
|
279
281
|
- lib/puppet/indirector/instrumentation_probe.rb
|
280
282
|
- lib/puppet/indirector/json.rb
|
281
283
|
- lib/puppet/indirector/key/ca.rb
|
284
|
+
- lib/puppet/indirector/key/disabled_ca.rb
|
282
285
|
- lib/puppet/indirector/key/file.rb
|
283
286
|
- lib/puppet/indirector/ldap.rb
|
284
287
|
- lib/puppet/indirector/memory.rb
|
@@ -358,6 +361,7 @@ files:
|
|
358
361
|
- lib/puppet/module_tool.rb
|
359
362
|
- lib/puppet/network/auth_config_parser.rb
|
360
363
|
- lib/puppet/network/authconfig.rb
|
364
|
+
- lib/puppet/network/authentication.rb
|
361
365
|
- lib/puppet/network/authorization.rb
|
362
366
|
- lib/puppet/network/authstore.rb
|
363
367
|
- lib/puppet/network/client_request.rb
|
@@ -370,7 +374,6 @@ files:
|
|
370
374
|
- lib/puppet/network/http/connection.rb
|
371
375
|
- lib/puppet/network/http/handler.rb
|
372
376
|
- lib/puppet/network/http/mongrel/rest.rb
|
373
|
-
- lib/puppet/network/http/mongrel.rb
|
374
377
|
- lib/puppet/network/http/rack/httphandler.rb
|
375
378
|
- lib/puppet/network/http/rack/rest.rb
|
376
379
|
- lib/puppet/network/http/rack.rb
|
@@ -435,6 +438,10 @@ files:
|
|
435
438
|
- lib/puppet/parser/functions/file.rb
|
436
439
|
- lib/puppet/parser/functions/fqdn_rand.rb
|
437
440
|
- lib/puppet/parser/functions/generate.rb
|
441
|
+
- lib/puppet/parser/functions/hiera.rb
|
442
|
+
- lib/puppet/parser/functions/hiera_array.rb
|
443
|
+
- lib/puppet/parser/functions/hiera_hash.rb
|
444
|
+
- lib/puppet/parser/functions/hiera_include.rb
|
438
445
|
- lib/puppet/parser/functions/include.rb
|
439
446
|
- lib/puppet/parser/functions/inline_template.rb
|
440
447
|
- lib/puppet/parser/functions/md5.rb
|
@@ -630,10 +637,12 @@ files:
|
|
630
637
|
- lib/puppet/settings/base_setting.rb
|
631
638
|
- lib/puppet/settings/boolean_setting.rb
|
632
639
|
- lib/puppet/settings/directory_setting.rb
|
640
|
+
- lib/puppet/settings/duration_setting.rb
|
633
641
|
- lib/puppet/settings/errors.rb
|
634
642
|
- lib/puppet/settings/file_setting.rb
|
635
643
|
- lib/puppet/settings/path_setting.rb
|
636
644
|
- lib/puppet/settings/string_setting.rb
|
645
|
+
- lib/puppet/settings/terminus_setting.rb
|
637
646
|
- lib/puppet/settings.rb
|
638
647
|
- lib/puppet/simple_graph.rb
|
639
648
|
- lib/puppet/ssl/base.rb
|
@@ -644,6 +653,7 @@ files:
|
|
644
653
|
- lib/puppet/ssl/certificate_request.rb
|
645
654
|
- lib/puppet/ssl/certificate_revocation_list.rb
|
646
655
|
- lib/puppet/ssl/configuration.rb
|
656
|
+
- lib/puppet/ssl/digest.rb
|
647
657
|
- lib/puppet/ssl/host.rb
|
648
658
|
- lib/puppet/ssl/inventory.rb
|
649
659
|
- lib/puppet/ssl/key.rb
|
@@ -729,7 +739,6 @@ files:
|
|
729
739
|
- lib/puppet/util/command_line/puppet_option_parser.rb
|
730
740
|
- lib/puppet/util/command_line/trollop.rb
|
731
741
|
- lib/puppet/util/command_line.rb
|
732
|
-
- lib/puppet/util/config_timeout.rb
|
733
742
|
- lib/puppet/util/constant_inflector.rb
|
734
743
|
- lib/puppet/util/diff.rb
|
735
744
|
- lib/puppet/util/docs.rb
|
@@ -759,6 +768,7 @@ files:
|
|
759
768
|
- lib/puppet/util/lockfile.rb
|
760
769
|
- lib/puppet/util/log/destination.rb
|
761
770
|
- lib/puppet/util/log/destinations.rb
|
771
|
+
- lib/puppet/util/log/rate_limited_logger.rb
|
762
772
|
- lib/puppet/util/log.rb
|
763
773
|
- lib/puppet/util/log_paths.rb
|
764
774
|
- lib/puppet/util/logging.rb
|
@@ -825,43 +835,8 @@ files:
|
|
825
835
|
- lib/semver.rb
|
826
836
|
- conf/auth.conf
|
827
837
|
- conf/epm.list
|
828
|
-
- conf/freebsd/puppetd
|
829
|
-
- conf/freebsd/puppetmasterd
|
830
|
-
- conf/gentoo/conf.d/puppet
|
831
|
-
- conf/gentoo/conf.d/puppetmaster
|
832
|
-
- conf/gentoo/init.d/puppet
|
833
|
-
- conf/gentoo/init.d/puppetmaster
|
834
|
-
- conf/gentoo/puppet/fileserver.conf
|
835
|
-
- conf/gentoo/puppet/puppet.conf
|
836
838
|
- conf/namespaceauth.conf
|
837
|
-
- conf/osx/createpackage.sh
|
838
|
-
- conf/osx/PackageInfo.plist
|
839
|
-
- conf/osx/preflight
|
840
839
|
- conf/puppet-queue.conf
|
841
|
-
- conf/redhat/client.init
|
842
|
-
- conf/redhat/client.sysconfig
|
843
|
-
- conf/redhat/fileserver.conf
|
844
|
-
- conf/redhat/logrotate
|
845
|
-
- conf/redhat/puppet.conf
|
846
|
-
- conf/redhat/puppet.spec
|
847
|
-
- conf/redhat/queue.init
|
848
|
-
- conf/redhat/rundir-perms.patch
|
849
|
-
- conf/redhat/server.init
|
850
|
-
- conf/redhat/server.sysconfig
|
851
|
-
- conf/solaris/pkginfo
|
852
|
-
- conf/solaris/smf/puppetd.xml
|
853
|
-
- conf/solaris/smf/puppetmasterd.xml
|
854
|
-
- conf/solaris/smf/svc-puppetd
|
855
|
-
- conf/solaris/smf/svc-puppetmasterd
|
856
|
-
- conf/suse/client.init
|
857
|
-
- conf/suse/fileserver.conf
|
858
|
-
- conf/suse/logrotate
|
859
|
-
- conf/suse/puppet.conf
|
860
|
-
- conf/suse/puppet.spec
|
861
|
-
- conf/suse/server.init
|
862
|
-
- conf/windows/eventlog/puppetres.dll
|
863
|
-
- conf/windows/eventlog/puppetres.mc
|
864
|
-
- conf/windows/eventlog/Rakefile
|
865
840
|
- man/man5/puppet.conf.5
|
866
841
|
- man/man8/puppet-agent.8
|
867
842
|
- man/man8/puppet-apply.8
|
@@ -915,6 +890,20 @@ files:
|
|
915
890
|
- examples/functions
|
916
891
|
- examples/groups
|
917
892
|
- examples/head
|
893
|
+
- examples/hiera/etc/hiera.yaml
|
894
|
+
- examples/hiera/etc/hieradb/common.yaml
|
895
|
+
- examples/hiera/etc/hieradb/dc1.yaml
|
896
|
+
- examples/hiera/etc/hieradb/development.yaml
|
897
|
+
- examples/hiera/etc/puppet.conf
|
898
|
+
- examples/hiera/modules/data/manifests/common.pp
|
899
|
+
- examples/hiera/modules/ntp/manifests/config.pp
|
900
|
+
- examples/hiera/modules/ntp/manifests/data.pp
|
901
|
+
- examples/hiera/modules/ntp/templates/ntp.conf.erb
|
902
|
+
- examples/hiera/modules/users/manifests/common.pp
|
903
|
+
- examples/hiera/modules/users/manifests/dc1.pp
|
904
|
+
- examples/hiera/modules/users/manifests/development.pp
|
905
|
+
- examples/hiera/README.md
|
906
|
+
- examples/hiera/site.pp
|
918
907
|
- examples/importing
|
919
908
|
- examples/mac_automount.pp
|
920
909
|
- examples/mac_dscl.pp
|
@@ -940,16 +929,106 @@ files:
|
|
940
929
|
- ext/autotest/config
|
941
930
|
- ext/autotest/Rakefile
|
942
931
|
- ext/autotest/readme.rst
|
932
|
+
- ext/build_defaults.yaml
|
943
933
|
- ext/cert_inspector
|
944
934
|
- ext/dbfix.sql
|
935
|
+
- ext/debian/changelog.erb
|
936
|
+
- ext/debian/compat
|
937
|
+
- ext/debian/control
|
938
|
+
- ext/debian/copyright
|
939
|
+
- ext/debian/docs
|
940
|
+
- ext/debian/fileserver.conf
|
941
|
+
- ext/debian/puppet-common.dirs
|
942
|
+
- ext/debian/puppet-common.install
|
943
|
+
- ext/debian/puppet-common.lintian-overrides
|
944
|
+
- ext/debian/puppet-common.manpages
|
945
|
+
- ext/debian/puppet-common.postinst
|
946
|
+
- ext/debian/puppet-common.postrm
|
947
|
+
- ext/debian/puppet-el.dirs
|
948
|
+
- ext/debian/puppet-el.emacsen-install
|
949
|
+
- ext/debian/puppet-el.emacsen-remove
|
950
|
+
- ext/debian/puppet-el.emacsen-startup
|
951
|
+
- ext/debian/puppet-el.install
|
952
|
+
- ext/debian/puppet-testsuite.install
|
953
|
+
- ext/debian/puppet-testsuite.lintian-overrides
|
954
|
+
- ext/debian/puppet.conf
|
955
|
+
- ext/debian/puppet.default
|
956
|
+
- ext/debian/puppet.init
|
957
|
+
- ext/debian/puppet.lintian-overrides
|
958
|
+
- ext/debian/puppet.logrotate
|
959
|
+
- ext/debian/puppet.manpages
|
960
|
+
- ext/debian/puppet.postinst
|
961
|
+
- ext/debian/puppet.postrm
|
962
|
+
- ext/debian/puppet.preinst
|
963
|
+
- ext/debian/puppetmaster-common.install
|
964
|
+
- ext/debian/puppetmaster-common.manpages
|
965
|
+
- ext/debian/puppetmaster-common.puppetqd.default
|
966
|
+
- ext/debian/puppetmaster-common.puppetqd.init
|
967
|
+
- ext/debian/puppetmaster-passenger.dirs
|
968
|
+
- ext/debian/puppetmaster-passenger.postinst
|
969
|
+
- ext/debian/puppetmaster-passenger.postrm
|
970
|
+
- ext/debian/puppetmaster.default
|
971
|
+
- ext/debian/puppetmaster.init
|
972
|
+
- ext/debian/puppetmaster.lintian-overrides
|
973
|
+
- ext/debian/puppetmaster.postinst
|
974
|
+
- ext/debian/puppetmaster.postrm
|
975
|
+
- ext/debian/puppetmaster.preinst
|
976
|
+
- ext/debian/puppetmaster.README.debian
|
977
|
+
- ext/debian/README.Debian
|
978
|
+
- ext/debian/README.source
|
979
|
+
- ext/debian/rules
|
980
|
+
- ext/debian/source/format
|
981
|
+
- ext/debian/source/options
|
982
|
+
- ext/debian/TODO.Debian
|
983
|
+
- ext/debian/vim-puppet.dirs
|
984
|
+
- ext/debian/vim-puppet.README.Debian
|
985
|
+
- ext/debian/vim-puppet.yaml
|
986
|
+
- ext/debian/watch
|
945
987
|
- ext/emacs/puppet-mode-init.el
|
946
988
|
- ext/emacs/puppet-mode.el
|
947
989
|
- ext/envpuppet
|
948
990
|
- ext/envpuppet.bat
|
991
|
+
- ext/freebsd/puppetd
|
992
|
+
- ext/freebsd/puppetmasterd
|
993
|
+
- ext/gentoo/conf.d/puppet
|
994
|
+
- ext/gentoo/conf.d/puppetmaster
|
995
|
+
- ext/gentoo/init.d/puppet
|
996
|
+
- ext/gentoo/init.d/puppetmaster
|
997
|
+
- ext/gentoo/puppet/fileserver.conf
|
998
|
+
- ext/gentoo/puppet/puppet.conf
|
999
|
+
- ext/ips/puppet-agent
|
1000
|
+
- ext/ips/puppet-master
|
1001
|
+
- ext/ips/puppet.conf
|
1002
|
+
- ext/ips/puppet.p5m.erb
|
1003
|
+
- ext/ips/puppetagent.xml
|
1004
|
+
- ext/ips/puppetmaster.xml
|
1005
|
+
- ext/ips/rules
|
1006
|
+
- ext/ips/transforms
|
949
1007
|
- ext/ldap/puppet.schema
|
950
1008
|
- ext/logcheck/puppet
|
951
1009
|
- ext/nagios/check_puppet.rb
|
952
1010
|
- ext/nagios/naggen
|
1011
|
+
- ext/osx/createpackage.sh
|
1012
|
+
- ext/osx/file_mapping.yaml
|
1013
|
+
- ext/osx/PackageInfo.plist
|
1014
|
+
- ext/osx/preflight.erb
|
1015
|
+
- ext/osx/prototype.plist.erb
|
1016
|
+
- ext/packaging/README-Solaris.md
|
1017
|
+
- ext/packaging/README.md
|
1018
|
+
- ext/packaging/tasks/00_utils.rb
|
1019
|
+
- ext/packaging/tasks/10_setupvars.rake
|
1020
|
+
- ext/packaging/tasks/apple.rake
|
1021
|
+
- ext/packaging/tasks/clean.rake
|
1022
|
+
- ext/packaging/tasks/deb.rake
|
1023
|
+
- ext/packaging/tasks/gem.rake
|
1024
|
+
- ext/packaging/tasks/ips.rake
|
1025
|
+
- ext/packaging/tasks/mock.rake
|
1026
|
+
- ext/packaging/tasks/release.rake
|
1027
|
+
- ext/packaging/tasks/rpm.rake
|
1028
|
+
- ext/packaging/tasks/ship.rake
|
1029
|
+
- ext/packaging/tasks/sign.rake
|
1030
|
+
- ext/packaging/tasks/tar.rake
|
1031
|
+
- ext/project_data.yaml
|
953
1032
|
- ext/puppet-load.rb
|
954
1033
|
- ext/puppet-test
|
955
1034
|
- ext/puppetlisten/puppetlisten.rb
|
@@ -959,6 +1038,16 @@ files:
|
|
959
1038
|
- ext/rack/files/config.ru
|
960
1039
|
- ext/rack/manifest.pp
|
961
1040
|
- ext/rack/README
|
1041
|
+
- ext/redhat/client.init
|
1042
|
+
- ext/redhat/client.sysconfig
|
1043
|
+
- ext/redhat/fileserver.conf
|
1044
|
+
- ext/redhat/logrotate
|
1045
|
+
- ext/redhat/puppet.conf
|
1046
|
+
- ext/redhat/puppet.spec.erb
|
1047
|
+
- ext/redhat/queue.init
|
1048
|
+
- ext/redhat/rundir-perms.patch
|
1049
|
+
- ext/redhat/server.init
|
1050
|
+
- ext/redhat/server.sysconfig
|
962
1051
|
- ext/regexp_nodes/classes/databases
|
963
1052
|
- ext/regexp_nodes/classes/webservers
|
964
1053
|
- ext/regexp_nodes/environment/development
|
@@ -966,28 +1055,37 @@ files:
|
|
966
1055
|
- ext/regexp_nodes/parameters/service/qa
|
967
1056
|
- ext/regexp_nodes/parameters/service/sandbox
|
968
1057
|
- ext/regexp_nodes/regexp_nodes.rb
|
1058
|
+
- ext/solaris/pkginfo
|
1059
|
+
- ext/solaris/smf/puppetd.xml
|
1060
|
+
- ext/solaris/smf/puppetmasterd.xml
|
1061
|
+
- ext/solaris/smf/svc-puppetd
|
1062
|
+
- ext/solaris/smf/svc-puppetmasterd
|
1063
|
+
- ext/suse/client.init
|
1064
|
+
- ext/suse/fileserver.conf
|
1065
|
+
- ext/suse/logrotate
|
1066
|
+
- ext/suse/puppet.conf
|
1067
|
+
- ext/suse/puppet.spec
|
1068
|
+
- ext/suse/server.init
|
1069
|
+
- ext/systemd/puppetagent.service
|
1070
|
+
- ext/systemd/puppetmaster.service
|
969
1071
|
- ext/upload_facts.rb
|
970
1072
|
- ext/vim/ftdetect/puppet.vim
|
971
1073
|
- ext/vim/ftplugin/puppet.vim
|
972
1074
|
- ext/vim/indent/puppet.vim
|
973
1075
|
- ext/vim/README
|
974
1076
|
- ext/vim/syntax/puppet.vim
|
1077
|
+
- ext/windows/eventlog/puppetres.dll
|
1078
|
+
- ext/windows/eventlog/puppetres.mc
|
1079
|
+
- ext/windows/eventlog/Rakefile
|
1080
|
+
- ext/windows/service/daemon.bat
|
1081
|
+
- ext/windows/service/daemon.rb
|
975
1082
|
- ext/yaml_nodes.rb
|
976
|
-
- tasks/
|
977
|
-
- tasks/
|
978
|
-
- tasks/rake/ci.rake
|
979
|
-
- tasks/rake/dailybuild.rake
|
980
|
-
- tasks/rake/gem.rake
|
981
|
-
- tasks/rake/git_workflow.rake
|
982
|
-
- tasks/rake/manpages.rake
|
983
|
-
- tasks/rake/metrics.rake
|
984
|
-
- tasks/rake/parser.rake
|
985
|
-
- tasks/rake/sign.rake
|
986
|
-
- tasks/rake/templates/prototype.plist.erb
|
987
|
-
- tasks/rake/testbranch.rake
|
988
|
-
- tasks/rake/yard.rake
|
1083
|
+
- tasks/manpages.rake
|
1084
|
+
- tasks/parser.rake
|
989
1085
|
- spec/fixtures/faulty_face/puppet/face/syntax.rb
|
1086
|
+
- spec/fixtures/hiera.yaml
|
990
1087
|
- spec/fixtures/integration/provider/mailalias/aliases/test1
|
1088
|
+
- spec/fixtures/manifests/site.pp
|
991
1089
|
- spec/fixtures/releases/jamtur01-apache/files/httpd
|
992
1090
|
- spec/fixtures/releases/jamtur01-apache/files/test.vhost
|
993
1091
|
- spec/fixtures/releases/jamtur01-apache/lib/puppet/provider/a2mod/debian.rb
|
@@ -1141,6 +1239,7 @@ files:
|
|
1141
1239
|
- spec/integration/parser/parser_spec.rb
|
1142
1240
|
- spec/integration/parser/ruby_manifest_spec.rb
|
1143
1241
|
- spec/integration/parser/scope_spec.rb
|
1242
|
+
- spec/integration/parser/undef_param_spec.rb
|
1144
1243
|
- spec/integration/provider/mailalias/aliases_spec.rb
|
1145
1244
|
- spec/integration/provider/mount_spec.rb
|
1146
1245
|
- spec/integration/provider/package_spec.rb
|
@@ -1271,21 +1370,28 @@ files:
|
|
1271
1370
|
- spec/unit/forge/errors_spec.rb
|
1272
1371
|
- spec/unit/forge/repository_spec.rb
|
1273
1372
|
- spec/unit/forge_spec.rb
|
1373
|
+
- spec/unit/hiera/backend/puppet_backend_spec.rb
|
1374
|
+
- spec/unit/hiera/scope_spec.rb
|
1375
|
+
- spec/unit/hiera_puppet_spec.rb
|
1274
1376
|
- spec/unit/indirector/active_record_spec.rb
|
1275
1377
|
- spec/unit/indirector/catalog/active_record_spec.rb
|
1276
1378
|
- spec/unit/indirector/catalog/compiler_spec.rb
|
1277
1379
|
- spec/unit/indirector/catalog/json_spec.rb
|
1278
1380
|
- spec/unit/indirector/catalog/queue_spec.rb
|
1279
1381
|
- spec/unit/indirector/catalog/rest_spec.rb
|
1382
|
+
- spec/unit/indirector/catalog/static_compiler_spec.rb
|
1280
1383
|
- spec/unit/indirector/catalog/store_configs_spec.rb
|
1281
1384
|
- spec/unit/indirector/catalog/yaml_spec.rb
|
1282
1385
|
- spec/unit/indirector/certificate/ca_spec.rb
|
1386
|
+
- spec/unit/indirector/certificate/disabled_ca_spec.rb
|
1283
1387
|
- spec/unit/indirector/certificate/file_spec.rb
|
1284
1388
|
- spec/unit/indirector/certificate/rest_spec.rb
|
1285
1389
|
- spec/unit/indirector/certificate_request/ca_spec.rb
|
1390
|
+
- spec/unit/indirector/certificate_request/disabled_ca_spec.rb
|
1286
1391
|
- spec/unit/indirector/certificate_request/file_spec.rb
|
1287
1392
|
- spec/unit/indirector/certificate_request/rest_spec.rb
|
1288
1393
|
- spec/unit/indirector/certificate_revocation_list/ca_spec.rb
|
1394
|
+
- spec/unit/indirector/certificate_revocation_list/disabled_ca_spec.rb
|
1289
1395
|
- spec/unit/indirector/certificate_revocation_list/file_spec.rb
|
1290
1396
|
- spec/unit/indirector/certificate_revocation_list/rest_spec.rb
|
1291
1397
|
- spec/unit/indirector/certificate_status/file_spec.rb
|
@@ -1328,6 +1434,7 @@ files:
|
|
1328
1434
|
- spec/unit/indirector/instrumentation_probe/rest_spec.rb
|
1329
1435
|
- spec/unit/indirector/json_spec.rb
|
1330
1436
|
- spec/unit/indirector/key/ca_spec.rb
|
1437
|
+
- spec/unit/indirector/key/disabled_ca_spec.rb
|
1331
1438
|
- spec/unit/indirector/key/file_spec.rb
|
1332
1439
|
- spec/unit/indirector/ldap_spec.rb
|
1333
1440
|
- spec/unit/indirector/memory_spec.rb
|
@@ -1382,6 +1489,7 @@ files:
|
|
1382
1489
|
- spec/unit/module_tool_spec.rb
|
1383
1490
|
- spec/unit/network/auth_config_parser_spec.rb
|
1384
1491
|
- spec/unit/network/authconfig_spec.rb
|
1492
|
+
- spec/unit/network/authentication_spec.rb
|
1385
1493
|
- spec/unit/network/authorization_spec.rb
|
1386
1494
|
- spec/unit/network/authstore_spec.rb
|
1387
1495
|
- spec/unit/network/format_handler_spec.rb
|
@@ -1391,14 +1499,11 @@ files:
|
|
1391
1499
|
- spec/unit/network/http/compression_spec.rb
|
1392
1500
|
- spec/unit/network/http/connection_spec.rb
|
1393
1501
|
- spec/unit/network/http/handler_spec.rb
|
1394
|
-
- spec/unit/network/http/mongrel/rest_spec.rb
|
1395
|
-
- spec/unit/network/http/mongrel_spec.rb
|
1396
1502
|
- spec/unit/network/http/rack/rest_spec.rb
|
1397
1503
|
- spec/unit/network/http/rack_spec.rb
|
1398
1504
|
- spec/unit/network/http/webrick/rest_spec.rb
|
1399
1505
|
- spec/unit/network/http/webrick_spec.rb
|
1400
1506
|
- spec/unit/network/http_pool_spec.rb
|
1401
|
-
- spec/unit/network/http_spec.rb
|
1402
1507
|
- spec/unit/network/resolver_spec.rb
|
1403
1508
|
- spec/unit/network/rights_spec.rb
|
1404
1509
|
- spec/unit/network/server_spec.rb
|
@@ -1448,6 +1553,10 @@ files:
|
|
1448
1553
|
- spec/unit/parser/functions/file_spec.rb
|
1449
1554
|
- spec/unit/parser/functions/fqdn_rand_spec.rb
|
1450
1555
|
- spec/unit/parser/functions/generate_spec.rb
|
1556
|
+
- spec/unit/parser/functions/hiera_array_spec.rb
|
1557
|
+
- spec/unit/parser/functions/hiera_hash_spec.rb
|
1558
|
+
- spec/unit/parser/functions/hiera_include_spec.rb
|
1559
|
+
- spec/unit/parser/functions/hiera_spec.rb
|
1451
1560
|
- spec/unit/parser/functions/include_spec.rb
|
1452
1561
|
- spec/unit/parser/functions/inline_template_spec.rb
|
1453
1562
|
- spec/unit/parser/functions/realize_spec.rb
|
@@ -1588,9 +1697,11 @@ files:
|
|
1588
1697
|
- spec/unit/run_spec.rb
|
1589
1698
|
- spec/unit/semver_spec.rb
|
1590
1699
|
- spec/unit/settings/directory_setting_spec.rb
|
1700
|
+
- spec/unit/settings/duration_setting_spec.rb
|
1591
1701
|
- spec/unit/settings/file_setting_spec.rb
|
1592
1702
|
- spec/unit/settings/path_setting_spec.rb
|
1593
1703
|
- spec/unit/settings/string_setting_spec.rb
|
1704
|
+
- spec/unit/settings/terminus_setting_spec.rb
|
1594
1705
|
- spec/unit/settings_spec.rb
|
1595
1706
|
- spec/unit/simple_graph_spec.rb
|
1596
1707
|
- spec/unit/ssl/base_spec.rb
|
@@ -1601,6 +1712,7 @@ files:
|
|
1601
1712
|
- spec/unit/ssl/certificate_revocation_list_spec.rb
|
1602
1713
|
- spec/unit/ssl/certificate_spec.rb
|
1603
1714
|
- spec/unit/ssl/configuration_spec.rb
|
1715
|
+
- spec/unit/ssl/digest_spec.rb
|
1604
1716
|
- spec/unit/ssl/host_spec.rb
|
1605
1717
|
- spec/unit/ssl/inventory_spec.rb
|
1606
1718
|
- spec/unit/ssl/key_spec.rb
|
@@ -1668,7 +1780,6 @@ files:
|
|
1668
1780
|
- spec/unit/util/colors_spec.rb
|
1669
1781
|
- spec/unit/util/command_line_spec.rb
|
1670
1782
|
- spec/unit/util/command_line_utils/puppet_option_parser_spec.rb
|
1671
|
-
- spec/unit/util/config_timeout_spec.rb
|
1672
1783
|
- spec/unit/util/constant_inflector_spec.rb
|
1673
1784
|
- spec/unit/util/diff_spec.rb
|
1674
1785
|
- spec/unit/util/errors_spec.rb
|
@@ -1691,6 +1802,7 @@ files:
|
|
1691
1802
|
- spec/unit/util/loadedfile_spec.rb
|
1692
1803
|
- spec/unit/util/lockfile_spec.rb
|
1693
1804
|
- spec/unit/util/log/destinations_spec.rb
|
1805
|
+
- spec/unit/util/log/rate_limited_logger_spec.rb
|
1694
1806
|
- spec/unit/util/log_spec.rb
|
1695
1807
|
- spec/unit/util/logging_spec.rb
|
1696
1808
|
- spec/unit/util/metric_spec.rb
|
@@ -1732,33 +1844,805 @@ files:
|
|
1732
1844
|
- spec/unit/util/zaml_spec.rb
|
1733
1845
|
- spec/unit/util_spec.rb
|
1734
1846
|
- spec/watchr.rb
|
1735
|
-
homepage:
|
1847
|
+
homepage: https://github.com/puppetlabs/puppet
|
1736
1848
|
licenses: []
|
1849
|
+
|
1737
1850
|
post_install_message:
|
1738
|
-
rdoc_options:
|
1851
|
+
rdoc_options:
|
1739
1852
|
- --title
|
1740
1853
|
- Puppet - Configuration Management
|
1741
1854
|
- --main
|
1742
|
-
- README
|
1855
|
+
- README.md
|
1743
1856
|
- --line-numbers
|
1744
|
-
require_paths:
|
1857
|
+
require_paths:
|
1745
1858
|
- lib
|
1746
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
1859
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
1747
1860
|
none: false
|
1748
|
-
requirements:
|
1749
|
-
- -
|
1750
|
-
- !ruby/object:Gem::Version
|
1751
|
-
|
1752
|
-
|
1861
|
+
requirements:
|
1862
|
+
- - ">="
|
1863
|
+
- !ruby/object:Gem::Version
|
1864
|
+
hash: 3
|
1865
|
+
segments:
|
1866
|
+
- 0
|
1867
|
+
version: "0"
|
1868
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
1753
1869
|
none: false
|
1754
|
-
requirements:
|
1755
|
-
- -
|
1756
|
-
- !ruby/object:Gem::Version
|
1870
|
+
requirements:
|
1871
|
+
- - ">"
|
1872
|
+
- !ruby/object:Gem::Version
|
1873
|
+
hash: 25
|
1874
|
+
segments:
|
1875
|
+
- 1
|
1876
|
+
- 3
|
1877
|
+
- 1
|
1757
1878
|
version: 1.3.1
|
1758
1879
|
requirements: []
|
1880
|
+
|
1759
1881
|
rubyforge_project: puppet
|
1760
1882
|
rubygems_version: 1.8.24
|
1761
1883
|
signing_key:
|
1762
1884
|
specification_version: 3
|
1763
1885
|
summary: Puppet, an automated configuration management tool
|
1764
|
-
test_files:
|
1886
|
+
test_files:
|
1887
|
+
- spec/fixtures/faulty_face/puppet/face/syntax.rb
|
1888
|
+
- spec/fixtures/hiera.yaml
|
1889
|
+
- spec/fixtures/integration/provider/mailalias/aliases/test1
|
1890
|
+
- spec/fixtures/manifests/site.pp
|
1891
|
+
- spec/fixtures/releases/jamtur01-apache/files/httpd
|
1892
|
+
- spec/fixtures/releases/jamtur01-apache/files/test.vhost
|
1893
|
+
- spec/fixtures/releases/jamtur01-apache/lib/puppet/provider/a2mod/debian.rb
|
1894
|
+
- spec/fixtures/releases/jamtur01-apache/lib/puppet/type/a2mod.rb
|
1895
|
+
- spec/fixtures/releases/jamtur01-apache/manifests/dev.pp
|
1896
|
+
- spec/fixtures/releases/jamtur01-apache/manifests/init.pp
|
1897
|
+
- spec/fixtures/releases/jamtur01-apache/manifests/params.pp
|
1898
|
+
- spec/fixtures/releases/jamtur01-apache/manifests/php.pp
|
1899
|
+
- spec/fixtures/releases/jamtur01-apache/manifests/ssl.pp
|
1900
|
+
- spec/fixtures/releases/jamtur01-apache/manifests/vhost.pp
|
1901
|
+
- spec/fixtures/releases/jamtur01-apache/metadata.json
|
1902
|
+
- spec/fixtures/releases/jamtur01-apache/Modulefile
|
1903
|
+
- spec/fixtures/releases/jamtur01-apache/templates/vhost-default.conf.erb
|
1904
|
+
- spec/fixtures/releases/jamtur01-apache/tests/apache.pp
|
1905
|
+
- spec/fixtures/releases/jamtur01-apache/tests/dev.pp
|
1906
|
+
- spec/fixtures/releases/jamtur01-apache/tests/init.pp
|
1907
|
+
- spec/fixtures/releases/jamtur01-apache/tests/php.pp
|
1908
|
+
- spec/fixtures/releases/jamtur01-apache/tests/ssl.pp
|
1909
|
+
- spec/fixtures/releases/jamtur01-apache/tests/vhost.pp
|
1910
|
+
- spec/fixtures/unit/indirector/hiera/global.yaml
|
1911
|
+
- spec/fixtures/unit/parser/lexer/aliastest.pp
|
1912
|
+
- spec/fixtures/unit/parser/lexer/append.pp
|
1913
|
+
- spec/fixtures/unit/parser/lexer/argumentdefaults.pp
|
1914
|
+
- spec/fixtures/unit/parser/lexer/arithmetic_expression.pp
|
1915
|
+
- spec/fixtures/unit/parser/lexer/arraytrailingcomma.pp
|
1916
|
+
- spec/fixtures/unit/parser/lexer/casestatement.pp
|
1917
|
+
- spec/fixtures/unit/parser/lexer/classheirarchy.pp
|
1918
|
+
- spec/fixtures/unit/parser/lexer/classincludes.pp
|
1919
|
+
- spec/fixtures/unit/parser/lexer/classpathtest.pp
|
1920
|
+
- spec/fixtures/unit/parser/lexer/collection.pp
|
1921
|
+
- spec/fixtures/unit/parser/lexer/collection_override.pp
|
1922
|
+
- spec/fixtures/unit/parser/lexer/collection_within_virtual_definitions.pp
|
1923
|
+
- spec/fixtures/unit/parser/lexer/componentmetaparams.pp
|
1924
|
+
- spec/fixtures/unit/parser/lexer/componentrequire.pp
|
1925
|
+
- spec/fixtures/unit/parser/lexer/deepclassheirarchy.pp
|
1926
|
+
- spec/fixtures/unit/parser/lexer/defineoverrides.pp
|
1927
|
+
- spec/fixtures/unit/parser/lexer/emptyclass.pp
|
1928
|
+
- spec/fixtures/unit/parser/lexer/emptyexec.pp
|
1929
|
+
- spec/fixtures/unit/parser/lexer/emptyifelse.pp
|
1930
|
+
- spec/fixtures/unit/parser/lexer/falsevalues.pp
|
1931
|
+
- spec/fixtures/unit/parser/lexer/filecreate.pp
|
1932
|
+
- spec/fixtures/unit/parser/lexer/fqdefinition.pp
|
1933
|
+
- spec/fixtures/unit/parser/lexer/fqparents.pp
|
1934
|
+
- spec/fixtures/unit/parser/lexer/funccomma.pp
|
1935
|
+
- spec/fixtures/unit/parser/lexer/hash.pp
|
1936
|
+
- spec/fixtures/unit/parser/lexer/ifexpression.pp
|
1937
|
+
- spec/fixtures/unit/parser/lexer/implicititeration.pp
|
1938
|
+
- spec/fixtures/unit/parser/lexer/multilinecomments.pp
|
1939
|
+
- spec/fixtures/unit/parser/lexer/multipleclass.pp
|
1940
|
+
- spec/fixtures/unit/parser/lexer/multipleinstances.pp
|
1941
|
+
- spec/fixtures/unit/parser/lexer/multisubs.pp
|
1942
|
+
- spec/fixtures/unit/parser/lexer/namevartest.pp
|
1943
|
+
- spec/fixtures/unit/parser/lexer/scopetest.pp
|
1944
|
+
- spec/fixtures/unit/parser/lexer/selectorvalues.pp
|
1945
|
+
- spec/fixtures/unit/parser/lexer/simpledefaults.pp
|
1946
|
+
- spec/fixtures/unit/parser/lexer/simpleselector.pp
|
1947
|
+
- spec/fixtures/unit/parser/lexer/singleary.pp
|
1948
|
+
- spec/fixtures/unit/parser/lexer/singlequote.pp
|
1949
|
+
- spec/fixtures/unit/parser/lexer/singleselector.pp
|
1950
|
+
- spec/fixtures/unit/parser/lexer/subclass_name_duplication.pp
|
1951
|
+
- spec/fixtures/unit/parser/lexer/tag.pp
|
1952
|
+
- spec/fixtures/unit/parser/lexer/tagged.pp
|
1953
|
+
- spec/fixtures/unit/parser/lexer/virtualresources.pp
|
1954
|
+
- spec/fixtures/unit/provider/augeas/augeas/augeas/lenses/test.aug
|
1955
|
+
- spec/fixtures/unit/provider/augeas/augeas/etc/fstab
|
1956
|
+
- spec/fixtures/unit/provider/augeas/augeas/etc/hosts
|
1957
|
+
- spec/fixtures/unit/provider/augeas/augeas/etc/test
|
1958
|
+
- spec/fixtures/unit/provider/augeas/augeas/test.aug
|
1959
|
+
- spec/fixtures/unit/provider/cron/crontab/single_line.yaml
|
1960
|
+
- spec/fixtures/unit/provider/host/parsed/valid_hosts
|
1961
|
+
- spec/fixtures/unit/provider/mount/mount-output.aix.txt
|
1962
|
+
- spec/fixtures/unit/provider/mount/parsed/aix.filesystems
|
1963
|
+
- spec/fixtures/unit/provider/mount/parsed/aix.mount
|
1964
|
+
- spec/fixtures/unit/provider/mount/parsed/darwin.mount
|
1965
|
+
- spec/fixtures/unit/provider/mount/parsed/freebsd.fstab
|
1966
|
+
- spec/fixtures/unit/provider/mount/parsed/freebsd.mount
|
1967
|
+
- spec/fixtures/unit/provider/mount/parsed/hpux.mount
|
1968
|
+
- spec/fixtures/unit/provider/mount/parsed/linux.fstab
|
1969
|
+
- spec/fixtures/unit/provider/mount/parsed/linux.mount
|
1970
|
+
- spec/fixtures/unit/provider/mount/parsed/netbsd.fstab
|
1971
|
+
- spec/fixtures/unit/provider/mount/parsed/netbsd.mount
|
1972
|
+
- spec/fixtures/unit/provider/mount/parsed/openbsd.fstab
|
1973
|
+
- spec/fixtures/unit/provider/mount/parsed/openbsd.mount
|
1974
|
+
- spec/fixtures/unit/provider/mount/parsed/solaris.fstab
|
1975
|
+
- spec/fixtures/unit/provider/mount/parsed/solaris.mount
|
1976
|
+
- spec/fixtures/unit/provider/package/gem/line-with-1.8.5-warning
|
1977
|
+
- spec/fixtures/unit/provider/package/openbsd/pkginfo.detail
|
1978
|
+
- spec/fixtures/unit/provider/package/openbsd/pkginfo.list
|
1979
|
+
- spec/fixtures/unit/provider/package/openbsd/pkginfo.query
|
1980
|
+
- spec/fixtures/unit/provider/package/pkg/dummy_solaris10
|
1981
|
+
- spec/fixtures/unit/provider/package/pkg/dummy_solaris11.ifo.installed
|
1982
|
+
- spec/fixtures/unit/provider/package/pkg/dummy_solaris11.ifo.known
|
1983
|
+
- spec/fixtures/unit/provider/package/pkg/dummy_solaris11.installed
|
1984
|
+
- spec/fixtures/unit/provider/package/pkg/dummy_solaris11.known
|
1985
|
+
- spec/fixtures/unit/provider/package/pkg/incomplete
|
1986
|
+
- spec/fixtures/unit/provider/package/pkg/publisher
|
1987
|
+
- spec/fixtures/unit/provider/package/pkg/simple
|
1988
|
+
- spec/fixtures/unit/provider/package/pkg/solaris11
|
1989
|
+
- spec/fixtures/unit/provider/package/pkg/unknown_status
|
1990
|
+
- spec/fixtures/unit/provider/package/sun/dummy.server
|
1991
|
+
- spec/fixtures/unit/provider/package/sun/simple
|
1992
|
+
- spec/fixtures/unit/provider/package/zypper/zypper-list-updates-SLES11sp1.out
|
1993
|
+
- spec/fixtures/unit/provider/service/gentoo/rc_update_show
|
1994
|
+
- spec/fixtures/unit/provider/service/openrc/rcservice_list
|
1995
|
+
- spec/fixtures/unit/provider/service/openrc/rcstatus
|
1996
|
+
- spec/fixtures/unit/provider/service/smf/svcs.out
|
1997
|
+
- spec/fixtures/unit/provider/ssh_authorized_key/parsed/authorized_keys
|
1998
|
+
- spec/fixtures/unit/provider/ssh_authorized_key/parsed/authorized_keys1
|
1999
|
+
- spec/fixtures/unit/provider/ssh_authorized_key/parsed/authorized_keys2
|
2000
|
+
- spec/fixtures/unit/provider/sshkey/parsed/sample
|
2001
|
+
- spec/fixtures/unit/provider/zfs/zfs/zfs-list.out
|
2002
|
+
- spec/fixtures/unit/provider/zpool/zpool/zpool-list.out
|
2003
|
+
- spec/fixtures/unit/reports/tagmail/tagmail_email.conf
|
2004
|
+
- spec/fixtures/unit/reports/tagmail/tagmail_failers.conf
|
2005
|
+
- spec/fixtures/unit/reports/tagmail/tagmail_passers.conf
|
2006
|
+
- spec/fixtures/unit/util/filetype/aixtab_output
|
2007
|
+
- spec/fixtures/unit/util/filetype/suntab_output
|
2008
|
+
- spec/fixtures/unit/util/rdoc/basic.pp
|
2009
|
+
- spec/fixtures/yaml/report0.25.x.yaml
|
2010
|
+
- spec/fixtures/yaml/report2.6.x.yaml
|
2011
|
+
- spec/fixtures/yaml/test.local.yaml
|
2012
|
+
- spec/integration/application/apply_spec.rb
|
2013
|
+
- spec/integration/application/doc_spec.rb
|
2014
|
+
- spec/integration/configurer_spec.rb
|
2015
|
+
- spec/integration/defaults_spec.rb
|
2016
|
+
- spec/integration/faces/ca_spec.rb
|
2017
|
+
- spec/integration/faces/documentation_spec.rb
|
2018
|
+
- spec/integration/file_bucket/file_spec.rb
|
2019
|
+
- spec/integration/file_serving/content_spec.rb
|
2020
|
+
- spec/integration/file_serving/fileset_spec.rb
|
2021
|
+
- spec/integration/file_serving/metadata_spec.rb
|
2022
|
+
- spec/integration/file_serving/terminus_helper_spec.rb
|
2023
|
+
- spec/integration/indirector/catalog/compiler_spec.rb
|
2024
|
+
- spec/integration/indirector/catalog/queue_spec.rb
|
2025
|
+
- spec/integration/indirector/direct_file_server_spec.rb
|
2026
|
+
- spec/integration/indirector/facts/facter_spec.rb
|
2027
|
+
- spec/integration/indirector/file_content/file_server_spec.rb
|
2028
|
+
- spec/integration/indirector/file_metadata/file_server_spec.rb
|
2029
|
+
- spec/integration/indirector/node/ldap_spec.rb
|
2030
|
+
- spec/integration/network/authconfig_spec.rb
|
2031
|
+
- spec/integration/network/formats_spec.rb
|
2032
|
+
- spec/integration/network/server/mongrel_spec.rb
|
2033
|
+
- spec/integration/network/server/webrick_spec.rb
|
2034
|
+
- spec/integration/node/environment_spec.rb
|
2035
|
+
- spec/integration/node/facts_spec.rb
|
2036
|
+
- spec/integration/node_spec.rb
|
2037
|
+
- spec/integration/parser/collector_spec.rb
|
2038
|
+
- spec/integration/parser/compiler_spec.rb
|
2039
|
+
- spec/integration/parser/functions/require_spec.rb
|
2040
|
+
- spec/integration/parser/functions_spec.rb
|
2041
|
+
- spec/integration/parser/parser_spec.rb
|
2042
|
+
- spec/integration/parser/ruby_manifest_spec.rb
|
2043
|
+
- spec/integration/parser/scope_spec.rb
|
2044
|
+
- spec/integration/parser/undef_param_spec.rb
|
2045
|
+
- spec/integration/provider/mailalias/aliases_spec.rb
|
2046
|
+
- spec/integration/provider/mount_spec.rb
|
2047
|
+
- spec/integration/provider/package_spec.rb
|
2048
|
+
- spec/integration/provider/service/init_spec.rb
|
2049
|
+
- spec/integration/provider/ssh_authorized_key_spec.rb
|
2050
|
+
- spec/integration/reference/providers_spec.rb
|
2051
|
+
- spec/integration/reports_spec.rb
|
2052
|
+
- spec/integration/resource/catalog_spec.rb
|
2053
|
+
- spec/integration/resource/type_collection_spec.rb
|
2054
|
+
- spec/integration/ssl/certificate_authority_spec.rb
|
2055
|
+
- spec/integration/ssl/certificate_request_spec.rb
|
2056
|
+
- spec/integration/ssl/certificate_revocation_list_spec.rb
|
2057
|
+
- spec/integration/ssl/host_spec.rb
|
2058
|
+
- spec/integration/transaction/report_spec.rb
|
2059
|
+
- spec/integration/transaction_spec.rb
|
2060
|
+
- spec/integration/type/exec_spec.rb
|
2061
|
+
- spec/integration/type/file_spec.rb
|
2062
|
+
- spec/integration/type/package_spec.rb
|
2063
|
+
- spec/integration/type/tidy_spec.rb
|
2064
|
+
- spec/integration/type_spec.rb
|
2065
|
+
- spec/integration/util/autoload_spec.rb
|
2066
|
+
- spec/integration/util/feature_spec.rb
|
2067
|
+
- spec/integration/util/rdoc/parser_spec.rb
|
2068
|
+
- spec/integration/util/settings_spec.rb
|
2069
|
+
- spec/integration/util/windows/security_spec.rb
|
2070
|
+
- spec/integration/util/windows/user_spec.rb
|
2071
|
+
- spec/integration/util_spec.rb
|
2072
|
+
- spec/lib/matchers/json.rb
|
2073
|
+
- spec/lib/puppet/face/1.0.0/huzzah.rb
|
2074
|
+
- spec/lib/puppet/face/basetest.rb
|
2075
|
+
- spec/lib/puppet/face/huzzah/obsolete.rb
|
2076
|
+
- spec/lib/puppet/face/huzzah.rb
|
2077
|
+
- spec/lib/puppet/face/version_matching.rb
|
2078
|
+
- spec/lib/puppet/indirector/indirector_testing/json.rb
|
2079
|
+
- spec/lib/puppet/indirector_testing.rb
|
2080
|
+
- spec/lib/puppet_spec/compiler.rb
|
2081
|
+
- spec/lib/puppet_spec/database.rb
|
2082
|
+
- spec/lib/puppet_spec/files.rb
|
2083
|
+
- spec/lib/puppet_spec/fixtures.rb
|
2084
|
+
- spec/lib/puppet_spec/matchers.rb
|
2085
|
+
- spec/lib/puppet_spec/modules.rb
|
2086
|
+
- spec/lib/puppet_spec/settings.rb
|
2087
|
+
- spec/lib/puppet_spec/verbose.rb
|
2088
|
+
- spec/monkey_patches/alias_should_to_must.rb
|
2089
|
+
- spec/monkey_patches/publicize_methods.rb
|
2090
|
+
- spec/shared_behaviours/all_parsedfile_providers.rb
|
2091
|
+
- spec/shared_behaviours/an_indirector_face.rb
|
2092
|
+
- spec/shared_behaviours/documentation_on_faces.rb
|
2093
|
+
- spec/shared_behaviours/file_server_terminus.rb
|
2094
|
+
- spec/shared_behaviours/file_serving.rb
|
2095
|
+
- spec/shared_behaviours/file_serving_model.rb
|
2096
|
+
- spec/shared_behaviours/memory_terminus.rb
|
2097
|
+
- spec/shared_behaviours/path_parameters.rb
|
2098
|
+
- spec/shared_behaviours/store_configs_terminus.rb
|
2099
|
+
- spec/shared_behaviours/things_that_declare_options.rb
|
2100
|
+
- spec/shared_contexts/platform.rb
|
2101
|
+
- spec/spec_helper.rb
|
2102
|
+
- spec/unit/agent/disabler_spec.rb
|
2103
|
+
- spec/unit/agent/locker_spec.rb
|
2104
|
+
- spec/unit/agent_spec.rb
|
2105
|
+
- spec/unit/application/agent_spec.rb
|
2106
|
+
- spec/unit/application/apply_spec.rb
|
2107
|
+
- spec/unit/application/cert_spec.rb
|
2108
|
+
- spec/unit/application/certificate_spec.rb
|
2109
|
+
- spec/unit/application/config_spec.rb
|
2110
|
+
- spec/unit/application/describe_spec.rb
|
2111
|
+
- spec/unit/application/device_spec.rb
|
2112
|
+
- spec/unit/application/doc_spec.rb
|
2113
|
+
- spec/unit/application/face_base_spec.rb
|
2114
|
+
- spec/unit/application/facts_spec.rb
|
2115
|
+
- spec/unit/application/filebucket_spec.rb
|
2116
|
+
- spec/unit/application/indirection_base_spec.rb
|
2117
|
+
- spec/unit/application/inspect_spec.rb
|
2118
|
+
- spec/unit/application/kick_spec.rb
|
2119
|
+
- spec/unit/application/master_spec.rb
|
2120
|
+
- spec/unit/application/queue_spec.rb
|
2121
|
+
- spec/unit/application/resource_spec.rb
|
2122
|
+
- spec/unit/application/secret_agent_spec.rb
|
2123
|
+
- spec/unit/application_spec.rb
|
2124
|
+
- spec/unit/configurer/downloader_spec.rb
|
2125
|
+
- spec/unit/configurer/fact_handler_spec.rb
|
2126
|
+
- spec/unit/configurer/plugin_handler_spec.rb
|
2127
|
+
- spec/unit/configurer_spec.rb
|
2128
|
+
- spec/unit/daemon_spec.rb
|
2129
|
+
- spec/unit/data_binding_spec.rb
|
2130
|
+
- spec/unit/dsl/resource_api_spec.rb
|
2131
|
+
- spec/unit/dsl/resource_type_api_spec.rb
|
2132
|
+
- spec/unit/face/catalog_spec.rb
|
2133
|
+
- spec/unit/face/certificate_request_spec.rb
|
2134
|
+
- spec/unit/face/certificate_revocation_list_spec.rb
|
2135
|
+
- spec/unit/face/certificate_spec.rb
|
2136
|
+
- spec/unit/face/config_spec.rb
|
2137
|
+
- spec/unit/face/facts_spec.rb
|
2138
|
+
- spec/unit/face/file_spec.rb
|
2139
|
+
- spec/unit/face/help_spec.rb
|
2140
|
+
- spec/unit/face/instrumentation_data_spec.rb
|
2141
|
+
- spec/unit/face/instrumentation_listener_spec.rb
|
2142
|
+
- spec/unit/face/instrumentation_probe_spec.rb
|
2143
|
+
- spec/unit/face/key_spec.rb
|
2144
|
+
- spec/unit/face/module/build_spec.rb
|
2145
|
+
- spec/unit/face/module/install_spec.rb
|
2146
|
+
- spec/unit/face/module/list_spec.rb
|
2147
|
+
- spec/unit/face/module/search_spec.rb
|
2148
|
+
- spec/unit/face/module/uninstall_spec.rb
|
2149
|
+
- spec/unit/face/module/upgrade_spec.rb
|
2150
|
+
- spec/unit/face/module_spec.rb
|
2151
|
+
- spec/unit/face/node_spec.rb
|
2152
|
+
- spec/unit/face/plugin_spec.rb
|
2153
|
+
- spec/unit/face/report_spec.rb
|
2154
|
+
- spec/unit/face/resource_spec.rb
|
2155
|
+
- spec/unit/face/resource_type_spec.rb
|
2156
|
+
- spec/unit/face/secret_agent_spec.rb
|
2157
|
+
- spec/unit/face_spec.rb
|
2158
|
+
- spec/unit/file_bucket/dipper_spec.rb
|
2159
|
+
- spec/unit/file_bucket/file_spec.rb
|
2160
|
+
- spec/unit/file_serving/base_spec.rb
|
2161
|
+
- spec/unit/file_serving/configuration/parser_spec.rb
|
2162
|
+
- spec/unit/file_serving/configuration_spec.rb
|
2163
|
+
- spec/unit/file_serving/content_spec.rb
|
2164
|
+
- spec/unit/file_serving/fileset_spec.rb
|
2165
|
+
- spec/unit/file_serving/metadata_spec.rb
|
2166
|
+
- spec/unit/file_serving/mount/file_spec.rb
|
2167
|
+
- spec/unit/file_serving/mount/modules_spec.rb
|
2168
|
+
- spec/unit/file_serving/mount/plugins_spec.rb
|
2169
|
+
- spec/unit/file_serving/mount_spec.rb
|
2170
|
+
- spec/unit/file_serving/terminus_helper_spec.rb
|
2171
|
+
- spec/unit/file_serving/terminus_selector_spec.rb
|
2172
|
+
- spec/unit/forge/errors_spec.rb
|
2173
|
+
- spec/unit/forge/repository_spec.rb
|
2174
|
+
- spec/unit/forge_spec.rb
|
2175
|
+
- spec/unit/hiera/backend/puppet_backend_spec.rb
|
2176
|
+
- spec/unit/hiera/scope_spec.rb
|
2177
|
+
- spec/unit/hiera_puppet_spec.rb
|
2178
|
+
- spec/unit/indirector/active_record_spec.rb
|
2179
|
+
- spec/unit/indirector/catalog/active_record_spec.rb
|
2180
|
+
- spec/unit/indirector/catalog/compiler_spec.rb
|
2181
|
+
- spec/unit/indirector/catalog/json_spec.rb
|
2182
|
+
- spec/unit/indirector/catalog/queue_spec.rb
|
2183
|
+
- spec/unit/indirector/catalog/rest_spec.rb
|
2184
|
+
- spec/unit/indirector/catalog/static_compiler_spec.rb
|
2185
|
+
- spec/unit/indirector/catalog/store_configs_spec.rb
|
2186
|
+
- spec/unit/indirector/catalog/yaml_spec.rb
|
2187
|
+
- spec/unit/indirector/certificate/ca_spec.rb
|
2188
|
+
- spec/unit/indirector/certificate/disabled_ca_spec.rb
|
2189
|
+
- spec/unit/indirector/certificate/file_spec.rb
|
2190
|
+
- spec/unit/indirector/certificate/rest_spec.rb
|
2191
|
+
- spec/unit/indirector/certificate_request/ca_spec.rb
|
2192
|
+
- spec/unit/indirector/certificate_request/disabled_ca_spec.rb
|
2193
|
+
- spec/unit/indirector/certificate_request/file_spec.rb
|
2194
|
+
- spec/unit/indirector/certificate_request/rest_spec.rb
|
2195
|
+
- spec/unit/indirector/certificate_revocation_list/ca_spec.rb
|
2196
|
+
- spec/unit/indirector/certificate_revocation_list/disabled_ca_spec.rb
|
2197
|
+
- spec/unit/indirector/certificate_revocation_list/file_spec.rb
|
2198
|
+
- spec/unit/indirector/certificate_revocation_list/rest_spec.rb
|
2199
|
+
- spec/unit/indirector/certificate_status/file_spec.rb
|
2200
|
+
- spec/unit/indirector/certificate_status/rest_spec.rb
|
2201
|
+
- spec/unit/indirector/code_spec.rb
|
2202
|
+
- spec/unit/indirector/data_binding/hiera_spec.rb
|
2203
|
+
- spec/unit/indirector/data_binding/none_spec.rb
|
2204
|
+
- spec/unit/indirector/direct_file_server_spec.rb
|
2205
|
+
- spec/unit/indirector/envelope_spec.rb
|
2206
|
+
- spec/unit/indirector/exec_spec.rb
|
2207
|
+
- spec/unit/indirector/face_spec.rb
|
2208
|
+
- spec/unit/indirector/facts/active_record_spec.rb
|
2209
|
+
- spec/unit/indirector/facts/couch_spec.rb
|
2210
|
+
- spec/unit/indirector/facts/facter_spec.rb
|
2211
|
+
- spec/unit/indirector/facts/inventory_active_record_spec.rb
|
2212
|
+
- spec/unit/indirector/facts/inventory_service_spec.rb
|
2213
|
+
- spec/unit/indirector/facts/network_device_spec.rb
|
2214
|
+
- spec/unit/indirector/facts/rest_spec.rb
|
2215
|
+
- spec/unit/indirector/facts/store_configs_spec.rb
|
2216
|
+
- spec/unit/indirector/facts/yaml_spec.rb
|
2217
|
+
- spec/unit/indirector/file_bucket_file/file_spec.rb
|
2218
|
+
- spec/unit/indirector/file_bucket_file/rest_spec.rb
|
2219
|
+
- spec/unit/indirector/file_bucket_file/selector_spec.rb
|
2220
|
+
- spec/unit/indirector/file_content/file_server_spec.rb
|
2221
|
+
- spec/unit/indirector/file_content/file_spec.rb
|
2222
|
+
- spec/unit/indirector/file_content/rest_spec.rb
|
2223
|
+
- spec/unit/indirector/file_content/selector_spec.rb
|
2224
|
+
- spec/unit/indirector/file_metadata/file_server_spec.rb
|
2225
|
+
- spec/unit/indirector/file_metadata/file_spec.rb
|
2226
|
+
- spec/unit/indirector/file_metadata/rest_spec.rb
|
2227
|
+
- spec/unit/indirector/file_metadata/selector_spec.rb
|
2228
|
+
- spec/unit/indirector/file_server_spec.rb
|
2229
|
+
- spec/unit/indirector/hiera_spec.rb
|
2230
|
+
- spec/unit/indirector/indirection_spec.rb
|
2231
|
+
- spec/unit/indirector/instrumentation_data/local_spec.rb
|
2232
|
+
- spec/unit/indirector/instrumentation_data/rest_spec.rb
|
2233
|
+
- spec/unit/indirector/instrumentation_listener/local_spec.rb
|
2234
|
+
- spec/unit/indirector/instrumentation_listener/rest_spec.rb
|
2235
|
+
- spec/unit/indirector/instrumentation_probe/local_spec.rb
|
2236
|
+
- spec/unit/indirector/instrumentation_probe/rest_spec.rb
|
2237
|
+
- spec/unit/indirector/json_spec.rb
|
2238
|
+
- spec/unit/indirector/key/ca_spec.rb
|
2239
|
+
- spec/unit/indirector/key/disabled_ca_spec.rb
|
2240
|
+
- spec/unit/indirector/key/file_spec.rb
|
2241
|
+
- spec/unit/indirector/ldap_spec.rb
|
2242
|
+
- spec/unit/indirector/memory_spec.rb
|
2243
|
+
- spec/unit/indirector/node/active_record_spec.rb
|
2244
|
+
- spec/unit/indirector/node/exec_spec.rb
|
2245
|
+
- spec/unit/indirector/node/ldap_spec.rb
|
2246
|
+
- spec/unit/indirector/node/memory_spec.rb
|
2247
|
+
- spec/unit/indirector/node/plain_spec.rb
|
2248
|
+
- spec/unit/indirector/node/rest_spec.rb
|
2249
|
+
- spec/unit/indirector/node/store_configs_spec.rb
|
2250
|
+
- spec/unit/indirector/node/yaml_spec.rb
|
2251
|
+
- spec/unit/indirector/none_spec.rb
|
2252
|
+
- spec/unit/indirector/plain_spec.rb
|
2253
|
+
- spec/unit/indirector/queue_spec.rb
|
2254
|
+
- spec/unit/indirector/report/processor_spec.rb
|
2255
|
+
- spec/unit/indirector/report/rest_spec.rb
|
2256
|
+
- spec/unit/indirector/report/yaml_spec.rb
|
2257
|
+
- spec/unit/indirector/request_spec.rb
|
2258
|
+
- spec/unit/indirector/resource/active_record_spec.rb
|
2259
|
+
- spec/unit/indirector/resource/ral_spec.rb
|
2260
|
+
- spec/unit/indirector/resource/rest_spec.rb
|
2261
|
+
- spec/unit/indirector/resource/store_configs_spec.rb
|
2262
|
+
- spec/unit/indirector/resource_type/parser_spec.rb
|
2263
|
+
- spec/unit/indirector/resource_type/rest_spec.rb
|
2264
|
+
- spec/unit/indirector/rest_spec.rb
|
2265
|
+
- spec/unit/indirector/run/local_spec.rb
|
2266
|
+
- spec/unit/indirector/run/rest_spec.rb
|
2267
|
+
- spec/unit/indirector/ssl_file_spec.rb
|
2268
|
+
- spec/unit/indirector/status/rest_spec.rb
|
2269
|
+
- spec/unit/indirector/store_configs_spec.rb
|
2270
|
+
- spec/unit/indirector/terminus_spec.rb
|
2271
|
+
- spec/unit/indirector/yaml_spec.rb
|
2272
|
+
- spec/unit/indirector_spec.rb
|
2273
|
+
- spec/unit/interface/action_builder_spec.rb
|
2274
|
+
- spec/unit/interface/action_manager_spec.rb
|
2275
|
+
- spec/unit/interface/action_spec.rb
|
2276
|
+
- spec/unit/interface/documentation_spec.rb
|
2277
|
+
- spec/unit/interface/face_collection_spec.rb
|
2278
|
+
- spec/unit/interface/option_builder_spec.rb
|
2279
|
+
- spec/unit/interface/option_spec.rb
|
2280
|
+
- spec/unit/interface_spec.rb
|
2281
|
+
- spec/unit/module_spec.rb
|
2282
|
+
- spec/unit/module_tool/application_spec.rb
|
2283
|
+
- spec/unit/module_tool/applications/application_spec.rb
|
2284
|
+
- spec/unit/module_tool/applications/installer_spec.rb
|
2285
|
+
- spec/unit/module_tool/applications/searcher_spec.rb
|
2286
|
+
- spec/unit/module_tool/applications/uninstaller_spec.rb
|
2287
|
+
- spec/unit/module_tool/applications/unpacker_spec.rb
|
2288
|
+
- spec/unit/module_tool/applications/upgrader_spec.rb
|
2289
|
+
- spec/unit/module_tool/install_directory_spec.rb
|
2290
|
+
- spec/unit/module_tool/metadata_spec.rb
|
2291
|
+
- spec/unit/module_tool_spec.rb
|
2292
|
+
- spec/unit/network/auth_config_parser_spec.rb
|
2293
|
+
- spec/unit/network/authconfig_spec.rb
|
2294
|
+
- spec/unit/network/authentication_spec.rb
|
2295
|
+
- spec/unit/network/authorization_spec.rb
|
2296
|
+
- spec/unit/network/authstore_spec.rb
|
2297
|
+
- spec/unit/network/format_handler_spec.rb
|
2298
|
+
- spec/unit/network/format_spec.rb
|
2299
|
+
- spec/unit/network/formats_spec.rb
|
2300
|
+
- spec/unit/network/http/api/v1_spec.rb
|
2301
|
+
- spec/unit/network/http/compression_spec.rb
|
2302
|
+
- spec/unit/network/http/connection_spec.rb
|
2303
|
+
- spec/unit/network/http/handler_spec.rb
|
2304
|
+
- spec/unit/network/http/rack/rest_spec.rb
|
2305
|
+
- spec/unit/network/http/rack_spec.rb
|
2306
|
+
- spec/unit/network/http/webrick/rest_spec.rb
|
2307
|
+
- spec/unit/network/http/webrick_spec.rb
|
2308
|
+
- spec/unit/network/http_pool_spec.rb
|
2309
|
+
- spec/unit/network/resolver_spec.rb
|
2310
|
+
- spec/unit/network/rights_spec.rb
|
2311
|
+
- spec/unit/network/server_spec.rb
|
2312
|
+
- spec/unit/node/environment_spec.rb
|
2313
|
+
- spec/unit/node/facts_spec.rb
|
2314
|
+
- spec/unit/node_spec.rb
|
2315
|
+
- spec/unit/other/selinux_spec.rb
|
2316
|
+
- spec/unit/parameter/package_options_spec.rb
|
2317
|
+
- spec/unit/parameter/path_spec.rb
|
2318
|
+
- spec/unit/parameter/value_collection_spec.rb
|
2319
|
+
- spec/unit/parameter/value_spec.rb
|
2320
|
+
- spec/unit/parameter_spec.rb
|
2321
|
+
- spec/unit/parser/ast/arithmetic_operator_spec.rb
|
2322
|
+
- spec/unit/parser/ast/astarray_spec.rb
|
2323
|
+
- spec/unit/parser/ast/asthash_spec.rb
|
2324
|
+
- spec/unit/parser/ast/boolean_operator_spec.rb
|
2325
|
+
- spec/unit/parser/ast/casestatement_spec.rb
|
2326
|
+
- spec/unit/parser/ast/collection_spec.rb
|
2327
|
+
- spec/unit/parser/ast/collexpr_spec.rb
|
2328
|
+
- spec/unit/parser/ast/comparison_operator_spec.rb
|
2329
|
+
- spec/unit/parser/ast/definition_spec.rb
|
2330
|
+
- spec/unit/parser/ast/function_spec.rb
|
2331
|
+
- spec/unit/parser/ast/hostclass_spec.rb
|
2332
|
+
- spec/unit/parser/ast/ifstatement_spec.rb
|
2333
|
+
- spec/unit/parser/ast/in_operator_spec.rb
|
2334
|
+
- spec/unit/parser/ast/leaf_spec.rb
|
2335
|
+
- spec/unit/parser/ast/match_operator_spec.rb
|
2336
|
+
- spec/unit/parser/ast/minus_spec.rb
|
2337
|
+
- spec/unit/parser/ast/node_spec.rb
|
2338
|
+
- spec/unit/parser/ast/nop_spec.rb
|
2339
|
+
- spec/unit/parser/ast/not_spec.rb
|
2340
|
+
- spec/unit/parser/ast/relationship_spec.rb
|
2341
|
+
- spec/unit/parser/ast/resource_defaults_spec.rb
|
2342
|
+
- spec/unit/parser/ast/resource_override_spec.rb
|
2343
|
+
- spec/unit/parser/ast/resource_reference_spec.rb
|
2344
|
+
- spec/unit/parser/ast/resource_spec.rb
|
2345
|
+
- spec/unit/parser/ast/selector_spec.rb
|
2346
|
+
- spec/unit/parser/ast/vardef_spec.rb
|
2347
|
+
- spec/unit/parser/ast_spec.rb
|
2348
|
+
- spec/unit/parser/collector_spec.rb
|
2349
|
+
- spec/unit/parser/compiler_spec.rb
|
2350
|
+
- spec/unit/parser/files_spec.rb
|
2351
|
+
- spec/unit/parser/functions/create_resources_spec.rb
|
2352
|
+
- spec/unit/parser/functions/defined_spec.rb
|
2353
|
+
- spec/unit/parser/functions/extlookup_spec.rb
|
2354
|
+
- spec/unit/parser/functions/fail_spec.rb
|
2355
|
+
- spec/unit/parser/functions/file_spec.rb
|
2356
|
+
- spec/unit/parser/functions/fqdn_rand_spec.rb
|
2357
|
+
- spec/unit/parser/functions/generate_spec.rb
|
2358
|
+
- spec/unit/parser/functions/hiera_array_spec.rb
|
2359
|
+
- spec/unit/parser/functions/hiera_hash_spec.rb
|
2360
|
+
- spec/unit/parser/functions/hiera_include_spec.rb
|
2361
|
+
- spec/unit/parser/functions/hiera_spec.rb
|
2362
|
+
- spec/unit/parser/functions/include_spec.rb
|
2363
|
+
- spec/unit/parser/functions/inline_template_spec.rb
|
2364
|
+
- spec/unit/parser/functions/realize_spec.rb
|
2365
|
+
- spec/unit/parser/functions/regsubst_spec.rb
|
2366
|
+
- spec/unit/parser/functions/require_spec.rb
|
2367
|
+
- spec/unit/parser/functions/search_spec.rb
|
2368
|
+
- spec/unit/parser/functions/shellquote_spec.rb
|
2369
|
+
- spec/unit/parser/functions/split_spec.rb
|
2370
|
+
- spec/unit/parser/functions/sprintf_spec.rb
|
2371
|
+
- spec/unit/parser/functions/tag_spec.rb
|
2372
|
+
- spec/unit/parser/functions/template_spec.rb
|
2373
|
+
- spec/unit/parser/functions/versioncmp_spec.rb
|
2374
|
+
- spec/unit/parser/functions_spec.rb
|
2375
|
+
- spec/unit/parser/lexer_spec.rb
|
2376
|
+
- spec/unit/parser/parser_spec.rb
|
2377
|
+
- spec/unit/parser/relationship_spec.rb
|
2378
|
+
- spec/unit/parser/resource_spec.rb
|
2379
|
+
- spec/unit/parser/scope_spec.rb
|
2380
|
+
- spec/unit/parser/templatewrapper_spec.rb
|
2381
|
+
- spec/unit/parser/type_loader_spec.rb
|
2382
|
+
- spec/unit/property/ensure_spec.rb
|
2383
|
+
- spec/unit/property/keyvalue_spec.rb
|
2384
|
+
- spec/unit/property/list_spec.rb
|
2385
|
+
- spec/unit/property/ordered_list_spec.rb
|
2386
|
+
- spec/unit/property_spec.rb
|
2387
|
+
- spec/unit/provider/augeas/augeas_spec.rb
|
2388
|
+
- spec/unit/provider/cisco_spec.rb
|
2389
|
+
- spec/unit/provider/command_spec.rb
|
2390
|
+
- spec/unit/provider/confine/exists_spec.rb
|
2391
|
+
- spec/unit/provider/confine/false_spec.rb
|
2392
|
+
- spec/unit/provider/confine/feature_spec.rb
|
2393
|
+
- spec/unit/provider/confine/true_spec.rb
|
2394
|
+
- spec/unit/provider/confine/variable_spec.rb
|
2395
|
+
- spec/unit/provider/confine_collection_spec.rb
|
2396
|
+
- spec/unit/provider/confine_spec.rb
|
2397
|
+
- spec/unit/provider/confiner_spec.rb
|
2398
|
+
- spec/unit/provider/cron/crontab_spec.rb
|
2399
|
+
- spec/unit/provider/exec/posix_spec.rb
|
2400
|
+
- spec/unit/provider/exec/shell_spec.rb
|
2401
|
+
- spec/unit/provider/exec/windows_spec.rb
|
2402
|
+
- spec/unit/provider/exec_spec.rb
|
2403
|
+
- spec/unit/provider/file/posix_spec.rb
|
2404
|
+
- spec/unit/provider/file/windows_spec.rb
|
2405
|
+
- spec/unit/provider/group/groupadd_spec.rb
|
2406
|
+
- spec/unit/provider/group/ldap_spec.rb
|
2407
|
+
- spec/unit/provider/group/pw_spec.rb
|
2408
|
+
- spec/unit/provider/group/windows_adsi_spec.rb
|
2409
|
+
- spec/unit/provider/host/parsed_spec.rb
|
2410
|
+
- spec/unit/provider/interface/cisco_spec.rb
|
2411
|
+
- spec/unit/provider/ldap_spec.rb
|
2412
|
+
- spec/unit/provider/macauthorization_spec.rb
|
2413
|
+
- spec/unit/provider/mcx/mcxcontent_spec.rb
|
2414
|
+
- spec/unit/provider/mount/parsed_spec.rb
|
2415
|
+
- spec/unit/provider/mount_spec.rb
|
2416
|
+
- spec/unit/provider/naginator_spec.rb
|
2417
|
+
- spec/unit/provider/nameservice/directoryservice_spec.rb
|
2418
|
+
- spec/unit/provider/network_device_spec.rb
|
2419
|
+
- spec/unit/provider/package/aix_spec.rb
|
2420
|
+
- spec/unit/provider/package/appdmg_spec.rb
|
2421
|
+
- spec/unit/provider/package/apt_spec.rb
|
2422
|
+
- spec/unit/provider/package/aptitude_spec.rb
|
2423
|
+
- spec/unit/provider/package/aptrpm_spec.rb
|
2424
|
+
- spec/unit/provider/package/dpkg_spec.rb
|
2425
|
+
- spec/unit/provider/package/freebsd_spec.rb
|
2426
|
+
- spec/unit/provider/package/gem_spec.rb
|
2427
|
+
- spec/unit/provider/package/hpux_spec.rb
|
2428
|
+
- spec/unit/provider/package/macports_spec.rb
|
2429
|
+
- spec/unit/provider/package/msi_spec.rb
|
2430
|
+
- spec/unit/provider/package/nim_spec.rb
|
2431
|
+
- spec/unit/provider/package/openbsd_spec.rb
|
2432
|
+
- spec/unit/provider/package/pacman_spec.rb
|
2433
|
+
- spec/unit/provider/package/pip_spec.rb
|
2434
|
+
- spec/unit/provider/package/pkg_spec.rb
|
2435
|
+
- spec/unit/provider/package/pkgdmg_spec.rb
|
2436
|
+
- spec/unit/provider/package/pkgin_spec.rb
|
2437
|
+
- spec/unit/provider/package/pkgutil_spec.rb
|
2438
|
+
- spec/unit/provider/package/rpm_spec.rb
|
2439
|
+
- spec/unit/provider/package/sun_spec.rb
|
2440
|
+
- spec/unit/provider/package/up2date_spec.rb
|
2441
|
+
- spec/unit/provider/package/windows/exe_package_spec.rb
|
2442
|
+
- spec/unit/provider/package/windows/msi_package_spec.rb
|
2443
|
+
- spec/unit/provider/package/windows/package_spec.rb
|
2444
|
+
- spec/unit/provider/package/windows_spec.rb
|
2445
|
+
- spec/unit/provider/package/yum_spec.rb
|
2446
|
+
- spec/unit/provider/package/zypper_spec.rb
|
2447
|
+
- spec/unit/provider/parsedfile_spec.rb
|
2448
|
+
- spec/unit/provider/README.markdown
|
2449
|
+
- spec/unit/provider/scheduled_task/win32_taskscheduler_spec.rb
|
2450
|
+
- spec/unit/provider/selboolean_spec.rb
|
2451
|
+
- spec/unit/provider/selmodule-example.pp
|
2452
|
+
- spec/unit/provider/selmodule_spec.rb
|
2453
|
+
- spec/unit/provider/service/base_spec.rb
|
2454
|
+
- spec/unit/provider/service/daemontools_spec.rb
|
2455
|
+
- spec/unit/provider/service/debian_spec.rb
|
2456
|
+
- spec/unit/provider/service/freebsd_spec.rb
|
2457
|
+
- spec/unit/provider/service/gentoo_spec.rb
|
2458
|
+
- spec/unit/provider/service/init_spec.rb
|
2459
|
+
- spec/unit/provider/service/launchd_spec.rb
|
2460
|
+
- spec/unit/provider/service/openrc_spec.rb
|
2461
|
+
- spec/unit/provider/service/redhat_spec.rb
|
2462
|
+
- spec/unit/provider/service/runit_spec.rb
|
2463
|
+
- spec/unit/provider/service/smf_spec.rb
|
2464
|
+
- spec/unit/provider/service/src_spec.rb
|
2465
|
+
- spec/unit/provider/service/systemd_spec.rb
|
2466
|
+
- spec/unit/provider/service/upstart_spec.rb
|
2467
|
+
- spec/unit/provider/service/windows_spec.rb
|
2468
|
+
- spec/unit/provider/ssh_authorized_key/parsed_spec.rb
|
2469
|
+
- spec/unit/provider/sshkey/parsed_spec.rb
|
2470
|
+
- spec/unit/provider/user/hpux_spec.rb
|
2471
|
+
- spec/unit/provider/user/ldap_spec.rb
|
2472
|
+
- spec/unit/provider/user/pw_spec.rb
|
2473
|
+
- spec/unit/provider/user/user_role_add_spec.rb
|
2474
|
+
- spec/unit/provider/user/useradd_spec.rb
|
2475
|
+
- spec/unit/provider/user/windows_adsi_spec.rb
|
2476
|
+
- spec/unit/provider/vlan/cisco_spec.rb
|
2477
|
+
- spec/unit/provider/zfs/zfs_spec.rb
|
2478
|
+
- spec/unit/provider/zone/solaris_spec.rb
|
2479
|
+
- spec/unit/provider/zpool/zpool_spec.rb
|
2480
|
+
- spec/unit/provider_spec.rb
|
2481
|
+
- spec/unit/puppet_spec.rb
|
2482
|
+
- spec/unit/rails/host_spec.rb
|
2483
|
+
- spec/unit/rails/param_value_spec.rb
|
2484
|
+
- spec/unit/rails/resource_spec.rb
|
2485
|
+
- spec/unit/rails_spec.rb
|
2486
|
+
- spec/unit/rb_tree_map_spec.rb
|
2487
|
+
- spec/unit/relationship_spec.rb
|
2488
|
+
- spec/unit/reports/http_spec.rb
|
2489
|
+
- spec/unit/reports/rrdgraph_spec.rb
|
2490
|
+
- spec/unit/reports/store_spec.rb
|
2491
|
+
- spec/unit/reports/tagmail_spec.rb
|
2492
|
+
- spec/unit/reports_spec.rb
|
2493
|
+
- spec/unit/resource/catalog_spec.rb
|
2494
|
+
- spec/unit/resource/status_spec.rb
|
2495
|
+
- spec/unit/resource/type_collection_helper_spec.rb
|
2496
|
+
- spec/unit/resource/type_collection_spec.rb
|
2497
|
+
- spec/unit/resource/type_spec.rb
|
2498
|
+
- spec/unit/resource_spec.rb
|
2499
|
+
- spec/unit/run_spec.rb
|
2500
|
+
- spec/unit/semver_spec.rb
|
2501
|
+
- spec/unit/settings/directory_setting_spec.rb
|
2502
|
+
- spec/unit/settings/duration_setting_spec.rb
|
2503
|
+
- spec/unit/settings/file_setting_spec.rb
|
2504
|
+
- spec/unit/settings/path_setting_spec.rb
|
2505
|
+
- spec/unit/settings/string_setting_spec.rb
|
2506
|
+
- spec/unit/settings/terminus_setting_spec.rb
|
2507
|
+
- spec/unit/settings_spec.rb
|
2508
|
+
- spec/unit/simple_graph_spec.rb
|
2509
|
+
- spec/unit/ssl/base_spec.rb
|
2510
|
+
- spec/unit/ssl/certificate_authority/interface_spec.rb
|
2511
|
+
- spec/unit/ssl/certificate_authority_spec.rb
|
2512
|
+
- spec/unit/ssl/certificate_factory_spec.rb
|
2513
|
+
- spec/unit/ssl/certificate_request_spec.rb
|
2514
|
+
- spec/unit/ssl/certificate_revocation_list_spec.rb
|
2515
|
+
- spec/unit/ssl/certificate_spec.rb
|
2516
|
+
- spec/unit/ssl/configuration_spec.rb
|
2517
|
+
- spec/unit/ssl/digest_spec.rb
|
2518
|
+
- spec/unit/ssl/host_spec.rb
|
2519
|
+
- spec/unit/ssl/inventory_spec.rb
|
2520
|
+
- spec/unit/ssl/key_spec.rb
|
2521
|
+
- spec/unit/status_spec.rb
|
2522
|
+
- spec/unit/transaction/event_manager_spec.rb
|
2523
|
+
- spec/unit/transaction/event_spec.rb
|
2524
|
+
- spec/unit/transaction/report_spec.rb
|
2525
|
+
- spec/unit/transaction/resource_harness_spec.rb
|
2526
|
+
- spec/unit/transaction_spec.rb
|
2527
|
+
- spec/unit/type/augeas_spec.rb
|
2528
|
+
- spec/unit/type/component_spec.rb
|
2529
|
+
- spec/unit/type/computer_spec.rb
|
2530
|
+
- spec/unit/type/cron_spec.rb
|
2531
|
+
- spec/unit/type/exec_spec.rb
|
2532
|
+
- spec/unit/type/file/checksum_spec.rb
|
2533
|
+
- spec/unit/type/file/content_spec.rb
|
2534
|
+
- spec/unit/type/file/ctime_spec.rb
|
2535
|
+
- spec/unit/type/file/ensure_spec.rb
|
2536
|
+
- spec/unit/type/file/group_spec.rb
|
2537
|
+
- spec/unit/type/file/mode_spec.rb
|
2538
|
+
- spec/unit/type/file/mtime_spec.rb
|
2539
|
+
- spec/unit/type/file/owner_spec.rb
|
2540
|
+
- spec/unit/type/file/selinux_spec.rb
|
2541
|
+
- spec/unit/type/file/source_spec.rb
|
2542
|
+
- spec/unit/type/file/type_spec.rb
|
2543
|
+
- spec/unit/type/file_spec.rb
|
2544
|
+
- spec/unit/type/filebucket_spec.rb
|
2545
|
+
- spec/unit/type/group_spec.rb
|
2546
|
+
- spec/unit/type/host_spec.rb
|
2547
|
+
- spec/unit/type/interface_spec.rb
|
2548
|
+
- spec/unit/type/k5login_spec.rb
|
2549
|
+
- spec/unit/type/macauthorization_spec.rb
|
2550
|
+
- spec/unit/type/mailalias_spec.rb
|
2551
|
+
- spec/unit/type/maillist_spec.rb
|
2552
|
+
- spec/unit/type/mcx_spec.rb
|
2553
|
+
- spec/unit/type/mount_spec.rb
|
2554
|
+
- spec/unit/type/nagios_spec.rb
|
2555
|
+
- spec/unit/type/noop_metaparam_spec.rb
|
2556
|
+
- spec/unit/type/package_spec.rb
|
2557
|
+
- spec/unit/type/README.markdown
|
2558
|
+
- spec/unit/type/resources_spec.rb
|
2559
|
+
- spec/unit/type/schedule_spec.rb
|
2560
|
+
- spec/unit/type/scheduled_task_spec.rb
|
2561
|
+
- spec/unit/type/selboolean_spec.rb
|
2562
|
+
- spec/unit/type/selmodule_spec.rb
|
2563
|
+
- spec/unit/type/service_spec.rb
|
2564
|
+
- spec/unit/type/ssh_authorized_key_spec.rb
|
2565
|
+
- spec/unit/type/sshkey_spec.rb
|
2566
|
+
- spec/unit/type/stage_spec.rb
|
2567
|
+
- spec/unit/type/tidy_spec.rb
|
2568
|
+
- spec/unit/type/user_spec.rb
|
2569
|
+
- spec/unit/type/vlan_spec.rb
|
2570
|
+
- spec/unit/type/whit_spec.rb
|
2571
|
+
- spec/unit/type/yumrepo_spec.rb
|
2572
|
+
- spec/unit/type/zfs_spec.rb
|
2573
|
+
- spec/unit/type/zone_spec.rb
|
2574
|
+
- spec/unit/type/zpool_spec.rb
|
2575
|
+
- spec/unit/type_spec.rb
|
2576
|
+
- spec/unit/util/adsi_spec.rb
|
2577
|
+
- spec/unit/util/autoload_spec.rb
|
2578
|
+
- spec/unit/util/backups_spec.rb
|
2579
|
+
- spec/unit/util/cache_accumulator_spec.rb
|
2580
|
+
- spec/unit/util/cacher_spec.rb
|
2581
|
+
- spec/unit/util/checksums_spec.rb
|
2582
|
+
- spec/unit/util/colors_spec.rb
|
2583
|
+
- spec/unit/util/command_line_spec.rb
|
2584
|
+
- spec/unit/util/command_line_utils/puppet_option_parser_spec.rb
|
2585
|
+
- spec/unit/util/constant_inflector_spec.rb
|
2586
|
+
- spec/unit/util/diff_spec.rb
|
2587
|
+
- spec/unit/util/errors_spec.rb
|
2588
|
+
- spec/unit/util/execution_spec.rb
|
2589
|
+
- spec/unit/util/execution_stub_spec.rb
|
2590
|
+
- spec/unit/util/feature_spec.rb
|
2591
|
+
- spec/unit/util/filetype_spec.rb
|
2592
|
+
- spec/unit/util/inline_docs_spec.rb
|
2593
|
+
- spec/unit/util/instrumentation/data_spec.rb
|
2594
|
+
- spec/unit/util/instrumentation/indirection_probe_spec.rb
|
2595
|
+
- spec/unit/util/instrumentation/instrumentable_spec.rb
|
2596
|
+
- spec/unit/util/instrumentation/listener_spec.rb
|
2597
|
+
- spec/unit/util/instrumentation/listeners/log_spec.rb
|
2598
|
+
- spec/unit/util/instrumentation/listeners/performance_spec.rb
|
2599
|
+
- spec/unit/util/instrumentation_spec.rb
|
2600
|
+
- spec/unit/util/json_lockfile_spec.rb
|
2601
|
+
- spec/unit/util/ldap/connection_spec.rb
|
2602
|
+
- spec/unit/util/ldap/generator_spec.rb
|
2603
|
+
- spec/unit/util/ldap/manager_spec.rb
|
2604
|
+
- spec/unit/util/loadedfile_spec.rb
|
2605
|
+
- spec/unit/util/lockfile_spec.rb
|
2606
|
+
- spec/unit/util/log/destinations_spec.rb
|
2607
|
+
- spec/unit/util/log/rate_limited_logger_spec.rb
|
2608
|
+
- spec/unit/util/log_spec.rb
|
2609
|
+
- spec/unit/util/logging_spec.rb
|
2610
|
+
- spec/unit/util/metric_spec.rb
|
2611
|
+
- spec/unit/util/monkey_patches/lines_spec.rb
|
2612
|
+
- spec/unit/util/monkey_patches_spec.rb
|
2613
|
+
- spec/unit/util/nagios_maker_spec.rb
|
2614
|
+
- spec/unit/util/network_device/cisco/device_spec.rb
|
2615
|
+
- spec/unit/util/network_device/cisco/facts_spec.rb
|
2616
|
+
- spec/unit/util/network_device/cisco/interface_spec.rb
|
2617
|
+
- spec/unit/util/network_device/config_spec.rb
|
2618
|
+
- spec/unit/util/network_device/ipcalc_spec.rb
|
2619
|
+
- spec/unit/util/network_device/transport/base_spec.rb
|
2620
|
+
- spec/unit/util/network_device/transport/ssh_spec.rb
|
2621
|
+
- spec/unit/util/network_device/transport/telnet_spec.rb
|
2622
|
+
- spec/unit/util/network_device_spec.rb
|
2623
|
+
- spec/unit/util/package_spec.rb
|
2624
|
+
- spec/unit/util/pidlock_spec.rb
|
2625
|
+
- spec/unit/util/posix_spec.rb
|
2626
|
+
- spec/unit/util/pson_spec.rb
|
2627
|
+
- spec/unit/util/queue/stomp_spec.rb
|
2628
|
+
- spec/unit/util/queue_spec.rb
|
2629
|
+
- spec/unit/util/rdoc/parser_spec.rb
|
2630
|
+
- spec/unit/util/rdoc_spec.rb
|
2631
|
+
- spec/unit/util/reference_serializer_spec.rb
|
2632
|
+
- spec/unit/util/reference_spec.rb
|
2633
|
+
- spec/unit/util/resource_template_spec.rb
|
2634
|
+
- spec/unit/util/retryaction_spec.rb
|
2635
|
+
- spec/unit/util/rubygems_spec.rb
|
2636
|
+
- spec/unit/util/run_mode_spec.rb
|
2637
|
+
- spec/unit/util/selinux_spec.rb
|
2638
|
+
- spec/unit/util/storage_spec.rb
|
2639
|
+
- spec/unit/util/suidmanager_spec.rb
|
2640
|
+
- spec/unit/util/symbolic_file_mode_spec.rb
|
2641
|
+
- spec/unit/util/tagging_spec.rb
|
2642
|
+
- spec/unit/util/terminal_spec.rb
|
2643
|
+
- spec/unit/util/user_attr_spec.rb
|
2644
|
+
- spec/unit/util/warnings_spec.rb
|
2645
|
+
- spec/unit/util/windows/registry_spec.rb
|
2646
|
+
- spec/unit/util/zaml_spec.rb
|
2647
|
+
- spec/unit/util_spec.rb
|
2648
|
+
- spec/watchr.rb
|