diff options
author | Bruce Momjian | 2001-07-30 14:52:42 +0000 |
---|---|---|
committer | Bruce Momjian | 2001-07-30 14:52:42 +0000 |
commit | d4cafeba315cc714a7b896993db8e34ad08e54ca (patch) | |
tree | 069697ad19914d6fbdebecd8f579b5c25cf0b2c5 | |
parent | 509f5d241ac2fe26146d227ddb0e56eb4d7ca33c (diff) |
Patch to add comments to Linux startup script.
Rene Pijlman
-rw-r--r-- | contrib/start-scripts/linux | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/contrib/start-scripts/linux b/contrib/start-scripts/linux index 9fd0786434..ec89d05591 100644 --- a/contrib/start-scripts/linux +++ b/contrib/start-scripts/linux @@ -1,5 +1,8 @@ #! /bin/sh +# chkconfig: 2345 98 02 +# description: PostgreSQL RDBMS + # This is an example of a start/stop script for SysV-style init, such # as is used on Linux systems. You should edit some of the variables # and maybe the 'echo' commands. @@ -12,7 +15,8 @@ # /etc/rc.d/rc3.d/S98postgresql # /etc/rc.d/rc4.d/S98postgresql # /etc/rc.d/rc5.d/S98postgresql -# Or check out the chkconfig program, if you have it. +# Or, if you have chkconfig, simply: +# chkconfig --add postgresql # # Proper init scripts on Linux systems normally require setting lock # and pid files under /var/run as well as reacting to network @@ -20,7 +24,7 @@ # Original author: Ryan Kirkpatrick <[email protected]> -# $Header: /cvsroot/pgsql/contrib/start-scripts/linux,v 1.2 2001/04/19 19:17:44 petere Exp $ +# $Header: /cvsroot/pgsql/contrib/start-scripts/linux,v 1.3 2001/07/30 14:52:42 momjian Exp $ ## EDIT FROM HERE |