You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

17 line
521 B

  1. [program:postgres]
  2. command=/usr/local/bin/prefix-log /usr/bin/pg_ctlcluster 13 main start --foreground
  3. # Lower priority number = starts first
  4. priority=1
  5. autorestart=unexpected
  6. stdout_logfile=/dev/stdout
  7. stdout_logfile_maxbytes=0
  8. stderr_logfile=/dev/stderr
  9. stderr_logfile_maxbytes=0
  10. # Use 'Fast Shutdown' mode which aborts current transactions and closes connections quickly.
  11. # (Default (TERM) is 'Smart Shutdown' which stops accepting new connections but
  12. # lets existing connections close gracefully.)
  13. stopsignal=INT