Class: Puppet::Resource::Catalog::ActiveRecord
- Inherits:
-
Indirector::ActiveRecord
- Object
- Indirector::Terminus
- Indirector::ActiveRecord
- Puppet::Resource::Catalog::ActiveRecord
- Defined in:
- lib/vendor/puppet/indirector/catalog/active_record.rb
Constant Summary
Constants included from Util
Util::AbsolutePathPosix, Util::AbsolutePathWindows
Constants included from Util::Docs
Instance Attribute Summary
Attributes included from Util::Docs
Instance Method Summary collapse
-
#find(request) ⇒ Object
If we can find the host, then return a catalog with the host’s resources as the vertices.
-
#save(request) ⇒ Object
Save the values from a Facts instance as the facts on a Rails Host instance.
Methods inherited from Indirector::ActiveRecord
#ar_model, #initialize, use_ar_model
Methods inherited from Indirector::Terminus
abstract_terminus?, const2name, #indirection, indirection_name, inherited, #initialize, mark_as_abstract_terminus, #model, model, #name, name2const, register_terminus_class, terminus_class, terminus_classes, #terminus_type
Methods included from Util::InstanceLoader
#instance_docs, #instance_hash, #instance_load, #instance_loader, #instance_loading?, #loaded_instance, #loaded_instances
Methods included from Util
absolute_path?, activerecord_version, benchmark, binread, chuser, classproxy, #execfail, #execpipe, execute, execute_posix, execute_windows, logmethods, memory, path_to_uri, proxy, replace_file, safe_posix_fork, symbolize, symbolizehash, symbolizehash!, synchronize_on, thinmark, #threadlock, uri_to_path, wait_for_output, which, withumask
Methods included from Util::POSIX
#get_posix_field, #gid, #idfield, #methodbyid, #methodbyname, #search_posix_field, #uid
Methods included from Util::Docs
#desc, #dochook, #doctable, #markdown_definitionlist, #markdown_header, #nodoc?, #pad, scrub
Constructor Details
This class inherits a constructor from Puppet::Indirector::ActiveRecord
Instance Method Details
#find(request) ⇒ Object
If we can find the host, then return a catalog with the host’s resources as the vertices.
10 11 12 13 14 15 16 17 18 19 20 21 |
# File 'lib/vendor/puppet/indirector/catalog/active_record.rb', line 10 def find(request) return nil unless request.[:cache_integration_hack] return nil unless host = ar_model.find_by_name(request.key) catalog = Puppet::Resource::Catalog.new(host.name) host.resources.each do |resource| catalog.add_resource resource.to_transportable end catalog end |
#save(request) ⇒ Object
Save the values from a Facts instance as the facts on a Rails Host instance.
24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 |
# File 'lib/vendor/puppet/indirector/catalog/active_record.rb', line 24 def save(request) catalog = request.instance host = ar_model.find_by_name(catalog.name) || ar_model.create(:name => catalog.name) host.railsmark "Saved catalog to database" do host.merge_resources(catalog.vertices) host.last_compile = Time.now if node = Puppet::Node.indirection.find(catalog.name) host.ip = node.parameters["ipaddress"] host.environment = node.environment.to_s end host.save end end |