aboutsummaryrefslogtreecommitdiffstats
path: root/pgaas/src/stage/opt/app/pgaas/init/init-pgaas-idns.conf
blob: 62714f1ef2638e064f166242271bbbc0d288b546 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# PGaaS - PostgreSQL as a Service
#
# The PGaaS iDNS server provides information on the system, primarily for the iDNS system

description	"PGaaS iDNS server"

start on runlevel [2345]
stop on runlevel [!2345]

respawn
respawn limit 10 5
umask 022
setuid postgres

pre-start script
    test -x /opt/app/pgaas/lib/iDNS-responder || { stop; exit 0; }
end script

script
    /opt/app/pgaas/lib/iDNS-responder
end script