diff options
author | Jan Dittberner <jandd@cacert.org> | 2019-07-21 17:20:08 +0200 |
---|---|---|
committer | Jan Dittberner <jandd@cacert.org> | 2019-07-21 17:20:08 +0200 |
commit | bdec797f60564b08b7d3f7073431f52a9fcda72d (patch) | |
tree | 0d25e76a079231bac54d208079050a8bd1a0293a | |
parent | 913aa7d80c93428091ecdc98c3f7eeffbebe7041 (diff) | |
download | cacert-puppet-bdec797f60564b08b7d3f7073431f52a9fcda72d.tar.gz cacert-puppet-bdec797f60564b08b7d3f7073431f52a9fcda72d.tar.xz cacert-puppet-bdec797f60564b08b7d3f7073431f52a9fcda72d.zip |
Fix syntax error in resource declaration
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | sitemodules/profiles/manifests/icinga2_master.pp | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -6,3 +6,4 @@ __pycache__ *.pyc *.pyo .*.swp +tags diff --git a/sitemodules/profiles/manifests/icinga2_master.pp b/sitemodules/profiles/manifests/icinga2_master.pp index fe57804..47028f0 100644 --- a/sitemodules/profiles/manifests/icinga2_master.pp +++ b/sitemodules/profiles/manifests/icinga2_master.pp @@ -106,7 +106,7 @@ class profiles::icinga2_master ( require => Postgresql::Server::Db['icingaweb2'], } - class { '::icingaweb2::module::monitoring', + class { '::icingaweb2::module::monitoring': ido_type => 'pgsql', ido_host => 'localhost', ido_port => 5432, |