Skip to content

Commit 154c0a0

Browse files
committed
Update for 7.0.2.
1 parent 48165ec commit 154c0a0

File tree

4 files changed

+87
-41
lines changed

4 files changed

+87
-41
lines changed

HISTORY

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,24 @@
22
Release Notes
33
------------------------------------------------------------------------
44

5+
Release 7.0.2
6+
7+
This is a repackaging of 7.0.1 with added documentation.
8+
9+
Migration to v7.0.2
10+
11+
A dump/restore is not required for those running 7.*.
12+
13+
Changes
14+
-------
15+
Added documentation to tarball.
16+
17+
18+
------------------------------------------------------------------------
19+
Release 7.0.1
20+
Release Notes
21+
------------------------------------------------------------------------
22+
523
Release 7.0.1
624

725
This is basically a cleanup release for 7.0.1

INSTALL

Lines changed: 13 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
Installation instructions for PostgreSQL 7.0.1.
1+
Installation instructions for PostgreSQL 7.0.2.
22

33
If you haven't gotten the PostgreSQL distribution, get it from
44
ftp.postgresql.org, then unpack it:
55

6-
> gunzip postgresql-7.0.1.tar.gz
7-
> tar -xf postgresql-7.0.1.tar
8-
> mv postgresql-7.0.1 /usr/src
6+
> gunzip postgresql-7.0.2.tar.gz
7+
> tar -xf postgresql-7.0.2.tar
8+
> mv postgresql-7.0.2 /usr/src
99

1010

1111
Before you start
@@ -138,10 +138,11 @@ For a fresh install or upgrading from previous releases of PostgreSQL:
138138
Test. (Be sure to use the "parallel regress test" method, since the
139139
sequential method only works with an already-installed server.)
140140

141-
5. If you are not upgrading an existing system then skip to step 7.
141+
5. If you are not upgrading an existing system, skip to step 7.
142+
If you are running 7.*, skip to step 6.
142143

143-
You now need to back up your existing database. To dump your fairly
144-
recent post-6.0 database installation, type
144+
You now need to back up your existing database. To dump your
145+
database installation, type:
145146

146147
> pg_dumpall > db.out
147148

@@ -151,13 +152,8 @@ For a fresh install or upgrading from previous releases of PostgreSQL:
151152
this (such as using OIDs as keys in tables), don't do it.
152153

153154
Make sure to use the pg_dumpall command from the version you are
154-
currently running. 7.0.1's pg_dumpall will not work on pre-7.0 databases.
155-
However, if you are still using 6.0, do not use the pg_dumpall script
156-
from 6.0 or everything will be owned by the PostgreSQL superuser after
157-
you reload. In that case you should grab pg_dumpall from a later 6.x.x
158-
release. If you are upgrading from a version prior to Postgres95 v1.09
159-
then you must back up your database, install Postgres95 v1.09, restore
160-
your database, then back it up again.
155+
currently running. 7.0.2's pg_dumpall should not be used on older
156+
databases.
161157

162158
Caution
163159
You must make sure that your database is not updated in the middle of your
@@ -167,7 +163,7 @@ For a fresh install or upgrading from previous releases of PostgreSQL:
167163

168164
Rather than using pg_dumpall, pg_upgrade can often be used.
169165

170-
6. If you are upgrading an existing system then kill the database server
166+
6. If you are upgrading an existing system, kill the database server
171167
now. Type
172168

173169
> ps ax | grep postmaster
@@ -299,7 +295,7 @@ For a fresh install or upgrading from previous releases of PostgreSQL:
299295

300296
This concludes the installation proper. To make your life more productive
301297
and enjoyable you should look at the following optional steps and
302-
suggestions.
298+
suggestions:
303299

