blob: a85be20614a47bdc2e827adfb23d0f45e840da1b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Pool time interval
PGA_POLL="10"
# Retry period
PGA_RETRY="30"
# Log file
PGA_LOG="/var/log/pgagent.log"
# Logging verbosity
# ERROR=0, WARNING=1, DEBUG=2
PGA_LEVEL="1"
# Server parameters
# Host address
PG_HOST="localhost"
# DB name
PG_DBNAME="postgres"
# Username
PG_USER="postgres"
|