diff options
author | andreas <andreas@FreeBSD.org> | 1997-10-03 18:26:54 +0000 |
---|---|---|
committer | andreas <andreas@FreeBSD.org> | 1997-10-03 18:26:54 +0000 |
commit | d4ca2cb66c10e5fb065b0f9fd721dc795edd4af2 (patch) | |
tree | 311f1884b4450c61a75c8cfa4f24d749651432c8 /databases/postgresql73 | |
parent | 29aefee03577958662c4cffbbef6cbc03df2b8fc (diff) | |
download | FreeBSD-ports-d4ca2cb66c10e5fb065b0f9fd721dc795edd4af2.zip FreeBSD-ports-d4ca2cb66c10e5fb065b0f9fd721dc795edd4af2.tar.gz |
forgot the backslashes in the script.
Diffstat (limited to 'databases/postgresql73')
-rw-r--r-- | databases/postgresql73/files/pgsql.sh.tmpl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/databases/postgresql73/files/pgsql.sh.tmpl b/databases/postgresql73/files/pgsql.sh.tmpl index 7321cf4f..35fba39 100644 --- a/databases/postgresql73/files/pgsql.sh.tmpl +++ b/databases/postgresql73/files/pgsql.sh.tmpl @@ -1,6 +1,6 @@ #!/bin/sh -# $Id$ +# $Id: pgsql.sh.tmpl,v 1.1 1997/10/03 14:13:35 andreas Exp $ # pgsql.sh - postgresql startup file for FreeBSD and possibly *BSD (untested) @@ -14,8 +14,8 @@ [ -d !!PREFIX!!/pgsql/lib ] && /sbin/ldconfig -m !!PREFIX!!/pgsql/lib [ -x !!PREFIX!!/pgsql/bin/postmaster ] && { - su -l pgsql -c 'exec !!PREFIX!!/pgsql/bin/postmaster - -D!!PREFIX!!/pgsql/data + su -l pgsql -c 'exec !!PREFIX!!/pgsql/bin/postmaster \ + -D!!PREFIX!!/pgsql/data \ -S -o -F > !!PREFIX!!/pgsql/errlog' & echo -n ' pgsql' } |