summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--manifests/puppetdb.pp6
-rw-r--r--manifests/puppetserver.pp2
2 files changed, 4 insertions, 4 deletions
diff --git a/manifests/puppetdb.pp b/manifests/puppetdb.pp
index ddfb73c..2eaf01a 100644
--- a/manifests/puppetdb.pp
+++ b/manifests/puppetdb.pp
@@ -1,7 +1,7 @@
class profiles::puppetdb {
- # exec { 'puppetdb ssl-setup':
- # creates => '/etc/puppetlabs/puppetdb/ssl/{ca,private,public}.pem'
- # }
+ exec { '/opt/puppetlabs/bin/puppetdb ssl-setup':
+ creates => '/etc/puppetlabs/puppetdb/ssl/ca.pem'
+ }
class { 'puppetdb':
listen_address => '::',
diff --git a/manifests/puppetserver.pp b/manifests/puppetserver.pp
index 7467600..3999b03 100644
--- a/manifests/puppetserver.pp
+++ b/manifests/puppetserver.pp
@@ -2,7 +2,7 @@ class profiles::puppetserver (
# TODO provide sensible default here, to allow us to bootstrap
# ourselves
Hash $hiera,
- String $pupetdb_server = $::fqdn,
+ String $puppetdb_server = $::fqdn,
) {
# required for the git hook
ensure_packages(['ruby'])