blob: 0b2c7d788dd2e53607697a3acb6ec17d9510b64d (
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"
|