summaryrefslogtreecommitdiff
path: root/modules/profiles/manifests/puppetdb.pp
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2021-12-30 00:54:36 +0100
committerHugo Hörnquist <hugo@lysator.liu.se>2021-12-30 01:00:50 +0100
commitbc41c4ba37f984a7d8624bd32e62a8cbe5d5a4e4 (patch)
treed4d8e7d430ea86fbbd9ba7c9a719dba2c8fcd5c9 /modules/profiles/manifests/puppetdb.pp
parentCommon puppet setup. (diff)
downloadwebdav_server-bc41c4ba37f984a7d8624bd32e62a8cbe5d5a4e4.tar.gz
webdav_server-bc41c4ba37f984a7d8624bd32e62a8cbe5d5a4e4.tar.xz
move
Diffstat (limited to 'modules/profiles/manifests/puppetdb.pp')
-rw-r--r--modules/profiles/manifests/puppetdb.pp10
1 files changed, 10 insertions, 0 deletions
diff --git a/modules/profiles/manifests/puppetdb.pp b/modules/profiles/manifests/puppetdb.pp
new file mode 100644
index 0000000..ddfb73c
--- /dev/null
+++ b/modules/profiles/manifests/puppetdb.pp
@@ -0,0 +1,10 @@
+class profiles::puppetdb {
+ # exec { 'puppetdb ssl-setup':
+ # creates => '/etc/puppetlabs/puppetdb/ssl/{ca,private,public}.pem'
+ # }
+
+ class { 'puppetdb':
+ listen_address => '::',
+ disable_ssl => false,
+ }
+}