summaryrefslogtreecommitdiff
path: root/manifests/cert.pp
diff options
context:
space:
mode:
authorMicah Anderson <micah@riseup.net>2012-11-22 15:44:48 -0500
committerMicah Anderson <micah@riseup.net>2012-11-22 15:44:48 -0500
commitc45e3f01141f9740030fa1d5670e7037c86c4b5e (patch)
tree4af2f318298baba01f524ef4166ccfb787f41ec9 /manifests/cert.pp
parent932d98c71576cf64d14760f2dd7b275056d5de0c (diff)
add more flexible source/content options
this makes it so you can do one of a few things: 1. pass no $content, or $source and the default will be taken (search path checking first for site_x509/{CAs,keys,certs}/$::fqdn/${name}.crt, secondly for site_x509/{CAs,keys,certs}/${name}.crt 2. pass $content, allowing you to specify templates etc. 3. pass $source, allowing you to specify any source you wish
Diffstat (limited to 'manifests/cert.pp')
-rw-r--r--manifests/cert.pp28
1 files changed, 24 insertions, 4 deletions
diff --git a/manifests/cert.pp b/manifests/cert.pp
index ceeb085..da2b253 100644
--- a/manifests/cert.pp
+++ b/manifests/cert.pp
@@ -1,14 +1,34 @@
define x509::cert (
- $source = "puppet:///modules/site_x509/files/certs/${name}.crt",
+ $content = 'absent',
+ $source = 'absent'
) {
include x509::variables
include x509::base
- file { "${x509::variables::certs}/${name}.crt" :
+ file { "${x509::variables::certs}/${name}.crt":
ensure => file,
mode => '0444',
group => 'ssl-cert',
- source => $source,
- require => Package['openssl'],
+ require => Package['openssl']
+ }
+
+ 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"] {
+ source => $content
+ }
+ }
}
}