mirror of
https://github.com/Icinga/icinga2.git
synced 2026-04-15 22:00:07 -04:00
14 lines
260 B
Text
14 lines
260 B
Text
|
|
/**
|
||
|
|
* 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_"
|
||
|
|
}
|