]> git.pld-linux.org Git - packages/postgresql.git/blob - postgresql-pg_ctl-nopsql.patch
- rel. 0.5.RC2 due to fixed rdbms status checking in postgresql.init script
[packages/postgresql.git] / postgresql-pg_ctl-nopsql.patch
1 --- src/bin/pg_ctl/pg_ctl.sh.orig       2003-08-05 01:59:39.000000000 +0200
2 +++ src/bin/pg_ctl/pg_ctl.sh    2003-08-08 22:04:34.000000000 +0200
3 @@ -98,12 +98,12 @@
4  fi
5  
6  # Check if needed programs actually exist in path
7 -if [ -x "$self_path/postmaster" ] && [ -x "$self_path/psql" ]; then
8 +if [ -x "$self_path/postmaster" ]; then
9      PGPATH="$self_path"
10 -elif [ -x "$bindir/postmaster" ] && [ -x "$bindir/psql" ]; then
11 +elif [ -x "$bindir/postmaster" ]; then
12      PGPATH="$bindir"
13  else
14 -    echo "The programs \"postmaster\" and \"psql\" are needed by $CMDNAME but" 1>&2
15 +    echo "The programs \"postmaster\" is needed by $CMDNAME but" 1>&2
16      echo "were not found in the directory \"$bindir\"." 1>&2
17      echo "Check your installation." 1>&2
18      exit 1
This page took 0.024703 seconds and 3 git commands to generate.