diff options
| author | Luke Kanies <luke@madstop.com> | 2008-03-10 10:37:57 -0700 |
|---|---|---|
| committer | Luke Kanies <luke@madstop.com> | 2008-04-15 21:34:04 -0500 |
| commit | ec5bdf3b2d089d53f1f8fd986df83768564e79ac (patch) | |
| tree | f2246b87471efe1f4b2689afb2a4abc1d2319843 /lib/puppet/indirector/certificate | |
| parent | bb87464f75cf3ea2e17bb660e7d1880bc36e141f (diff) | |
| download | puppet-ec5bdf3b2d089d53f1f8fd986df83768564e79ac.tar.gz puppet-ec5bdf3b2d089d53f1f8fd986df83768564e79ac.tar.xz puppet-ec5bdf3b2d089d53f1f8fd986df83768564e79ac.zip | |
The basics for the certificate and certificate request
indirection terminii are done. I need to move most of
the test code to a shared behaviour now.
Diffstat (limited to 'lib/puppet/indirector/certificate')
| -rw-r--r-- | lib/puppet/indirector/certificate/file.rb | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/puppet/indirector/certificate/file.rb b/lib/puppet/indirector/certificate/file.rb new file mode 100644 index 000000000..9e2e8ed99 --- /dev/null +++ b/lib/puppet/indirector/certificate/file.rb @@ -0,0 +1,8 @@ +require 'puppet/indirector/ssl_file' +require 'puppet/ssl/certificate' + +class Puppet::SSL::Certificate::File < Puppet::Indirector::SslFile + desc "Manage SSL certificates on disk." + + store_in :certdir +end |
