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