Skip to content

Commit 3769efd

Browse files
committed
Update copyrights and rename COPYRIGHT to LICENSE
1 parent bf1c879 commit 3769efd

File tree

21 files changed

+46
-53
lines changed

21 files changed

+46
-53
lines changed

COPYRIGHT

Lines changed: 0 additions & 29 deletions
This file was deleted.

LICENSE

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
Copyright (c) 2015-2018, Postgres Professional
2+
Portions Copyright (c) 2009-2013, NIPPON TELEGRAPH AND TELEPHONE CORPORATION
3+
4+
Portions Copyright (c) 1996-2016, PostgreSQL Global Development Group
5+
Portions Copyright (c) 1994, The Regents of the University of California
6+
7+
Permission to use, copy, modify, and distribute this software and its
8+
documentation for any purpose, without fee, and without a written agreement
9+
is hereby granted, provided that the above copyright notice and this
10+
paragraph and the following two paragraphs appear in all copies.
11+
12+
IN NO EVENT SHALL POSTGRES PROFESSIONAL BE LIABLE TO ANY PARTY FOR
13+
DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, INCLUDING
14+
LOST PROFITS, ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS
15+
DOCUMENTATION, EVEN IF POSTGRES PROFESSIONAL HAS BEEN ADVISED OF THE
16+
POSSIBILITY OF SUCH DAMAGE.
17+
18+
POSTGRES PROFESSIONAL SPECIFICALLY DISCLAIMS ANY WARRANTIES,
19+
INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
20+
AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS
21+
ON AN "AS IS" BASIS, AND POSTGRES PROFESSIONAL HAS NO OBLIGATIONS TO
22+
PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ The utility is compatible with:
77

88
`PTRACK` backup support provided via following options:
99
* vanilla PostgreSQL compiled with ptrack patch. Currently there are patches for [PostgreSQL 9.6](https://gist.githubusercontent.com/gsmol/5b615c971dfd461c76ef41a118ff4d97/raw/e471251983f14e980041f43bea7709b8246f4178/ptrack_9.6.6_v1.5.patch) and [PostgreSQL 10](https://gist.githubusercontent.com/gsmol/be8ee2a132b88463821021fd910d960e/raw/de24f9499f4f314a4a3e5fae5ed4edb945964df8/ptrack_10.1_v1.5.patch)
10-
* Postgres Pro Standard 9.5, 9.6, 10
10+
* Postgres Pro Standard 9.5, 9.6, 10, 11
1111
* Postgres Pro Enterprise 9.5, 9.6, 10
1212

1313
As compared to other backup solutions, `pg_probackup` offers the following benefits that can help you implement different backup strategies and deal with large amounts of data:
@@ -38,7 +38,7 @@ Regardless of the chosen backup type, all backups taken with `pg_probackup` supp
3838

3939
`pg_probackup` currently has the following limitations:
4040
* Creating backups from a remote server is currently not supported.
41-
* The server from which the backup was taken and the restored server must be compatible by the [block_size](https://postgrespro.com/docs/postgresql/current/runtime-config-preset#guc-block-size) and [wal_block_size](https://postgrespro.com/docs/postgresql/current/runtime-config-preset#guc-wal-block-size) parameters and have the same major release number.
41+
* The server from which the backup was taken and the restored server must be compatible by the [block_size](https://postgrespro.com/docs/postgresql/current/runtime-config-preset#GUC-BLOCK-SIZE) and [wal_block_size](https://postgrespro.com/docs/postgresql/current/runtime-config-preset#GUC-WAL-BLOCK-SIZE) parameters and have the same major release number.
4242
* Microsoft Windows operating system is not supported.
4343
* Configuration files outside of PostgreSQL data directory are not included into the backup and should be backed up separately.
4444

@@ -85,7 +85,7 @@ Currently the latest documentation can be found at [Postgres Pro Enterprise docu
8585

8686
## Licence
8787

88-
This module available under the same license as [PostgreSQL](https://www.postgresql.org/about/licence/).
88+
This module available under the [license](LICENSE) similar to [PostgreSQL](https://www.postgresql.org/about/licence/).
8989

9090
## Feedback
9191

src/archive.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* archive.c: - pg_probackup specific archive commands for archive backups.
44
*
55
*
6-
* Portions Copyright (c) 2017, Postgres Professional
6+
* Portions Copyright (c) 2018, Postgres Professional
77
*
88
*-------------------------------------------------------------------------
99
*/

src/backup.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* backup.c: backup DB cluster, archived WAL
44
*
55
* Portions Copyright (c) 2009-2013, NIPPON TELEGRAPH AND TELEPHONE CORPORATION
6-
* Portions Copyright (c) 2015-2017, Postgres Professional
6+
* Portions Copyright (c) 2015-2018, Postgres Professional
77
*
88
*-------------------------------------------------------------------------
99
*/

src/catalog.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* catalog.c: backup catalog operation
44
*
55
* Portions Copyright (c) 2009-2011, NIPPON TELEGRAPH AND TELEPHONE CORPORATION
6-
* Portions Copyright (c) 2015-2017, Postgres Professional
6+
* Portions Copyright (c) 2015-2018, Postgres Professional
77
*
88
*-------------------------------------------------------------------------
99
*/

src/data.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* data.c: utils to parse and backup data pages
44
*
55
* Portions Copyright (c) 2009-2013, NIPPON TELEGRAPH AND TELEPHONE CORPORATION
6-
* Portions Copyright (c) 2015-2017, Postgres Professional
6+
* Portions Copyright (c) 2015-2018, Postgres Professional
77
*
88
*-------------------------------------------------------------------------
99
*/

src/delete.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* delete.c: delete backup files.
44
*
55
* Portions Copyright (c) 2009-2013, NIPPON TELEGRAPH AND TELEPHONE CORPORATION
6-
* Portions Copyright (c) 2015-2017, Postgres Professional
6+
* Portions Copyright (c) 2015-2018, Postgres Professional
77
*
88
*-------------------------------------------------------------------------
99
*/

src/dir.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* dir.c: directory operation utility.
44
*
55
* Portions Copyright (c) 2009-2013, NIPPON TELEGRAPH AND TELEPHONE CORPORATION
6-
* Portions Copyright (c) 2015-2017, Postgres Professional
6+
* Portions Copyright (c) 2015-2018, Postgres Professional
77
*
88
*-------------------------------------------------------------------------
99
*/

src/fetch.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* fetch.c
44
* Functions for fetching files from PostgreSQL data directory
55
*
6-
* Portions Copyright (c) 1996-2017, PostgreSQL Global Development Group
6+
* Portions Copyright (c) 1996-2018, PostgreSQL Global Development Group
77
*
88
*-------------------------------------------------------------------------
99
*/

0 commit comments

Comments
 (0)