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-26 09:41:45 +02:00
|
|
|
|
2015-08-04 14:47:44 +02:00
|
|
|
library db_ido_mysql;
|
|
|
|
|
2013-10-26 09:41:45 +02:00
|
|
|
namespace icinga
|
|
|
|
{
|
|
|
|
|
|
|
|
class IdoMysqlConnection : DbConnection
|
|
|
|
{
|
2018-04-26 15:53:11 +02:00
|
|
|
activation_priority 100;
|
|
|
|
|
2013-10-31 16:12:30 +01:00
|
|
|
[config] String host {
|
|
|
|
default {{{ return "localhost"; }}}
|
|
|
|
};
|
|
|
|
[config] int port {
|
|
|
|
default {{{ return 3306; }}}
|
|
|
|
};
|
2014-12-02 08:42:21 +01:00
|
|
|
[config] String socket_path;
|
2013-10-31 16:12:30 +01:00
|
|
|
[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-31 16:12:30 +01:00
|
|
|
default {{{ return "icinga"; }}}
|
|
|
|
};
|
|
|
|
[config] String database {
|
|
|
|
default {{{ return "icinga"; }}}
|
|
|
|
};
|
2016-01-21 03:51:00 +01:00
|
|
|
[config] bool enable_ssl;
|
|
|
|
[config] String ssl_key;
|
|
|
|
[config] String ssl_cert;
|
|
|
|
[config] String ssl_ca;
|
|
|
|
[config] String ssl_capath;
|
|
|
|
[config] String ssl_cipher;
|
2013-10-26 09:41:45 +02:00
|
|
|
[config] String instance_name {
|
|
|
|
default {{{ return "default"; }}}
|
|
|
|
};
|
|
|
|
[config] String instance_description;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|