mirror of
https://github.com/Icinga/icinga2.git
synced 2026-04-21 14:19:32 -04:00
14 lines
256 B
Text
14 lines
256 B
Text
/**
|
|
* 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_"
|
|
}
|
|
|