mirror of
https://github.com/Icinga/icinga2.git
synced 2025-04-08 17:05:25 +02:00
15 lines
256 B
Plaintext
15 lines
256 B
Plaintext
/**
|
|
* The db_ido_mysql library implements IDO functionality
|
|
* for MySQL.
|
|
*/
|
|
|
|
library "db_ido_mysql"
|
|
|
|
object IdoMysqlConnection "ido-mysql" {
|
|
user = "_DBC_DBUSER_",
|
|
password = "_DBC_DBPASS_",
|
|
host = "_DBC_DBSERVER_",
|
|
database = "_DBC_DBNAME_"
|
|
}
|
|
|