puppet 3.5.0.rc1-x86-mingw32
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/COMMITTERS.md +244 -0
- data/CONTRIBUTING.md +87 -0
- data/Gemfile +88 -0
- data/LICENSE +17 -0
- data/README.md +75 -0
- data/Rakefile +68 -0
- data/bin/extlookup2hiera +56 -0
- data/bin/puppet +4 -0
- data/conf/auth.conf +120 -0
- data/conf/fileserver.conf +41 -0
- data/conf/tagmail.conf +16 -0
- 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 +4 -0
- data/examples/hiera/modules/ntp/manifests/config.pp +6 -0
- data/examples/hiera/modules/ntp/manifests/data.pp +4 -0
- data/examples/hiera/modules/ntp/templates/ntp.conf.erb +3 -0
- data/examples/hiera/modules/users/manifests/common.pp +4 -0
- data/examples/hiera/modules/users/manifests/dc1.pp +4 -0
- data/examples/hiera/modules/users/manifests/development.pp +4 -0
- data/examples/hiera/site.pp +3 -0
- data/ext/autotest/Rakefile +8 -0
- data/ext/autotest/config +43 -0
- data/ext/autotest/readme.rst +16 -0
- data/ext/build_defaults.yaml +23 -0
- data/ext/cert_inspector +140 -0
- data/ext/dbfix.sql +132 -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 +1122 -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 +41 -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 +35 -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 +9 -0
- data/ext/debian/puppet.init +117 -0
- data/ext/debian/puppet.lintian-overrides +3 -0
- data/ext/debian/puppet.logrotate +12 -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 +15 -0
- data/ext/debian/puppetmaster.default +14 -0
- data/ext/debian/puppetmaster.init +137 -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 +125 -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-init.el +6 -0
- data/ext/emacs/puppet-mode.el +415 -0
- data/ext/envpuppet +139 -0
- data/ext/envpuppet.bat +14 -0
- data/ext/freebsd/puppetd +26 -0
- data/ext/freebsd/puppetmasterd +26 -0
- data/ext/gentoo/conf.d/puppet +5 -0
- data/ext/gentoo/conf.d/puppetmaster +12 -0
- data/ext/gentoo/init.d/puppet +38 -0
- data/ext/gentoo/init.d/puppetmaster +51 -0
- data/ext/gentoo/puppet/fileserver.conf +41 -0
- data/ext/gentoo/puppet/puppet.conf +25 -0
- data/ext/ips/puppet-agent +44 -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 +42 -0
- data/ext/ips/puppetmaster.xml +42 -0
- data/ext/ips/rules +19 -0
- data/ext/ips/transforms +34 -0
- data/ext/ldap/puppet.schema +24 -0
- data/ext/logcheck/puppet +23 -0
- data/ext/nagios/check_puppet.rb +123 -0
- data/ext/nagios/naggen +309 -0
- data/ext/osx/file_mapping.yaml +33 -0
- data/ext/osx/postflight.erb +109 -0
- data/ext/osx/preflight.erb +52 -0
- data/ext/osx/prototype.plist.erb +38 -0
- data/ext/project_data.yaml +46 -0
- data/ext/puppet-load.rb +393 -0
- data/ext/puppet-nm-dispatcher +13 -0
- data/ext/puppet-test +566 -0
- data/ext/puppetlisten/puppetlisten.rb +75 -0
- data/ext/puppetlisten/puppetrun.rb +38 -0
- data/ext/pure_ruby_dsl/dsl_test.rb +7 -0
- data/ext/rack/config.ru +36 -0
- data/ext/rack/example-passenger-vhost.conf +52 -0
- data/ext/redhat/client.init +119 -0
- data/ext/redhat/client.sysconfig +11 -0
- data/ext/redhat/fileserver.conf +41 -0
- data/ext/redhat/logrotate +10 -0
- data/ext/redhat/puppet.conf +25 -0
- data/ext/redhat/puppet.spec.erb +848 -0
- data/ext/redhat/queue.init +105 -0
- data/ext/redhat/server.init +128 -0
- data/ext/redhat/server.sysconfig +13 -0
- data/ext/regexp_nodes/classes/databases +2 -0
- data/ext/regexp_nodes/classes/webservers +2 -0
- data/ext/regexp_nodes/environment/development +2 -0
- data/ext/regexp_nodes/parameters/service/prod +1 -0
- data/ext/regexp_nodes/parameters/service/qa +3 -0
- data/ext/regexp_nodes/parameters/service/sandbox +1 -0
- data/ext/regexp_nodes/regexp_nodes.rb +271 -0
- data/ext/solaris/pkginfo +6 -0
- data/ext/solaris/smf/puppetd.xml +77 -0
- data/ext/solaris/smf/puppetmasterd.xml +77 -0
- data/ext/solaris/smf/svc-puppetd +64 -0
- data/ext/solaris/smf/svc-puppetmasterd +60 -0
- data/ext/suse/client.init +144 -0
- data/ext/suse/puppet.spec +310 -0
- data/ext/suse/server.init +173 -0
- data/ext/systemd/puppet.service +13 -0
- data/ext/systemd/puppetmaster.service +13 -0
- data/ext/upload_facts.rb +119 -0
- data/ext/vim/README +3 -0
- data/ext/vim/ftdetect/puppet.vim +2 -0
- data/ext/vim/ftplugin/puppet.vim +94 -0
- data/ext/vim/indent/puppet.vim +76 -0
- data/ext/vim/syntax/puppet.vim +115 -0
- data/ext/windows/eventlog/Rakefile +32 -0
- data/ext/windows/eventlog/puppetres.dll +0 -0
- data/ext/windows/eventlog/puppetres.mc +18 -0
- data/ext/windows/service/daemon.bat +6 -0
- data/ext/windows/service/daemon.rb +169 -0
- data/ext/yaml_nodes.rb +105 -0
- data/install.rb +429 -0
- data/lib/hiera/backend/puppet_backend.rb +103 -0
- data/lib/hiera/scope.rb +60 -0
- data/lib/hiera_puppet.rb +87 -0
- data/lib/puppet.rb +247 -0
- data/lib/puppet/agent.rb +122 -0
- data/lib/puppet/agent/disabler.rb +53 -0
- data/lib/puppet/agent/locker.rb +43 -0
- data/lib/puppet/application.rb +485 -0
- data/lib/puppet/application/agent.rb +479 -0
- data/lib/puppet/application/apply.rb +290 -0
- data/lib/puppet/application/ca.rb +5 -0
- data/lib/puppet/application/catalog.rb +4 -0
- data/lib/puppet/application/cert.rb +277 -0
- data/lib/puppet/application/certificate.rb +15 -0
- data/lib/puppet/application/certificate_request.rb +7 -0
- data/lib/puppet/application/certificate_revocation_list.rb +7 -0
- data/lib/puppet/application/config.rb +4 -0
- data/lib/puppet/application/describe.rb +254 -0
- data/lib/puppet/application/device.rb +238 -0
- data/lib/puppet/application/doc.rb +280 -0
- data/lib/puppet/application/face_base.rb +250 -0
- data/lib/puppet/application/facts.rb +4 -0
- data/lib/puppet/application/file.rb +4 -0
- data/lib/puppet/application/filebucket.rb +184 -0
- data/lib/puppet/application/help.rb +4 -0
- data/lib/puppet/application/indirection_base.rb +4 -0
- data/lib/puppet/application/inspect.rb +179 -0
- data/lib/puppet/application/instrumentation_data.rb +7 -0
- data/lib/puppet/application/instrumentation_listener.rb +7 -0
- data/lib/puppet/application/instrumentation_probe.rb +7 -0
- data/lib/puppet/application/key.rb +4 -0
- data/lib/puppet/application/kick.rb +351 -0
- data/lib/puppet/application/man.rb +4 -0
- data/lib/puppet/application/master.rb +302 -0
- data/lib/puppet/application/module.rb +4 -0
- data/lib/puppet/application/node.rb +4 -0
- data/lib/puppet/application/parser.rb +5 -0
- data/lib/puppet/application/plugin.rb +3 -0
- data/lib/puppet/application/queue.rb +161 -0
- data/lib/puppet/application/report.rb +4 -0
- data/lib/puppet/application/resource.rb +229 -0
- data/lib/puppet/application/resource_type.rb +7 -0
- data/lib/puppet/application/secret_agent.rb +9 -0
- data/lib/puppet/application/status.rb +4 -0
- data/lib/puppet/bindings.rb +147 -0
- data/lib/puppet/coercion.rb +40 -0
- data/lib/puppet/configurer.rb +268 -0
- data/lib/puppet/configurer/downloader.rb +70 -0
- data/lib/puppet/configurer/fact_handler.rb +37 -0
- data/lib/puppet/configurer/plugin_handler.rb +28 -0
- data/lib/puppet/confine.rb +80 -0
- data/lib/puppet/confine/any.rb +26 -0
- data/lib/puppet/confine/exists.rb +19 -0
- data/lib/puppet/confine/false.rb +19 -0
- data/lib/puppet/confine/feature.rb +17 -0
- data/lib/puppet/confine/true.rb +20 -0
- data/lib/puppet/confine/variable.rb +59 -0
- data/lib/puppet/confine_collection.rb +50 -0
- data/lib/puppet/confiner.rb +46 -0
- data/lib/puppet/context.rb +55 -0
- data/lib/puppet/context/trusted_information.rb +56 -0
- data/lib/puppet/daemon.rb +182 -0
- data/lib/puppet/data_binding.rb +12 -0
- data/lib/puppet/defaults.rb +1875 -0
- data/lib/puppet/dsl.rb +7 -0
- data/lib/puppet/dsl/resource_api.rb +120 -0
- data/lib/puppet/dsl/resource_type_api.rb +34 -0
- data/lib/puppet/environments.rb +187 -0
- data/lib/puppet/error.rb +62 -0
- data/lib/puppet/external/dot.rb +326 -0
- data/lib/puppet/external/nagios.rb +46 -0
- data/lib/puppet/external/nagios/base.rb +472 -0
- data/lib/puppet/external/nagios/grammar.ry +246 -0
- data/lib/puppet/external/nagios/makefile +9 -0
- data/lib/puppet/external/nagios/parser.rb +391 -0
- data/lib/puppet/external/pson/common.rb +385 -0
- data/lib/puppet/external/pson/pure.rb +15 -0
- data/lib/puppet/external/pson/pure/generator.rb +401 -0
- data/lib/puppet/external/pson/pure/parser.rb +318 -0
- data/lib/puppet/external/pson/version.rb +8 -0
- data/lib/puppet/face.rb +12 -0
- data/lib/puppet/face/ca.rb +247 -0
- data/lib/puppet/face/catalog.rb +130 -0
- data/lib/puppet/face/catalog/select.rb +49 -0
- data/lib/puppet/face/certificate.rb +160 -0
- data/lib/puppet/face/certificate_request.rb +53 -0
- data/lib/puppet/face/certificate_revocation_list.rb +58 -0
- data/lib/puppet/face/config.rb +106 -0
- data/lib/puppet/face/facts.rb +81 -0
- data/lib/puppet/face/file.rb +47 -0
- data/lib/puppet/face/file/download.rb +54 -0
- data/lib/puppet/face/file/store.rb +21 -0
- data/lib/puppet/face/help.rb +194 -0
- data/lib/puppet/face/help/action.erb +86 -0
- data/lib/puppet/face/help/face.erb +111 -0
- data/lib/puppet/face/help/global.erb +16 -0
- data/lib/puppet/face/help/man.erb +152 -0
- data/lib/puppet/face/instrumentation_data.rb +29 -0
- data/lib/puppet/face/instrumentation_listener.rb +97 -0
- data/lib/puppet/face/instrumentation_probe.rb +78 -0
- data/lib/puppet/face/key.rb +15 -0
- data/lib/puppet/face/man.rb +99 -0
- data/lib/puppet/face/module.rb +19 -0
- data/lib/puppet/face/module/build.rb +63 -0
- data/lib/puppet/face/module/changes.rb +41 -0
- data/lib/puppet/face/module/generate.rb +41 -0
- data/lib/puppet/face/module/install.rb +143 -0
- data/lib/puppet/face/module/list.rb +274 -0
- data/lib/puppet/face/module/search.rb +94 -0
- data/lib/puppet/face/module/uninstall.rb +71 -0
- data/lib/puppet/face/module/upgrade.rb +77 -0
- data/lib/puppet/face/node.rb +43 -0
- data/lib/puppet/face/node/clean.rb +159 -0
- data/lib/puppet/face/parser.rb +67 -0
- data/lib/puppet/face/plugin.rb +61 -0
- data/lib/puppet/face/report.rb +54 -0
- data/lib/puppet/face/resource.rb +53 -0
- data/lib/puppet/face/resource_type.rb +81 -0
- data/lib/puppet/face/secret_agent.rb +54 -0
- data/lib/puppet/face/status.rb +53 -0
- data/lib/puppet/feature/base.rb +88 -0
- data/lib/puppet/feature/eventlog.rb +5 -0
- data/lib/puppet/feature/external_facts.rb +5 -0
- data/lib/puppet/feature/libuser.rb +8 -0
- data/lib/puppet/feature/msgpack.rb +3 -0
- data/lib/puppet/feature/pson.rb +4 -0
- data/lib/puppet/feature/rack.rb +19 -0
- data/lib/puppet/feature/rails.rb +47 -0
- data/lib/puppet/feature/rdoc1.rb +16 -0
- data/lib/puppet/feature/rubygems.rb +7 -0
- data/lib/puppet/feature/selinux.rb +3 -0
- data/lib/puppet/feature/ssh.rb +3 -0
- data/lib/puppet/feature/stomp.rb +5 -0
- data/lib/puppet/feature/zlib.rb +5 -0
- data/lib/puppet/file_bucket.rb +4 -0
- data/lib/puppet/file_bucket/dipper.rb +109 -0
- data/lib/puppet/file_bucket/file.rb +92 -0
- data/lib/puppet/file_collection.rb +19 -0
- data/lib/puppet/file_collection/lookup.rb +10 -0
- data/lib/puppet/file_serving.rb +3 -0
- data/lib/puppet/file_serving/base.rb +95 -0
- data/lib/puppet/file_serving/configuration.rb +109 -0
- data/lib/puppet/file_serving/configuration/parser.rb +121 -0
- data/lib/puppet/file_serving/content.rb +45 -0
- data/lib/puppet/file_serving/fileset.rb +172 -0
- data/lib/puppet/file_serving/metadata.rb +199 -0
- data/lib/puppet/file_serving/mount.rb +39 -0
- data/lib/puppet/file_serving/mount/file.rb +121 -0
- data/lib/puppet/file_serving/mount/modules.rb +24 -0
- data/lib/puppet/file_serving/mount/pluginfacts.rb +35 -0
- data/lib/puppet/file_serving/mount/plugins.rb +35 -0
- data/lib/puppet/file_serving/terminus_helper.rb +21 -0
- data/lib/puppet/file_serving/terminus_selector.rb +30 -0
- data/lib/puppet/file_system.rb +366 -0
- data/lib/puppet/file_system/file18.rb +5 -0
- data/lib/puppet/file_system/file19.rb +5 -0
- data/lib/puppet/file_system/file19windows.rb +108 -0
- data/lib/puppet/file_system/file_impl.rb +145 -0
- data/lib/puppet/file_system/memory_file.rb +45 -0
- data/lib/puppet/file_system/memory_impl.rb +64 -0
- data/lib/puppet/file_system/path_pattern.rb +97 -0
- data/lib/puppet/file_system/tempfile.rb +20 -0
- data/lib/puppet/forge.rb +106 -0
- data/lib/puppet/forge/cache.rb +55 -0
- data/lib/puppet/forge/errors.rb +103 -0
- data/lib/puppet/forge/repository.rb +135 -0
- data/lib/puppet/graph.rb +11 -0
- data/lib/puppet/graph/key.rb +26 -0
- data/lib/puppet/graph/prioritizer.rb +29 -0
- data/lib/puppet/graph/random_prioritizer.rb +16 -0
- data/lib/puppet/graph/rb_tree_map.rb +388 -0
- data/lib/puppet/graph/relationship_graph.rb +246 -0
- data/lib/puppet/graph/sequential_prioritizer.rb +31 -0
- data/lib/puppet/graph/simple_graph.rb +566 -0
- data/lib/puppet/graph/title_hash_prioritizer.rb +16 -0
- data/lib/puppet/indirector.rb +61 -0
- data/lib/puppet/indirector/active_record.rb +29 -0
- data/lib/puppet/indirector/catalog/active_record.rb +39 -0
- data/lib/puppet/indirector/catalog/compiler.rb +175 -0
- data/lib/puppet/indirector/catalog/json.rb +6 -0
- data/lib/puppet/indirector/catalog/msgpack.rb +6 -0
- data/lib/puppet/indirector/catalog/queue.rb +9 -0
- data/lib/puppet/indirector/catalog/rest.rb +6 -0
- data/lib/puppet/indirector/catalog/static_compiler.rb +214 -0
- data/lib/puppet/indirector/catalog/store_configs.rb +8 -0
- data/lib/puppet/indirector/catalog/yaml.rb +22 -0
- data/lib/puppet/indirector/certificate/ca.rb +9 -0
- data/lib/puppet/indirector/certificate/disabled_ca.rb +22 -0
- data/lib/puppet/indirector/certificate/file.rb +9 -0
- data/lib/puppet/indirector/certificate/rest.rb +16 -0
- data/lib/puppet/indirector/certificate_request/ca.rb +22 -0
- data/lib/puppet/indirector/certificate_request/disabled_ca.rb +22 -0
- data/lib/puppet/indirector/certificate_request/file.rb +8 -0
- data/lib/puppet/indirector/certificate_request/memory.rb +6 -0
- data/lib/puppet/indirector/certificate_request/rest.rb +10 -0
- data/lib/puppet/indirector/certificate_revocation_list/ca.rb +8 -0
- data/lib/puppet/indirector/certificate_revocation_list/disabled_ca.rb +22 -0
- data/lib/puppet/indirector/certificate_revocation_list/file.rb +8 -0
- data/lib/puppet/indirector/certificate_revocation_list/rest.rb +10 -0
- data/lib/puppet/indirector/certificate_status.rb +4 -0
- data/lib/puppet/indirector/certificate_status/file.rb +91 -0
- data/lib/puppet/indirector/certificate_status/rest.rb +11 -0
- data/lib/puppet/indirector/code.rb +6 -0
- data/lib/puppet/indirector/couch.rb +78 -0
- data/lib/puppet/indirector/data_binding/hiera.rb +50 -0
- data/lib/puppet/indirector/data_binding/none.rb +5 -0
- data/lib/puppet/indirector/direct_file_server.rb +19 -0
- data/lib/puppet/indirector/envelope.rb +11 -0
- data/lib/puppet/indirector/errors.rb +5 -0
- data/lib/puppet/indirector/exec.rb +38 -0
- data/lib/puppet/indirector/face.rb +139 -0
- data/lib/puppet/indirector/facts/active_record.rb +44 -0
- data/lib/puppet/indirector/facts/couch.rb +34 -0
- data/lib/puppet/indirector/facts/facter.rb +91 -0
- data/lib/puppet/indirector/facts/inventory_active_record.rb +110 -0
- data/lib/puppet/indirector/facts/inventory_service.rb +20 -0
- data/lib/puppet/indirector/facts/memory.rb +9 -0
- data/lib/puppet/indirector/facts/network_device.rb +24 -0
- data/lib/puppet/indirector/facts/rest.rb +8 -0
- data/lib/puppet/indirector/facts/store_configs.rb +8 -0
- data/lib/puppet/indirector/facts/yaml.rb +82 -0
- data/lib/puppet/indirector/file_bucket_file/file.rb +138 -0
- data/lib/puppet/indirector/file_bucket_file/rest.rb +8 -0
- data/lib/puppet/indirector/file_bucket_file/selector.rb +53 -0
- data/lib/puppet/indirector/file_content.rb +5 -0
- data/lib/puppet/indirector/file_content/file.rb +7 -0
- data/lib/puppet/indirector/file_content/file_server.rb +7 -0
- data/lib/puppet/indirector/file_content/rest.rb +9 -0
- data/lib/puppet/indirector/file_content/selector.rb +30 -0
- data/lib/puppet/indirector/file_metadata.rb +5 -0
- data/lib/puppet/indirector/file_metadata/file.rb +22 -0
- data/lib/puppet/indirector/file_metadata/file_server.rb +7 -0
- data/lib/puppet/indirector/file_metadata/rest.rb +9 -0
- data/lib/puppet/indirector/file_metadata/selector.rb +30 -0
- data/lib/puppet/indirector/file_server.rb +65 -0
- data/lib/puppet/indirector/indirection.rb +336 -0
- data/lib/puppet/indirector/instrumentation_data.rb +3 -0
- data/lib/puppet/indirector/instrumentation_data/local.rb +22 -0
- data/lib/puppet/indirector/instrumentation_data/rest.rb +8 -0
- data/lib/puppet/indirector/instrumentation_listener.rb +3 -0
- data/lib/puppet/indirector/instrumentation_listener/local.rb +26 -0
- data/lib/puppet/indirector/instrumentation_listener/rest.rb +8 -0
- data/lib/puppet/indirector/instrumentation_probe.rb +3 -0
- data/lib/puppet/indirector/instrumentation_probe/local.rb +27 -0
- data/lib/puppet/indirector/instrumentation_probe/rest.rb +8 -0
- data/lib/puppet/indirector/json.rb +76 -0
- data/lib/puppet/indirector/key/ca.rb +16 -0
- data/lib/puppet/indirector/key/disabled_ca.rb +22 -0
- data/lib/puppet/indirector/key/file.rb +49 -0
- data/lib/puppet/indirector/key/memory.rb +6 -0
- data/lib/puppet/indirector/ldap.rb +79 -0
- data/lib/puppet/indirector/memory.rb +34 -0
- data/lib/puppet/indirector/msgpack.rb +82 -0
- data/lib/puppet/indirector/node/active_record.rb +22 -0
- data/lib/puppet/indirector/node/exec.rb +69 -0
- data/lib/puppet/indirector/node/ldap.rb +257 -0
- data/lib/puppet/indirector/node/memory.rb +10 -0
- data/lib/puppet/indirector/node/msgpack.rb +7 -0
- data/lib/puppet/indirector/node/plain.rb +20 -0
- data/lib/puppet/indirector/node/rest.rb +7 -0
- data/lib/puppet/indirector/node/store_configs.rb +8 -0
- data/lib/puppet/indirector/node/write_only_yaml.rb +32 -0
- data/lib/puppet/indirector/node/yaml.rb +22 -0
- data/lib/puppet/indirector/none.rb +9 -0
- data/lib/puppet/indirector/plain.rb +9 -0
- data/lib/puppet/indirector/queue.rb +80 -0
- data/lib/puppet/indirector/report/msgpack.rb +11 -0
- data/lib/puppet/indirector/report/processor.rb +59 -0
- data/lib/puppet/indirector/report/rest.rb +15 -0
- data/lib/puppet/indirector/report/yaml.rb +11 -0
- data/lib/puppet/indirector/request.rb +312 -0
- data/lib/puppet/indirector/resource/active_record.rb +104 -0
- data/lib/puppet/indirector/resource/ral.rb +64 -0
- data/lib/puppet/indirector/resource/rest.rb +17 -0
- data/lib/puppet/indirector/resource/store_configs.rb +13 -0
- data/lib/puppet/indirector/resource/validator.rb +8 -0
- data/lib/puppet/indirector/resource_type.rb +5 -0
- data/lib/puppet/indirector/resource_type/parser.rb +101 -0
- data/lib/puppet/indirector/resource_type/rest.rb +7 -0
- data/lib/puppet/indirector/rest.rb +246 -0
- data/lib/puppet/indirector/run/local.rb +15 -0
- data/lib/puppet/indirector/run/rest.rb +12 -0
- data/lib/puppet/indirector/ssl_file.rb +180 -0
- data/lib/puppet/indirector/status.rb +3 -0
- data/lib/puppet/indirector/status/local.rb +12 -0
- data/lib/puppet/indirector/status/rest.rb +9 -0
- data/lib/puppet/indirector/store_configs.rb +30 -0
- data/lib/puppet/indirector/terminus.rb +169 -0
- data/lib/puppet/indirector/yaml.rb +63 -0
- data/lib/puppet/interface.rb +235 -0
- data/lib/puppet/interface/action.rb +374 -0
- data/lib/puppet/interface/action_builder.rb +149 -0
- data/lib/puppet/interface/action_manager.rb +101 -0
- data/lib/puppet/interface/documentation.rb +342 -0
- data/lib/puppet/interface/face_collection.rb +125 -0
- data/lib/puppet/interface/option.rb +150 -0
- data/lib/puppet/interface/option_builder.rb +93 -0
- data/lib/puppet/interface/option_manager.rb +99 -0
- data/lib/puppet/metatype/manager.rb +184 -0
- data/lib/puppet/module.rb +338 -0
- data/lib/puppet/module_tool.rb +143 -0
- data/lib/puppet/module_tool/applications.rb +15 -0
- data/lib/puppet/module_tool/applications/application.rb +89 -0
- data/lib/puppet/module_tool/applications/builder.rb +79 -0
- data/lib/puppet/module_tool/applications/checksummer.rb +56 -0
- data/lib/puppet/module_tool/applications/generator.rb +142 -0
- data/lib/puppet/module_tool/applications/installer.rb +192 -0
- data/lib/puppet/module_tool/applications/searcher.rb +28 -0
- data/lib/puppet/module_tool/applications/uninstaller.rb +110 -0
- data/lib/puppet/module_tool/applications/unpacker.rb +60 -0
- data/lib/puppet/module_tool/applications/upgrader.rb +113 -0
- data/lib/puppet/module_tool/checksums.rb +52 -0
- data/lib/puppet/module_tool/contents_description.rb +84 -0
- data/lib/puppet/module_tool/dependency.rb +29 -0
- data/lib/puppet/module_tool/errors.rb +11 -0
- data/lib/puppet/module_tool/errors/base.rb +15 -0
- data/lib/puppet/module_tool/errors/installer.rb +127 -0
- data/lib/puppet/module_tool/errors/shared.rb +115 -0
- data/lib/puppet/module_tool/errors/uninstaller.rb +45 -0
- data/lib/puppet/module_tool/errors/upgrader.rb +72 -0
- data/lib/puppet/module_tool/install_directory.rb +44 -0
- data/lib/puppet/module_tool/metadata.rb +155 -0
- data/lib/puppet/module_tool/modulefile.rb +78 -0
- data/lib/puppet/module_tool/shared_behaviors.rb +168 -0
- data/lib/puppet/module_tool/skeleton.rb +37 -0
- data/lib/puppet/module_tool/skeleton/templates/generator/Modulefile.erb +11 -0
- data/lib/puppet/module_tool/skeleton/templates/generator/README.erb +16 -0
- data/lib/puppet/module_tool/skeleton/templates/generator/manifests/init.pp.erb +41 -0
- data/lib/puppet/module_tool/skeleton/templates/generator/spec/spec_helper.rb +17 -0
- data/lib/puppet/module_tool/skeleton/templates/generator/tests/init.pp.erb +12 -0
- data/lib/puppet/module_tool/tar.rb +21 -0
- data/lib/puppet/module_tool/tar/gnu.rb +16 -0
- data/lib/puppet/module_tool/tar/mini.rb +41 -0
- data/lib/puppet/module_tool/tar/solaris.rb +5 -0
- data/lib/puppet/network.rb +3 -0
- data/lib/puppet/network/auth_config_parser.rb +84 -0
- data/lib/puppet/network/authconfig.rb +76 -0
- data/lib/puppet/network/authentication.rb +35 -0
- data/lib/puppet/network/authorization.rb +34 -0
- data/lib/puppet/network/authstore.rb +282 -0
- data/lib/puppet/network/client_request.rb +29 -0
- data/lib/puppet/network/format.rb +110 -0
- data/lib/puppet/network/format_handler.rb +105 -0
- data/lib/puppet/network/format_support.rb +124 -0
- data/lib/puppet/network/formats.rb +216 -0
- data/lib/puppet/network/http.rb +15 -0
- data/lib/puppet/network/http/api.rb +2 -0
- data/lib/puppet/network/http/api/v1.rb +218 -0
- data/lib/puppet/network/http/api/v2.rb +32 -0
- data/lib/puppet/network/http/api/v2/authorization.rb +13 -0
- data/lib/puppet/network/http/api/v2/environments.rb +21 -0
- data/lib/puppet/network/http/compression.rb +114 -0
- data/lib/puppet/network/http/connection.rb +254 -0
- data/lib/puppet/network/http/error.rb +69 -0
- data/lib/puppet/network/http/handler.rb +180 -0
- data/lib/puppet/network/http/issues.rb +9 -0
- data/lib/puppet/network/http/memory_response.rb +13 -0
- data/lib/puppet/network/http/rack.rb +33 -0
- data/lib/puppet/network/http/rack/rest.rb +136 -0
- data/lib/puppet/network/http/request.rb +56 -0
- data/lib/puppet/network/http/response.rb +11 -0
- data/lib/puppet/network/http/route.rb +91 -0
- data/lib/puppet/network/http/webrick.rb +119 -0
- data/lib/puppet/network/http/webrick/rest.rb +95 -0
- data/lib/puppet/network/http_pool.rb +53 -0
- data/lib/puppet/network/resolver.rb +86 -0
- data/lib/puppet/network/rest_controller.rb +2 -0
- data/lib/puppet/network/rights.rb +219 -0
- data/lib/puppet/network/server.rb +39 -0
- data/lib/puppet/node.rb +171 -0
- data/lib/puppet/node/environment.rb +492 -0
- data/lib/puppet/node/facts.rb +155 -0
- data/lib/puppet/parameter.rb +585 -0
- data/lib/puppet/parameter/boolean.rb +15 -0
- data/lib/puppet/parameter/package_options.rb +31 -0
- data/lib/puppet/parameter/path.rb +57 -0
- data/lib/puppet/parameter/value.rb +93 -0
- data/lib/puppet/parameter/value_collection.rb +211 -0
- data/lib/puppet/parser.rb +7 -0
- data/lib/puppet/parser/ast.rb +130 -0
- data/lib/puppet/parser/ast/arithmetic_operator.rb +91 -0
- data/lib/puppet/parser/ast/astarray.rb +50 -0
- data/lib/puppet/parser/ast/asthash.rb +37 -0
- data/lib/puppet/parser/ast/block_expression.rb +40 -0
- data/lib/puppet/parser/ast/boolean_operator.rb +46 -0
- data/lib/puppet/parser/ast/branch.rb +22 -0
- data/lib/puppet/parser/ast/caseopt.rb +52 -0
- data/lib/puppet/parser/ast/casestatement.rb +41 -0
- data/lib/puppet/parser/ast/collection.rb +49 -0
- data/lib/puppet/parser/ast/collexpr.rb +109 -0
- data/lib/puppet/parser/ast/comparison_operator.rb +38 -0
- data/lib/puppet/parser/ast/definition.rb +17 -0
- data/lib/puppet/parser/ast/else.rb +22 -0
- data/lib/puppet/parser/ast/function.rb +59 -0
- data/lib/puppet/parser/ast/hostclass.rb +29 -0
- data/lib/puppet/parser/ast/ifstatement.rb +34 -0
- data/lib/puppet/parser/ast/in_operator.rb +24 -0
- data/lib/puppet/parser/ast/lambda.rb +135 -0
- data/lib/puppet/parser/ast/leaf.rb +232 -0
- data/lib/puppet/parser/ast/match_operator.rb +28 -0
- data/lib/puppet/parser/ast/method_call.rb +77 -0
- data/lib/puppet/parser/ast/minus.rb +23 -0
- data/lib/puppet/parser/ast/node.rb +20 -0
- data/lib/puppet/parser/ast/nop.rb +11 -0
- data/lib/puppet/parser/ast/not.rb +19 -0
- data/lib/puppet/parser/ast/pops_bridge.rb +168 -0
- data/lib/puppet/parser/ast/relationship.rb +47 -0
- data/lib/puppet/parser/ast/resource.rb +67 -0
- data/lib/puppet/parser/ast/resource_defaults.rb +24 -0
- data/lib/puppet/parser/ast/resource_instance.rb +9 -0
- data/lib/puppet/parser/ast/resource_override.rb +62 -0
- data/lib/puppet/parser/ast/resource_reference.rb +28 -0
- data/lib/puppet/parser/ast/resourceparam.rb +27 -0
- data/lib/puppet/parser/ast/selector.rb +50 -0
- data/lib/puppet/parser/ast/tag.rb +24 -0
- data/lib/puppet/parser/ast/top_level_construct.rb +4 -0
- data/lib/puppet/parser/ast/vardef.rb +38 -0
- data/lib/puppet/parser/code_merger.rb +13 -0
- data/lib/puppet/parser/collector.rb +177 -0
- data/lib/puppet/parser/compiler.rb +555 -0
- data/lib/puppet/parser/e4_parser_adapter.rb +81 -0
- data/lib/puppet/parser/e_parser_adapter.rb +119 -0
- data/lib/puppet/parser/files.rb +94 -0
- data/lib/puppet/parser/functions.rb +249 -0
- data/lib/puppet/parser/functions/collect.rb +15 -0
- data/lib/puppet/parser/functions/contain.rb +26 -0
- data/lib/puppet/parser/functions/create_resources.rb +78 -0
- data/lib/puppet/parser/functions/defined.rb +73 -0
- data/lib/puppet/parser/functions/each.rb +109 -0
- data/lib/puppet/parser/functions/epp.rb +41 -0
- data/lib/puppet/parser/functions/extlookup.rb +153 -0
- data/lib/puppet/parser/functions/fail.rb +4 -0
- data/lib/puppet/parser/functions/file.rb +23 -0
- data/lib/puppet/parser/functions/filter.rb +100 -0
- data/lib/puppet/parser/functions/fqdn_rand.rb +21 -0
- data/lib/puppet/parser/functions/generate.rb +37 -0
- data/lib/puppet/parser/functions/hiera.rb +26 -0
- data/lib/puppet/parser/functions/hiera_array.rb +27 -0
- data/lib/puppet/parser/functions/hiera_hash.rb +29 -0
- data/lib/puppet/parser/functions/hiera_include.rb +44 -0
- data/lib/puppet/parser/functions/include.rb +47 -0
- data/lib/puppet/parser/functions/inline_epp.rb +79 -0
- data/lib/puppet/parser/functions/inline_template.rb +21 -0
- data/lib/puppet/parser/functions/lookup.rb +144 -0
- data/lib/puppet/parser/functions/map.rb +96 -0
- data/lib/puppet/parser/functions/md5.rb +5 -0
- data/lib/puppet/parser/functions/realize.rb +14 -0
- data/lib/puppet/parser/functions/reduce.rb +100 -0
- data/lib/puppet/parser/functions/regsubst.rb +116 -0
- data/lib/puppet/parser/functions/require.rb +53 -0
- data/lib/puppet/parser/functions/search.rb +7 -0
- data/lib/puppet/parser/functions/select.rb +15 -0
- data/lib/puppet/parser/functions/sha1.rb +5 -0
- data/lib/puppet/parser/functions/shellquote.rb +61 -0
- data/lib/puppet/parser/functions/slice.rb +116 -0
- data/lib/puppet/parser/functions/split.rb +28 -0
- data/lib/puppet/parser/functions/sprintf.rb +36 -0
- data/lib/puppet/parser/functions/tag.rb +6 -0
- data/lib/puppet/parser/functions/tagged.rb +18 -0
- data/lib/puppet/parser/functions/template.rb +23 -0
- data/lib/puppet/parser/functions/versioncmp.rb +30 -0
- data/lib/puppet/parser/grammar.ra +806 -0
- data/lib/puppet/parser/lexer.rb +608 -0
- data/lib/puppet/parser/makefile +8 -0
- data/lib/puppet/parser/methods.rb +69 -0
- data/lib/puppet/parser/parser.rb +2559 -0
- data/lib/puppet/parser/parser_factory.rb +88 -0
- data/lib/puppet/parser/parser_support.rb +195 -0
- data/lib/puppet/parser/relationship.rb +62 -0
- data/lib/puppet/parser/resource.rb +267 -0
- data/lib/puppet/parser/resource/param.rb +25 -0
- data/lib/puppet/parser/scope.rb +833 -0
- data/lib/puppet/parser/templatewrapper.rb +127 -0
- data/lib/puppet/parser/type_loader.rb +152 -0
- data/lib/puppet/parser/yaml_trimmer.rb +7 -0
- data/lib/puppet/pops.rb +99 -0
- data/lib/puppet/pops/adaptable.rb +190 -0
- data/lib/puppet/pops/adapters.rb +101 -0
- data/lib/puppet/pops/binder/binder.rb +393 -0
- data/lib/puppet/pops/binder/binder_issues.rb +122 -0
- data/lib/puppet/pops/binder/bindings_checker.rb +197 -0
- data/lib/puppet/pops/binder/bindings_composer.rb +175 -0
- data/lib/puppet/pops/binder/bindings_factory.rb +805 -0
- data/lib/puppet/pops/binder/bindings_label_provider.rb +43 -0
- data/lib/puppet/pops/binder/bindings_loader.rb +88 -0
- data/lib/puppet/pops/binder/bindings_model.rb +201 -0
- data/lib/puppet/pops/binder/bindings_model_dumper.rb +187 -0
- data/lib/puppet/pops/binder/bindings_validator_factory.rb +28 -0
- data/lib/puppet/pops/binder/config/binder_config.rb +107 -0
- data/lib/puppet/pops/binder/config/binder_config_checker.rb +142 -0
- data/lib/puppet/pops/binder/config/diagnostic_producer.rb +32 -0
- data/lib/puppet/pops/binder/config/issues.rb +86 -0
- data/lib/puppet/pops/binder/injector.rb +767 -0
- data/lib/puppet/pops/binder/injector_entry.rb +57 -0
- data/lib/puppet/pops/binder/key_factory.rb +67 -0
- data/lib/puppet/pops/binder/lookup.rb +191 -0
- data/lib/puppet/pops/binder/producers.rb +829 -0
- data/lib/puppet/pops/binder/scheme_handler/confdir_scheme.rb +34 -0
- data/lib/puppet/pops/binder/scheme_handler/module_scheme.rb +84 -0
- data/lib/puppet/pops/binder/scheme_handler/symbolic_scheme.rb +53 -0
- data/lib/puppet/pops/binder/system_bindings.rb +60 -0
- data/lib/puppet/pops/containment.rb +104 -0
- data/lib/puppet/pops/evaluator/access_operator.rb +548 -0
- data/lib/puppet/pops/evaluator/closure.rb +57 -0
- data/lib/puppet/pops/evaluator/compare_operator.rb +168 -0
- data/lib/puppet/pops/evaluator/epp_evaluator.rb +87 -0
- data/lib/puppet/pops/evaluator/evaluator_impl.rb +1069 -0
- data/lib/puppet/pops/evaluator/external_syntax_support.rb +49 -0
- data/lib/puppet/pops/evaluator/relationship_operator.rb +156 -0
- data/lib/puppet/pops/evaluator/runtime3_support.rb +489 -0
- data/lib/puppet/pops/issue_reporter.rb +79 -0
- data/lib/puppet/pops/issues.rb +461 -0
- data/lib/puppet/pops/label_provider.rb +76 -0
- data/lib/puppet/pops/model/ast_transformer.rb +663 -0
- data/lib/puppet/pops/model/ast_tree_dumper.rb +386 -0
- data/lib/puppet/pops/model/factory.rb +970 -0
- data/lib/puppet/pops/model/model.rb +606 -0
- data/lib/puppet/pops/model/model_label_provider.rb +104 -0
- data/lib/puppet/pops/model/model_tree_dumper.rb +377 -0
- data/lib/puppet/pops/model/tree_dumper.rb +59 -0
- data/lib/puppet/pops/parser/code_merger.rb +17 -0
- data/lib/puppet/pops/parser/egrammar.ra +752 -0
- data/lib/puppet/pops/parser/eparser.rb +2579 -0
- data/lib/puppet/pops/parser/epp_parser.rb +51 -0
- data/lib/puppet/pops/parser/epp_support.rb +247 -0
- data/lib/puppet/pops/parser/evaluating_parser.rb +200 -0
- data/lib/puppet/pops/parser/heredoc_support.rb +139 -0
- data/lib/puppet/pops/parser/interpolation_support.rb +227 -0
- data/lib/puppet/pops/parser/lexer.rb +753 -0
- data/lib/puppet/pops/parser/lexer2.rb +684 -0
- data/lib/puppet/pops/parser/lexer_support.rb +107 -0
- data/lib/puppet/pops/parser/locatable.rb +23 -0
- data/lib/puppet/pops/parser/locator.rb +291 -0
- data/lib/puppet/pops/parser/makefile +6 -0
- data/lib/puppet/pops/parser/parser_support.rb +231 -0
- data/lib/puppet/pops/parser/slurp_support.rb +95 -0
- data/lib/puppet/pops/patterns.rb +44 -0
- data/lib/puppet/pops/types/class_loader.rb +118 -0
- data/lib/puppet/pops/types/enumeration.rb +34 -0
- data/lib/puppet/pops/types/type_calculator.rb +1482 -0
- data/lib/puppet/pops/types/type_factory.rb +335 -0
- data/lib/puppet/pops/types/type_parser.rb +460 -0
- data/lib/puppet/pops/types/types.rb +422 -0
- data/lib/puppet/pops/utils.rb +120 -0
- data/lib/puppet/pops/validation.rb +432 -0
- data/lib/puppet/pops/validation/checker3_1.rb +558 -0
- data/lib/puppet/pops/validation/checker4_0.rb +514 -0
- data/lib/puppet/pops/validation/validator_factory_3_1.rb +31 -0
- data/lib/puppet/pops/validation/validator_factory_4_0.rb +31 -0
- data/lib/puppet/pops/visitable.rb +6 -0
- data/lib/puppet/pops/visitor.rb +192 -0
- data/lib/puppet/property.rb +617 -0
- data/lib/puppet/property/boolean.rb +7 -0
- data/lib/puppet/property/ensure.rb +105 -0
- data/lib/puppet/property/keyvalue.rb +95 -0
- data/lib/puppet/property/list.rb +78 -0
- data/lib/puppet/property/ordered_list.rb +29 -0
- data/lib/puppet/provider.rb +651 -0
- data/lib/puppet/provider/aixobject.rb +392 -0
- data/lib/puppet/provider/augeas/augeas.rb +509 -0
- data/lib/puppet/provider/cisco.rb +9 -0
- data/lib/puppet/provider/command.rb +25 -0
- data/lib/puppet/provider/computer/computer.rb +20 -0
- data/lib/puppet/provider/confine.rb +6 -0
- data/lib/puppet/provider/cron/crontab.rb +249 -0
- data/lib/puppet/provider/exec.rb +91 -0
- data/lib/puppet/provider/exec/posix.rb +48 -0
- data/lib/puppet/provider/exec/shell.rb +25 -0
- data/lib/puppet/provider/exec/windows.rb +55 -0
- data/lib/puppet/provider/file/posix.rb +136 -0
- data/lib/puppet/provider/file/windows.rb +105 -0
- data/lib/puppet/provider/group/aix.rb +141 -0
- data/lib/puppet/provider/group/directoryservice.rb +12 -0
- data/lib/puppet/provider/group/groupadd.rb +85 -0
- data/lib/puppet/provider/group/ldap.rb +45 -0
- data/lib/puppet/provider/group/pw.rb +48 -0
- data/lib/puppet/provider/group/windows_adsi.rb +86 -0
- data/lib/puppet/provider/host/parsed.rb +44 -0
- data/lib/puppet/provider/interface/cisco.rb +27 -0
- data/lib/puppet/provider/ldap.rb +137 -0
- data/lib/puppet/provider/macauthorization/macauthorization.rb +309 -0
- data/lib/puppet/provider/mailalias/aliases.rb +39 -0
- data/lib/puppet/provider/maillist/mailman.rb +108 -0
- data/lib/puppet/provider/mcx/mcxcontent.rb +172 -0
- data/lib/puppet/provider/mount.rb +58 -0
- data/lib/puppet/provider/mount/parsed.rb +123 -0
- data/lib/puppet/provider/naginator.rb +63 -0
- data/lib/puppet/provider/nameservice.rb +292 -0
- data/lib/puppet/provider/nameservice/directoryservice.rb +589 -0
- data/lib/puppet/provider/nameservice/objectadd.rb +33 -0
- data/lib/puppet/provider/nameservice/pw.rb +21 -0
- data/lib/puppet/provider/network_device.rb +68 -0
- data/lib/puppet/provider/package.rb +28 -0
- data/lib/puppet/provider/package/aix.rb +152 -0
- data/lib/puppet/provider/package/appdmg.rb +106 -0
- data/lib/puppet/provider/package/apple.rb +47 -0
- data/lib/puppet/provider/package/apt.rb +107 -0
- data/lib/puppet/provider/package/aptitude.rb +29 -0
- data/lib/puppet/provider/package/aptrpm.rb +83 -0
- data/lib/puppet/provider/package/blastwave.rb +111 -0
- data/lib/puppet/provider/package/dpkg.rb +165 -0
- data/lib/puppet/provider/package/fink.rb +79 -0
- data/lib/puppet/provider/package/freebsd.rb +47 -0
- data/lib/puppet/provider/package/gem.rb +125 -0
- data/lib/puppet/provider/package/hpux.rb +44 -0
- data/lib/puppet/provider/package/macports.rb +107 -0
- data/lib/puppet/provider/package/msi.rb +140 -0
- data/lib/puppet/provider/package/nim.rb +280 -0
- data/lib/puppet/provider/package/openbsd.rb +175 -0
- data/lib/puppet/provider/package/opkg.rb +76 -0
- data/lib/puppet/provider/package/pacman.rb +209 -0
- data/lib/puppet/provider/package/pip.rb +119 -0
- data/lib/puppet/provider/package/pkg.rb +190 -0
- data/lib/puppet/provider/package/pkgdmg.rb +149 -0
- data/lib/puppet/provider/package/pkgin.rb +87 -0
- data/lib/puppet/provider/package/pkgutil.rb +186 -0
- data/lib/puppet/provider/package/portage.rb +149 -0
- data/lib/puppet/provider/package/ports.rb +94 -0
- data/lib/puppet/provider/package/portupgrade.rb +241 -0
- data/lib/puppet/provider/package/rpm.rb +205 -0
- data/lib/puppet/provider/package/rug.rb +52 -0
- data/lib/puppet/provider/package/sun.rb +128 -0
- data/lib/puppet/provider/package/sunfreeware.rb +9 -0
- data/lib/puppet/provider/package/up2date.rb +40 -0
- data/lib/puppet/provider/package/urpmi.rb +55 -0
- data/lib/puppet/provider/package/windows.rb +123 -0
- data/lib/puppet/provider/package/windows/exe_package.rb +70 -0
- data/lib/puppet/provider/package/windows/msi_package.rb +62 -0
- data/lib/puppet/provider/package/windows/package.rb +80 -0
- data/lib/puppet/provider/package/yum.rb +110 -0
- data/lib/puppet/provider/package/yumhelper.py +129 -0
- data/lib/puppet/provider/package/zypper.rb +103 -0
- data/lib/puppet/provider/parsedfile.rb +443 -0
- data/lib/puppet/provider/scheduled_task/win32_taskscheduler.rb +565 -0
- data/lib/puppet/provider/selboolean/getsetsebool.rb +47 -0
- data/lib/puppet/provider/selmodule/semodule.rb +134 -0
- data/lib/puppet/provider/service/base.rb +106 -0
- data/lib/puppet/provider/service/bsd.rb +51 -0
- data/lib/puppet/provider/service/daemontools.rb +194 -0
- data/lib/puppet/provider/service/debian.rb +64 -0
- data/lib/puppet/provider/service/freebsd.rb +143 -0
- data/lib/puppet/provider/service/gentoo.rb +45 -0
- data/lib/puppet/provider/service/init.rb +161 -0
- data/lib/puppet/provider/service/launchd.rb +356 -0
- data/lib/puppet/provider/service/openbsd.rb +23 -0
- data/lib/puppet/provider/service/openrc.rb +71 -0
- data/lib/puppet/provider/service/openwrt.rb +36 -0
- data/lib/puppet/provider/service/redhat.rb +64 -0
- data/lib/puppet/provider/service/runit.rb +111 -0
- data/lib/puppet/provider/service/service.rb +42 -0
- data/lib/puppet/provider/service/smf.rb +116 -0
- data/lib/puppet/provider/service/src.rb +120 -0
- data/lib/puppet/provider/service/systemd.rb +65 -0
- data/lib/puppet/provider/service/upstart.rb +355 -0
- data/lib/puppet/provider/service/windows.rb +106 -0
- data/lib/puppet/provider/ssh_authorized_key/parsed.rb +89 -0
- data/lib/puppet/provider/sshkey/parsed.rb +35 -0
- data/lib/puppet/provider/user/aix.rb +369 -0
- data/lib/puppet/provider/user/directoryservice.rb +671 -0
- data/lib/puppet/provider/user/hpux.rb +66 -0
- data/lib/puppet/provider/user/ldap.rb +128 -0
- data/lib/puppet/provider/user/pw.rb +97 -0
- data/lib/puppet/provider/user/user_role_add.rb +209 -0
- data/lib/puppet/provider/user/useradd.rb +231 -0
- data/lib/puppet/provider/user/windows_adsi.rb +99 -0
- data/lib/puppet/provider/vlan/cisco.rb +28 -0
- data/lib/puppet/provider/yumrepo/inifile.rb +187 -0
- data/lib/puppet/provider/zfs/zfs.rb +83 -0
- data/lib/puppet/provider/zone/solaris.rb +361 -0
- data/lib/puppet/provider/zpool/zpool.rb +120 -0
- data/lib/puppet/rails.rb +139 -0
- data/lib/puppet/rails/benchmark.rb +63 -0
- data/lib/puppet/rails/database/001_add_created_at_to_all_tables.rb +13 -0
- data/lib/puppet/rails/database/002_remove_duplicated_index_on_all_tables.rb +13 -0
- data/lib/puppet/rails/database/003_add_environment_to_host.rb +9 -0
- data/lib/puppet/rails/database/004_add_inventory_service_tables.rb +36 -0
- data/lib/puppet/rails/database/schema.rb +136 -0
- data/lib/puppet/rails/fact_name.rb +7 -0
- data/lib/puppet/rails/fact_value.rb +10 -0
- data/lib/puppet/rails/host.rb +258 -0
- data/lib/puppet/rails/inventory_fact.rb +5 -0
- data/lib/puppet/rails/inventory_node.rb +43 -0
- data/lib/puppet/rails/param_name.rb +25 -0
- data/lib/puppet/rails/param_value.rb +74 -0
- data/lib/puppet/rails/puppet_tag.rb +10 -0
- data/lib/puppet/rails/resource.rb +235 -0
- data/lib/puppet/rails/resource_tag.rb +26 -0
- data/lib/puppet/rails/source_file.rb +8 -0
- data/lib/puppet/reference/configuration.rb +73 -0
- data/lib/puppet/reference/function.rb +17 -0
- data/lib/puppet/reference/indirection.rb +71 -0
- data/lib/puppet/reference/metaparameter.rb +42 -0
- data/lib/puppet/reference/providers.rb +119 -0
- data/lib/puppet/reference/report.rb +23 -0
- data/lib/puppet/reference/type.rb +116 -0
- data/lib/puppet/relationship.rb +103 -0
- data/lib/puppet/reports.rb +89 -0
- data/lib/puppet/reports/http.rb +31 -0
- data/lib/puppet/reports/log.rb +14 -0
- data/lib/puppet/reports/rrdgraph.rb +128 -0
- data/lib/puppet/reports/store.rb +73 -0
- data/lib/puppet/reports/tagmail.rb +179 -0
- data/lib/puppet/resource.rb +542 -0
- data/lib/puppet/resource/catalog.rb +543 -0
- data/lib/puppet/resource/status.rb +155 -0
- data/lib/puppet/resource/type.rb +386 -0
- data/lib/puppet/resource/type_collection.rb +230 -0
- data/lib/puppet/resource/type_collection_helper.rb +7 -0
- data/lib/puppet/run.rb +109 -0
- data/lib/puppet/scheduler.rb +16 -0
- data/lib/puppet/scheduler/job.rb +53 -0
- data/lib/puppet/scheduler/scheduler.rb +44 -0
- data/lib/puppet/scheduler/splay_job.rb +32 -0
- data/lib/puppet/scheduler/timer.rb +13 -0
- data/lib/puppet/settings.rb +1312 -0
- data/lib/puppet/settings/autosign_setting.rb +22 -0
- data/lib/puppet/settings/base_setting.rb +168 -0
- data/lib/puppet/settings/boolean_setting.rb +32 -0
- data/lib/puppet/settings/config_file.rb +134 -0
- data/lib/puppet/settings/directory_setting.rb +12 -0
- data/lib/puppet/settings/duration_setting.rb +32 -0
- data/lib/puppet/settings/enum_setting.rb +16 -0
- data/lib/puppet/settings/errors.rb +11 -0
- data/lib/puppet/settings/file_setting.rb +226 -0
- data/lib/puppet/settings/ini_file.rb +171 -0
- data/lib/puppet/settings/path_setting.rb +8 -0
- data/lib/puppet/settings/priority_setting.rb +42 -0
- data/lib/puppet/settings/string_setting.rb +9 -0
- data/lib/puppet/settings/terminus_setting.rb +14 -0
- data/lib/puppet/settings/value_translator.rb +15 -0
- data/lib/puppet/ssl.rb +12 -0
- data/lib/puppet/ssl/base.rb +140 -0
- data/lib/puppet/ssl/certificate.rb +65 -0
- data/lib/puppet/ssl/certificate_authority.rb +509 -0
- data/lib/puppet/ssl/certificate_authority/autosign_command.rb +44 -0
- data/lib/puppet/ssl/certificate_authority/interface.rb +178 -0
- data/lib/puppet/ssl/certificate_factory.rb +219 -0
- data/lib/puppet/ssl/certificate_request.rb +299 -0
- data/lib/puppet/ssl/certificate_request_attributes.rb +37 -0
- data/lib/puppet/ssl/certificate_revocation_list.rb +110 -0
- data/lib/puppet/ssl/certificate_signer.rb +22 -0
- data/lib/puppet/ssl/configuration.rb +64 -0
- data/lib/puppet/ssl/digest.rb +20 -0
- data/lib/puppet/ssl/host.rb +371 -0
- data/lib/puppet/ssl/inventory.rb +50 -0
- data/lib/puppet/ssl/key.rb +59 -0
- data/lib/puppet/ssl/oids.rb +78 -0
- data/lib/puppet/ssl/validator.rb +60 -0
- data/lib/puppet/ssl/validator/default_validator.rb +153 -0
- data/lib/puppet/ssl/validator/no_validator.rb +17 -0
- data/lib/puppet/status.rb +45 -0
- data/lib/puppet/test/test_helper.rb +216 -0
- data/lib/puppet/transaction.rb +340 -0
- data/lib/puppet/transaction/additional_resource_generator.rb +126 -0
- data/lib/puppet/transaction/event.rb +107 -0
- data/lib/puppet/transaction/event_manager.rb +122 -0
- data/lib/puppet/transaction/report.rb +383 -0
- data/lib/puppet/transaction/resource_harness.rb +238 -0
- data/lib/puppet/type.rb +2430 -0
- data/lib/puppet/type/augeas.rb +189 -0
- data/lib/puppet/type/component.rb +77 -0
- data/lib/puppet/type/computer.rb +66 -0
- data/lib/puppet/type/cron.rb +474 -0
- data/lib/puppet/type/exec.rb +564 -0
- data/lib/puppet/type/file.rb +891 -0
- data/lib/puppet/type/file/checksum.rb +33 -0
- data/lib/puppet/type/file/content.rb +239 -0
- data/lib/puppet/type/file/ctime.rb +20 -0
- data/lib/puppet/type/file/ensure.rb +189 -0
- data/lib/puppet/type/file/group.rb +41 -0
- data/lib/puppet/type/file/mode.rb +159 -0
- data/lib/puppet/type/file/mtime.rb +18 -0
- data/lib/puppet/type/file/owner.rb +44 -0
- data/lib/puppet/type/file/selcontext.rb +124 -0
- data/lib/puppet/type/file/source.rb +256 -0
- data/lib/puppet/type/file/target.rb +87 -0
- data/lib/puppet/type/file/type.rb +19 -0
- data/lib/puppet/type/filebucket.rb +122 -0
- data/lib/puppet/type/group.rb +188 -0
- data/lib/puppet/type/host.rb +86 -0
- data/lib/puppet/type/interface.rb +116 -0
- data/lib/puppet/type/k5login.rb +88 -0
- data/lib/puppet/type/macauthorization.rb +167 -0
- data/lib/puppet/type/mailalias.rb +48 -0
- data/lib/puppet/type/maillist.rb +62 -0
- data/lib/puppet/type/mcx.rb +98 -0
- data/lib/puppet/type/mount.rb +288 -0
- data/lib/puppet/type/nagios_command.rb +3 -0
- data/lib/puppet/type/nagios_contact.rb +3 -0
- data/lib/puppet/type/nagios_contactgroup.rb +3 -0
- data/lib/puppet/type/nagios_host.rb +3 -0
- data/lib/puppet/type/nagios_hostdependency.rb +3 -0
- data/lib/puppet/type/nagios_hostescalation.rb +3 -0
- data/lib/puppet/type/nagios_hostextinfo.rb +3 -0
- data/lib/puppet/type/nagios_hostgroup.rb +3 -0
- data/lib/puppet/type/nagios_service.rb +3 -0
- data/lib/puppet/type/nagios_servicedependency.rb +3 -0
- data/lib/puppet/type/nagios_serviceescalation.rb +3 -0
- data/lib/puppet/type/nagios_serviceextinfo.rb +3 -0
- data/lib/puppet/type/nagios_servicegroup.rb +3 -0
- data/lib/puppet/type/nagios_timeperiod.rb +3 -0
- data/lib/puppet/type/notify.rb +44 -0
- data/lib/puppet/type/package.rb +460 -0
- data/lib/puppet/type/resources.rb +161 -0
- data/lib/puppet/type/router.rb +17 -0
- data/lib/puppet/type/schedule.rb +469 -0
- data/lib/puppet/type/scheduled_task.rb +170 -0
- data/lib/puppet/type/selboolean.rb +26 -0
- data/lib/puppet/type/selmodule.rb +59 -0
- data/lib/puppet/type/service.rb +224 -0
- data/lib/puppet/type/ssh_authorized_key.rb +115 -0
- data/lib/puppet/type/sshkey.rb +73 -0
- data/lib/puppet/type/stage.rb +27 -0
- data/lib/puppet/type/tidy.rb +324 -0
- data/lib/puppet/type/user.rb +572 -0
- data/lib/puppet/type/vlan.rb +26 -0
- data/lib/puppet/type/whit.rb +34 -0
- data/lib/puppet/type/yumrepo.rb +270 -0
- data/lib/puppet/type/zfs.rb +150 -0
- data/lib/puppet/type/zone.rb +385 -0
- data/lib/puppet/type/zpool.rb +91 -0
- data/lib/puppet/util.rb +545 -0
- data/lib/puppet/util/adsi.rb +368 -0
- data/lib/puppet/util/autoload.rb +227 -0
- data/lib/puppet/util/backups.rb +86 -0
- data/lib/puppet/util/cacher.rb +74 -0
- data/lib/puppet/util/checksums.rb +143 -0
- data/lib/puppet/util/classgen.rb +236 -0
- data/lib/puppet/util/colors.rb +175 -0
- data/lib/puppet/util/command_line.rb +182 -0
- data/lib/puppet/util/command_line/puppet_option_parser.rb +87 -0
- data/lib/puppet/util/command_line/trollop.rb +824 -0
- data/lib/puppet/util/constant_inflector.rb +24 -0
- data/lib/puppet/util/diff.rb +77 -0
- data/lib/puppet/util/docs.rb +128 -0
- data/lib/puppet/util/errors.rb +106 -0
- data/lib/puppet/util/execution.rb +313 -0
- data/lib/puppet/util/execution_stub.rb +26 -0
- data/lib/puppet/util/feature.rb +83 -0
- data/lib/puppet/util/file_watcher.rb +28 -0
- data/lib/puppet/util/fileparsing.rb +376 -0
- data/lib/puppet/util/filetype.rb +299 -0
- data/lib/puppet/util/http_proxy.rb +38 -0
- data/lib/puppet/util/inifile.rb +218 -0
- data/lib/puppet/util/inline_docs.rb +26 -0
- data/lib/puppet/util/instance_loader.rb +81 -0
- data/lib/puppet/util/instrumentation.rb +152 -0
- data/lib/puppet/util/instrumentation/data.rb +46 -0
- data/lib/puppet/util/instrumentation/indirection_probe.rb +41 -0
- data/lib/puppet/util/instrumentation/instrumentable.rb +136 -0
- data/lib/puppet/util/instrumentation/listener.rb +72 -0
- data/lib/puppet/util/instrumentation/listeners/log.rb +23 -0
- data/lib/puppet/util/instrumentation/listeners/performance.rb +24 -0
- data/lib/puppet/util/json_lockfile.rb +44 -0
- data/lib/puppet/util/ldap.rb +2 -0
- data/lib/puppet/util/ldap/connection.rb +71 -0
- data/lib/puppet/util/ldap/generator.rb +42 -0
- data/lib/puppet/util/ldap/manager.rb +278 -0
- data/lib/puppet/util/libuser.conf +15 -0
- data/lib/puppet/util/libuser.rb +12 -0
- data/lib/puppet/util/limits.rb +12 -0
- data/lib/puppet/util/lockfile.rb +66 -0
- data/lib/puppet/util/log.rb +343 -0
- data/lib/puppet/util/log/destination.rb +49 -0
- data/lib/puppet/util/log/destinations.rb +228 -0
- data/lib/puppet/util/log/rate_limited_logger.rb +40 -0
- data/lib/puppet/util/logging.rb +143 -0
- data/lib/puppet/util/metaid.rb +21 -0
- data/lib/puppet/util/methodhelper.rb +32 -0
- data/lib/puppet/util/metric.rb +210 -0
- data/lib/puppet/util/monkey_patches.rb +225 -0
- data/lib/puppet/util/monkey_patches/lines.rb +13 -0
- data/lib/puppet/util/nagios_maker.rb +85 -0
- data/lib/puppet/util/network_device.rb +17 -0
- data/lib/puppet/util/network_device/base.rb +27 -0
- data/lib/puppet/util/network_device/cisco.rb +4 -0
- data/lib/puppet/util/network_device/cisco/device.rb +267 -0
- data/lib/puppet/util/network_device/cisco/facts.rb +72 -0
- data/lib/puppet/util/network_device/cisco/interface.rb +82 -0
- data/lib/puppet/util/network_device/config.rb +93 -0
- data/lib/puppet/util/network_device/ipcalc.rb +68 -0
- data/lib/puppet/util/network_device/transport.rb +5 -0
- data/lib/puppet/util/network_device/transport/base.rb +26 -0
- data/lib/puppet/util/network_device/transport/ssh.rb +122 -0
- data/lib/puppet/util/network_device/transport/telnet.rb +44 -0
- data/lib/puppet/util/package.rb +31 -0
- data/lib/puppet/util/pidlock.rb +56 -0
- data/lib/puppet/util/platform.rb +22 -0
- data/lib/puppet/util/plugins.rb +82 -0
- data/lib/puppet/util/posix.rb +147 -0
- data/lib/puppet/util/profiler.rb +45 -0
- data/lib/puppet/util/profiler/logging.rb +47 -0
- data/lib/puppet/util/profiler/none.rb +8 -0
- data/lib/puppet/util/profiler/object_counts.rb +17 -0
- data/lib/puppet/util/profiler/wall_clock.rb +34 -0
- data/lib/puppet/util/provider_features.rb +184 -0
- data/lib/puppet/util/pson.rb +13 -0
- data/lib/puppet/util/queue.rb +96 -0
- data/lib/puppet/util/queue/stomp.rb +60 -0
- data/lib/puppet/util/rails/cache_accumulator.rb +65 -0
- data/lib/puppet/util/rails/collection_merger.rb +17 -0
- data/lib/puppet/util/rails/reference_serializer.rb +32 -0
- data/lib/puppet/util/rdoc.rb +89 -0
- data/lib/puppet/util/rdoc/code_objects.rb +334 -0
- data/lib/puppet/util/rdoc/generators/puppet_generator.rb +910 -0
- data/lib/puppet/util/rdoc/generators/template/puppet/puppet.rb +1085 -0
- data/lib/puppet/util/rdoc/parser.rb +22 -0
- data/lib/puppet/util/rdoc/parser/puppet_parser_core.rb +477 -0
- data/lib/puppet/util/rdoc/parser/puppet_parser_rdoc1.rb +19 -0
- data/lib/puppet/util/rdoc/parser/puppet_parser_rdoc2.rb +14 -0
- data/lib/puppet/util/reference.rb +124 -0
- data/lib/puppet/util/resource_template.rb +61 -0
- data/lib/puppet/util/retryaction.rb +47 -0
- data/lib/puppet/util/rubygems.rb +65 -0
- data/lib/puppet/util/run_mode.rb +82 -0
- data/lib/puppet/util/selinux.rb +222 -0
- data/lib/puppet/util/ssl.rb +53 -0
- data/lib/puppet/util/storage.rb +89 -0
- data/lib/puppet/util/suidmanager.rb +198 -0
- data/lib/puppet/util/symbolic_file_mode.rb +144 -0
- data/lib/puppet/util/tag_set.rb +41 -0
- data/lib/puppet/util/tagging.rb +55 -0
- data/lib/puppet/util/terminal.rb +16 -0
- data/lib/puppet/util/user_attr.rb +21 -0
- data/lib/puppet/util/warnings.rb +32 -0
- data/lib/puppet/util/watched_file.rb +37 -0
- data/lib/puppet/util/watcher.rb +17 -0
- data/lib/puppet/util/watcher/change_watcher.rb +33 -0
- data/lib/puppet/util/watcher/periodic_watcher.rb +37 -0
- data/lib/puppet/util/watcher/timer.rb +19 -0
- data/lib/puppet/util/windows.rb +17 -0
- data/lib/puppet/util/windows/access_control_entry.rb +84 -0
- data/lib/puppet/util/windows/access_control_list.rb +113 -0
- data/lib/puppet/util/windows/error.rb +16 -0
- data/lib/puppet/util/windows/file.rb +279 -0
- data/lib/puppet/util/windows/process.rb +238 -0
- data/lib/puppet/util/windows/registry.rb +70 -0
- data/lib/puppet/util/windows/root_certs.rb +101 -0
- data/lib/puppet/util/windows/security.rb +649 -0
- data/lib/puppet/util/windows/security_descriptor.rb +62 -0
- data/lib/puppet/util/windows/sid.rb +118 -0
- data/lib/puppet/util/windows/string.rb +14 -0
- data/lib/puppet/util/windows/user.rb +108 -0
- data/lib/puppet/util/yaml.rb +24 -0
- data/lib/puppet/util/zaml.rb +419 -0
- data/lib/puppet/vendor.rb +55 -0
- data/lib/puppet/vendor/load_safe_yaml.rb +1 -0
- data/lib/puppet/vendor/require_vendored.rb +5 -0
- data/lib/puppet/vendor/safe_yaml/CHANGES.md +104 -0
- data/lib/puppet/vendor/safe_yaml/Gemfile +11 -0
- data/lib/puppet/vendor/safe_yaml/LICENSE.txt +22 -0
- data/lib/puppet/vendor/safe_yaml/README.md +179 -0
- data/lib/puppet/vendor/safe_yaml/Rakefile +6 -0
- data/lib/puppet/vendor/safe_yaml/lib/safe_yaml.rb +253 -0
- data/lib/puppet/vendor/safe_yaml/lib/safe_yaml/deep.rb +34 -0
- data/lib/puppet/vendor/safe_yaml/lib/safe_yaml/parse/date.rb +27 -0
- data/lib/puppet/vendor/safe_yaml/lib/safe_yaml/parse/hexadecimal.rb +12 -0
- data/lib/puppet/vendor/safe_yaml/lib/safe_yaml/parse/sexagesimal.rb +26 -0
- data/lib/puppet/vendor/safe_yaml/lib/safe_yaml/psych_handler.rb +92 -0
- data/lib/puppet/vendor/safe_yaml/lib/safe_yaml/psych_resolver.rb +52 -0
- data/lib/puppet/vendor/safe_yaml/lib/safe_yaml/resolver.rb +94 -0
- data/lib/puppet/vendor/safe_yaml/lib/safe_yaml/safe_to_ruby_visitor.rb +17 -0
- data/lib/puppet/vendor/safe_yaml/lib/safe_yaml/syck_hack.rb +36 -0
- data/lib/puppet/vendor/safe_yaml/lib/safe_yaml/syck_node_monkeypatch.rb +43 -0
- data/lib/puppet/vendor/safe_yaml/lib/safe_yaml/syck_resolver.rb +38 -0
- data/lib/puppet/vendor/safe_yaml/lib/safe_yaml/transform.rb +41 -0
- data/lib/puppet/vendor/safe_yaml/lib/safe_yaml/transform/to_boolean.rb +21 -0
- data/lib/puppet/vendor/safe_yaml/lib/safe_yaml/transform/to_date.rb +11 -0
- data/lib/puppet/vendor/safe_yaml/lib/safe_yaml/transform/to_float.rb +33 -0
- data/lib/puppet/vendor/safe_yaml/lib/safe_yaml/transform/to_integer.rb +25 -0
- data/lib/puppet/vendor/safe_yaml/lib/safe_yaml/transform/to_nil.rb +18 -0
- data/lib/puppet/vendor/safe_yaml/lib/safe_yaml/transform/to_symbol.rb +13 -0
- data/lib/puppet/vendor/safe_yaml/lib/safe_yaml/transform/transformation_map.rb +47 -0
- data/lib/puppet/vendor/safe_yaml/lib/safe_yaml/version.rb +3 -0
- data/lib/puppet/vendor/safe_yaml/run_specs_all_ruby_versions.sh +21 -0
- data/lib/puppet/vendor/safe_yaml/safe_yaml.gemspec +18 -0
- data/lib/puppet/vendor/safe_yaml/spec/exploit.1.9.2.yaml +2 -0
- data/lib/puppet/vendor/safe_yaml/spec/exploit.1.9.3.yaml +2 -0
- data/lib/puppet/vendor/safe_yaml/spec/psych_resolver_spec.rb +10 -0
- data/lib/puppet/vendor/safe_yaml/spec/resolver_specs.rb +250 -0
- data/lib/puppet/vendor/safe_yaml/spec/safe_yaml_spec.rb +702 -0
- data/lib/puppet/vendor/safe_yaml/spec/spec_helper.rb +18 -0
- data/lib/puppet/vendor/safe_yaml/spec/support/exploitable_back_door.rb +29 -0
- data/lib/puppet/vendor/safe_yaml/spec/syck_resolver_spec.rb +10 -0
- data/lib/puppet/vendor/safe_yaml/spec/transform/base64_spec.rb +11 -0
- data/lib/puppet/vendor/safe_yaml/spec/transform/to_date_spec.rb +34 -0
- data/lib/puppet/vendor/safe_yaml/spec/transform/to_float_spec.rb +42 -0
- data/lib/puppet/vendor/safe_yaml/spec/transform/to_integer_spec.rb +59 -0
- data/lib/puppet/vendor/safe_yaml/spec/transform/to_symbol_spec.rb +49 -0
- data/lib/puppet/vendor/safe_yaml_patches.rb +9 -0
- data/lib/puppet/version.rb +89 -0
- data/lib/puppetx.rb +89 -0
- data/lib/puppetx/puppet/bindings_scheme_handler.rb +130 -0
- data/lib/puppetx/puppet/syntax_checker.rb +91 -0
- data/lib/puppetx/puppetlabs/syntax_checkers/json.rb +37 -0
- data/lib/semver.rb +124 -0
- data/man/man5/puppet.conf.5 +1581 -0
- data/man/man8/extlookup2hiera.8 +23 -0
- data/man/man8/puppet-agent.8 +157 -0
- data/man/man8/puppet-apply.8 +80 -0
- data/man/man8/puppet-ca.8 +170 -0
- data/man/man8/puppet-catalog.8 +292 -0
- data/man/man8/puppet-cert.8 +97 -0
- data/man/man8/puppet-certificate.8 +238 -0
- data/man/man8/puppet-certificate_request.8 +168 -0
- data/man/man8/puppet-certificate_revocation_list.8 +165 -0
- data/man/man8/puppet-config.8 +76 -0
- data/man/man8/puppet-describe.8 +51 -0
- data/man/man8/puppet-device.8 +86 -0
- data/man/man8/puppet-doc.8 +119 -0
- data/man/man8/puppet-facts.8 +223 -0
- data/man/man8/puppet-file.8 +215 -0
- data/man/man8/puppet-filebucket.8 +81 -0
- data/man/man8/puppet-help.8 +64 -0
- data/man/man8/puppet-inspect.8 +36 -0
- data/man/man8/puppet-instrumentation_data.8 +141 -0
- data/man/man8/puppet-instrumentation_listener.8 +218 -0
- data/man/man8/puppet-instrumentation_probe.8 +203 -0
- data/man/man8/puppet-key.8 +129 -0
- data/man/man8/puppet-kick.8 +131 -0
- data/man/man8/puppet-man.8 +70 -0
- data/man/man8/puppet-master.8 +78 -0
- data/man/man8/puppet-module.8 +422 -0
- data/man/man8/puppet-node.8 +211 -0
- data/man/man8/puppet-parser.8 +73 -0
- data/man/man8/puppet-plugin.8 +73 -0
- data/man/man8/puppet-queue.8 +55 -0
- data/man/man8/puppet-report.8 +186 -0
- data/man/man8/puppet-resource.8 +84 -0
- data/man/man8/puppet-resource_type.8 +214 -0
- data/man/man8/puppet-secret_agent.8 +70 -0
- data/man/man8/puppet-status.8 +150 -0
- data/man/man8/puppet.8 +10 -0
- data/spec/fixtures/faulty_face/puppet/face/syntax.rb +8 -0
- data/spec/fixtures/hiera.yaml +9 -0
- data/spec/fixtures/integration/node/environment/sitedir/00_a.pp +2 -0
- data/spec/fixtures/integration/node/environment/sitedir/01_b.pp +6 -0
- data/spec/fixtures/integration/node/environment/sitedir/03_empty.pp +0 -0
- data/spec/fixtures/integration/node/environment/sitedir/04_include.pp +2 -0
- data/spec/fixtures/integration/provider/cron/crontab/create_normal_entry +19 -0
- data/spec/fixtures/integration/provider/cron/crontab/create_special_entry +18 -0
- data/spec/fixtures/integration/provider/cron/crontab/crontab_user1 +15 -0
- data/spec/fixtures/integration/provider/cron/crontab/crontab_user2 +4 -0
- data/spec/fixtures/integration/provider/cron/crontab/modify_entry +13 -0
- data/spec/fixtures/integration/provider/cron/crontab/moved_cronjob_input1 +15 -0
- data/spec/fixtures/integration/provider/cron/crontab/moved_cronjob_input2 +6 -0
- data/spec/fixtures/integration/provider/cron/crontab/purged +8 -0
- data/spec/fixtures/integration/provider/cron/crontab/remove_named_resource +12 -0
- data/spec/fixtures/integration/provider/cron/crontab/remove_unnamed_resource +14 -0
- data/spec/fixtures/integration/provider/cron/crontab/unspecialized +15 -0
- data/spec/fixtures/integration/provider/mailalias/aliases/test1 +28 -0
- data/spec/fixtures/manifests/site.pp +0 -0
- data/spec/fixtures/releases/jamtur01-apache/Modulefile +2 -0
- data/spec/fixtures/releases/jamtur01-apache/files/httpd +24 -0
- data/spec/fixtures/releases/jamtur01-apache/files/test.vhost +18 -0
- data/spec/fixtures/releases/jamtur01-apache/lib/puppet/provider/a2mod/debian.rb +21 -0
- data/spec/fixtures/releases/jamtur01-apache/lib/puppet/type/a2mod.rb +12 -0
- data/spec/fixtures/releases/jamtur01-apache/manifests/dev.pp +5 -0
- data/spec/fixtures/releases/jamtur01-apache/manifests/init.pp +34 -0
- data/spec/fixtures/releases/jamtur01-apache/manifests/params.pp +17 -0
- data/spec/fixtures/releases/jamtur01-apache/manifests/php.pp +5 -0
- data/spec/fixtures/releases/jamtur01-apache/manifests/ssl.pp +15 -0
- data/spec/fixtures/releases/jamtur01-apache/manifests/vhost.pp +15 -0
- data/spec/fixtures/releases/jamtur01-apache/metadata.json +1 -0
- data/spec/fixtures/releases/jamtur01-apache/templates/vhost-default.conf.erb +20 -0
- data/spec/fixtures/releases/jamtur01-apache/tests/apache.pp +1 -0
- data/spec/fixtures/releases/jamtur01-apache/tests/dev.pp +1 -0
- data/spec/fixtures/releases/jamtur01-apache/tests/init.pp +1 -0
- data/spec/fixtures/releases/jamtur01-apache/tests/php.pp +1 -0
- data/spec/fixtures/releases/jamtur01-apache/tests/ssl.pp +1 -0
- data/spec/fixtures/releases/jamtur01-apache/tests/vhost.pp +2 -0
- data/spec/fixtures/unit/indirector/data_binding/hiera/global.yaml +10 -0
- data/spec/fixtures/unit/indirector/data_binding/hiera/invalid.yaml +1 -0
- data/spec/fixtures/unit/module/trailing-comma.json +24 -0
- data/spec/fixtures/unit/parser/lexer/aliastest.pp +16 -0
- data/spec/fixtures/unit/parser/lexer/append.pp +11 -0
- data/spec/fixtures/unit/parser/lexer/argumentdefaults.pp +14 -0
- data/spec/fixtures/unit/parser/lexer/arithmetic_expression.pp +8 -0
- data/spec/fixtures/unit/parser/lexer/arraytrailingcomma.pp +3 -0
- data/spec/fixtures/unit/parser/lexer/casestatement.pp +65 -0
- data/spec/fixtures/unit/parser/lexer/classheirarchy.pp +15 -0
- data/spec/fixtures/unit/parser/lexer/classincludes.pp +17 -0
- data/spec/fixtures/unit/parser/lexer/classpathtest.pp +11 -0
- data/spec/fixtures/unit/parser/lexer/collection.pp +10 -0
- data/spec/fixtures/unit/parser/lexer/collection_override.pp +8 -0
- data/spec/fixtures/unit/parser/lexer/collection_within_virtual_definitions.pp +20 -0
- data/spec/fixtures/unit/parser/lexer/componentmetaparams.pp +11 -0
- data/spec/fixtures/unit/parser/lexer/componentrequire.pp +8 -0
- data/spec/fixtures/unit/parser/lexer/deepclassheirarchy.pp +23 -0
- data/spec/fixtures/unit/parser/lexer/defineoverrides.pp +17 -0
- data/spec/fixtures/unit/parser/lexer/emptyclass.pp +9 -0
- data/spec/fixtures/unit/parser/lexer/emptyexec.pp +3 -0
- data/spec/fixtures/unit/parser/lexer/emptyifelse.pp +9 -0
- data/spec/fixtures/unit/parser/lexer/falsevalues.pp +3 -0
- data/spec/fixtures/unit/parser/lexer/filecreate.pp +11 -0
- data/spec/fixtures/unit/parser/lexer/fqdefinition.pp +5 -0
- data/spec/fixtures/unit/parser/lexer/fqparents.pp +11 -0
- data/spec/fixtures/unit/parser/lexer/funccomma.pp +5 -0
- data/spec/fixtures/unit/parser/lexer/hash.pp +33 -0
- data/spec/fixtures/unit/parser/lexer/ifexpression.pp +12 -0
- data/spec/fixtures/unit/parser/lexer/implicititeration.pp +15 -0
- data/spec/fixtures/unit/parser/lexer/multilinecomments.pp +10 -0
- data/spec/fixtures/unit/parser/lexer/multipleclass.pp +9 -0
- data/spec/fixtures/unit/parser/lexer/multipleinstances.pp +7 -0
- data/spec/fixtures/unit/parser/lexer/multisubs.pp +13 -0
- data/spec/fixtures/unit/parser/lexer/namevartest.pp +9 -0
- data/spec/fixtures/unit/parser/lexer/scopetest.pp +13 -0
- data/spec/fixtures/unit/parser/lexer/selectorvalues.pp +49 -0
- data/spec/fixtures/unit/parser/lexer/simpledefaults.pp +5 -0
- data/spec/fixtures/unit/parser/lexer/simpleselector.pp +38 -0
- data/spec/fixtures/unit/parser/lexer/singleary.pp +19 -0
- data/spec/fixtures/unit/parser/lexer/singlequote.pp +11 -0
- data/spec/fixtures/unit/parser/lexer/singleselector.pp +22 -0
- data/spec/fixtures/unit/parser/lexer/subclass_name_duplication.pp +11 -0
- data/spec/fixtures/unit/parser/lexer/tag.pp +9 -0
- data/spec/fixtures/unit/parser/lexer/tagged.pp +35 -0
- data/spec/fixtures/unit/parser/lexer/virtualresources.pp +14 -0
- data/spec/fixtures/unit/pops/binder/bindings_composer/ok/binder_config.yaml +10 -0
- data/spec/fixtures/unit/pops/binder/bindings_composer/ok/lib/puppet/bindings/confdirtest.rb +10 -0
- data/spec/fixtures/unit/pops/binder/bindings_composer/ok/modules/awesome2/lib/puppet/bindings/awesome2/default.rb +20 -0
- data/spec/fixtures/unit/pops/binder/bindings_composer/ok/modules/awesome2/lib/puppetx/awesome2/echo_scheme_handler.rb +18 -0
- data/spec/fixtures/unit/pops/binder/bindings_composer/ok/modules/bad/lib/puppet/bindings/bad/default.rb +5 -0
- data/spec/fixtures/unit/pops/binder/bindings_composer/ok/modules/good/lib/puppet/bindings/good/default.rb +6 -0
- data/spec/fixtures/unit/pops/binder/config/binder_config/ok/binder_config.yaml +9 -0
- data/spec/fixtures/unit/pops/parser/lexer/aliastest.pp +16 -0
- data/spec/fixtures/unit/pops/parser/lexer/append.pp +11 -0
- data/spec/fixtures/unit/pops/parser/lexer/argumentdefaults.pp +14 -0
- data/spec/fixtures/unit/pops/parser/lexer/arithmetic_expression.pp +8 -0
- data/spec/fixtures/unit/pops/parser/lexer/arraytrailingcomma.pp +3 -0
- data/spec/fixtures/unit/pops/parser/lexer/casestatement.pp +65 -0
- data/spec/fixtures/unit/pops/parser/lexer/classheirarchy.pp +15 -0
- data/spec/fixtures/unit/pops/parser/lexer/classincludes.pp +17 -0
- data/spec/fixtures/unit/pops/parser/lexer/classpathtest.pp +11 -0
- data/spec/fixtures/unit/pops/parser/lexer/collection.pp +10 -0
- data/spec/fixtures/unit/pops/parser/lexer/collection_override.pp +8 -0
- data/spec/fixtures/unit/pops/parser/lexer/collection_within_virtual_definitions.pp +20 -0
- data/spec/fixtures/unit/pops/parser/lexer/componentmetaparams.pp +11 -0
- data/spec/fixtures/unit/pops/parser/lexer/componentrequire.pp +8 -0
- data/spec/fixtures/unit/pops/parser/lexer/deepclassheirarchy.pp +23 -0
- data/spec/fixtures/unit/pops/parser/lexer/defineoverrides.pp +17 -0
- data/spec/fixtures/unit/pops/parser/lexer/emptyclass.pp +9 -0
- data/spec/fixtures/unit/pops/parser/lexer/emptyexec.pp +3 -0
- data/spec/fixtures/unit/pops/parser/lexer/emptyifelse.pp +9 -0
- data/spec/fixtures/unit/pops/parser/lexer/falsevalues.pp +3 -0
- data/spec/fixtures/unit/pops/parser/lexer/filecreate.pp +11 -0
- data/spec/fixtures/unit/pops/parser/lexer/fqdefinition.pp +5 -0
- data/spec/fixtures/unit/pops/parser/lexer/fqparents.pp +11 -0
- data/spec/fixtures/unit/pops/parser/lexer/funccomma.pp +5 -0
- data/spec/fixtures/unit/pops/parser/lexer/hash.pp +33 -0
- data/spec/fixtures/unit/pops/parser/lexer/ifexpression.pp +12 -0
- data/spec/fixtures/unit/pops/parser/lexer/implicititeration.pp +15 -0
- data/spec/fixtures/unit/pops/parser/lexer/multilinecomments.pp +10 -0
- data/spec/fixtures/unit/pops/parser/lexer/multipleclass.pp +9 -0
- data/spec/fixtures/unit/pops/parser/lexer/multipleinstances.pp +7 -0
- data/spec/fixtures/unit/pops/parser/lexer/multisubs.pp +13 -0
- data/spec/fixtures/unit/pops/parser/lexer/namevartest.pp +9 -0
- data/spec/fixtures/unit/pops/parser/lexer/scopetest.pp +13 -0
- data/spec/fixtures/unit/pops/parser/lexer/selectorvalues.pp +49 -0
- data/spec/fixtures/unit/pops/parser/lexer/simpledefaults.pp +5 -0
- data/spec/fixtures/unit/pops/parser/lexer/simpleselector.pp +38 -0
- data/spec/fixtures/unit/pops/parser/lexer/singleary.pp +19 -0
- data/spec/fixtures/unit/pops/parser/lexer/singlequote.pp +11 -0
- data/spec/fixtures/unit/pops/parser/lexer/singleselector.pp +22 -0
- data/spec/fixtures/unit/pops/parser/lexer/subclass_name_duplication.pp +11 -0
- data/spec/fixtures/unit/pops/parser/lexer/tag.pp +9 -0
- data/spec/fixtures/unit/pops/parser/lexer/tagged.pp +35 -0
- data/spec/fixtures/unit/pops/parser/lexer/virtualresources.pp +14 -0
- data/spec/fixtures/unit/provider/augeas/augeas/augeas/lenses/test.aug +13 -0
- data/spec/fixtures/unit/provider/augeas/augeas/etc/fstab +10 -0
- data/spec/fixtures/unit/provider/augeas/augeas/etc/hosts +6 -0
- data/spec/fixtures/unit/provider/augeas/augeas/etc/test +3 -0
- data/spec/fixtures/unit/provider/augeas/augeas/test.aug +13 -0
- data/spec/fixtures/unit/provider/cron/crontab/single_line.yaml +272 -0
- data/spec/fixtures/unit/provider/cron/crontab/vixie_header.txt +3 -0
- data/spec/fixtures/unit/provider/cron/parsed/managed +6 -0
- data/spec/fixtures/unit/provider/cron/parsed/simple +9 -0
- data/spec/fixtures/unit/provider/host/parsed/valid_hosts +19 -0
- data/spec/fixtures/unit/provider/mount/mount-output.aix.txt +7 -0
- data/spec/fixtures/unit/provider/mount/parsed/aix.filesystems +144 -0
- data/spec/fixtures/unit/provider/mount/parsed/aix.mount +7 -0
- data/spec/fixtures/unit/provider/mount/parsed/darwin.mount +6 -0
- data/spec/fixtures/unit/provider/mount/parsed/freebsd.fstab +8 -0
- data/spec/fixtures/unit/provider/mount/parsed/freebsd.mount +3 -0
- data/spec/fixtures/unit/provider/mount/parsed/hpux.mount +17 -0
- data/spec/fixtures/unit/provider/mount/parsed/linux.fstab +11 -0
- data/spec/fixtures/unit/provider/mount/parsed/linux.mount +5 -0
- data/spec/fixtures/unit/provider/mount/parsed/netbsd.fstab +9 -0
- data/spec/fixtures/unit/provider/mount/parsed/netbsd.mount +8 -0
- data/spec/fixtures/unit/provider/mount/parsed/openbsd.fstab +4 -0
- data/spec/fixtures/unit/provider/mount/parsed/openbsd.mount +4 -0
- data/spec/fixtures/unit/provider/mount/parsed/solaris.fstab +11 -0
- data/spec/fixtures/unit/provider/mount/parsed/solaris.mount +6 -0
- data/spec/fixtures/unit/provider/package/gem/line-with-1.8.5-warning +14 -0
- data/spec/fixtures/unit/provider/package/openbsd/pkginfo.detail +19 -0
- data/spec/fixtures/unit/provider/package/openbsd/pkginfo.list +10 -0
- data/spec/fixtures/unit/provider/package/openbsd/pkginfo.query +1 -0
- data/spec/fixtures/unit/provider/package/openbsd/pkginfo_flavors.list +2 -0
- data/spec/fixtures/unit/provider/package/pkg/dummy_solaris10 +1 -0
- data/spec/fixtures/unit/provider/package/pkg/dummy_solaris11.ifo.installed +1 -0
- data/spec/fixtures/unit/provider/package/pkg/dummy_solaris11.ifo.known +1 -0
- data/spec/fixtures/unit/provider/package/pkg/dummy_solaris11.installed +1 -0
- data/spec/fixtures/unit/provider/package/pkg/dummy_solaris11.known +1 -0
- data/spec/fixtures/unit/provider/package/pkg/incomplete +1 -0
- data/spec/fixtures/unit/provider/package/pkg/publisher +2 -0
- data/spec/fixtures/unit/provider/package/pkg/simple +2 -0
- data/spec/fixtures/unit/provider/package/pkg/solaris11 +2 -0
- data/spec/fixtures/unit/provider/package/pkg/unknown_status +12 -0
- data/spec/fixtures/unit/provider/package/sun/dummy.server +12 -0
- data/spec/fixtures/unit/provider/package/sun/simple +24 -0
- data/spec/fixtures/unit/provider/package/zypper/zypper-list-updates-SLES11sp1.out +369 -0
- data/spec/fixtures/unit/provider/parsedfile/simple.txt +4 -0
- data/spec/fixtures/unit/provider/service/gentoo/rc_update_show +30 -0
- data/spec/fixtures/unit/provider/service/openrc/rcservice_list +8 -0
- data/spec/fixtures/unit/provider/service/openrc/rcstatus +43 -0
- data/spec/fixtures/unit/provider/service/smf/svcs.out +3 -0
- data/spec/fixtures/unit/provider/service/systemd/list_units_services +17 -0
- data/spec/fixtures/unit/provider/ssh_authorized_key/parsed/authorized_keys +7 -0
- data/spec/fixtures/unit/provider/ssh_authorized_key/parsed/authorized_keys1 +3 -0
- data/spec/fixtures/unit/provider/ssh_authorized_key/parsed/authorized_keys2 +1 -0
- data/spec/fixtures/unit/provider/sshkey/parsed/sample +21 -0
- data/spec/fixtures/unit/provider/zfs/zfs/zfs-list.out +2 -0
- data/spec/fixtures/unit/provider/zpool/zpool/zpool-list.out +2 -0
- data/spec/fixtures/unit/reports/tagmail/tagmail_email.conf +2 -0
- data/spec/fixtures/unit/reports/tagmail/tagmail_failers.conf +3 -0
- data/spec/fixtures/unit/reports/tagmail/tagmail_passers.conf +30 -0
- data/spec/fixtures/unit/util/filetype/aixtab_output +44 -0
- data/spec/fixtures/unit/util/filetype/suntab_output +9 -0
- data/spec/fixtures/unit/util/monkey_patches/x509.pem +32 -0
- data/spec/fixtures/unit/util/rdoc/basic.pp +16 -0
- data/spec/fixtures/yaml/report0.25.x.yaml +64 -0
- data/spec/fixtures/yaml/report2.6.x.yaml +190 -0
- data/spec/fixtures/yaml/test.local.yaml +16 -0
- data/spec/integration/agent/logging_spec.rb +178 -0
- data/spec/integration/application/apply_spec.rb +108 -0
- data/spec/integration/application/doc_spec.rb +56 -0
- data/spec/integration/configurer_spec.rb +81 -0
- data/spec/integration/data_binding.rb +100 -0
- data/spec/integration/defaults_spec.rb +315 -0
- data/spec/integration/directory_environments_spec.rb +50 -0
- data/spec/integration/faces/ca_spec.rb +354 -0
- data/spec/integration/faces/documentation_spec.rb +62 -0
- data/spec/integration/file_bucket/file_spec.rb +44 -0
- data/spec/integration/file_serving/content_spec.rb +8 -0
- data/spec/integration/file_serving/fileset_spec.rb +13 -0
- data/spec/integration/file_serving/metadata_spec.rb +9 -0
- data/spec/integration/file_serving/terminus_helper_spec.rb +21 -0
- data/spec/integration/indirector/catalog/compiler_spec.rb +67 -0
- data/spec/integration/indirector/catalog/queue_spec.rb +57 -0
- data/spec/integration/indirector/direct_file_server_spec.rb +67 -0
- data/spec/integration/indirector/facts/facter_spec.rb +22 -0
- data/spec/integration/indirector/file_content/file_server_spec.rb +89 -0
- data/spec/integration/indirector/file_metadata/file_server_spec.rb +14 -0
- data/spec/integration/indirector/node/ldap_spec.rb +14 -0
- data/spec/integration/network/authconfig_spec.rb +257 -0
- data/spec/integration/network/formats_spec.rb +91 -0
- data/spec/integration/node/environment_spec.rb +109 -0
- data/spec/integration/node/facts_spec.rb +41 -0
- data/spec/integration/node_spec.rb +82 -0
- data/spec/integration/parser/catalog_spec.rb +125 -0
- data/spec/integration/parser/collector_spec.rb +117 -0
- data/spec/integration/parser/compiler_spec.rb +513 -0
- data/spec/integration/parser/functions/require_spec.rb +43 -0
- data/spec/integration/parser/future_compiler_spec.rb +416 -0
- data/spec/integration/parser/parser_spec.rb +207 -0
- data/spec/integration/parser/ruby_manifest_spec.rb +128 -0
- data/spec/integration/parser/scope_spec.rb +757 -0
- data/spec/integration/parser/undef_param_spec.rb +87 -0
- data/spec/integration/provider/cron/crontab_spec.rb +217 -0
- data/spec/integration/provider/mailalias/aliases_spec.rb +10 -0
- data/spec/integration/provider/mount_spec.rb +169 -0
- data/spec/integration/provider/package_spec.rb +44 -0
- data/spec/integration/provider/service/init_spec.rb +46 -0
- data/spec/integration/provider/service/systemd_spec.rb +20 -0
- data/spec/integration/provider/ssh_authorized_key_spec.rb +219 -0
- data/spec/integration/reference/providers_spec.rb +16 -0
- data/spec/integration/reports_spec.rb +14 -0
- data/spec/integration/resource/catalog_spec.rb +54 -0
- data/spec/integration/resource/type_collection_spec.rb +94 -0
- data/spec/integration/ssl/autosign_spec.rb +130 -0
- data/spec/integration/ssl/certificate_authority_spec.rb +137 -0
- data/spec/integration/ssl/certificate_request_spec.rb +54 -0
- data/spec/integration/ssl/certificate_revocation_list_spec.rb +37 -0
- data/spec/integration/ssl/host_spec.rb +84 -0
- data/spec/integration/transaction/report_spec.rb +24 -0
- data/spec/integration/transaction_spec.rb +346 -0
- data/spec/integration/type/exec_spec.rb +77 -0
- data/spec/integration/type/file_spec.rb +1375 -0
- data/spec/integration/type/nagios_spec.rb +80 -0
- data/spec/integration/type/package_spec.rb +28 -0
- data/spec/integration/type/tidy_spec.rb +31 -0
- data/spec/integration/type_spec.rb +32 -0
- data/spec/integration/util/autoload_spec.rb +107 -0
- data/spec/integration/util/execution_spec.rb +17 -0
- data/spec/integration/util/feature_spec.rb +53 -0
- data/spec/integration/util/rdoc/parser_spec.rb +261 -0
- data/spec/integration/util/settings_spec.rb +89 -0
- data/spec/integration/util/windows/process_spec.rb +22 -0
- data/spec/integration/util/windows/security_spec.rb +846 -0
- data/spec/integration/util/windows/user_spec.rb +59 -0
- data/spec/integration/util_spec.rb +111 -0
- data/spec/lib/matchers/containment_matchers.rb +52 -0
- data/spec/lib/matchers/include.rb +27 -0
- data/spec/lib/matchers/include_in_order.rb +21 -0
- data/spec/lib/matchers/include_in_order_spec.rb +30 -0
- data/spec/lib/matchers/include_spec.rb +32 -0
- data/spec/lib/matchers/json.rb +167 -0
- data/spec/lib/matchers/match_tokens2.rb +74 -0
- data/spec/lib/matchers/relationship_graph_matchers.rb +48 -0
- data/spec/lib/matchers/resource.rb +35 -0
- data/spec/lib/puppet/face/1.0.0/huzzah.rb +8 -0
- data/spec/lib/puppet/face/basetest.rb +51 -0
- data/spec/lib/puppet/face/huzzah.rb +8 -0
- data/spec/lib/puppet/face/huzzah/obsolete.rb +6 -0
- data/spec/lib/puppet/face/version_matching.rb +12 -0
- data/spec/lib/puppet/indirector/indirector_testing/json.rb +6 -0
- data/spec/lib/puppet/indirector/indirector_testing/memory.rb +7 -0
- data/spec/lib/puppet/indirector/indirector_testing/msgpack.rb +6 -0
- data/spec/lib/puppet/indirector_testing.rb +37 -0
- data/spec/lib/puppet_spec/compiler.rb +36 -0
- data/spec/lib/puppet_spec/database.rb +29 -0
- data/spec/lib/puppet_spec/files.rb +60 -0
- data/spec/lib/puppet_spec/fixtures.rb +28 -0
- data/spec/lib/puppet_spec/matchers.rb +120 -0
- data/spec/lib/puppet_spec/modules.rb +26 -0
- data/spec/lib/puppet_spec/pops.rb +16 -0
- data/spec/lib/puppet_spec/scope.rb +14 -0
- data/spec/lib/puppet_spec/settings.rb +15 -0
- data/spec/lib/puppet_spec/verbose.rb +9 -0
- data/spec/monkey_patches/alias_should_to_must.rb +21 -0
- data/spec/shared_behaviours/all_parsedfile_providers.rb +21 -0
- data/spec/shared_behaviours/an_indirector_face.rb +6 -0
- data/spec/shared_behaviours/documentation_on_faces.rb +263 -0
- data/spec/shared_behaviours/file_server_terminus.rb +41 -0
- data/spec/shared_behaviours/file_serving.rb +75 -0
- data/spec/shared_behaviours/file_serving_model.rb +72 -0
- data/spec/shared_behaviours/memory_terminus.rb +28 -0
- data/spec/shared_behaviours/path_parameters.rb +160 -0
- data/spec/shared_behaviours/store_configs_terminus.rb +21 -0
- data/spec/shared_behaviours/things_that_declare_options.rb +262 -0
- data/spec/shared_contexts/platform.rb +52 -0
- data/spec/spec_helper.rb +193 -0
- data/spec/unit/agent/disabler_spec.rb +64 -0
- data/spec/unit/agent/locker_spec.rb +100 -0
- data/spec/unit/agent_spec.rb +327 -0
- data/spec/unit/application/agent_spec.rb +656 -0
- data/spec/unit/application/apply_spec.rb +455 -0
- data/spec/unit/application/cert_spec.rb +220 -0
- data/spec/unit/application/certificate_spec.rb +22 -0
- data/spec/unit/application/config_spec.rb +9 -0
- data/spec/unit/application/describe_spec.rb +79 -0
- data/spec/unit/application/device_spec.rb +415 -0
- data/spec/unit/application/doc_spec.rb +333 -0
- data/spec/unit/application/face_base_spec.rb +408 -0
- data/spec/unit/application/facts_spec.rb +32 -0
- data/spec/unit/application/filebucket_spec.rb +207 -0
- data/spec/unit/application/indirection_base_spec.rb +44 -0
- data/spec/unit/application/inspect_spec.rb +285 -0
- data/spec/unit/application/kick_spec.rb +296 -0
- data/spec/unit/application/master_spec.rb +355 -0
- data/spec/unit/application/queue_spec.rb +168 -0
- data/spec/unit/application/resource_spec.rb +214 -0
- data/spec/unit/application/secret_agent_spec.rb +34 -0
- data/spec/unit/application_spec.rb +645 -0
- data/spec/unit/configurer/downloader_spec.rb +210 -0
- data/spec/unit/configurer/fact_handler_spec.rb +89 -0
- data/spec/unit/configurer/plugin_handler_spec.rb +42 -0
- data/spec/unit/configurer_spec.rb +655 -0
- data/spec/unit/confine/exists_spec.rb +80 -0
- data/spec/unit/confine/false_spec.rb +52 -0
- data/spec/unit/confine/feature_spec.rb +57 -0
- data/spec/unit/confine/true_spec.rb +52 -0
- data/spec/unit/confine/variable_spec.rb +106 -0
- data/spec/unit/confine_collection_spec.rb +133 -0
- data/spec/unit/confine_spec.rb +77 -0
- data/spec/unit/confiner_spec.rb +62 -0
- data/spec/unit/context/trusted_information_spec.rb +124 -0
- data/spec/unit/context_spec.rb +74 -0
- data/spec/unit/daemon_spec.rb +255 -0
- data/spec/unit/data_binding_spec.rb +11 -0
- data/spec/unit/defaults_spec.rb +44 -0
- data/spec/unit/dsl/resource_api_spec.rb +180 -0
- data/spec/unit/dsl/resource_type_api_spec.rb +53 -0
- data/spec/unit/environments_spec.rb +126 -0
- data/spec/unit/face/catalog_spec.rb +7 -0
- data/spec/unit/face/certificate_request_spec.rb +7 -0
- data/spec/unit/face/certificate_revocation_list_spec.rb +7 -0
- data/spec/unit/face/certificate_spec.rb +223 -0
- data/spec/unit/face/config_spec.rb +46 -0
- data/spec/unit/face/facts_spec.rb +23 -0
- data/spec/unit/face/file_spec.rb +12 -0
- data/spec/unit/face/help_spec.rb +144 -0
- data/spec/unit/face/instrumentation_data_spec.rb +7 -0
- data/spec/unit/face/instrumentation_listener_spec.rb +38 -0
- data/spec/unit/face/instrumentation_probe_spec.rb +21 -0
- data/spec/unit/face/key_spec.rb +7 -0
- data/spec/unit/face/module/build_spec.rb +69 -0
- data/spec/unit/face/module/install_spec.rb +113 -0
- data/spec/unit/face/module/list_spec.rb +195 -0
- data/spec/unit/face/module/search_spec.rb +201 -0
- data/spec/unit/face/module/uninstall_spec.rb +70 -0
- data/spec/unit/face/module/upgrade_spec.rb +26 -0
- data/spec/unit/face/module_spec.rb +3 -0
- data/spec/unit/face/node_spec.rb +272 -0
- data/spec/unit/face/parser_spec.rb +70 -0
- data/spec/unit/face/plugin_spec.rb +10 -0
- data/spec/unit/face/report_spec.rb +7 -0
- data/spec/unit/face/resource_spec.rb +7 -0
- data/spec/unit/face/resource_type_spec.rb +7 -0
- data/spec/unit/face/secret_agent_spec.rb +27 -0
- data/spec/unit/face_spec.rb +1 -0
- data/spec/unit/file_bucket/dipper_spec.rb +170 -0
- data/spec/unit/file_bucket/file_spec.rb +128 -0
- data/spec/unit/file_serving/base_spec.rb +168 -0
- data/spec/unit/file_serving/configuration/parser_spec.rb +186 -0
- data/spec/unit/file_serving/configuration_spec.rb +231 -0
- data/spec/unit/file_serving/content_spec.rb +112 -0
- data/spec/unit/file_serving/fileset_spec.rb +354 -0
- data/spec/unit/file_serving/metadata_spec.rb +432 -0
- data/spec/unit/file_serving/mount/file_spec.rb +189 -0
- data/spec/unit/file_serving/mount/modules_spec.rb +70 -0
- data/spec/unit/file_serving/mount/pluginfacts_spec.rb +73 -0
- data/spec/unit/file_serving/mount/plugins_spec.rb +73 -0
- data/spec/unit/file_serving/mount_spec.rb +31 -0
- data/spec/unit/file_serving/terminus_helper_spec.rb +94 -0
- data/spec/unit/file_serving/terminus_selector_spec.rb +58 -0
- data/spec/unit/file_system/path_pattern_spec.rb +138 -0
- data/spec/unit/file_system/tempfile_spec.rb +48 -0
- data/spec/unit/file_system_spec.rb +508 -0
- data/spec/unit/forge/errors_spec.rb +82 -0
- data/spec/unit/forge/repository_spec.rb +121 -0
- data/spec/unit/forge_spec.rb +60 -0
- data/spec/unit/graph/key_spec.rb +41 -0
- data/spec/unit/graph/rb_tree_map_spec.rb +572 -0
- data/spec/unit/graph/relationship_graph_spec.rb +387 -0
- data/spec/unit/graph/sequential_prioritizer_spec.rb +32 -0
- data/spec/unit/graph/simple_graph.rb +721 -0
- data/spec/unit/graph/title_hash_prioritizer_spec.rb +49 -0
- data/spec/unit/hiera/backend/puppet_backend_spec.rb +148 -0
- data/spec/unit/hiera/scope_spec.rb +89 -0
- data/spec/unit/hiera_puppet_spec.rb +118 -0
- data/spec/unit/indirector/active_record_spec.rb +75 -0
- data/spec/unit/indirector/catalog/active_record_spec.rb +107 -0
- data/spec/unit/indirector/catalog/compiler_spec.rb +253 -0
- data/spec/unit/indirector/catalog/json_spec.rb +12 -0
- data/spec/unit/indirector/catalog/msgpack_spec.rb +12 -0
- data/spec/unit/indirector/catalog/queue_spec.rb +19 -0
- data/spec/unit/indirector/catalog/rest_spec.rb +10 -0
- data/spec/unit/indirector/catalog/static_compiler_spec.rb +225 -0
- data/spec/unit/indirector/catalog/store_configs_spec.rb +17 -0
- data/spec/unit/indirector/catalog/yaml_spec.rb +24 -0
- data/spec/unit/indirector/certificate/ca_spec.rb +23 -0
- data/spec/unit/indirector/certificate/disabled_ca_spec.rb +33 -0
- data/spec/unit/indirector/certificate/file_spec.rb +23 -0
- data/spec/unit/indirector/certificate/rest_spec.rb +63 -0
- data/spec/unit/indirector/certificate_request/ca_spec.rb +57 -0
- data/spec/unit/indirector/certificate_request/disabled_ca_spec.rb +33 -0
- data/spec/unit/indirector/certificate_request/file_spec.rb +15 -0
- data/spec/unit/indirector/certificate_request/rest_spec.rb +26 -0
- data/spec/unit/indirector/certificate_revocation_list/ca_spec.rb +16 -0
- data/spec/unit/indirector/certificate_revocation_list/disabled_ca_spec.rb +33 -0
- data/spec/unit/indirector/certificate_revocation_list/file_spec.rb +17 -0
- data/spec/unit/indirector/certificate_revocation_list/rest_spec.rb +26 -0
- data/spec/unit/indirector/certificate_status/file_spec.rb +191 -0
- data/spec/unit/indirector/certificate_status/rest_spec.rb +18 -0
- data/spec/unit/indirector/code_spec.rb +31 -0
- data/spec/unit/indirector/data_binding/hiera_spec.rb +114 -0
- data/spec/unit/indirector/data_binding/none_spec.rb +28 -0
- data/spec/unit/indirector/direct_file_server_spec.rb +80 -0
- data/spec/unit/indirector/envelope_spec.rb +33 -0
- data/spec/unit/indirector/exec_spec.rb +58 -0
- data/spec/unit/indirector/face_spec.rb +70 -0
- data/spec/unit/indirector/facts/active_record_spec.rb +113 -0
- data/spec/unit/indirector/facts/couch_spec.rb +102 -0
- data/spec/unit/indirector/facts/facter_spec.rb +197 -0
- data/spec/unit/indirector/facts/inventory_active_record_spec.rb +175 -0
- data/spec/unit/indirector/facts/inventory_service_spec.rb +21 -0
- data/spec/unit/indirector/facts/network_device_spec.rb +88 -0
- data/spec/unit/indirector/facts/rest_spec.rb +10 -0
- data/spec/unit/indirector/facts/store_configs_spec.rb +17 -0
- data/spec/unit/indirector/facts/yaml_spec.rb +239 -0
- data/spec/unit/indirector/file_bucket_file/file_spec.rb +285 -0
- data/spec/unit/indirector/file_bucket_file/rest_spec.rb +10 -0
- data/spec/unit/indirector/file_bucket_file/selector_spec.rb +29 -0
- data/spec/unit/indirector/file_content/file_server_spec.rb +14 -0
- data/spec/unit/indirector/file_content/file_spec.rb +14 -0
- data/spec/unit/indirector/file_content/rest_spec.rb +14 -0
- data/spec/unit/indirector/file_content/selector_spec.rb +10 -0
- data/spec/unit/indirector/file_metadata/file_server_spec.rb +14 -0
- data/spec/unit/indirector/file_metadata/file_spec.rb +50 -0
- data/spec/unit/indirector/file_metadata/rest_spec.rb +13 -0
- data/spec/unit/indirector/file_metadata/selector_spec.rb +11 -0
- data/spec/unit/indirector/file_server_spec.rb +263 -0
- data/spec/unit/indirector/indirection_spec.rb +875 -0
- data/spec/unit/indirector/instrumentation_data/local_spec.rb +52 -0
- data/spec/unit/indirector/instrumentation_data/rest_spec.rb +11 -0
- data/spec/unit/indirector/instrumentation_listener/local_spec.rb +65 -0
- data/spec/unit/indirector/instrumentation_listener/rest_spec.rb +11 -0
- data/spec/unit/indirector/instrumentation_probe/local_spec.rb +65 -0
- data/spec/unit/indirector/instrumentation_probe/rest_spec.rb +11 -0
- data/spec/unit/indirector/json_spec.rb +193 -0
- data/spec/unit/indirector/key/ca_spec.rb +23 -0
- data/spec/unit/indirector/key/disabled_ca_spec.rb +33 -0
- data/spec/unit/indirector/key/file_spec.rb +97 -0
- data/spec/unit/indirector/ldap_spec.rb +137 -0
- data/spec/unit/indirector/memory_spec.rb +27 -0
- data/spec/unit/indirector/msgpack_spec.rb +191 -0
- data/spec/unit/indirector/node/active_record_spec.rb +48 -0
- data/spec/unit/indirector/node/exec_spec.rb +76 -0
- data/spec/unit/indirector/node/ldap_spec.rb +441 -0
- data/spec/unit/indirector/node/memory_spec.rb +18 -0
- data/spec/unit/indirector/node/msgpack_spec.rb +24 -0
- data/spec/unit/indirector/node/plain_spec.rb +26 -0
- data/spec/unit/indirector/node/rest_spec.rb +12 -0
- data/spec/unit/indirector/node/store_configs_spec.rb +17 -0
- data/spec/unit/indirector/node/yaml_spec.rb +24 -0
- data/spec/unit/indirector/none_spec.rb +33 -0
- data/spec/unit/indirector/plain_spec.rb +27 -0
- data/spec/unit/indirector/queue_spec.rb +115 -0
- data/spec/unit/indirector/report/msgpack_spec.rb +28 -0
- data/spec/unit/indirector/report/processor_spec.rb +100 -0
- data/spec/unit/indirector/report/rest_spec.rb +67 -0
- data/spec/unit/indirector/report/yaml_spec.rb +28 -0
- data/spec/unit/indirector/request_spec.rb +605 -0
- data/spec/unit/indirector/resource/active_record_spec.rb +166 -0
- data/spec/unit/indirector/resource/ral_spec.rb +142 -0
- data/spec/unit/indirector/resource/rest_spec.rb +10 -0
- data/spec/unit/indirector/resource/store_configs_spec.rb +23 -0
- data/spec/unit/indirector/resource_type/parser_spec.rb +249 -0
- data/spec/unit/indirector/resource_type/rest_spec.rb +14 -0
- data/spec/unit/indirector/rest_spec.rb +537 -0
- data/spec/unit/indirector/run/local_spec.rb +21 -0
- data/spec/unit/indirector/run/rest_spec.rb +10 -0
- data/spec/unit/indirector/ssl_file_spec.rb +328 -0
- data/spec/unit/indirector/status/local_spec.rb +11 -0
- data/spec/unit/indirector/status/rest_spec.rb +10 -0
- data/spec/unit/indirector/store_configs_spec.rb +8 -0
- data/spec/unit/indirector/terminus_spec.rb +264 -0
- data/spec/unit/indirector/yaml_spec.rb +166 -0
- data/spec/unit/indirector_spec.rb +150 -0
- data/spec/unit/interface/action_builder_spec.rb +217 -0
- data/spec/unit/interface/action_manager_spec.rb +280 -0
- data/spec/unit/interface/action_spec.rb +650 -0
- data/spec/unit/interface/documentation_spec.rb +33 -0
- data/spec/unit/interface/face_collection_spec.rb +200 -0
- data/spec/unit/interface/option_builder_spec.rb +86 -0
- data/spec/unit/interface/option_spec.rb +156 -0
- data/spec/unit/interface_spec.rb +271 -0
- data/spec/unit/man_spec.rb +32 -0
- data/spec/unit/module_spec.rb +710 -0
- data/spec/unit/module_tool/application_spec.rb +25 -0
- data/spec/unit/module_tool/applications/builder_spec.rb +38 -0
- data/spec/unit/module_tool/applications/checksummer_spec.rb +134 -0
- data/spec/unit/module_tool/applications/installer_spec.rb +331 -0
- data/spec/unit/module_tool/applications/searcher_spec.rb +38 -0
- data/spec/unit/module_tool/applications/uninstaller_spec.rb +207 -0
- data/spec/unit/module_tool/applications/unpacker_spec.rb +34 -0
- data/spec/unit/module_tool/applications/upgrader_spec.rb +34 -0
- data/spec/unit/module_tool/install_directory_spec.rb +70 -0
- data/spec/unit/module_tool/metadata_spec.rb +24 -0
- data/spec/unit/module_tool/tar/gnu_spec.rb +22 -0
- data/spec/unit/module_tool/tar/mini_spec.rb +59 -0
- data/spec/unit/module_tool/tar/solaris_spec.rb +22 -0
- data/spec/unit/module_tool/tar_spec.rb +45 -0
- data/spec/unit/module_tool_spec.rb +204 -0
- data/spec/unit/network/auth_config_parser_spec.rb +101 -0
- data/spec/unit/network/authconfig_spec.rb +109 -0
- data/spec/unit/network/authentication_spec.rb +100 -0
- data/spec/unit/network/authorization_spec.rb +34 -0
- data/spec/unit/network/authstore_spec.rb +424 -0
- data/spec/unit/network/format_handler_spec.rb +94 -0
- data/spec/unit/network/format_spec.rb +197 -0
- data/spec/unit/network/format_support_spec.rb +199 -0
- data/spec/unit/network/formats_spec.rb +422 -0
- data/spec/unit/network/http/api/v1_spec.rb +519 -0
- data/spec/unit/network/http/api/v2/authorization_spec.rb +57 -0
- data/spec/unit/network/http/api/v2/environments_spec.rb +42 -0
- data/spec/unit/network/http/api/v2_spec.rb +14 -0
- data/spec/unit/network/http/compression_spec.rb +196 -0
- data/spec/unit/network/http/connection_spec.rb +271 -0
- data/spec/unit/network/http/error_spec.rb +30 -0
- data/spec/unit/network/http/handler_spec.rb +222 -0
- data/spec/unit/network/http/rack/rest_spec.rb +316 -0
- data/spec/unit/network/http/rack_spec.rb +43 -0
- data/spec/unit/network/http/route_spec.rb +75 -0
- data/spec/unit/network/http/webrick/rest_spec.rb +231 -0
- data/spec/unit/network/http/webrick_spec.rb +271 -0
- data/spec/unit/network/http_pool_spec.rb +74 -0
- data/spec/unit/network/resolver_spec.rb +207 -0
- data/spec/unit/network/rights_spec.rb +438 -0
- data/spec/unit/network/server_spec.rb +95 -0
- data/spec/unit/node/environment_spec.rb +466 -0
- data/spec/unit/node/facts_spec.rb +175 -0
- data/spec/unit/node_spec.rb +323 -0
- data/spec/unit/other/selinux_spec.rb +99 -0
- data/spec/unit/parameter/boolean_spec.rb +35 -0
- data/spec/unit/parameter/package_options_spec.rb +44 -0
- data/spec/unit/parameter/path_spec.rb +24 -0
- data/spec/unit/parameter/value_collection_spec.rb +166 -0
- data/spec/unit/parameter/value_spec.rb +87 -0
- data/spec/unit/parameter_spec.rb +193 -0
- data/spec/unit/parser/ast/arithmetic_operator_spec.rb +160 -0
- data/spec/unit/parser/ast/astarray_spec.rb +56 -0
- data/spec/unit/parser/ast/asthash_spec.rb +98 -0
- data/spec/unit/parser/ast/block_expression_spec.rb +67 -0
- data/spec/unit/parser/ast/boolean_operator_spec.rb +54 -0
- data/spec/unit/parser/ast/casestatement_spec.rb +168 -0
- data/spec/unit/parser/ast/collection_spec.rb +70 -0
- data/spec/unit/parser/ast/collexpr_spec.rb +120 -0
- data/spec/unit/parser/ast/comparison_operator_spec.rb +118 -0
- data/spec/unit/parser/ast/definition_spec.rb +21 -0
- data/spec/unit/parser/ast/function_spec.rb +92 -0
- data/spec/unit/parser/ast/hostclass_spec.rb +72 -0
- data/spec/unit/parser/ast/ifstatement_spec.rb +77 -0
- data/spec/unit/parser/ast/in_operator_spec.rb +61 -0
- data/spec/unit/parser/ast/leaf_spec.rb +511 -0
- data/spec/unit/parser/ast/match_operator_spec.rb +51 -0
- data/spec/unit/parser/ast/minus_spec.rb +37 -0
- data/spec/unit/parser/ast/node_spec.rb +30 -0
- data/spec/unit/parser/ast/nop_spec.rb +19 -0
- data/spec/unit/parser/ast/not_spec.rb +31 -0
- data/spec/unit/parser/ast/relationship_spec.rb +87 -0
- data/spec/unit/parser/ast/resource_defaults_spec.rb +21 -0
- data/spec/unit/parser/ast/resource_override_spec.rb +50 -0
- data/spec/unit/parser/ast/resource_reference_spec.rb +56 -0
- data/spec/unit/parser/ast/resource_spec.rb +183 -0
- data/spec/unit/parser/ast/resourceparam_spec.rb +51 -0
- data/spec/unit/parser/ast/selector_spec.rb +88 -0
- data/spec/unit/parser/ast/vardef_spec.rb +68 -0
- data/spec/unit/parser/ast_spec.rb +76 -0
- data/spec/unit/parser/collector_spec.rb +438 -0
- data/spec/unit/parser/compiler_spec.rb +903 -0
- data/spec/unit/parser/eparser_adapter_spec.rb +407 -0
- data/spec/unit/parser/files_spec.rb +149 -0
- data/spec/unit/parser/functions/contain_spec.rb +185 -0
- data/spec/unit/parser/functions/create_resources_spec.rb +206 -0
- data/spec/unit/parser/functions/defined_spec.rb +114 -0
- data/spec/unit/parser/functions/epp_spec.rb +88 -0
- data/spec/unit/parser/functions/extlookup_spec.rb +102 -0
- data/spec/unit/parser/functions/fail_spec.rb +28 -0
- data/spec/unit/parser/functions/file_spec.rb +55 -0
- data/spec/unit/parser/functions/fqdn_rand_spec.rb +46 -0
- data/spec/unit/parser/functions/generate_spec.rb +132 -0
- data/spec/unit/parser/functions/hiera_array_spec.rb +26 -0
- data/spec/unit/parser/functions/hiera_hash_spec.rb +22 -0
- data/spec/unit/parser/functions/hiera_include_spec.rb +39 -0
- data/spec/unit/parser/functions/hiera_spec.rb +22 -0
- data/spec/unit/parser/functions/include_spec.rb +51 -0
- data/spec/unit/parser/functions/inline_epp_spec.rb +82 -0
- data/spec/unit/parser/functions/inline_template_spec.rb +34 -0
- data/spec/unit/parser/functions/lookup_spec.rb +146 -0
- data/spec/unit/parser/functions/realize_spec.rb +53 -0
- data/spec/unit/parser/functions/regsubst_spec.rb +196 -0
- data/spec/unit/parser/functions/require_spec.rb +61 -0
- data/spec/unit/parser/functions/search_spec.rb +23 -0
- data/spec/unit/parser/functions/shellquote_spec.rb +67 -0
- data/spec/unit/parser/functions/split_spec.rb +53 -0
- data/spec/unit/parser/functions/sprintf_spec.rb +51 -0
- data/spec/unit/parser/functions/tag_spec.rb +28 -0
- data/spec/unit/parser/functions/template_spec.rb +89 -0
- data/spec/unit/parser/functions/versioncmp_spec.rb +33 -0
- data/spec/unit/parser/functions_spec.rb +135 -0
- data/spec/unit/parser/lexer_spec.rb +868 -0
- data/spec/unit/parser/methods/each_spec.rb +91 -0
- data/spec/unit/parser/methods/filter_spec.rb +135 -0
- data/spec/unit/parser/methods/map_spec.rb +184 -0
- data/spec/unit/parser/methods/reduce_spec.rb +78 -0
- data/spec/unit/parser/methods/shared.rb +45 -0
- data/spec/unit/parser/methods/slice_spec.rb +135 -0
- data/spec/unit/parser/parser_spec.rb +535 -0
- data/spec/unit/parser/relationship_spec.rb +93 -0
- data/spec/unit/parser/resource/param_spec.rb +44 -0
- data/spec/unit/parser/resource_spec.rb +586 -0
- data/spec/unit/parser/scope_spec.rb +661 -0
- data/spec/unit/parser/templatewrapper_spec.rb +118 -0
- data/spec/unit/parser/type_loader_spec.rb +225 -0
- data/spec/unit/pops/adaptable_spec.rb +141 -0
- data/spec/unit/pops/benchmark_spec.rb +142 -0
- data/spec/unit/pops/binder/binder_spec.rb +43 -0
- data/spec/unit/pops/binder/bindings_checker_spec.rb +155 -0
- data/spec/unit/pops/binder/bindings_composer_spec.rb +64 -0
- data/spec/unit/pops/binder/bindings_validator_factory_spec.rb +18 -0
- data/spec/unit/pops/binder/config/binder_config_spec.rb +35 -0
- data/spec/unit/pops/binder/injector_spec.rb +784 -0
- data/spec/unit/pops/containment_spec.rb +26 -0
- data/spec/unit/pops/evaluator/access_ops_spec.rb +376 -0
- data/spec/unit/pops/evaluator/arithmetic_ops_spec.rb +77 -0
- data/spec/unit/pops/evaluator/basic_expressions_spec.rb +103 -0
- data/spec/unit/pops/evaluator/collections_ops_spec.rb +111 -0
- data/spec/unit/pops/evaluator/comparison_ops_spec.rb +256 -0
- data/spec/unit/pops/evaluator/conditionals_spec.rb +190 -0
- data/spec/unit/pops/evaluator/evaluating_parser_spec.rb +1045 -0
- data/spec/unit/pops/evaluator/evaluator_rspec_helper.rb +75 -0
- data/spec/unit/pops/evaluator/logical_ops_spec.rb +90 -0
- data/spec/unit/pops/evaluator/string_interpolation_spec.rb +44 -0
- data/spec/unit/pops/evaluator/variables_spec.rb +194 -0
- data/spec/unit/pops/factory_rspec_helper.rb +77 -0
- data/spec/unit/pops/factory_spec.rb +306 -0
- data/spec/unit/pops/issues_spec.rb +26 -0
- data/spec/unit/pops/label_provider_spec.rb +42 -0
- data/spec/unit/pops/model/ast_transformer_spec.rb +76 -0
- data/spec/unit/pops/model/model_spec.rb +37 -0
- data/spec/unit/pops/parser/epp_parser_spec.rb +86 -0
- data/spec/unit/pops/parser/evaluating_parser_spec.rb +90 -0
- data/spec/unit/pops/parser/lexer2_spec.rb +428 -0
- data/spec/unit/pops/parser/lexer_spec.rb +840 -0
- data/spec/unit/pops/parser/parse_basic_expressions_spec.rb +273 -0
- data/spec/unit/pops/parser/parse_calls_spec.rb +101 -0
- data/spec/unit/pops/parser/parse_conditionals_spec.rb +150 -0
- data/spec/unit/pops/parser/parse_containers_spec.rb +206 -0
- data/spec/unit/pops/parser/parse_heredoc_spec.rb +73 -0
- data/spec/unit/pops/parser/parse_resource_spec.rb +242 -0
- data/spec/unit/pops/parser/parser_rspec_helper.rb +11 -0
- data/spec/unit/pops/parser/parser_spec.rb +17 -0
- data/spec/unit/pops/parser/rgen_sanitycheck_spec.rb +23 -0
- data/spec/unit/pops/transformer/transform_basic_expressions_spec.rb +243 -0
- data/spec/unit/pops/transformer/transform_calls_spec.rb +115 -0
- data/spec/unit/pops/transformer/transform_conditionals_spec.rb +123 -0
- data/spec/unit/pops/transformer/transform_containers_spec.rb +190 -0
- data/spec/unit/pops/transformer/transform_resource_spec.rb +185 -0
- data/spec/unit/pops/transformer/transformer_rspec_helper.rb +27 -0
- data/spec/unit/pops/types/enumeration_spec.rb +50 -0
- data/spec/unit/pops/types/type_calculator_spec.rb +1459 -0
- data/spec/unit/pops/types/type_factory_spec.rb +169 -0
- data/spec/unit/pops/types/type_parser_spec.rb +197 -0
- data/spec/unit/pops/validator/validator_spec.rb +68 -0
- data/spec/unit/pops/visitor_spec.rb +94 -0
- data/spec/unit/property/boolean_spec.rb +24 -0
- data/spec/unit/property/ensure_spec.rb +12 -0
- data/spec/unit/property/keyvalue_spec.rb +170 -0
- data/spec/unit/property/list_spec.rb +165 -0
- data/spec/unit/property/ordered_list_spec.rb +63 -0
- data/spec/unit/property_spec.rb +541 -0
- data/spec/unit/provider/README.markdown +4 -0
- data/spec/unit/provider/aixobject_spec.rb +101 -0
- data/spec/unit/provider/augeas/augeas_spec.rb +897 -0
- data/spec/unit/provider/cisco_spec.rb +15 -0
- data/spec/unit/provider/command_spec.rb +62 -0
- data/spec/unit/provider/cron/crontab_spec.rb +206 -0
- data/spec/unit/provider/cron/parsed_spec.rb +321 -0
- data/spec/unit/provider/exec/posix_spec.rb +211 -0
- data/spec/unit/provider/exec/shell_spec.rb +53 -0
- data/spec/unit/provider/exec/windows_spec.rb +107 -0
- data/spec/unit/provider/exec_spec.rb +35 -0
- data/spec/unit/provider/file/posix_spec.rb +232 -0
- data/spec/unit/provider/file/windows_spec.rb +154 -0
- data/spec/unit/provider/group/groupadd_spec.rb +76 -0
- data/spec/unit/provider/group/ldap_spec.rb +101 -0
- data/spec/unit/provider/group/pw_spec.rb +81 -0
- data/spec/unit/provider/group/windows_adsi_spec.rb +168 -0
- data/spec/unit/provider/host/parsed_spec.rb +197 -0
- data/spec/unit/provider/interface/cisco_spec.rb +57 -0
- data/spec/unit/provider/ldap_spec.rb +244 -0
- data/spec/unit/provider/macauthorization_spec.rb +152 -0
- data/spec/unit/provider/mcx/mcxcontent_spec.rb +192 -0
- data/spec/unit/provider/mount/parsed_spec.rb +283 -0
- data/spec/unit/provider/mount_spec.rb +165 -0
- data/spec/unit/provider/naginator_spec.rb +65 -0
- data/spec/unit/provider/nameservice/directoryservice_spec.rb +189 -0
- data/spec/unit/provider/nameservice_spec.rb +304 -0
- data/spec/unit/provider/network_device_spec.rb +152 -0
- data/spec/unit/provider/package/aix_spec.rb +107 -0
- data/spec/unit/provider/package/appdmg_spec.rb +42 -0
- data/spec/unit/provider/package/apt_spec.rb +146 -0
- data/spec/unit/provider/package/aptitude_spec.rb +45 -0
- data/spec/unit/provider/package/aptrpm_spec.rb +45 -0
- data/spec/unit/provider/package/dpkg_spec.rb +281 -0
- data/spec/unit/provider/package/freebsd_spec.rb +54 -0
- data/spec/unit/provider/package/gem_spec.rb +162 -0
- data/spec/unit/provider/package/hpux_spec.rb +51 -0
- data/spec/unit/provider/package/macports_spec.rb +140 -0
- data/spec/unit/provider/package/msi_spec.rb +229 -0
- data/spec/unit/provider/package/nim_spec.rb +250 -0
- data/spec/unit/provider/package/openbsd_spec.rb +312 -0
- data/spec/unit/provider/package/opkg_spec.rb +180 -0
- data/spec/unit/provider/package/pacman_spec.rb +295 -0
- data/spec/unit/provider/package/pip_spec.rb +247 -0
- data/spec/unit/provider/package/pkg_spec.rb +255 -0
- data/spec/unit/provider/package/pkgdmg_spec.rb +144 -0
- data/spec/unit/provider/package/pkgin_spec.rb +178 -0
- data/spec/unit/provider/package/pkgutil_spec.rb +235 -0
- data/spec/unit/provider/package/portage_spec.rb +65 -0
- data/spec/unit/provider/package/rpm_spec.rb +367 -0
- data/spec/unit/provider/package/sun_spec.rb +114 -0
- data/spec/unit/provider/package/up2date_spec.rb +24 -0
- data/spec/unit/provider/package/urpmi.rb +80 -0
- data/spec/unit/provider/package/windows/exe_package_spec.rb +99 -0
- data/spec/unit/provider/package/windows/msi_package_spec.rb +115 -0
- data/spec/unit/provider/package/windows/package_spec.rb +126 -0
- data/spec/unit/provider/package/windows_spec.rb +251 -0
- data/spec/unit/provider/package/yum_spec.rb +195 -0
- data/spec/unit/provider/package/zypper_spec.rb +141 -0
- data/spec/unit/provider/parsedfile_spec.rb +228 -0
- data/spec/unit/provider/scheduled_task/win32_taskscheduler_spec.rb +1574 -0
- data/spec/unit/provider/selboolean_spec.rb +36 -0
- data/spec/unit/provider/selmodule-example.pp +0 -0
- data/spec/unit/provider/selmodule_spec.rb +73 -0
- data/spec/unit/provider/service/base_spec.rb +77 -0
- data/spec/unit/provider/service/daemontools_spec.rb +171 -0
- data/spec/unit/provider/service/debian_spec.rb +116 -0
- data/spec/unit/provider/service/freebsd_spec.rb +75 -0
- data/spec/unit/provider/service/gentoo_spec.rb +241 -0
- data/spec/unit/provider/service/init_spec.rb +212 -0
- data/spec/unit/provider/service/launchd_spec.rb +290 -0
- data/spec/unit/provider/service/openbsd_spec.rb +125 -0
- data/spec/unit/provider/service/openrc_spec.rb +225 -0
- data/spec/unit/provider/service/openwrt_spec.rb +109 -0
- data/spec/unit/provider/service/redhat_spec.rb +148 -0
- data/spec/unit/provider/service/runit_spec.rb +145 -0
- data/spec/unit/provider/service/smf_spec.rb +153 -0
- data/spec/unit/provider/service/src_spec.rb +173 -0
- data/spec/unit/provider/service/systemd_spec.rb +162 -0
- data/spec/unit/provider/service/upstart_spec.rb +522 -0
- data/spec/unit/provider/service/windows_spec.rb +183 -0
- data/spec/unit/provider/ssh_authorized_key/parsed_spec.rb +255 -0
- data/spec/unit/provider/sshkey/parsed_spec.rb +71 -0
- data/spec/unit/provider/user/aix_spec.rb +162 -0
- data/spec/unit/provider/user/directoryservice_spec.rb +1063 -0
- data/spec/unit/provider/user/hpux_spec.rb +52 -0
- data/spec/unit/provider/user/ldap_spec.rb +289 -0
- data/spec/unit/provider/user/pw_spec.rb +214 -0
- data/spec/unit/provider/user/user_role_add_spec.rb +335 -0
- data/spec/unit/provider/user/useradd_spec.rb +430 -0
- data/spec/unit/provider/user/windows_adsi_spec.rb +173 -0
- data/spec/unit/provider/vlan/cisco_spec.rb +55 -0
- data/spec/unit/provider/yumrepo/inifile_spec.rb +105 -0
- data/spec/unit/provider/zfs/zfs_spec.rb +106 -0
- data/spec/unit/provider/zone/solaris_spec.rb +195 -0
- data/spec/unit/provider/zpool/zpool_spec.rb +214 -0
- data/spec/unit/provider_spec.rb +714 -0
- data/spec/unit/puppet_spec.rb +41 -0
- data/spec/unit/rails/host_spec.rb +162 -0
- data/spec/unit/rails/param_value_spec.rb +46 -0
- data/spec/unit/rails/resource_spec.rb +115 -0
- data/spec/unit/rails_spec.rb +244 -0
- data/spec/unit/relationship_spec.rb +228 -0
- data/spec/unit/reports/http_spec.rb +100 -0
- data/spec/unit/reports/rrdgraph_spec.rb +29 -0
- data/spec/unit/reports/store_spec.rb +76 -0
- data/spec/unit/reports/tagmail_spec.rb +218 -0
- data/spec/unit/reports_spec.rb +60 -0
- data/spec/unit/resource/catalog_spec.rb +973 -0
- data/spec/unit/resource/status_spec.rb +220 -0
- data/spec/unit/resource/type_collection_helper_spec.rb +24 -0
- data/spec/unit/resource/type_collection_spec.rb +417 -0
- data/spec/unit/resource/type_spec.rb +777 -0
- data/spec/unit/resource_spec.rb +979 -0
- data/spec/unit/run_spec.rb +175 -0
- data/spec/unit/scheduler/job_spec.rb +79 -0
- data/spec/unit/scheduler/scheduler_spec.rb +116 -0
- data/spec/unit/scheduler/splay_job_spec.rb +35 -0
- data/spec/unit/semver_spec.rb +303 -0
- data/spec/unit/settings/autosign_setting_spec.rb +103 -0
- data/spec/unit/settings/config_file_spec.rb +153 -0
- data/spec/unit/settings/directory_setting_spec.rb +32 -0
- data/spec/unit/settings/duration_setting_spec.rb +45 -0
- data/spec/unit/settings/enum_setting_spec.rb +27 -0
- data/spec/unit/settings/file_setting_spec.rb +297 -0
- data/spec/unit/settings/ini_file_spec.rb +184 -0
- data/spec/unit/settings/path_setting_spec.rb +30 -0
- data/spec/unit/settings/priority_setting_spec.rb +66 -0
- data/spec/unit/settings/string_setting_spec.rb +75 -0
- data/spec/unit/settings/terminus_setting_spec.rb +28 -0
- data/spec/unit/settings/value_translator_spec.rb +77 -0
- data/spec/unit/settings_spec.rb +1735 -0
- data/spec/unit/ssl/base_spec.rb +85 -0
- data/spec/unit/ssl/certificate_authority/autosign_command_spec.rb +30 -0
- data/spec/unit/ssl/certificate_authority/interface_spec.rb +366 -0
- data/spec/unit/ssl/certificate_authority_spec.rb +1105 -0
- data/spec/unit/ssl/certificate_factory_spec.rb +168 -0
- data/spec/unit/ssl/certificate_request_attributes_spec.rb +61 -0
- data/spec/unit/ssl/certificate_request_spec.rb +369 -0
- data/spec/unit/ssl/certificate_revocation_list_spec.rb +196 -0
- data/spec/unit/ssl/certificate_spec.rb +193 -0
- data/spec/unit/ssl/configuration_spec.rb +134 -0
- data/spec/unit/ssl/digest_spec.rb +35 -0
- data/spec/unit/ssl/host_spec.rb +940 -0
- data/spec/unit/ssl/inventory_spec.rb +137 -0
- data/spec/unit/ssl/key_spec.rb +191 -0
- data/spec/unit/ssl/oids_spec.rb +48 -0
- data/spec/unit/ssl/validator_spec.rb +354 -0
- data/spec/unit/status_spec.rb +51 -0
- data/spec/unit/transaction/additional_resource_generator_spec.rb +411 -0
- data/spec/unit/transaction/event_manager_spec.rb +310 -0
- data/spec/unit/transaction/event_spec.rb +192 -0
- data/spec/unit/transaction/report_spec.rb +497 -0
- data/spec/unit/transaction/resource_harness_spec.rb +478 -0
- data/spec/unit/transaction_spec.rb +671 -0
- data/spec/unit/type/README.markdown +4 -0
- data/spec/unit/type/augeas_spec.rb +119 -0
- data/spec/unit/type/component_spec.rb +53 -0
- data/spec/unit/type/computer_spec.rb +80 -0
- data/spec/unit/type/cron_spec.rb +544 -0
- data/spec/unit/type/exec_spec.rb +763 -0
- data/spec/unit/type/file/checksum_spec.rb +73 -0
- data/spec/unit/type/file/content_spec.rb +463 -0
- data/spec/unit/type/file/ctime_spec.rb +34 -0
- data/spec/unit/type/file/ensure_spec.rb +123 -0
- data/spec/unit/type/file/group_spec.rb +60 -0
- data/spec/unit/type/file/mode_spec.rb +195 -0
- data/spec/unit/type/file/mtime_spec.rb +34 -0
- data/spec/unit/type/file/owner_spec.rb +58 -0
- data/spec/unit/type/file/selinux_spec.rb +89 -0
- data/spec/unit/type/file/source_spec.rb +555 -0
- data/spec/unit/type/file/type_spec.rb +19 -0
- data/spec/unit/type/file_spec.rb +1502 -0
- data/spec/unit/type/filebucket_spec.rb +103 -0
- data/spec/unit/type/group_spec.rb +84 -0
- data/spec/unit/type/host_spec.rb +665 -0
- data/spec/unit/type/interface_spec.rb +97 -0
- data/spec/unit/type/k5login_spec.rb +115 -0
- data/spec/unit/type/macauthorization_spec.rb +110 -0
- data/spec/unit/type/mailalias_spec.rb +21 -0
- data/spec/unit/type/maillist_spec.rb +41 -0
- data/spec/unit/type/mcx_spec.rb +79 -0
- data/spec/unit/type/mount_spec.rb +592 -0
- data/spec/unit/type/nagios_spec.rb +284 -0
- data/spec/unit/type/noop_metaparam_spec.rb +38 -0
- data/spec/unit/type/package/package_settings_spec.rb +135 -0
- data/spec/unit/type/package_spec.rb +304 -0
- data/spec/unit/type/resources_spec.rb +284 -0
- data/spec/unit/type/schedule_spec.rb +607 -0
- data/spec/unit/type/scheduled_task_spec.rb +103 -0
- data/spec/unit/type/selboolean_spec.rb +44 -0
- data/spec/unit/type/selmodule_spec.rb +17 -0
- data/spec/unit/type/service_spec.rb +261 -0
- data/spec/unit/type/ssh_authorized_key_spec.rb +258 -0
- data/spec/unit/type/sshkey_spec.rb +77 -0
- data/spec/unit/type/stage_spec.rb +8 -0
- data/spec/unit/type/tidy_spec.rb +433 -0
- data/spec/unit/type/user_spec.rb +419 -0
- data/spec/unit/type/vlan_spec.rb +44 -0
- data/spec/unit/type/whit_spec.rb +10 -0
- data/spec/unit/type/yumrepo_spec.rb +78 -0
- data/spec/unit/type/zfs_spec.rb +46 -0
- data/spec/unit/type/zone_spec.rb +129 -0
- data/spec/unit/type/zpool_spec.rb +109 -0
- data/spec/unit/type_spec.rb +1094 -0
- data/spec/unit/util/adsi_spec.rb +437 -0
- data/spec/unit/util/autoload_spec.rb +256 -0
- data/spec/unit/util/backups_spec.rb +134 -0
- data/spec/unit/util/cache_accumulator_spec.rb +74 -0
- data/spec/unit/util/cacher_spec.rb +107 -0
- data/spec/unit/util/checksums_spec.rb +173 -0
- data/spec/unit/util/colors_spec.rb +83 -0
- data/spec/unit/util/command_line_spec.rb +188 -0
- data/spec/unit/util/command_line_utils/puppet_option_parser_spec.rb +129 -0
- data/spec/unit/util/constant_inflector_spec.rb +56 -0
- data/spec/unit/util/diff_spec.rb +31 -0
- data/spec/unit/util/docs_spec.rb +100 -0
- data/spec/unit/util/errors_spec.rb +37 -0
- data/spec/unit/util/execution_spec.rb +637 -0
- data/spec/unit/util/execution_stub_spec.rb +39 -0
- data/spec/unit/util/feature_spec.rb +92 -0
- data/spec/unit/util/filetype_spec.rb +211 -0
- data/spec/unit/util/http_proxy_spec.rb +83 -0
- data/spec/unit/util/inline_docs_spec.rb +31 -0
- data/spec/unit/util/instrumentation/data_spec.rb +46 -0
- data/spec/unit/util/instrumentation/indirection_probe_spec.rb +21 -0
- data/spec/unit/util/instrumentation/instrumentable_spec.rb +186 -0
- data/spec/unit/util/instrumentation/listener_spec.rb +101 -0
- data/spec/unit/util/instrumentation/listeners/log_spec.rb +34 -0
- data/spec/unit/util/instrumentation/listeners/performance_spec.rb +36 -0
- data/spec/unit/util/instrumentation_spec.rb +181 -0
- data/spec/unit/util/json_lockfile_spec.rb +50 -0
- data/spec/unit/util/ldap/connection_spec.rb +161 -0
- data/spec/unit/util/ldap/generator_spec.rb +50 -0
- data/spec/unit/util/ldap/manager_spec.rb +641 -0
- data/spec/unit/util/lockfile_spec.rb +118 -0
- data/spec/unit/util/log/destinations_spec.rb +183 -0
- data/spec/unit/util/log/rate_limited_logger_spec.rb +51 -0
- data/spec/unit/util/log_spec.rb +378 -0
- data/spec/unit/util/logging_spec.rb +151 -0
- data/spec/unit/util/metric_spec.rb +98 -0
- data/spec/unit/util/monkey_patches/lines_spec.rb +83 -0
- data/spec/unit/util/monkey_patches_spec.rb +328 -0
- data/spec/unit/util/nagios_maker_spec.rb +122 -0
- data/spec/unit/util/network_device/cisco/device_spec.rb +445 -0
- data/spec/unit/util/network_device/cisco/facts_spec.rb +64 -0
- data/spec/unit/util/network_device/cisco/interface_spec.rb +88 -0
- data/spec/unit/util/network_device/config_spec.rb +86 -0
- data/spec/unit/util/network_device/ipcalc_spec.rb +62 -0
- data/spec/unit/util/network_device/transport/base_spec.rb +41 -0
- data/spec/unit/util/network_device/transport/ssh_spec.rb +218 -0
- data/spec/unit/util/network_device/transport/telnet_spec.rb +84 -0
- data/spec/unit/util/network_device_spec.rb +50 -0
- data/spec/unit/util/package_spec.rb +20 -0
- data/spec/unit/util/pidlock_spec.rb +182 -0
- data/spec/unit/util/posix_spec.rb +251 -0
- data/spec/unit/util/profiler/logging_spec.rb +81 -0
- data/spec/unit/util/profiler/none_spec.rb +12 -0
- data/spec/unit/util/profiler/object_counts_spec.rb +14 -0
- data/spec/unit/util/profiler/wall_clock_spec.rb +13 -0
- data/spec/unit/util/pson_spec.rb +71 -0
- data/spec/unit/util/queue/stomp_spec.rb +137 -0
- data/spec/unit/util/queue_spec.rb +95 -0
- data/spec/unit/util/rdoc/parser_spec.rb +599 -0
- data/spec/unit/util/rdoc_spec.rb +141 -0
- data/spec/unit/util/reference_serializer_spec.rb +51 -0
- data/spec/unit/util/reference_spec.rb +39 -0
- data/spec/unit/util/resource_template_spec.rb +57 -0
- data/spec/unit/util/retryaction_spec.rb +62 -0
- data/spec/unit/util/rubygems_spec.rb +68 -0
- data/spec/unit/util/run_mode_spec.rb +145 -0
- data/spec/unit/util/selinux_spec.rb +289 -0
- data/spec/unit/util/ssl_spec.rb +92 -0
- data/spec/unit/util/storage_spec.rb +210 -0
- data/spec/unit/util/suidmanager_spec.rb +297 -0
- data/spec/unit/util/symbolic_file_mode_spec.rb +182 -0
- data/spec/unit/util/tag_set_spec.rb +46 -0
- data/spec/unit/util/tagging_spec.rb +131 -0
- data/spec/unit/util/terminal_spec.rb +42 -0
- data/spec/unit/util/user_attr_spec.rb +46 -0
- data/spec/unit/util/warnings_spec.rb +38 -0
- data/spec/unit/util/watched_file_spec.rb +52 -0
- data/spec/unit/util/watcher/periodic_watcher_spec.rb +52 -0
- data/spec/unit/util/watcher_spec.rb +56 -0
- data/spec/unit/util/windows/access_control_entry_spec.rb +67 -0
- data/spec/unit/util/windows/access_control_list_spec.rb +133 -0
- data/spec/unit/util/windows/registry_spec.rb +140 -0
- data/spec/unit/util/windows/root_certs_spec.rb +17 -0
- data/spec/unit/util/windows/security_descriptor_spec.rb +117 -0
- data/spec/unit/util/windows/sid_spec.rb +169 -0
- data/spec/unit/util/windows/string_spec.rb +54 -0
- data/spec/unit/util/yaml_spec.rb +55 -0
- data/spec/unit/util/zaml_spec.rb +304 -0
- data/spec/unit/util_spec.rb +577 -0
- data/spec/unit/version_spec.rb +42 -0
- data/spec/watchr.rb +142 -0
- data/tasks/benchmark.rake +109 -0
- data/tasks/ci.rake +29 -0
- data/tasks/manpages.rake +84 -0
- data/tasks/parallel.rake +408 -0
- data/tasks/parser.rake +5 -0
- data/tasks/yard.rake +59 -0
- metadata +3515 -0
@@ -0,0 +1,32 @@
|
|
1
|
+
module Puppet::Scheduler
|
2
|
+
class SplayJob < Job
|
3
|
+
attr_reader :splay
|
4
|
+
|
5
|
+
def initialize(run_interval, splay_limit, &block)
|
6
|
+
@splay = calculate_splay(splay_limit)
|
7
|
+
super(run_interval, &block)
|
8
|
+
end
|
9
|
+
|
10
|
+
def interval_to_next_from(time)
|
11
|
+
if last_run
|
12
|
+
super
|
13
|
+
else
|
14
|
+
(start_time + splay) - time
|
15
|
+
end
|
16
|
+
end
|
17
|
+
|
18
|
+
def ready?(time)
|
19
|
+
if last_run
|
20
|
+
super
|
21
|
+
else
|
22
|
+
start_time + splay <= time
|
23
|
+
end
|
24
|
+
end
|
25
|
+
|
26
|
+
private
|
27
|
+
|
28
|
+
def calculate_splay(limit)
|
29
|
+
rand(limit + 1)
|
30
|
+
end
|
31
|
+
end
|
32
|
+
end
|
@@ -0,0 +1,1312 @@
|
|
1
|
+
require 'puppet'
|
2
|
+
require 'getoptlong'
|
3
|
+
require 'puppet/util/watched_file'
|
4
|
+
require 'puppet/util/command_line/puppet_option_parser'
|
5
|
+
|
6
|
+
# The class for handling configuration files.
|
7
|
+
class Puppet::Settings
|
8
|
+
include Enumerable
|
9
|
+
|
10
|
+
require 'puppet/settings/errors'
|
11
|
+
require 'puppet/settings/base_setting'
|
12
|
+
require 'puppet/settings/string_setting'
|
13
|
+
require 'puppet/settings/enum_setting'
|
14
|
+
require 'puppet/settings/file_setting'
|
15
|
+
require 'puppet/settings/directory_setting'
|
16
|
+
require 'puppet/settings/path_setting'
|
17
|
+
require 'puppet/settings/boolean_setting'
|
18
|
+
require 'puppet/settings/terminus_setting'
|
19
|
+
require 'puppet/settings/duration_setting'
|
20
|
+
require 'puppet/settings/priority_setting'
|
21
|
+
require 'puppet/settings/autosign_setting'
|
22
|
+
require 'puppet/settings/config_file'
|
23
|
+
require 'puppet/settings/value_translator'
|
24
|
+
|
25
|
+
# local reference for convenience
|
26
|
+
PuppetOptionParser = Puppet::Util::CommandLine::PuppetOptionParser
|
27
|
+
|
28
|
+
attr_accessor :files
|
29
|
+
attr_reader :timer
|
30
|
+
|
31
|
+
# These are the settings that every app is required to specify; there are reasonable defaults defined in application.rb.
|
32
|
+
REQUIRED_APP_SETTINGS = [:logdir, :confdir, :vardir]
|
33
|
+
|
34
|
+
# This method is intended for puppet internal use only; it is a convenience method that
|
35
|
+
# returns reasonable application default settings values for a given run_mode.
|
36
|
+
def self.app_defaults_for_run_mode(run_mode)
|
37
|
+
{
|
38
|
+
:name => run_mode.to_s,
|
39
|
+
:run_mode => run_mode.name,
|
40
|
+
:confdir => run_mode.conf_dir,
|
41
|
+
:vardir => run_mode.var_dir,
|
42
|
+
:rundir => run_mode.run_dir,
|
43
|
+
:logdir => run_mode.log_dir,
|
44
|
+
}
|
45
|
+
end
|
46
|
+
|
47
|
+
def self.default_certname()
|
48
|
+
hostname = hostname_fact
|
49
|
+
domain = domain_fact
|
50
|
+
if domain and domain != ""
|
51
|
+
fqdn = [hostname, domain].join(".")
|
52
|
+
else
|
53
|
+
fqdn = hostname
|
54
|
+
end
|
55
|
+
fqdn.to_s.gsub(/\.$/, '')
|
56
|
+
end
|
57
|
+
|
58
|
+
def self.hostname_fact()
|
59
|
+
Facter["hostname"].value
|
60
|
+
end
|
61
|
+
|
62
|
+
def self.domain_fact()
|
63
|
+
Facter["domain"].value
|
64
|
+
end
|
65
|
+
|
66
|
+
def self.default_config_file_name
|
67
|
+
"puppet.conf"
|
68
|
+
end
|
69
|
+
|
70
|
+
# Create a new collection of config settings.
|
71
|
+
def initialize
|
72
|
+
@config = {}
|
73
|
+
@shortnames = {}
|
74
|
+
|
75
|
+
@created = []
|
76
|
+
|
77
|
+
# Keep track of set values.
|
78
|
+
@value_sets = {
|
79
|
+
:cli => Values.new(:cli, @config),
|
80
|
+
:memory => Values.new(:memory, @config),
|
81
|
+
:application_defaults => Values.new(:application_defaults, @config),
|
82
|
+
:overridden_defaults => Values.new(:overridden_defaults, @config),
|
83
|
+
}
|
84
|
+
@configuration_file = nil
|
85
|
+
|
86
|
+
# And keep a per-environment cache
|
87
|
+
@cache = Hash.new { |hash, key| hash[key] = {} }
|
88
|
+
|
89
|
+
# The list of sections we've used.
|
90
|
+
@used = []
|
91
|
+
|
92
|
+
@hooks_to_call_on_application_initialization = []
|
93
|
+
|
94
|
+
@translate = Puppet::Settings::ValueTranslator.new
|
95
|
+
@config_file_parser = Puppet::Settings::ConfigFile.new(@translate)
|
96
|
+
end
|
97
|
+
|
98
|
+
# @param name [Symbol] The name of the setting to fetch
|
99
|
+
# @return [Puppet::Settings::BaseSetting] The setting object
|
100
|
+
def setting(name)
|
101
|
+
@config[name]
|
102
|
+
end
|
103
|
+
|
104
|
+
# Retrieve a config value
|
105
|
+
# @param param [Symbol] the name of the setting
|
106
|
+
# @return [Object] the value of the setting
|
107
|
+
# @api private
|
108
|
+
def [](param)
|
109
|
+
value(param)
|
110
|
+
end
|
111
|
+
|
112
|
+
# Set a config value. This doesn't set the defaults, it sets the value itself.
|
113
|
+
# @param param [Symbol] the name of the setting
|
114
|
+
# @param value [Object] the new value of the setting
|
115
|
+
# @api private
|
116
|
+
def []=(param, value)
|
117
|
+
@value_sets[:memory].set(param, value)
|
118
|
+
unsafe_flush_cache
|
119
|
+
end
|
120
|
+
|
121
|
+
# Create a new default value for the given setting. The default overrides are
|
122
|
+
# higher precedence than the defaults given in defaults.rb, but lower
|
123
|
+
# precedence than any other values for the setting. This allows one setting
|
124
|
+
# `a` to change the default of setting `b`, but still allow a user to provide
|
125
|
+
# a value for setting `b`.
|
126
|
+
#
|
127
|
+
# @param param [Symbol] the name of the setting
|
128
|
+
# @param value [Object] the new default value for the setting
|
129
|
+
# @api private
|
130
|
+
def override_default(param, value)
|
131
|
+
@value_sets[:overridden_defaults].set(param, value)
|
132
|
+
unsafe_flush_cache
|
133
|
+
end
|
134
|
+
|
135
|
+
# Generate the list of valid arguments, in a format that GetoptLong can
|
136
|
+
# understand, and add them to the passed option list.
|
137
|
+
def addargs(options)
|
138
|
+
# Add all of the settings as valid options.
|
139
|
+
self.each { |name, setting|
|
140
|
+
setting.getopt_args.each { |args| options << args }
|
141
|
+
}
|
142
|
+
|
143
|
+
options
|
144
|
+
end
|
145
|
+
|
146
|
+
# Generate the list of valid arguments, in a format that OptionParser can
|
147
|
+
# understand, and add them to the passed option list.
|
148
|
+
def optparse_addargs(options)
|
149
|
+
# Add all of the settings as valid options.
|
150
|
+
self.each { |name, setting|
|
151
|
+
options << setting.optparse_args
|
152
|
+
}
|
153
|
+
|
154
|
+
options
|
155
|
+
end
|
156
|
+
|
157
|
+
# Is our setting a boolean setting?
|
158
|
+
def boolean?(param)
|
159
|
+
param = param.to_sym
|
160
|
+
@config.include?(param) and @config[param].kind_of?(BooleanSetting)
|
161
|
+
end
|
162
|
+
|
163
|
+
# Remove all set values, potentially skipping cli values.
|
164
|
+
def clear
|
165
|
+
unsafe_clear
|
166
|
+
end
|
167
|
+
|
168
|
+
# Remove all set values, potentially skipping cli values.
|
169
|
+
def unsafe_clear(clear_cli = true, clear_application_defaults = false)
|
170
|
+
if clear_application_defaults
|
171
|
+
@value_sets[:application_defaults] = Values.new(:application_defaults, @config)
|
172
|
+
@app_defaults_initialized = false
|
173
|
+
end
|
174
|
+
|
175
|
+
if clear_cli
|
176
|
+
@value_sets[:cli] = Values.new(:cli, @config)
|
177
|
+
|
178
|
+
# Only clear the 'used' values if we were explicitly asked to clear out
|
179
|
+
# :cli values; otherwise, it may be just a config file reparse,
|
180
|
+
# and we want to retain this cli values.
|
181
|
+
@used = []
|
182
|
+
end
|
183
|
+
|
184
|
+
@value_sets[:memory] = Values.new(:memory, @config)
|
185
|
+
@value_sets[:overridden_defaults] = Values.new(:overridden_defaults, @config)
|
186
|
+
|
187
|
+
@cache.clear
|
188
|
+
end
|
189
|
+
private :unsafe_clear
|
190
|
+
|
191
|
+
# Clear @cache, @used and the Environment.
|
192
|
+
#
|
193
|
+
# Whenever an object is returned by Settings, a copy is stored in @cache.
|
194
|
+
# As long as Setting attributes that determine the content of returned
|
195
|
+
# objects remain unchanged, Settings can keep returning objects from @cache
|
196
|
+
# without re-fetching or re-generating them.
|
197
|
+
#
|
198
|
+
# Whenever a Settings attribute changes, such as @values or @preferred_run_mode,
|
199
|
+
# this method must be called to clear out the caches so that updated
|
200
|
+
# objects will be returned.
|
201
|
+
def flush_cache
|
202
|
+
unsafe_flush_cache
|
203
|
+
end
|
204
|
+
|
205
|
+
def unsafe_flush_cache
|
206
|
+
clearused
|
207
|
+
|
208
|
+
# Clear the list of environments, because they cache, at least, the module path.
|
209
|
+
# We *could* preferentially just clear them if the modulepath is changed,
|
210
|
+
# but we don't really know if, say, the vardir is changed and the modulepath
|
211
|
+
# is defined relative to it. We need the defined?(stuff) because of loading
|
212
|
+
# order issues.
|
213
|
+
Puppet::Node::Environment.clear if defined?(Puppet::Node) and defined?(Puppet::Node::Environment)
|
214
|
+
end
|
215
|
+
private :unsafe_flush_cache
|
216
|
+
|
217
|
+
def clearused
|
218
|
+
@cache.clear
|
219
|
+
@used = []
|
220
|
+
end
|
221
|
+
|
222
|
+
def global_defaults_initialized?()
|
223
|
+
@global_defaults_initialized
|
224
|
+
end
|
225
|
+
|
226
|
+
def initialize_global_settings(args = [])
|
227
|
+
raise Puppet::DevError, "Attempting to initialize global default settings more than once!" if global_defaults_initialized?
|
228
|
+
|
229
|
+
# The first two phases of the lifecycle of a puppet application are:
|
230
|
+
# 1) Parse the command line options and handle any of them that are
|
231
|
+
# registered, defined "global" puppet settings (mostly from defaults.rb).
|
232
|
+
# 2) Parse the puppet config file(s).
|
233
|
+
|
234
|
+
parse_global_options(args)
|
235
|
+
parse_config_files
|
236
|
+
|
237
|
+
@global_defaults_initialized = true
|
238
|
+
end
|
239
|
+
|
240
|
+
# This method is called during application bootstrapping. It is responsible for parsing all of the
|
241
|
+
# command line options and initializing the settings accordingly.
|
242
|
+
#
|
243
|
+
# It will ignore options that are not defined in the global puppet settings list, because they may
|
244
|
+
# be valid options for the specific application that we are about to launch... however, at this point
|
245
|
+
# in the bootstrapping lifecycle, we don't yet know what that application is.
|
246
|
+
def parse_global_options(args)
|
247
|
+
# Create an option parser
|
248
|
+
option_parser = PuppetOptionParser.new
|
249
|
+
option_parser.ignore_invalid_options = true
|
250
|
+
|
251
|
+
# Add all global options to it.
|
252
|
+
self.optparse_addargs([]).each do |option|
|
253
|
+
option_parser.on(*option) do |arg|
|
254
|
+
opt, val = Puppet::Settings.clean_opt(option[0], arg)
|
255
|
+
handlearg(opt, val)
|
256
|
+
end
|
257
|
+
end
|
258
|
+
|
259
|
+
option_parser.on('--run_mode',
|
260
|
+
"The effective 'run mode' of the application: master, agent, or user.",
|
261
|
+
:REQUIRED) do |arg|
|
262
|
+
Puppet.settings.preferred_run_mode = arg
|
263
|
+
end
|
264
|
+
|
265
|
+
option_parser.parse(args)
|
266
|
+
|
267
|
+
# remove run_mode options from the arguments so that later parses don't think
|
268
|
+
# it is an unknown option.
|
269
|
+
while option_index = args.index('--run_mode') do
|
270
|
+
args.delete_at option_index
|
271
|
+
args.delete_at option_index
|
272
|
+
end
|
273
|
+
args.reject! { |arg| arg.start_with? '--run_mode=' }
|
274
|
+
end
|
275
|
+
private :parse_global_options
|
276
|
+
|
277
|
+
# A utility method (public, is used by application.rb and perhaps elsewhere) that munges a command-line
|
278
|
+
# option string into the format that Puppet.settings expects. (This mostly has to deal with handling the
|
279
|
+
# "no-" prefix on flag/boolean options).
|
280
|
+
#
|
281
|
+
# @param [String] opt the command line option that we are munging
|
282
|
+
# @param [String, TrueClass, FalseClass] val the value for the setting (as determined by the OptionParser)
|
283
|
+
def self.clean_opt(opt, val)
|
284
|
+
# rewrite --[no-]option to --no-option if that's what was given
|
285
|
+
if opt =~ /\[no-\]/ and !val
|
286
|
+
opt = opt.gsub(/\[no-\]/,'no-')
|
287
|
+
end
|
288
|
+
# otherwise remove the [no-] prefix to not confuse everybody
|
289
|
+
opt = opt.gsub(/\[no-\]/, '')
|
290
|
+
[opt, val]
|
291
|
+
end
|
292
|
+
|
293
|
+
|
294
|
+
def app_defaults_initialized?
|
295
|
+
@app_defaults_initialized
|
296
|
+
end
|
297
|
+
|
298
|
+
def initialize_app_defaults(app_defaults)
|
299
|
+
REQUIRED_APP_SETTINGS.each do |key|
|
300
|
+
raise SettingsError, "missing required app default setting '#{key}'" unless app_defaults.has_key?(key)
|
301
|
+
end
|
302
|
+
|
303
|
+
app_defaults.each do |key, value|
|
304
|
+
if key == :run_mode
|
305
|
+
self.preferred_run_mode = value
|
306
|
+
else
|
307
|
+
@value_sets[:application_defaults].set(key, value)
|
308
|
+
unsafe_flush_cache
|
309
|
+
end
|
310
|
+
end
|
311
|
+
apply_metadata
|
312
|
+
call_hooks_deferred_to_application_initialization
|
313
|
+
|
314
|
+
@app_defaults_initialized = true
|
315
|
+
end
|
316
|
+
|
317
|
+
def call_hooks_deferred_to_application_initialization(options = {})
|
318
|
+
@hooks_to_call_on_application_initialization.each do |setting|
|
319
|
+
begin
|
320
|
+
setting.handle(self.value(setting.name))
|
321
|
+
rescue InterpolationError => err
|
322
|
+
raise InterpolationError, err, err.backtrace unless options[:ignore_interpolation_dependency_errors]
|
323
|
+
#swallow. We're not concerned if we can't call hooks because dependencies don't exist yet
|
324
|
+
#we'll get another chance after application defaults are initialized
|
325
|
+
end
|
326
|
+
end
|
327
|
+
end
|
328
|
+
private :call_hooks_deferred_to_application_initialization
|
329
|
+
|
330
|
+
# Return a value's description.
|
331
|
+
def description(name)
|
332
|
+
if obj = @config[name.to_sym]
|
333
|
+
obj.desc
|
334
|
+
else
|
335
|
+
nil
|
336
|
+
end
|
337
|
+
end
|
338
|
+
|
339
|
+
def each
|
340
|
+
@config.each { |name, object|
|
341
|
+
yield name, object
|
342
|
+
}
|
343
|
+
end
|
344
|
+
|
345
|
+
# Iterate over each section name.
|
346
|
+
def eachsection
|
347
|
+
yielded = []
|
348
|
+
@config.each do |name, object|
|
349
|
+
section = object.section
|
350
|
+
unless yielded.include? section
|
351
|
+
yield section
|
352
|
+
yielded << section
|
353
|
+
end
|
354
|
+
end
|
355
|
+
end
|
356
|
+
|
357
|
+
# Return an object by name.
|
358
|
+
def setting(param)
|
359
|
+
param = param.to_sym
|
360
|
+
@config[param]
|
361
|
+
end
|
362
|
+
|
363
|
+
# Handle a command-line argument.
|
364
|
+
def handlearg(opt, value = nil)
|
365
|
+
@cache.clear
|
366
|
+
|
367
|
+
if value.is_a?(FalseClass)
|
368
|
+
value = "false"
|
369
|
+
elsif value.is_a?(TrueClass)
|
370
|
+
value = "true"
|
371
|
+
end
|
372
|
+
|
373
|
+
value &&= @translate[value]
|
374
|
+
str = opt.sub(/^--/,'')
|
375
|
+
|
376
|
+
bool = true
|
377
|
+
newstr = str.sub(/^no-/, '')
|
378
|
+
if newstr != str
|
379
|
+
str = newstr
|
380
|
+
bool = false
|
381
|
+
end
|
382
|
+
str = str.intern
|
383
|
+
|
384
|
+
if @config[str].is_a?(Puppet::Settings::BooleanSetting)
|
385
|
+
if value == "" or value.nil?
|
386
|
+
value = bool
|
387
|
+
end
|
388
|
+
end
|
389
|
+
|
390
|
+
@value_sets[:cli].set(str, value)
|
391
|
+
unsafe_flush_cache
|
392
|
+
end
|
393
|
+
|
394
|
+
def include?(name)
|
395
|
+
name = name.intern if name.is_a? String
|
396
|
+
@config.include?(name)
|
397
|
+
end
|
398
|
+
|
399
|
+
# check to see if a short name is already defined
|
400
|
+
def shortinclude?(short)
|
401
|
+
short = short.intern if name.is_a? String
|
402
|
+
@shortnames.include?(short)
|
403
|
+
end
|
404
|
+
|
405
|
+
# Prints the contents of a config file with the available config settings, or it
|
406
|
+
# prints a single value of a config setting.
|
407
|
+
def print_config_options
|
408
|
+
env = value(:environment)
|
409
|
+
val = value(:configprint)
|
410
|
+
if val == "all"
|
411
|
+
hash = {}
|
412
|
+
each do |name, obj|
|
413
|
+
val = value(name,env)
|
414
|
+
val = val.inspect if val == ""
|
415
|
+
hash[name] = val
|
416
|
+
end
|
417
|
+
hash.sort { |a,b| a[0].to_s <=> b[0].to_s }.each do |name, val|
|
418
|
+
puts "#{name} = #{val}"
|
419
|
+
end
|
420
|
+
else
|
421
|
+
val.split(/\s*,\s*/).sort.each do |v|
|
422
|
+
if include?(v)
|
423
|
+
#if there is only one value, just print it for back compatibility
|
424
|
+
if v == val
|
425
|
+
puts value(val,env)
|
426
|
+
break
|
427
|
+
end
|
428
|
+
puts "#{v} = #{value(v,env)}"
|
429
|
+
else
|
430
|
+
puts "invalid setting: #{v}"
|
431
|
+
return false
|
432
|
+
end
|
433
|
+
end
|
434
|
+
end
|
435
|
+
true
|
436
|
+
end
|
437
|
+
|
438
|
+
def generate_config
|
439
|
+
puts to_config
|
440
|
+
true
|
441
|
+
end
|
442
|
+
|
443
|
+
def generate_manifest
|
444
|
+
puts to_manifest
|
445
|
+
true
|
446
|
+
end
|
447
|
+
|
448
|
+
def print_configs
|
449
|
+
return print_config_options if value(:configprint) != ""
|
450
|
+
return generate_config if value(:genconfig)
|
451
|
+
generate_manifest if value(:genmanifest)
|
452
|
+
end
|
453
|
+
|
454
|
+
def print_configs?
|
455
|
+
(value(:configprint) != "" || value(:genconfig) || value(:genmanifest)) && true
|
456
|
+
end
|
457
|
+
|
458
|
+
# Return a given object's file metadata.
|
459
|
+
def metadata(param)
|
460
|
+
if obj = @config[param.to_sym] and obj.is_a?(FileSetting)
|
461
|
+
{
|
462
|
+
:owner => obj.owner,
|
463
|
+
:group => obj.group,
|
464
|
+
:mode => obj.mode
|
465
|
+
}.delete_if { |key, value| value.nil? }
|
466
|
+
else
|
467
|
+
nil
|
468
|
+
end
|
469
|
+
end
|
470
|
+
|
471
|
+
# Make a directory with the appropriate user, group, and mode
|
472
|
+
def mkdir(default)
|
473
|
+
obj = get_config_file_default(default)
|
474
|
+
|
475
|
+
Puppet::Util::SUIDManager.asuser(obj.owner, obj.group) do
|
476
|
+
mode = obj.mode || 0750
|
477
|
+
Dir.mkdir(obj.value, mode)
|
478
|
+
end
|
479
|
+
end
|
480
|
+
|
481
|
+
# The currently configured run mode that is preferred for constructing the application configuration.
|
482
|
+
def preferred_run_mode
|
483
|
+
@preferred_run_mode_name || :user
|
484
|
+
end
|
485
|
+
|
486
|
+
# PRIVATE! This only exists because we need a hook to validate the run mode when it's being set, and
|
487
|
+
# it should never, ever, ever, ever be called from outside of this file.
|
488
|
+
# This method is also called when --run_mode MODE is used on the command line to set the default
|
489
|
+
#
|
490
|
+
# @param mode [String|Symbol] the name of the mode to have in effect
|
491
|
+
# @api private
|
492
|
+
def preferred_run_mode=(mode)
|
493
|
+
mode = mode.to_s.downcase.intern
|
494
|
+
raise ValidationError, "Invalid run mode '#{mode}'" unless [:master, :agent, :user].include?(mode)
|
495
|
+
@preferred_run_mode_name = mode
|
496
|
+
# Changing the run mode has far-reaching consequences. Flush any cached
|
497
|
+
# settings so they will be re-generated.
|
498
|
+
flush_cache
|
499
|
+
mode
|
500
|
+
end
|
501
|
+
|
502
|
+
# Return all of the settings associated with a given section.
|
503
|
+
def params(section = nil)
|
504
|
+
if section
|
505
|
+
section = section.intern if section.is_a? String
|
506
|
+
@config.find_all { |name, obj|
|
507
|
+
obj.section == section
|
508
|
+
}.collect { |name, obj|
|
509
|
+
name
|
510
|
+
}
|
511
|
+
else
|
512
|
+
@config.keys
|
513
|
+
end
|
514
|
+
end
|
515
|
+
|
516
|
+
def parse_config(text, file = "text")
|
517
|
+
begin
|
518
|
+
data = @config_file_parser.parse_file(file, text)
|
519
|
+
rescue => detail
|
520
|
+
Puppet.log_exception(detail, "Could not parse #{file}: #{detail}")
|
521
|
+
return
|
522
|
+
end
|
523
|
+
|
524
|
+
# If we get here and don't have any data, we just return and don't muck with the current state of the world.
|
525
|
+
return if data.nil?
|
526
|
+
|
527
|
+
# If we get here then we have some data, so we need to clear out any previous settings that may have come from
|
528
|
+
# config files.
|
529
|
+
unsafe_clear(false, false)
|
530
|
+
|
531
|
+
# And now we can repopulate with the values from our last parsing of the config files.
|
532
|
+
@configuration_file = data
|
533
|
+
|
534
|
+
# Determine our environment, if we have one.
|
535
|
+
if @config[:environment]
|
536
|
+
env = self.value(:environment).to_sym
|
537
|
+
else
|
538
|
+
env = "none"
|
539
|
+
end
|
540
|
+
|
541
|
+
# Call any hooks we should be calling.
|
542
|
+
@config.values.select(&:has_hook?).each do |setting|
|
543
|
+
value_sets_for(env, self.preferred_run_mode).each do |source|
|
544
|
+
if source.include?(setting.name)
|
545
|
+
# We still have to use value to retrieve the value, since
|
546
|
+
# we want the fully interpolated value, not $vardir/lib or whatever.
|
547
|
+
# This results in extra work, but so few of the settings
|
548
|
+
# will have associated hooks that it ends up being less work this
|
549
|
+
# way overall.
|
550
|
+
if setting.call_hook_on_initialize?
|
551
|
+
@hooks_to_call_on_application_initialization << setting
|
552
|
+
else
|
553
|
+
setting.handle(self.value(setting.name, env))
|
554
|
+
end
|
555
|
+
break
|
556
|
+
end
|
557
|
+
end
|
558
|
+
end
|
559
|
+
|
560
|
+
call_hooks_deferred_to_application_initialization :ignore_interpolation_dependency_errors => true
|
561
|
+
apply_metadata
|
562
|
+
end
|
563
|
+
|
564
|
+
# Parse the configuration file. Just provides thread safety.
|
565
|
+
def parse_config_files
|
566
|
+
file = which_configuration_file
|
567
|
+
if Puppet::FileSystem.exist?(file)
|
568
|
+
begin
|
569
|
+
text = read_file(file)
|
570
|
+
rescue => detail
|
571
|
+
Puppet.log_exception(detail, "Could not load #{file}: #{detail}")
|
572
|
+
return
|
573
|
+
end
|
574
|
+
else
|
575
|
+
return
|
576
|
+
end
|
577
|
+
|
578
|
+
parse_config(text, file)
|
579
|
+
end
|
580
|
+
private :parse_config_files
|
581
|
+
|
582
|
+
def main_config_file
|
583
|
+
if explicit_config_file?
|
584
|
+
return self[:config]
|
585
|
+
else
|
586
|
+
return File.join(Puppet::Util::RunMode[:master].conf_dir, config_file_name)
|
587
|
+
end
|
588
|
+
end
|
589
|
+
private :main_config_file
|
590
|
+
|
591
|
+
def user_config_file
|
592
|
+
return File.join(Puppet::Util::RunMode[:user].conf_dir, config_file_name)
|
593
|
+
end
|
594
|
+
private :user_config_file
|
595
|
+
|
596
|
+
# This method is here to get around some life-cycle issues. We need to be
|
597
|
+
# able to determine the config file name before the settings / defaults are
|
598
|
+
# fully loaded. However, we also need to respect any overrides of this value
|
599
|
+
# that the user may have specified on the command line.
|
600
|
+
#
|
601
|
+
# The easiest way to do this is to attempt to read the setting, and if we
|
602
|
+
# catch an error (meaning that it hasn't been set yet), we'll fall back to
|
603
|
+
# the default value.
|
604
|
+
def config_file_name
|
605
|
+
begin
|
606
|
+
return self[:config_file_name] if self[:config_file_name]
|
607
|
+
rescue SettingsError
|
608
|
+
# This just means that the setting wasn't explicitly set on the command line, so we will ignore it and
|
609
|
+
# fall through to the default name.
|
610
|
+
end
|
611
|
+
return self.class.default_config_file_name
|
612
|
+
end
|
613
|
+
private :config_file_name
|
614
|
+
|
615
|
+
def apply_metadata
|
616
|
+
# We have to do it in the reverse of the search path,
|
617
|
+
# because multiple sections could set the same value
|
618
|
+
# and I'm too lazy to only set the metadata once.
|
619
|
+
if @configuration_file
|
620
|
+
searchpath.reverse.each do |source|
|
621
|
+
source = preferred_run_mode if source == :run_mode
|
622
|
+
if section = @configuration_file.sections[source]
|
623
|
+
apply_metadata_from_section(section)
|
624
|
+
end
|
625
|
+
end
|
626
|
+
end
|
627
|
+
end
|
628
|
+
private :apply_metadata
|
629
|
+
|
630
|
+
def apply_metadata_from_section(section)
|
631
|
+
section.settings.each do |setting|
|
632
|
+
if setting.has_metadata? && type = @config[setting.name]
|
633
|
+
type.set_meta(setting.meta)
|
634
|
+
end
|
635
|
+
end
|
636
|
+
end
|
637
|
+
|
638
|
+
SETTING_TYPES = {
|
639
|
+
:string => StringSetting,
|
640
|
+
:file => FileSetting,
|
641
|
+
:directory => DirectorySetting,
|
642
|
+
:path => PathSetting,
|
643
|
+
:boolean => BooleanSetting,
|
644
|
+
:terminus => TerminusSetting,
|
645
|
+
:duration => DurationSetting,
|
646
|
+
:enum => EnumSetting,
|
647
|
+
:priority => PrioritySetting,
|
648
|
+
:autosign => AutosignSetting,
|
649
|
+
}
|
650
|
+
|
651
|
+
# Create a new setting. The value is passed in because it's used to determine
|
652
|
+
# what kind of setting we're creating, but the value itself might be either
|
653
|
+
# a default or a value, so we can't actually assign it.
|
654
|
+
#
|
655
|
+
# See #define_settings for documentation on the legal values for the ":type" option.
|
656
|
+
def newsetting(hash)
|
657
|
+
klass = nil
|
658
|
+
hash[:section] = hash[:section].to_sym if hash[:section]
|
659
|
+
|
660
|
+
if type = hash[:type]
|
661
|
+
unless klass = SETTING_TYPES[type]
|
662
|
+
raise ArgumentError, "Invalid setting type '#{type}'"
|
663
|
+
end
|
664
|
+
hash.delete(:type)
|
665
|
+
else
|
666
|
+
# The only implicit typing we still do for settings is to fall back to "String" type if they didn't explicitly
|
667
|
+
# specify a type. Personally I'd like to get rid of this too, and make the "type" option mandatory... but
|
668
|
+
# there was a little resistance to taking things quite that far for now. --cprice 2012-03-19
|
669
|
+
klass = StringSetting
|
670
|
+
end
|
671
|
+
hash[:settings] = self
|
672
|
+
setting = klass.new(hash)
|
673
|
+
|
674
|
+
setting
|
675
|
+
end
|
676
|
+
|
677
|
+
# This has to be private, because it doesn't add the settings to @config
|
678
|
+
private :newsetting
|
679
|
+
|
680
|
+
# Iterate across all of the objects in a given section.
|
681
|
+
def persection(section)
|
682
|
+
section = section.to_sym
|
683
|
+
self.each { |name, obj|
|
684
|
+
if obj.section == section
|
685
|
+
yield obj
|
686
|
+
end
|
687
|
+
}
|
688
|
+
end
|
689
|
+
|
690
|
+
# Reparse our config file, if necessary.
|
691
|
+
def reparse_config_files
|
692
|
+
if files
|
693
|
+
if filename = any_files_changed?
|
694
|
+
Puppet.notice "Config file #{filename} changed; triggering re-parse of all config files."
|
695
|
+
parse_config_files
|
696
|
+
reuse
|
697
|
+
end
|
698
|
+
end
|
699
|
+
end
|
700
|
+
|
701
|
+
def files
|
702
|
+
return @files if @files
|
703
|
+
@files = []
|
704
|
+
[main_config_file, user_config_file].each do |path|
|
705
|
+
if Puppet::FileSystem.exist?(path)
|
706
|
+
@files << Puppet::Util::WatchedFile.new(path)
|
707
|
+
end
|
708
|
+
end
|
709
|
+
@files
|
710
|
+
end
|
711
|
+
private :files
|
712
|
+
|
713
|
+
# Checks to see if any of the config files have been modified
|
714
|
+
# @return the filename of the first file that is found to have changed, or
|
715
|
+
# nil if no files have changed
|
716
|
+
def any_files_changed?
|
717
|
+
files.each do |file|
|
718
|
+
return file.to_str if file.changed?
|
719
|
+
end
|
720
|
+
nil
|
721
|
+
end
|
722
|
+
private :any_files_changed?
|
723
|
+
|
724
|
+
def reuse
|
725
|
+
return unless defined?(@used)
|
726
|
+
new = @used
|
727
|
+
@used = []
|
728
|
+
self.use(*new)
|
729
|
+
end
|
730
|
+
|
731
|
+
# The order in which to search for values.
|
732
|
+
def searchpath(environment = nil)
|
733
|
+
[:memory, :cli, environment, :run_mode, :main, :application_defaults, :overridden_defaults].compact
|
734
|
+
end
|
735
|
+
|
736
|
+
# Get a list of objects per section
|
737
|
+
def sectionlist
|
738
|
+
sectionlist = []
|
739
|
+
self.each { |name, obj|
|
740
|
+
section = obj.section || "puppet"
|
741
|
+
sections[section] ||= []
|
742
|
+
sectionlist << section unless sectionlist.include?(section)
|
743
|
+
sections[section] << obj
|
744
|
+
}
|
745
|
+
|
746
|
+
return sectionlist, sections
|
747
|
+
end
|
748
|
+
|
749
|
+
def service_user_available?
|
750
|
+
return @service_user_available if defined?(@service_user_available)
|
751
|
+
|
752
|
+
if self[:user]
|
753
|
+
user = Puppet::Type.type(:user).new :name => self[:user], :audit => :ensure
|
754
|
+
|
755
|
+
@service_user_available = user.exists?
|
756
|
+
else
|
757
|
+
@service_user_available = false
|
758
|
+
end
|
759
|
+
end
|
760
|
+
|
761
|
+
def service_group_available?
|
762
|
+
return @service_group_available if defined?(@service_group_available)
|
763
|
+
|
764
|
+
if self[:group]
|
765
|
+
group = Puppet::Type.type(:group).new :name => self[:group], :audit => :ensure
|
766
|
+
|
767
|
+
@service_group_available = group.exists?
|
768
|
+
else
|
769
|
+
@service_group_available = false
|
770
|
+
end
|
771
|
+
end
|
772
|
+
|
773
|
+
# Allow later inspection to determine if the setting was set on the
|
774
|
+
# command line, or through some other code path. Used for the
|
775
|
+
# `dns_alt_names` option during cert generate. --daniel 2011-10-18
|
776
|
+
def set_by_cli?(param)
|
777
|
+
param = param.to_sym
|
778
|
+
!@value_sets[:cli].lookup(param).nil?
|
779
|
+
end
|
780
|
+
|
781
|
+
def set_value(param, value, type, options = {})
|
782
|
+
Puppet.deprecation_warning("Puppet.settings.set_value is deprecated. Use Puppet[]= instead.")
|
783
|
+
if @value_sets[type]
|
784
|
+
@value_sets[type].set(param, value)
|
785
|
+
unsafe_flush_cache
|
786
|
+
end
|
787
|
+
end
|
788
|
+
|
789
|
+
# Deprecated; use #define_settings instead
|
790
|
+
def setdefaults(section, defs)
|
791
|
+
Puppet.deprecation_warning("'setdefaults' is deprecated and will be removed; please call 'define_settings' instead")
|
792
|
+
define_settings(section, defs)
|
793
|
+
end
|
794
|
+
|
795
|
+
# Define a group of settings.
|
796
|
+
#
|
797
|
+
# @param [Symbol] section a symbol to use for grouping multiple settings together into a conceptual unit. This value
|
798
|
+
# (and the conceptual separation) is not used very often; the main place where it will have a potential impact
|
799
|
+
# is when code calls Settings#use method. See docs on that method for further details, but basically that method
|
800
|
+
# just attempts to do any preparation that may be necessary before code attempts to leverage the value of a particular
|
801
|
+
# setting. This has the most impact for file/directory settings, where #use will attempt to "ensure" those
|
802
|
+
# files / directories.
|
803
|
+
# @param [Hash[Hash]] defs the settings to be defined. This argument is a hash of hashes; each key should be a symbol,
|
804
|
+
# which is basically the name of the setting that you are defining. The value should be another hash that specifies
|
805
|
+
# the parameters for the particular setting. Legal values include:
|
806
|
+
# [:default] => required; this is a string value that will be used as a default value for a setting if no other
|
807
|
+
# value is specified (via cli, config file, etc.) This string may include "variables", demarcated with $ or ${},
|
808
|
+
# which will be interpolated with values of other settings.
|
809
|
+
# [:desc] => required; a description of the setting, used in documentation / help generation
|
810
|
+
# [:type] => not required, but highly encouraged! This specifies the data type that the setting represents. If
|
811
|
+
# you do not specify it, it will default to "string". Legal values include:
|
812
|
+
# :string - A generic string setting
|
813
|
+
# :boolean - A boolean setting; values are expected to be "true" or "false"
|
814
|
+
# :file - A (single) file path; puppet may attempt to create this file depending on how the settings are used. This type
|
815
|
+
# also supports additional options such as "mode", "owner", "group"
|
816
|
+
# :directory - A (single) directory path; puppet may attempt to create this file depending on how the settings are used. This type
|
817
|
+
# also supports additional options such as "mode", "owner", "group"
|
818
|
+
# :path - This is intended to be used for settings whose value can contain multiple directory paths, respresented
|
819
|
+
# as strings separated by the system path separator (e.g. system path, module path, etc.).
|
820
|
+
# [:mode] => an (optional) octal value to be used as the permissions/mode for :file and :directory settings
|
821
|
+
# [:owner] => optional owner username/uid for :file and :directory settings
|
822
|
+
# [:group] => optional group name/gid for :file and :directory settings
|
823
|
+
#
|
824
|
+
def define_settings(section, defs)
|
825
|
+
section = section.to_sym
|
826
|
+
call = []
|
827
|
+
defs.each do |name, hash|
|
828
|
+
raise ArgumentError, "setting definition for '#{name}' is not a hash!" unless hash.is_a? Hash
|
829
|
+
|
830
|
+
name = name.to_sym
|
831
|
+
hash[:name] = name
|
832
|
+
hash[:section] = section
|
833
|
+
raise ArgumentError, "Setting #{name} is already defined" if @config.include?(name)
|
834
|
+
tryconfig = newsetting(hash)
|
835
|
+
if short = tryconfig.short
|
836
|
+
if other = @shortnames[short]
|
837
|
+
raise ArgumentError, "Setting #{other.name} is already using short name '#{short}'"
|
838
|
+
end
|
839
|
+
@shortnames[short] = tryconfig
|
840
|
+
end
|
841
|
+
@config[name] = tryconfig
|
842
|
+
|
843
|
+
# Collect the settings that need to have their hooks called immediately.
|
844
|
+
# We have to collect them so that we can be sure we're fully initialized before
|
845
|
+
# the hook is called.
|
846
|
+
if tryconfig.has_hook?
|
847
|
+
if tryconfig.call_hook_on_define?
|
848
|
+
call << tryconfig
|
849
|
+
elsif tryconfig.call_hook_on_initialize?
|
850
|
+
@hooks_to_call_on_application_initialization << tryconfig
|
851
|
+
end
|
852
|
+
end
|
853
|
+
end
|
854
|
+
|
855
|
+
call.each do |setting|
|
856
|
+
setting.handle(self.value(setting.name))
|
857
|
+
end
|
858
|
+
end
|
859
|
+
|
860
|
+
# Convert the settings we manage into a catalog full of resources that model those settings.
|
861
|
+
def to_catalog(*sections)
|
862
|
+
sections = nil if sections.empty?
|
863
|
+
|
864
|
+
catalog = Puppet::Resource::Catalog.new("Settings")
|
865
|
+
|
866
|
+
@config.keys.find_all { |key| @config[key].is_a?(FileSetting) }.each do |key|
|
867
|
+
file = @config[key]
|
868
|
+
next unless (sections.nil? or sections.include?(file.section))
|
869
|
+
next unless resource = file.to_resource
|
870
|
+
next if catalog.resource(resource.ref)
|
871
|
+
|
872
|
+
Puppet.debug("Using settings: adding file resource '#{key}': '#{resource.inspect}'")
|
873
|
+
|
874
|
+
catalog.add_resource(resource)
|
875
|
+
end
|
876
|
+
|
877
|
+
add_user_resources(catalog, sections)
|
878
|
+
|
879
|
+
catalog
|
880
|
+
end
|
881
|
+
|
882
|
+
# Convert our list of config settings into a configuration file.
|
883
|
+
def to_config
|
884
|
+
str = %{The configuration file for #{Puppet.run_mode.name}. Note that this file
|
885
|
+
is likely to have unused settings in it; any setting that's
|
886
|
+
valid anywhere in Puppet can be in any config file, even if it's not used.
|
887
|
+
|
888
|
+
Every section can specify three special parameters: owner, group, and mode.
|
889
|
+
These parameters affect the required permissions of any files specified after
|
890
|
+
their specification. Puppet will sometimes use these parameters to check its
|
891
|
+
own configured state, so they can be used to make Puppet a bit more self-managing.
|
892
|
+
|
893
|
+
The file format supports octothorpe-commented lines, but not partial-line comments.
|
894
|
+
|
895
|
+
Generated on #{Time.now}.
|
896
|
+
|
897
|
+
}.gsub(/^/, "# ")
|
898
|
+
|
899
|
+
# Add a section heading that matches our name.
|
900
|
+
str += "[#{preferred_run_mode}]\n"
|
901
|
+
eachsection do |section|
|
902
|
+
persection(section) do |obj|
|
903
|
+
str += obj.to_config + "\n" unless obj.name == :genconfig
|
904
|
+
end
|
905
|
+
end
|
906
|
+
|
907
|
+
return str
|
908
|
+
end
|
909
|
+
|
910
|
+
# Convert to a parseable manifest
|
911
|
+
def to_manifest
|
912
|
+
catalog = to_catalog
|
913
|
+
catalog.resource_refs.collect do |ref|
|
914
|
+
catalog.resource(ref).to_manifest
|
915
|
+
end.join("\n\n")
|
916
|
+
end
|
917
|
+
|
918
|
+
# Create the necessary objects to use a section. This is idempotent;
|
919
|
+
# you can 'use' a section as many times as you want.
|
920
|
+
def use(*sections)
|
921
|
+
sections = sections.collect { |s| s.to_sym }
|
922
|
+
sections = sections.reject { |s| @used.include?(s) }
|
923
|
+
|
924
|
+
return if sections.empty?
|
925
|
+
|
926
|
+
begin
|
927
|
+
catalog = to_catalog(*sections).to_ral
|
928
|
+
rescue => detail
|
929
|
+
Puppet.log_and_raise(detail, "Could not create resources for managing Puppet's files and directories in sections #{sections.inspect}: #{detail}")
|
930
|
+
end
|
931
|
+
|
932
|
+
catalog.host_config = false
|
933
|
+
catalog.apply do |transaction|
|
934
|
+
if transaction.any_failed?
|
935
|
+
report = transaction.report
|
936
|
+
status_failures = report.resource_statuses.values.select { |r| r.failed? }
|
937
|
+
status_fail_msg = status_failures.
|
938
|
+
collect(&:events).
|
939
|
+
flatten.
|
940
|
+
select { |event| event.status == 'failure' }.
|
941
|
+
collect { |event| "#{event.resource}: #{event.message}" }.join("; ")
|
942
|
+
|
943
|
+
raise "Got #{status_failures.length} failure(s) while initializing: #{status_fail_msg}"
|
944
|
+
end
|
945
|
+
end
|
946
|
+
|
947
|
+
sections.each { |s| @used << s }
|
948
|
+
@used.uniq!
|
949
|
+
end
|
950
|
+
|
951
|
+
def valid?(param)
|
952
|
+
param = param.to_sym
|
953
|
+
@config.has_key?(param)
|
954
|
+
end
|
955
|
+
|
956
|
+
def uninterpolated_value(param, environment = nil)
|
957
|
+
Puppet.deprecation_warning("Puppet.settings.uninterpolated_value is deprecated. Use Puppet.settings.value instead")
|
958
|
+
param = param.to_sym
|
959
|
+
environment &&= environment.to_sym
|
960
|
+
|
961
|
+
values(environment, self.preferred_run_mode).lookup(param)
|
962
|
+
end
|
963
|
+
|
964
|
+
# Retrieve an object that can be used for looking up values of configuration
|
965
|
+
# settings.
|
966
|
+
#
|
967
|
+
# @param environment [Symbol] The name of the environment in which to lookup
|
968
|
+
# @param section [Symbol] The name of the configuration section in which to lookup
|
969
|
+
# @return [Puppet::Settings::ChainedValues] An object to perform lookups
|
970
|
+
# @api public
|
971
|
+
def values(environment, section)
|
972
|
+
ChainedValues.new(
|
973
|
+
section,
|
974
|
+
environment,
|
975
|
+
value_sets_for(environment, section),
|
976
|
+
@config)
|
977
|
+
end
|
978
|
+
|
979
|
+
# Find the correct value using our search path.
|
980
|
+
#
|
981
|
+
# @param param [String, Symbol] The value to look up
|
982
|
+
# @param environment [String, Symbol] The environment to check for the value
|
983
|
+
# @param bypass_interpolation [true, false] Whether to skip interpolation
|
984
|
+
#
|
985
|
+
# @return [Object] The looked up value
|
986
|
+
#
|
987
|
+
# @raise [InterpolationError]
|
988
|
+
def value(param, environment = nil, bypass_interpolation = false)
|
989
|
+
param = param.to_sym
|
990
|
+
environment &&= environment.to_sym
|
991
|
+
|
992
|
+
setting = @config[param]
|
993
|
+
|
994
|
+
# Short circuit to nil for undefined settings.
|
995
|
+
return nil if setting.nil?
|
996
|
+
|
997
|
+
# Check the cache first. It needs to be a per-environment
|
998
|
+
# cache so that we don't spread values from one env
|
999
|
+
# to another.
|
1000
|
+
if @cache[environment||"none"].has_key?(param)
|
1001
|
+
return @cache[environment||"none"][param]
|
1002
|
+
elsif bypass_interpolation
|
1003
|
+
val = values(environment, self.preferred_run_mode).lookup(param)
|
1004
|
+
else
|
1005
|
+
val = values(environment, self.preferred_run_mode).interpolate(param)
|
1006
|
+
end
|
1007
|
+
|
1008
|
+
@cache[environment||"none"][param] = val
|
1009
|
+
val
|
1010
|
+
end
|
1011
|
+
|
1012
|
+
##
|
1013
|
+
# (#15337) All of the logic to determine the configuration file to use
|
1014
|
+
# should be centralized into this method. The simplified approach is:
|
1015
|
+
#
|
1016
|
+
# 1. If there is an explicit configuration file, use that. (--confdir or
|
1017
|
+
# --config)
|
1018
|
+
# 2. If we're running as a root process, use the system puppet.conf
|
1019
|
+
# (usually /etc/puppet/puppet.conf)
|
1020
|
+
# 3. Otherwise, use the user puppet.conf (usually ~/.puppet/puppet.conf)
|
1021
|
+
#
|
1022
|
+
# @api private
|
1023
|
+
# @todo this code duplicates {Puppet::Util::RunMode#which_dir} as described
|
1024
|
+
# in {http://projects.puppetlabs.com/issues/16637 #16637}
|
1025
|
+
def which_configuration_file
|
1026
|
+
if explicit_config_file? or Puppet.features.root? then
|
1027
|
+
return main_config_file
|
1028
|
+
else
|
1029
|
+
return user_config_file
|
1030
|
+
end
|
1031
|
+
end
|
1032
|
+
|
1033
|
+
|
1034
|
+
private
|
1035
|
+
|
1036
|
+
def get_config_file_default(default)
|
1037
|
+
obj = nil
|
1038
|
+
unless obj = @config[default]
|
1039
|
+
raise ArgumentError, "Unknown default #{default}"
|
1040
|
+
end
|
1041
|
+
|
1042
|
+
raise ArgumentError, "Default #{default} is not a file" unless obj.is_a? FileSetting
|
1043
|
+
|
1044
|
+
obj
|
1045
|
+
end
|
1046
|
+
|
1047
|
+
def add_user_resources(catalog, sections)
|
1048
|
+
return unless Puppet.features.root?
|
1049
|
+
return if Puppet.features.microsoft_windows?
|
1050
|
+
return unless self[:mkusers]
|
1051
|
+
|
1052
|
+
@config.each do |name, setting|
|
1053
|
+
next unless setting.respond_to?(:owner)
|
1054
|
+
next unless sections.nil? or sections.include?(setting.section)
|
1055
|
+
|
1056
|
+
if user = setting.owner and user != "root" and catalog.resource(:user, user).nil?
|
1057
|
+
resource = Puppet::Resource.new(:user, user, :parameters => {:ensure => :present})
|
1058
|
+
resource[:gid] = self[:group] if self[:group]
|
1059
|
+
catalog.add_resource resource
|
1060
|
+
end
|
1061
|
+
if group = setting.group and ! %w{root wheel}.include?(group) and catalog.resource(:group, group).nil?
|
1062
|
+
catalog.add_resource Puppet::Resource.new(:group, group, :parameters => {:ensure => :present})
|
1063
|
+
end
|
1064
|
+
end
|
1065
|
+
end
|
1066
|
+
|
1067
|
+
# Yield each search source in turn.
|
1068
|
+
def value_sets_for(environment, mode)
|
1069
|
+
searchpath(environment).collect do |name|
|
1070
|
+
case name
|
1071
|
+
when :cli, :memory, :application_defaults, :overridden_defaults
|
1072
|
+
@value_sets[name]
|
1073
|
+
when :run_mode
|
1074
|
+
if @configuration_file
|
1075
|
+
section = @configuration_file.sections[mode]
|
1076
|
+
if section
|
1077
|
+
ValuesFromSection.new(mode, section)
|
1078
|
+
end
|
1079
|
+
end
|
1080
|
+
else
|
1081
|
+
values_from_section = nil
|
1082
|
+
if @configuration_file
|
1083
|
+
if section = @configuration_file.sections[name]
|
1084
|
+
values_from_section = ValuesFromSection.new(name, section)
|
1085
|
+
end
|
1086
|
+
end
|
1087
|
+
if values_from_section.nil? && @global_defaults_initialized
|
1088
|
+
values_from_section = ValuesFromCurrentEnvironment.new(name)
|
1089
|
+
end
|
1090
|
+
values_from_section
|
1091
|
+
end
|
1092
|
+
end.compact
|
1093
|
+
end
|
1094
|
+
|
1095
|
+
# This method just turns a file in to a hash of hashes.
|
1096
|
+
def parse_file(file)
|
1097
|
+
@config_file_parser.parse_file(file, read_file(file))
|
1098
|
+
end
|
1099
|
+
|
1100
|
+
# Read the file in.
|
1101
|
+
def read_file(file)
|
1102
|
+
begin
|
1103
|
+
return File.read(file)
|
1104
|
+
rescue Errno::ENOENT
|
1105
|
+
raise ArgumentError, "No such file #{file}", $!.backtrace
|
1106
|
+
rescue Errno::EACCES
|
1107
|
+
raise ArgumentError, "Permission denied to file #{file}", $!.backtrace
|
1108
|
+
end
|
1109
|
+
end
|
1110
|
+
|
1111
|
+
# Private method for internal test use only; allows to do a comprehensive clear of all settings between tests.
|
1112
|
+
#
|
1113
|
+
# @return nil
|
1114
|
+
def clear_everything_for_tests()
|
1115
|
+
unsafe_clear(true, true)
|
1116
|
+
@global_defaults_initialized = false
|
1117
|
+
@app_defaults_initialized = false
|
1118
|
+
end
|
1119
|
+
private :clear_everything_for_tests
|
1120
|
+
|
1121
|
+
def explicit_config_file?
|
1122
|
+
# Figure out if the user has provided an explicit configuration file. If
|
1123
|
+
# so, return the path to the file, if not return nil.
|
1124
|
+
#
|
1125
|
+
# The easiest way to determine whether an explicit one has been specified
|
1126
|
+
# is to simply attempt to evaluate the value of ":config". This will
|
1127
|
+
# obviously be successful if they've passed an explicit value for :config,
|
1128
|
+
# but it will also result in successful interpolation if they've only
|
1129
|
+
# passed an explicit value for :confdir.
|
1130
|
+
#
|
1131
|
+
# If they've specified neither, then the interpolation will fail and we'll
|
1132
|
+
# get an exception.
|
1133
|
+
#
|
1134
|
+
begin
|
1135
|
+
return true if self[:config]
|
1136
|
+
rescue InterpolationError
|
1137
|
+
# This means we failed to interpolate, which means that they didn't
|
1138
|
+
# explicitly specify either :config or :confdir... so we'll fall out to
|
1139
|
+
# the default value.
|
1140
|
+
return false
|
1141
|
+
end
|
1142
|
+
end
|
1143
|
+
private :explicit_config_file?
|
1144
|
+
|
1145
|
+
# Lookup configuration setting value through a chain of different value sources.
|
1146
|
+
#
|
1147
|
+
# @api public
|
1148
|
+
class ChainedValues
|
1149
|
+
# @see Puppet::Settings.values
|
1150
|
+
# @api private
|
1151
|
+
def initialize(mode, environment, value_sets, defaults)
|
1152
|
+
@mode = mode
|
1153
|
+
@environment = environment
|
1154
|
+
@value_sets = value_sets
|
1155
|
+
@defaults = defaults
|
1156
|
+
end
|
1157
|
+
|
1158
|
+
# Lookup the uninterpolated value.
|
1159
|
+
#
|
1160
|
+
# @param name [Symbol] The configuration setting name to look up
|
1161
|
+
# @return [Object] The configuration setting value or nil if the setting is not known
|
1162
|
+
# @api public
|
1163
|
+
def lookup(name)
|
1164
|
+
set = @value_sets.find do |set|
|
1165
|
+
set.include?(name)
|
1166
|
+
end
|
1167
|
+
if set
|
1168
|
+
value = set.lookup(name)
|
1169
|
+
if !value.nil?
|
1170
|
+
return value
|
1171
|
+
end
|
1172
|
+
end
|
1173
|
+
|
1174
|
+
@defaults[name].default
|
1175
|
+
end
|
1176
|
+
|
1177
|
+
# Lookup the interpolated value. All instances of `$name` in the value will
|
1178
|
+
# be replaced by performing a lookup of `name` and substituting the text
|
1179
|
+
# for `$name` in the original value. This interpolation is only performed
|
1180
|
+
# if the looked up value is a String.
|
1181
|
+
#
|
1182
|
+
# @param name [Symbol] The configuration setting name to look up
|
1183
|
+
# @return [Object] The configuration setting value or nil if the setting is not known
|
1184
|
+
# @api public
|
1185
|
+
def interpolate(name)
|
1186
|
+
setting = @defaults[name]
|
1187
|
+
|
1188
|
+
if setting
|
1189
|
+
val = lookup(name)
|
1190
|
+
# if we interpolate code, all hell breaks loose.
|
1191
|
+
if name == :code
|
1192
|
+
val
|
1193
|
+
else
|
1194
|
+
# Convert it if necessary
|
1195
|
+
begin
|
1196
|
+
val = convert(val)
|
1197
|
+
rescue InterpolationError => err
|
1198
|
+
# This happens because we don't have access to the param name when the
|
1199
|
+
# exception is originally raised, but we want it in the message
|
1200
|
+
raise InterpolationError, "Error converting value for param '#{name}': #{err}", err.backtrace
|
1201
|
+
end
|
1202
|
+
|
1203
|
+
setting.munge(val)
|
1204
|
+
end
|
1205
|
+
else
|
1206
|
+
nil
|
1207
|
+
end
|
1208
|
+
end
|
1209
|
+
|
1210
|
+
private
|
1211
|
+
|
1212
|
+
def convert(value)
|
1213
|
+
return nil if value.nil?
|
1214
|
+
return value unless value.is_a? String
|
1215
|
+
value.gsub(/\$(\w+)|\$\{(\w+)\}/) do |value|
|
1216
|
+
varname = $2 || $1
|
1217
|
+
if varname == "environment"
|
1218
|
+
@environment
|
1219
|
+
elsif varname == "run_mode"
|
1220
|
+
@mode
|
1221
|
+
elsif !(pval = interpolate(varname.to_sym)).nil?
|
1222
|
+
pval
|
1223
|
+
else
|
1224
|
+
raise InterpolationError, "Could not find value for #{value}"
|
1225
|
+
end
|
1226
|
+
end
|
1227
|
+
end
|
1228
|
+
end
|
1229
|
+
|
1230
|
+
class Values
|
1231
|
+
def initialize(name, defaults)
|
1232
|
+
@name = name
|
1233
|
+
@values = {}
|
1234
|
+
@defaults = defaults
|
1235
|
+
end
|
1236
|
+
|
1237
|
+
def include?(name)
|
1238
|
+
@values.include?(name)
|
1239
|
+
end
|
1240
|
+
|
1241
|
+
def set(name, value)
|
1242
|
+
if !@defaults[name]
|
1243
|
+
raise ArgumentError,
|
1244
|
+
"Attempt to assign a value to unknown setting #{name.inspect}"
|
1245
|
+
end
|
1246
|
+
|
1247
|
+
if @defaults[name].has_hook?
|
1248
|
+
@defaults[name].handle(value)
|
1249
|
+
end
|
1250
|
+
|
1251
|
+
@values[name] = value
|
1252
|
+
end
|
1253
|
+
|
1254
|
+
def lookup(name)
|
1255
|
+
@values[name]
|
1256
|
+
end
|
1257
|
+
end
|
1258
|
+
|
1259
|
+
class ValuesFromSection
|
1260
|
+
def initialize(name, section)
|
1261
|
+
@name = name
|
1262
|
+
@section = section
|
1263
|
+
end
|
1264
|
+
|
1265
|
+
def include?(name)
|
1266
|
+
!@section.setting(name).nil?
|
1267
|
+
end
|
1268
|
+
|
1269
|
+
def lookup(name)
|
1270
|
+
setting = @section.setting(name)
|
1271
|
+
if setting
|
1272
|
+
setting.value
|
1273
|
+
end
|
1274
|
+
end
|
1275
|
+
end
|
1276
|
+
|
1277
|
+
# @api private
|
1278
|
+
class ValuesFromCurrentEnvironment
|
1279
|
+
def initialize(desired_environment)
|
1280
|
+
@desired_environment = desired_environment
|
1281
|
+
end
|
1282
|
+
|
1283
|
+
def include?(name)
|
1284
|
+
return false unless name == :modulepath || name == :manifest
|
1285
|
+
if i = instance
|
1286
|
+
i.include?(name)
|
1287
|
+
end
|
1288
|
+
end
|
1289
|
+
|
1290
|
+
def lookup(name)
|
1291
|
+
return nil unless name == :modulepath || name == :manifest
|
1292
|
+
if i = instance
|
1293
|
+
i[name]
|
1294
|
+
end
|
1295
|
+
end
|
1296
|
+
|
1297
|
+
private
|
1298
|
+
|
1299
|
+
def instance
|
1300
|
+
unless @instance
|
1301
|
+
env = Puppet.lookup(:current_environment)
|
1302
|
+
if env.name == @desired_environment
|
1303
|
+
@instance = {
|
1304
|
+
:modulepath => env.full_modulepath.join(File::PATH_SEPARATOR),
|
1305
|
+
:manifest => env.manifest,
|
1306
|
+
}
|
1307
|
+
end
|
1308
|
+
end
|
1309
|
+
return @instance
|
1310
|
+
end
|
1311
|
+
end
|
1312
|
+
end
|