blob: af80d8bf5e1a997c149ab0637b5ef002189c008e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# Variables to set the way pgagent works.
# Commented variables are the defaults that are used in the init-script.
# Pool time interval
PGA_POLL="10"
# Retry period
PGA_RETRY="30"
# Log file
PGA_LOG="/var/log/pgagent.localhost.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"
|