Puppet Class: psick::puppet::install_ca
- Defined in:
- manifests/puppet/install_ca.pp
Overview
Class psick::puppet::install_ca adds Puppet’s CA to the list of CAs trusted by the system. Useful for any application that uses a CA PKI infrastructure.
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 |
# File 'manifests/puppet/install_ca.pp', line 4
class psick::puppet::install_ca (
Optional[String] $ca_ssl_dir = undef,
Optional[String] $ca_setup_command = undef,
Optional[String] $ca_update_command = undef,
Optional[String] $ca_package = undef,
Boolean $manage = $psick::manage,
Boolean $noop_manage = $psick::noop_manage,
Boolean $noop_value = $psick::noop_value,
) {
if $manage {
if $noop_manage {
noop($noop_value)
}
if $ca_package {
$package_notify = $ca_setup_command ? {
undef => undef,
default => Exec['setup ca certs'],
}
package { $ca_package:
notify => $package_notify,
}
}
if $ca_setup_command {
exec { 'setup ca certs':
refreshonly => true,
command => $ca_setup_command,
path => $facts['path'],
}
}
if $ca_ssl_dir {
file { "${ca_ssl_dir}/Puppet_CA.crt":
ensure => file,
source => 'file:///etc/puppetlabs/puppet/ssl/certs/ca.pem',
notify => Exec['update ca certs'],
}
}
if $ca_update_command {
exec { 'update ca certs':
refreshonly => true,
command => $ca_update_command,
path => $facts['path'],
}
}
}
}
|