diff options
author | Jan Dittberner <jandd@cacert.org> | 2019-07-21 17:23:47 +0200 |
---|---|---|
committer | Jan Dittberner <jandd@cacert.org> | 2019-07-21 17:23:47 +0200 |
commit | 2c677b7f159604200851e3781e54dfd0a0320f55 (patch) | |
tree | 71667a3ac37ad319f6e388a0231b79e68fa536f2 | |
parent | bdec797f60564b08b7d3f7073431f52a9fcda72d (diff) | |
download | cacert-puppet-2c677b7f159604200851e3781e54dfd0a0320f55.tar.gz cacert-puppet-2c677b7f159604200851e3781e54dfd0a0320f55.tar.xz cacert-puppet-2c677b7f159604200851e3781e54dfd0a0320f55.zip |
Make db_port an integer
-rw-r--r-- | sitemodules/profiles/manifests/icinga2_master.pp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sitemodules/profiles/manifests/icinga2_master.pp b/sitemodules/profiles/manifests/icinga2_master.pp index 47028f0..8e0e820 100644 --- a/sitemodules/profiles/manifests/icinga2_master.pp +++ b/sitemodules/profiles/manifests/icinga2_master.pp @@ -100,7 +100,7 @@ class profiles::icinga2_master ( import_schema => true, db_type => 'pgsql', db_host => 'localhost', - db_port => '5432', + db_port => 5432, db_username => 'icingaweb2', db_password => $web2_database_password, require => Postgresql::Server::Db['icingaweb2'], |