summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2023-05-03 11:05:02 +0200
committerHugo Hörnquist <hugo@lysator.liu.se>2023-05-03 12:12:12 +0200
commit22ab33d5d6b436f75e0ae8f76c32c56a5cffee61 (patch)
tree12f490282a3514d8ce261c4e6b43d44421bef023
parentPuppetboard: allow foreign puppetdb. (diff)
downloadprofiles-22ab33d5d6b436f75e0ae8f76c32c56a5cffee61.tar.gz
profiles-22ab33d5d6b436f75e0ae8f76c32c56a5cffee61.tar.xz
Puppetboard: Change require to after on puppetdb
Require disables us from running them on different nodes. This will hopefully allow them to run on different nodes, but maintain their relative order if run on the same node.
-rw-r--r--manifests/puppetboard.pp2
1 files changed, 1 insertions, 1 deletions
diff --git a/manifests/puppetboard.pp b/manifests/puppetboard.pp
index 9b57038..6d49da8 100644
--- a/manifests/puppetboard.pp
+++ b/manifests/puppetboard.pp
@@ -25,7 +25,7 @@ class profiles::puppetboard (
class { 'puppetboard':
manage_git => true,
manage_virtualenv => true,
- require => Class['puppetdb'],
+ after => Class['puppetdb'],
puppetdb_port => $puppetdb_port,
# Required for /metrics/ to work
puppetdb_host => $puppetdb_host,