Class: Puppet::SSL::Key::File

Inherits:
Indirector::SslFile show all
Defined in:
lib/vendor/puppet/indirector/key/file.rb

Constant Summary

Constants included from Util

Util::AbsolutePathPosix, Util::AbsolutePathWindows

Constants included from Util::Docs

Util::Docs::HEADER_LEVELS

Instance Attribute Summary

Attributes included from Util::Docs

#doc, #nodoc

Instance Method Summary collapse

Methods inherited from Indirector::SslFile

#ca?, ca_location, collection_directory, file_location, #find, #initialize, #path, #search, store_at, store_ca_at, store_in

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::SslFile

Instance Method Details

#destroy(request) ⇒ Object

Remove the public key, in addition to the private key



20
21
22
23
24
25
26
27
28
29
30
# File 'lib/vendor/puppet/indirector/key/file.rb', line 20

def destroy(request)
  super

  return unless FileTest.exist?(public_key_path(request.key))

  begin
    File.unlink(public_key_path(request.key))
  rescue => detail
    raise Puppet::Error, "Could not remove #{request.key} public key: #{detail}"
  end
end

#public_key_path(name) ⇒ Object

Where should we store the public key?



11
12
13
14
15
16
17
# File 'lib/vendor/puppet/indirector/key/file.rb', line 11

def public_key_path(name)
  if ca?(name)
    Puppet[:capub]
  else
    File.join(Puppet[:publickeydir], name.to_s + ".pem")
  end
end

#save(request) ⇒ Object

Save the public key, in addition to the private key.



33
34
35
36
37
38
39
40
41
# File 'lib/vendor/puppet/indirector/key/file.rb', line 33

def save(request)
  super

  begin
    Puppet.settings.writesub(:publickeydir, public_key_path(request.key)) { |f| f.print request.instance.content.public_key.to_pem }
  rescue => detail
    raise Puppet::Error, "Could not write #{request.key}: #{detail}"
  end
end