summaryrefslogtreecommitdiffstats
path: root/lib/puppet/indirector/key/ca.rb
blob: 62dd77589df05ce969fa35e3f2e7afc558fbd599 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
require 'puppet/indirector/ssl_file'
require 'puppet/ssl/key'

class Puppet::SSL::Key::Ca < Puppet::Indirector::SslFile
    desc "Manage the CA's private on disk.  This terminus *only* works
        with the CA key, because that's the only key that the CA ever interacts
        with."

    store_in :privatekeydir

    store_ca_at :cakey
end