Thread: initdb.sh fix...

initdb.sh fix...

From
Larry Rosenman
Date:
Someone's been spending too much time on C code...

the current initdb.sh uses == which doesn't work.

Here's a patch:

Index: initdb.sh
===================================================================
RCS file: /home/projects/pgsql/cvsroot/pgsql/src/bin/initdb/initdb.sh,v
retrieving revision 1.107
diff -c -r1.107 initdb.sh
*** initdb.sh    2000/10/28 22:14:14    1.107
--- initdb.sh    2000/10/29 03:49:36
***************
*** 109,119 ****  if [ x"$self_path" != x"" ] \   && [ -x "$self_path/postgres" ] \
!   && [ x"`$self_path/postgres --version 2>/dev/null`" == x"postgres (PostgreSQL) $VERSION" ] then
PGPATH=$self_pathelif [ -x "$bindir/postgres" ]; then
 
!     if [ x"`$bindir/postgres --version 2>/dev/null`" == x"postgres (PostgreSQL) $VERSION" ]     then
PGPATH=$bindir    else
 
--- 109,119 ----  if [ x"$self_path" != x"" ] \   && [ -x "$self_path/postgres" ] \
!   && [ x"`$self_path/postgres --version 2>/dev/null`" = x"postgres (PostgreSQL) $VERSION" ] then
PGPATH=$self_pathelif [ -x "$bindir/postgres" ]; then
 
!     if [ x"`$bindir/postgres --version 2>/dev/null`" = x"postgres (PostgreSQL) $VERSION" ]     then
PGPATH=$bindir    else
 

-- 
Larry Rosenman                      http://www.lerctr.org/~ler
Phone: +1 972-414-9812 (voice) Internet: ler@lerctr.org
US Mail: 1905 Steamboat Springs Drive, Garland, TX 75044-6749


Re: initdb.sh fix...

From
Peter Eisentraut
Date:
Larry Rosenman writes:

> Someone's been spending too much time on C code...
> 
> the current initdb.sh uses == which doesn't work.

Works in bash. :-)  Thanks.

-- 
Peter Eisentraut      peter_e@gmx.net       http://yi.org/peter-e/