| From: | Bruce Momjian <maillist(at)candle(dot)pha(dot)pa(dot)us> |
|---|---|
| To: | Dmitry Samersoff <dms(at)wplus(dot)net> |
| Cc: | pgsql-hackers(at)postgreSQL(dot)org |
| Subject: | Re: [HACKERS] Files ... |
| Date: | 1999-09-27 19:41:43 |
| Message-ID: | 199909271941.PAA12912@candle.pha.pa.us |
| Views: | Whole Thread | Raw Message | Download mbox | Resend email |
| Thread: | |
| Lists: | pgsql-hackers |
These look awful custom to me. Not sure how to integrate them.
[Charset KOI8-R unsupported, filtering to ASCII...]
> This is three files IMHO useful for community
>
> 1. SysV start script for postgres, also can be used under freebsd
> (see below)
> 2. simple utility su_postgres, it make su to user postgres whether or not
> shell for it specified, is better than su for security reason
> 3. configure/configure.in checking for ps style
> BSD ps -ax or SysV ps -e
>
>
> Probably, there is the reason to include it (after some improvement0 into
> distribution.
>
>
>
> ---
> Dmitry Samersoff, dms(at)wplus(dot)net, ICQ:3161705
> http://devnull.wplus.net
> * There will come soft rains ...
>
> ============================================================================
> #ident "@(#)/etc/init.d/pgsql 1.0 26/08/99 dms"
>
> PG_HOME="/usr/local/pgsql"
> PG_DATA="$PG_HOME/data"
> UDS="/tmp/.s.PGSQL.5432"
>
> PS="@PS@"
> GREP="@GREP@"
>
> case "$1" in
> 'start')
> # If no postgres run, remove UDS and start postgres.
> pid=
> set -- `$PS | $GREP postmaster | $GREP -v grep`
> [ $? -eq 0 ] && pid=$1
>
> if [ -z "$pid" ]; then
> rm -f "$UDS"
> $PG_HOME/bin/su_postgres "$PG_HOME/bin/postmaster -D $PG_DATA
> -b $PG_HOME/bin/postgres -i -S -o -F &"
> echo "Postgres started"
> else
> echo "Postmaster already run with pid $pid"
> fi
> ;;
> 'stop')
> pid=
> set -- `$PS | $GREP postmaster | $GREP -v grep`
> [ $? -eq 0 ] && pid=$1
>
> if [ -z "$pid" ]; then
> echo "Postgres not run"
> else
> echo "Stoping postmaster with pid $pid"
> kill $pid
> fi
>
> ;;
> *)
> echo "USAGE: $0 {start | stop}"
> ;;
> esac
>
>
Content-Description: pg_run.tar.gz
[Attachment, skipping...]
--
Bruce Momjian | http://www.op.net/~candle
maillist(at)candle(dot)pha(dot)pa(dot)us | (610) 853-3000
+ If your life is a hard drive, | 830 Blythe Avenue
+ Christ can be your backup. | Drexel Hill, Pennsylvania 19026
| From | Date | Subject | |
|---|---|---|---|
| Next Message | Bruce Momjian | 1999-09-27 19:55:00 | Re: [HACKERS] IPC on win32 - additions for 6.5.2 and current trees |
| Previous Message | Bruce Momjian | 1999-09-27 19:31:53 | Re: [HACKERS] RI status report #1 |