mirror of https://github.com/Icinga/icinga2.git
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_"
|
||
|
}
|