304300
* Life will be more convenient if you set up some environment variables.
305301
First of all you probably want to include /usr/local/pgsql/bin (or
@@ -315,7 +311,7 @@ suggestions.
315311

316312
* You probably want to install the man and HTML documentation. Type
317313

318-
> cd /usr/src/pgsql/postgresql-7.0.1/doc
314+
> cd /usr/src/pgsql/postgresql-7.0.2/doc
319315
> gmake install
320316

321317

doc/src/sgml/install.sgml

Lines changed: 13 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--
2-
$Header: /cvsroot/pgsql/doc/src/sgml/Attic/install.sgml,v 1.43 2000/06/01 05:58:42 momjian Exp $
2+
$Header: /cvsroot/pgsql/doc/src/sgml/Attic/install.sgml,v 1.44 2000/06/05 10:57:57 momjian Exp $
33
-->
44

55
<chapter id="install">
@@ -8,7 +8,7 @@ $Header: /cvsroot/pgsql/doc/src/sgml/Attic/install.sgml,v 1.43 2000/06/01 05:58:
88
<abstract>
99
<para>
1010
Installation instructions for
11-
<productname>PostgreSQL</productname> 7.0.1.
11+
<productname>PostgreSQL</productname> 7.0.2.
1212
</para>
1313
</abstract>
1414

@@ -18,9 +18,9 @@ $Header: /cvsroot/pgsql/doc/src/sgml/Attic/install.sgml,v 1.43 2000/06/01 05:58:
1818
then unpack it:
1919

2020
<programlisting>
21-
&gt; gunzip postgresql-7.0.1.tar.gz
22-
&gt; tar -xf postgresql-7.0.1.tar
23-
&gt; mv postgresql-7.0.1 /usr/src
21+
&gt; gunzip postgresql-7.0.2.tar.gz
22+
&gt; tar -xf postgresql-7.0.2.tar
23+
&gt; mv postgresql-7.0.2 /usr/src
2424
</programlisting>
2525
</para>
2626

@@ -241,16 +241,16 @@ All of PostgreSQL is successfully made. Ready to install.
241241

242242
<step performance="required">
243243
<para>
244-
If you are not upgrading an existing system then skip to
244+
If you are not upgrading an existing system, skip to
245245
<xref linkend="continue">.
246246
</para>
247247
<para>
248-
If you are running 7.0 or later, skip to
248+
If you are running 7.*, skip to step
249249
<xref linkend="nodump">.
250250
</para>
251251
<para>
252252
You now need to back up your existing database.
253-
To dump your fairly recent post-6.0 database installation, type
253+
To dump your database installation, type:
254254
<programlisting>
255255
&gt; pg_dumpall > db.out
256256
</programlisting>
@@ -264,18 +264,8 @@ All of PostgreSQL is successfully made. Ready to install.
264264
<para>
265265
Make sure to use the <application>pg_dumpall</application>
266266
command from the version you are currently running.
267-
7.0.1's <application>pg_dumpall</application> will not work on older databases.
268-
However, if you are still using 6.0, do not use the
269-
<application>pg_dumpall</application> script from 6.0 or everything will be
270-
owned by the <productname>PostgreSQL</productname> superuser after you
271-
reload. In that case
272-
you should grab <application>pg_dumpall</application> from a later
273-
6.x.x release.
274-
If you are upgrading from a version prior to
275-
<productname>Postgres95</productname> v1.09 then you must back
276-
up your database,
277-
install <productname>Postgres95</productname> v1.09, restore your database,
278-
then back it up again.
267+
7.0.2's <application>pg_dumpall</application> should not
268+
be used on older databases.
279269
</para>
280270

281271
<caution>
@@ -295,7 +285,7 @@ All of PostgreSQL is successfully made. Ready to install.
295285

296286
<step performance="required" id="nodump">
297287
<para>
298-
If you are upgrading an existing system then kill the database
288+
If you are upgrading an existing system, kill the database
299289
server now. Type
300290
<programlisting>
301291
&gt; ps ax | grep postmaster
@@ -460,7 +450,7 @@ libpq.so.2.1: cannot open shared object file: No such file or directory
460450
<para>
461451
This concludes the installation proper. To make your life more
462452
productive and enjoyable
463-
you should look at the following optional steps and suggestions.
453+
you should look at the following optional steps and suggestions:
464454
</para>
465455

466456
<itemizedlist>
@@ -493,7 +483,7 @@ libpq.so.2.1: cannot open shared object file: No such file or directory
493483
You probably want to install the <application>man</application> and
494484
<acronym>HTML</acronym> documentation. Type
495485
<programlisting>
496-
&gt; cd /usr/src/pgsql/postgresql-7.0.1/doc
486+
&gt; cd /usr/src/pgsql/postgresql-7.0.2/doc
497487
&gt; gmake install
498488
</programlisting>
499489
This will install files under <filename>/usr/local/pgsql/doc</filename>

doc/src/sgml/release.sgml

Lines changed: 43 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,52 @@
11
<!--
2-
$Header: /cvsroot/pgsql/doc/src/sgml/release.sgml,v 1.53 2000/06/02 15:57:14 momjian Exp $
2+
$Header: /cvsroot/pgsql/doc/src/sgml/release.sgml,v 1.54 2000/06/05 10:57:57 momjian Exp $
33
-->
44

55
<chapter id="release">
66
<title>Release Notes</title>
77

8+
<sect1>
9+
<title>Release 7.0.2</title>
10+
<!--
11+
<docinfo>
12+
<authorgroup>
13+
<author>
14+
<firstname>Bruce</firstname>
15+
<surname>Momjian</surname>
16+
</author>
17+
</authorgroup>
18+
<date>2000-06-05</date>
19+
</docinfo>
20+
-->
21+
22+
<para>
23+
2000-06-05
24+
</para>
25+
<para>
26+
This is a repackaging of 7.0.1 with added documentation.
27+
</para>
28+
29+
30+
<sect2>
31+
<title>Migration to v7.0.2</title>
32+
33+
<para>
34+
A dump/restore is <emphasis>not</emphasis> required for those running
35+
7.*.
36+
</para>
37+
</sect2>
38+
<sect2>
39+
<title>Changes</title>
40+
41+
<para>
42+
<programlisting>
43+
Added documentation to tarball.
44+
</programlisting>
45+
</para>
46+
</sect2>
47+
</sect1>
48+
49+
850
<sect1>
951
<title>Release 7.0.1</title>
1052
<!--

0 commit comments

Comments
 (0)