diff options
author | Bruce Momjian <bruce@momjian.us> | 2013-07-26 13:52:01 -0400 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2013-07-26 13:52:01 -0400 |
commit | 61edd524017c4a3fa5f35e72e49f70f058be7a99 (patch) | |
tree | 216da4df7cf59e85a420bd4e002e7179052f1430 | |
parent | 89bb2c76e4fec135df19e0d4e3135a3cf7a44a8a (diff) |
pg_upgrade docs: don't use cluster for binary/lib
In a few cases, pg_upgrade said old/new cluster location when it meant
old/new Postgres install location, so fix those.
Per private email report
-rw-r--r-- | doc/src/sgml/pgupgrade.sgml | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/doc/src/sgml/pgupgrade.sgml b/doc/src/sgml/pgupgrade.sgml index 523fe440841..c04e552bc93 100644 --- a/doc/src/sgml/pgupgrade.sgml +++ b/doc/src/sgml/pgupgrade.sgml @@ -81,14 +81,14 @@ <varlistentry> <term><option>-b</option> <replaceable>old_bindir</></term> <term><option>--old-bindir=</option><replaceable>old_bindir</></term> - <listitem><para>the old cluster executable directory; + <listitem><para>the old PostgreSQL executable directory; environment variable <envar>PGBINOLD</></para></listitem> </varlistentry> <varlistentry> <term><option>-B</option> <replaceable>new_bindir</></term> <term><option>--new-bindir=</option><replaceable>new_bindir</></term> - <listitem><para>the new cluster executable directory; + <listitem><para>the new PostgreSQL executable directory; environment variable <envar>PGBINNEW</></para></listitem> </varlistentry> @@ -255,7 +255,8 @@ gmake prefix=/usr/local/pgsql.new install <para> Install the <application>pg_upgrade</> binary and - <application>pg_upgrade_support</> library in the new PostgreSQL cluster. + <application>pg_upgrade_support</> library in the new PostgreSQL + installation. </para> </step> |