diff options
Diffstat (limited to 'puppet/modules/x509/manifests/cert.pp')
| m--------- | puppet/modules/x509 | 0 | ||||
| -rw-r--r-- | puppet/modules/x509/manifests/cert.pp | 34 | 
2 files changed, 34 insertions, 0 deletions
diff --git a/puppet/modules/x509 b/puppet/modules/x509 deleted file mode 160000 -Subproject 19254a38c1c372ae7912ea9f15500b9b1cbffe8 diff --git a/puppet/modules/x509/manifests/cert.pp b/puppet/modules/x509/manifests/cert.pp new file mode 100644 index 00000000..0aafb76d --- /dev/null +++ b/puppet/modules/x509/manifests/cert.pp @@ -0,0 +1,34 @@ +define x509::cert ( +  $content = 'absent', +  $source  = 'absent' +) { +  include x509::variables +  include x509::base + +  file { "${x509::variables::certs}/${name}.crt": +    ensure  => file, +    mode    => '0444', +    group   => 'ssl-cert', +    require => Package['ssl-cert'] +  } + +  case $content { +    'absent': { +      $real_source = $source ? { +        'absent' => [ +                     "puppet:///modules/site_x509/certs/${::fqdn}/${name}.crt", +                     "puppet:///modules/site_x509/certs/${name}.crt" +                     ], +        default => "puppet:///$source", +      } +      File["${x509::variables::certs}/${name}.crt"] { +        source => $real_source +      } +    } +    default: { +      File["${x509::variables::certs}/${name}.crt"] { +        content => $content +      } +    } +  } +}  | 
