mirror of
https://github.com/Icinga/icinga2.git
synced 2026-02-03 20:40:17 -05:00
13 lines
260 B
Text
13 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_"
|
|
}
|