From e826367eca639523a5504887244e771deb8e78c8 Mon Sep 17 00:00:00 2001 From: Micah Anderson Date: Mon, 26 Nov 2012 15:57:26 -0500 Subject: fix incorrectly specified source param, should be content --- manifests/cert.pp | 2 +- manifests/key.pp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/manifests/cert.pp b/manifests/cert.pp index da2b253..13e7ea4 100644 --- a/manifests/cert.pp +++ b/manifests/cert.pp @@ -27,7 +27,7 @@ define x509::cert ( } default: { File["${x509::variables::certs}/${name}.crt"] { - source => $content + content => $content } } } diff --git a/manifests/key.pp b/manifests/key.pp index 999b767..7333965 100644 --- a/manifests/key.pp +++ b/manifests/key.pp @@ -27,7 +27,7 @@ define x509::key ( } default: { File["${x509::variables::keys}/${name}.key"] { - source => $content + content => $content } } } -- cgit v1.2.3