blob: 056d037ddb7ae1ad89539c9814f37525b360da39 (
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
|