2019-02-25 14:48:22 +01:00
|
|
|
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
2014-10-17 19:44:31 +02:00
|
|
|
|
2014-05-25 16:23:35 +02:00
|
|
|
#include "db_ido/dbconnection.hpp"
|
2013-10-30 15:32:33 +01:00
|
|
|
|
2015-08-04 14:47:44 +02:00
|
|
|
library db_ido_pgsql;
|
|
|
|
|
2013-10-30 15:32:33 +01:00
|
|
|
namespace icinga
|
|
|
|
{
|
|
|
|
|
|
|
|
class IdoPgsqlConnection : DbConnection
|
|
|
|
{
|
2018-04-26 15:53:11 +02:00
|
|
|
activation_priority 100;
|
|
|
|
|
2013-10-30 15:32:33 +01:00
|
|
|
[config] String host {
|
|
|
|
default {{{ return "localhost"; }}}
|
|
|
|
};
|
|
|
|
[config] String port {
|
|
|
|
default {{{ return "5432"; }}}
|
|
|
|
};
|
|
|
|
[config] String user {
|
|
|
|
default {{{ return "icinga"; }}}
|
|
|
|
};
|
2021-07-05 15:09:54 +02:00
|
|
|
[config, no_user_view, no_user_modify] String password {
|
2013-10-30 15:32:33 +01:00
|
|
|
default {{{ return "icinga"; }}}
|
|
|
|
};
|
|
|
|
[config] String database {
|
|
|
|
default {{{ return "icinga"; }}}
|
|
|
|
};
|
|
|
|
[config] String instance_name {
|
|
|
|
default {{{ return "default"; }}}
|
|
|
|
};
|
|
|
|
[config] String instance_description;
|
2018-04-18 15:30:06 +02:00
|
|
|
[config] String ssl_mode;
|
|
|
|
[config] String ssl_key;
|
|
|
|
[config] String ssl_cert;
|
|
|
|
[config] String ssl_ca;
|
2013-10-30 15:32:33 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|