From 7dce3ed234809ddf8bc0228e715286ab828953fc Mon Sep 17 00:00:00 2001 From: Ian Barwick Date: Mon, 21 Jan 2019 14:54:35 +0900 Subject: [PATCH] Update copyright notices to 2019 --- CONTRIBUTING.md | 2 +- COPYRIGHT | 2 +- compat.c | 2 +- compat.h | 2 +- configfile.c | 2 +- configfile.h | 2 +- configure | 4 ++-- configure.in | 2 +- controldata.c | 2 +- controldata.h | 2 +- dbutils.c | 2 +- dbutils.h | 2 +- dirutil.c | 2 +- dirutil.h | 2 +- doc/legal.sgml | 4 ++-- errcode.h | 2 +- log.c | 2 +- log.h | 2 +- repmgr-action-bdr.c | 2 +- repmgr-action-bdr.h | 2 +- repmgr-action-cluster.c | 2 +- repmgr-action-cluster.h | 2 +- repmgr-action-daemon.c | 2 +- repmgr-action-daemon.h | 2 +- repmgr-action-node.c | 2 +- repmgr-action-node.h | 2 +- repmgr-action-primary.c | 2 +- repmgr-action-primary.h | 2 +- repmgr-action-standby.c | 2 +- repmgr-action-standby.h | 2 +- repmgr-action-witness.c | 2 +- repmgr-action-witness.h | 2 +- repmgr-client-global.h | 2 +- repmgr-client.c | 2 +- repmgr-client.h | 2 +- repmgr.c | 2 +- repmgr.h | 2 +- repmgrd-bdr.c | 2 +- repmgrd-bdr.h | 2 +- repmgrd-physical.c | 2 +- repmgrd-physical.h | 2 +- repmgrd.c | 2 +- repmgrd.h | 2 +- strutil.c | 2 +- strutil.h | 2 +- voting.h | 2 +- 46 files changed, 48 insertions(+), 48 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 04759a61..8bd50f22 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -2,7 +2,7 @@ License and Contributions ========================= `repmgr` is licensed under the GPL v3. All of its code and documentation is -Copyright 2010-2018, 2ndQuadrant Limited. See the files COPYRIGHT and LICENSE for +Copyright 2010-2019, 2ndQuadrant Limited. See the files COPYRIGHT and LICENSE for details. The development of repmgr has primarily been sponsored by 2ndQuadrant customers. diff --git a/COPYRIGHT b/COPYRIGHT index 0809391d..b663e29f 100644 --- a/COPYRIGHT +++ b/COPYRIGHT @@ -1,4 +1,4 @@ -Copyright (c) 2010-2018, 2ndQuadrant Limited +Copyright (c) 2010-2019, 2ndQuadrant Limited All rights reserved. This program is free software: you can redistribute it and/or modify diff --git a/compat.c b/compat.c index 6d89f0a4..ab6975fe 100644 --- a/compat.c +++ b/compat.c @@ -6,7 +6,7 @@ * supported PostgreSQL versions. They're unlikely to change but * it would be worth keeping an eye on them for any fixes/improvements. * - * Copyright (c) 2ndQuadrant, 2010-2018 + * Copyright (c) 2ndQuadrant, 2010-2019 * * Portions Copyright (c) 1996-2013, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California diff --git a/compat.h b/compat.h index bd2d002c..c7ea5a3a 100644 --- a/compat.h +++ b/compat.h @@ -1,6 +1,6 @@ /* * compat.h - * Copyright (c) 2ndQuadrant, 2010-2018 + * Copyright (c) 2ndQuadrant, 2010-2019 * * Portions Copyright (c) 1996-2013, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California diff --git a/configfile.c b/configfile.c index 0a7afe5d..b44a8c7c 100644 --- a/configfile.c +++ b/configfile.c @@ -1,7 +1,7 @@ /* * config.c - parse repmgr.conf and other configuration-related functionality * - * Copyright (c) 2ndQuadrant, 2010-2018 + * Copyright (c) 2ndQuadrant, 2010-2019 * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/configfile.h b/configfile.h index ab2151d2..2c2d54d9 100644 --- a/configfile.h +++ b/configfile.h @@ -1,7 +1,7 @@ /* * configfile.h * - * Copyright (c) 2ndQuadrant, 2010-2018 + * Copyright (c) 2ndQuadrant, 2010-2019 * * * This program is free software: you can redistribute it and/or modify diff --git a/configure b/configure index a7100b87..f066c3a8 100755 --- a/configure +++ b/configure @@ -11,7 +11,7 @@ # This configure script is free software; the Free Software Foundation # gives unlimited permission to copy, distribute and modify it. # -# Copyright (c) 2010-2018, 2ndQuadrant Ltd. +# Copyright (c) 2010-2019, 2ndQuadrant Ltd. ## -------------------- ## ## M4sh Initialization. ## ## -------------------- ## @@ -1320,7 +1320,7 @@ Copyright (C) 2012 Free Software Foundation, Inc. This configure script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it. -Copyright (c) 2010-2018, 2ndQuadrant Ltd. +Copyright (c) 2010-2019, 2ndQuadrant Ltd. _ACEOF exit fi diff --git a/configure.in b/configure.in index 3f7a0989..7f52e55b 100644 --- a/configure.in +++ b/configure.in @@ -1,6 +1,6 @@ AC_INIT([repmgr], [4.3], [repmgr@googlegroups.com], [repmgr], [https://repmgr.org/]) -AC_COPYRIGHT([Copyright (c) 2010-2018, 2ndQuadrant Ltd.]) +AC_COPYRIGHT([Copyright (c) 2010-2019, 2ndQuadrant Ltd.]) AC_CONFIG_HEADER(config.h) diff --git a/controldata.c b/controldata.c index bad8e48f..73e5c140 100644 --- a/controldata.c +++ b/controldata.c @@ -6,7 +6,7 @@ * running. For that reason we can't use on the pg_control_*() functions * provided in PostgreSQL 9.6 and later. * - * Copyright (c) 2ndQuadrant, 2010-2018 + * Copyright (c) 2ndQuadrant, 2010-2019 * * Portions Copyright (c) 1996-2016, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California diff --git a/controldata.h b/controldata.h index 88516df6..e5db09b2 100644 --- a/controldata.h +++ b/controldata.h @@ -1,6 +1,6 @@ /* * controldata.h - * Copyright (c) 2ndQuadrant, 2010-2018 + * Copyright (c) 2ndQuadrant, 2010-2019 * * Portions Copyright (c) 1996-2016, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California diff --git a/dbutils.c b/dbutils.c index b73be799..0b3c6a23 100644 --- a/dbutils.c +++ b/dbutils.c @@ -1,7 +1,7 @@ /* * dbutils.c - Database connection/management functions * - * Copyright (c) 2ndQuadrant, 2010-2018 + * Copyright (c) 2ndQuadrant, 2010-2019 * * * This program is free software: you can redistribute it and/or modify diff --git a/dbutils.h b/dbutils.h index 27b11636..560603f3 100644 --- a/dbutils.h +++ b/dbutils.h @@ -1,7 +1,7 @@ /* * dbutils.h * - * Copyright (c) 2ndQuadrant, 2010-2018 + * Copyright (c) 2ndQuadrant, 2010-2019 * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/dirutil.c b/dirutil.c index 1b69e36f..5fc7b74b 100644 --- a/dirutil.c +++ b/dirutil.c @@ -3,7 +3,7 @@ * dirmod.c * directory handling functions * - * Copyright (c) 2ndQuadrant, 2010-2018 + * Copyright (c) 2ndQuadrant, 2010-2019 * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/dirutil.h b/dirutil.h index b78c3ab0..1d5d5731 100644 --- a/dirutil.h +++ b/dirutil.h @@ -1,6 +1,6 @@ /* * dirutil.h - * Copyright (c) 2ndQuadrant, 2010-2018 + * Copyright (c) 2ndQuadrant, 2010-2019 * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/doc/legal.sgml b/doc/legal.sgml index 690ababf..8c299132 100644 --- a/doc/legal.sgml +++ b/doc/legal.sgml @@ -3,7 +3,7 @@ 2017 - 2010-2018 + 2010-2019 2ndQuadrant, Ltd. @@ -11,7 +11,7 @@ Legal Notice - repmgr is Copyright © 2010-2018 + repmgr is Copyright © 2010-2019 by 2ndQuadrant, Ltd. All rights reserved. diff --git a/errcode.h b/errcode.h index a7a4f770..9483bffd 100644 --- a/errcode.h +++ b/errcode.h @@ -1,6 +1,6 @@ /* * errcode.h - * Copyright (c) 2ndQuadrant, 2010-2018 + * Copyright (c) 2ndQuadrant, 2010-2019 * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/log.c b/log.c index cff3b946..c40e4399 100644 --- a/log.c +++ b/log.c @@ -1,6 +1,6 @@ /* * log.c - Logging methods - * Copyright (c) 2ndQuadrant, 2010-2018 + * Copyright (c) 2ndQuadrant, 2010-2019 * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/log.h b/log.h index df6b89d4..b8e751c8 100644 --- a/log.h +++ b/log.h @@ -1,6 +1,6 @@ /* * log.h - * Copyright (c) 2ndQuadrant, 2010-2018 + * Copyright (c) 2ndQuadrant, 2010-2019 * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/repmgr-action-bdr.c b/repmgr-action-bdr.c index ff0e76c0..647d69bc 100644 --- a/repmgr-action-bdr.c +++ b/repmgr-action-bdr.c @@ -3,7 +3,7 @@ * * Implements BDR-related actions for the repmgr command line utility * - * Copyright (c) 2ndQuadrant, 2010-2018 + * Copyright (c) 2ndQuadrant, 2010-2019 * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/repmgr-action-bdr.h b/repmgr-action-bdr.h index c8761736..8391c056 100644 --- a/repmgr-action-bdr.h +++ b/repmgr-action-bdr.h @@ -1,6 +1,6 @@ /* * repmgr-action-bdr.h - * Copyright (c) 2ndQuadrant, 2010-2018 + * Copyright (c) 2ndQuadrant, 2010-2019 * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/repmgr-action-cluster.c b/repmgr-action-cluster.c index ab229423..3b078d35 100644 --- a/repmgr-action-cluster.c +++ b/repmgr-action-cluster.c @@ -3,7 +3,7 @@ * * Implements cluster information actions for the repmgr command line utility * - * Copyright (c) 2ndQuadrant, 2010-2018 + * Copyright (c) 2ndQuadrant, 2010-2019 * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/repmgr-action-cluster.h b/repmgr-action-cluster.h index e75f9a1b..ed89b2bb 100644 --- a/repmgr-action-cluster.h +++ b/repmgr-action-cluster.h @@ -1,6 +1,6 @@ /* * repmgr-action-cluster.h - * Copyright (c) 2ndQuadrant, 2010-2018 + * Copyright (c) 2ndQuadrant, 2010-2019 * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/repmgr-action-daemon.c b/repmgr-action-daemon.c index cb2aee4b..bfa30181 100644 --- a/repmgr-action-daemon.c +++ b/repmgr-action-daemon.c @@ -2,7 +2,7 @@ * repmgr-action-daemon.c * * Implements repmgrd actions for the repmgr command line utility - * Copyright (c) 2ndQuadrant, 2010-2018 + * Copyright (c) 2ndQuadrant, 2010-2019 * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/repmgr-action-daemon.h b/repmgr-action-daemon.h index 026feac0..4b39e403 100644 --- a/repmgr-action-daemon.h +++ b/repmgr-action-daemon.h @@ -1,6 +1,6 @@ /* * repmgr-action-daemon.h - * Copyright (c) 2ndQuadrant, 2010-2018 + * Copyright (c) 2ndQuadrant, 2010-2019 * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/repmgr-action-node.c b/repmgr-action-node.c index 3268c7f3..641284cd 100644 --- a/repmgr-action-node.c +++ b/repmgr-action-node.c @@ -3,7 +3,7 @@ * * Implements actions available for any kind of node * - * Copyright (c) 2ndQuadrant, 2010-2018 + * Copyright (c) 2ndQuadrant, 2010-2019 * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/repmgr-action-node.h b/repmgr-action-node.h index 968e9d84..d6bec2a1 100644 --- a/repmgr-action-node.h +++ b/repmgr-action-node.h @@ -1,6 +1,6 @@ /* * repmgr-action-node.h - * Copyright (c) 2ndQuadrant, 2010-2018 + * Copyright (c) 2ndQuadrant, 2010-2019 * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/repmgr-action-primary.c b/repmgr-action-primary.c index a5ccd308..6e4d8ded 100644 --- a/repmgr-action-primary.c +++ b/repmgr-action-primary.c @@ -3,7 +3,7 @@ * * Implements primary actions for the repmgr command line utility * - * Copyright (c) 2ndQuadrant, 2010-2018 + * Copyright (c) 2ndQuadrant, 2010-2019 * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/repmgr-action-primary.h b/repmgr-action-primary.h index c7431bc1..f37a40ac 100644 --- a/repmgr-action-primary.h +++ b/repmgr-action-primary.h @@ -1,6 +1,6 @@ /* * repmgr-action-primary.h - * Copyright (c) 2ndQuadrant, 2010-2018 + * Copyright (c) 2ndQuadrant, 2010-2019 * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/repmgr-action-standby.c b/repmgr-action-standby.c index a098a899..d018f7db 100644 --- a/repmgr-action-standby.c +++ b/repmgr-action-standby.c @@ -3,7 +3,7 @@ * * Implements standby actions for the repmgr command line utility * - * Copyright (c) 2ndQuadrant, 2010-2018 + * Copyright (c) 2ndQuadrant, 2010-2019 * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/repmgr-action-standby.h b/repmgr-action-standby.h index 90b407ef..62f11f32 100644 --- a/repmgr-action-standby.h +++ b/repmgr-action-standby.h @@ -1,6 +1,6 @@ /* * repmgr-action-standby.h - * Copyright (c) 2ndQuadrant, 2010-2018 + * Copyright (c) 2ndQuadrant, 2010-2019 * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/repmgr-action-witness.c b/repmgr-action-witness.c index fdff30ac..fdfb92b9 100644 --- a/repmgr-action-witness.c +++ b/repmgr-action-witness.c @@ -3,7 +3,7 @@ * * Implements witness actions for the repmgr command line utility * - * Copyright (c) 2ndQuadrant, 2010-2018 + * Copyright (c) 2ndQuadrant, 2010-2019 * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/repmgr-action-witness.h b/repmgr-action-witness.h index ed04e35d..10697b90 100644 --- a/repmgr-action-witness.h +++ b/repmgr-action-witness.h @@ -1,6 +1,6 @@ /* * repmgr-action-witness.h - * Copyright (c) 2ndQuadrant, 2010-2018 + * Copyright (c) 2ndQuadrant, 2010-2019 * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/repmgr-client-global.h b/repmgr-client-global.h index a3dba466..b7f48bf3 100644 --- a/repmgr-client-global.h +++ b/repmgr-client-global.h @@ -1,6 +1,6 @@ /* * repmgr-client-global.h - * Copyright (c) 2ndQuadrant, 2010-2018 + * Copyright (c) 2ndQuadrant, 2010-2019 * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/repmgr-client.c b/repmgr-client.c index b87304b2..532ad457 100644 --- a/repmgr-client.c +++ b/repmgr-client.c @@ -1,7 +1,7 @@ /* * repmgr-client.c - Command interpreter for the repmgr package * - * Copyright (c) 2ndQuadrant, 2010-2018 + * Copyright (c) 2ndQuadrant, 2010-2019 * * This module is a command-line utility to easily setup a cluster of * hot standby servers for an HA environment diff --git a/repmgr-client.h b/repmgr-client.h index fe50f277..5d47f79c 100644 --- a/repmgr-client.h +++ b/repmgr-client.h @@ -1,6 +1,6 @@ /* * repmgr-client.h - * Copyright (c) 2ndQuadrant, 2010-2018 + * Copyright (c) 2ndQuadrant, 2010-2019 * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/repmgr.c b/repmgr.c index e1c1f9c0..9c003440 100644 --- a/repmgr.c +++ b/repmgr.c @@ -1,7 +1,7 @@ /* * repmgr.c - repmgr extension * - * Copyright (c) 2ndQuadrant, 2010-2018 + * Copyright (c) 2ndQuadrant, 2010-2019 * * This is the actual extension code; see repmgr-client.c for the code which * generates the repmgr binary diff --git a/repmgr.h b/repmgr.h index 21a1e067..8a6e0f67 100644 --- a/repmgr.h +++ b/repmgr.h @@ -1,6 +1,6 @@ /* * repmgr.h - * Copyright (c) 2ndQuadrant, 2010-2018 + * Copyright (c) 2ndQuadrant, 2010-2019 * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/repmgrd-bdr.c b/repmgrd-bdr.c index 2e5631db..7345a271 100644 --- a/repmgrd-bdr.c +++ b/repmgrd-bdr.c @@ -1,7 +1,7 @@ /* * repmgrd-bdr.c - BDR functionality for repmgrd * - * Copyright (c) 2ndQuadrant, 2010-2018 + * Copyright (c) 2ndQuadrant, 2010-2019 * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/repmgrd-bdr.h b/repmgrd-bdr.h index 3cc9b64a..a72a2e0a 100644 --- a/repmgrd-bdr.h +++ b/repmgrd-bdr.h @@ -1,6 +1,6 @@ /* * repmgrd-bdr.h - * Copyright (c) 2ndQuadrant, 2010-2018 + * Copyright (c) 2ndQuadrant, 2010-2019 * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/repmgrd-physical.c b/repmgrd-physical.c index 648787bc..f0360dcd 100644 --- a/repmgrd-physical.c +++ b/repmgrd-physical.c @@ -1,7 +1,7 @@ /* * repmgrd-physical.c - physical (streaming) replication functionality for repmgrd * - * Copyright (c) 2ndQuadrant, 2010-2018 + * Copyright (c) 2ndQuadrant, 2010-2019 * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/repmgrd-physical.h b/repmgrd-physical.h index d94b4976..29849ba7 100644 --- a/repmgrd-physical.h +++ b/repmgrd-physical.h @@ -1,6 +1,6 @@ /* * repmgrd-physical.h - * Copyright (c) 2ndQuadrant, 2010-2018 + * Copyright (c) 2ndQuadrant, 2010-2019 * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/repmgrd.c b/repmgrd.c index 515758d9..ddb0b8d2 100644 --- a/repmgrd.c +++ b/repmgrd.c @@ -1,7 +1,7 @@ /* * repmgrd.c - Replication manager daemon * - * Copyright (c) 2ndQuadrant, 2010-2018 + * Copyright (c) 2ndQuadrant, 2010-2019 * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/repmgrd.h b/repmgrd.h index 1a347069..38b5122b 100644 --- a/repmgrd.h +++ b/repmgrd.h @@ -1,6 +1,6 @@ /* * repmgrd.h - * Copyright (c) 2ndQuadrant, 2010-2018 + * Copyright (c) 2ndQuadrant, 2010-2019 */ diff --git a/strutil.c b/strutil.c index 17173269..74edeb55 100644 --- a/strutil.c +++ b/strutil.c @@ -1,7 +1,7 @@ /* * strutil.c * - * Copyright (c) 2ndQuadrant, 2010-2018 + * Copyright (c) 2ndQuadrant, 2010-2019 * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/strutil.h b/strutil.h index 547f8b1f..77b5efb2 100644 --- a/strutil.h +++ b/strutil.h @@ -1,6 +1,6 @@ /* * strutil.h - * Copyright (c) 2ndQuadrant, 2010-2018 + * Copyright (c) 2ndQuadrant, 2010-2019 * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/voting.h b/voting.h index f3602224..c54c3c15 100644 --- a/voting.h +++ b/voting.h @@ -1,6 +1,6 @@ /* * voting.h - * Copyright (c) 2ndQuadrant, 2010-2018 + * Copyright (c) 2ndQuadrant, 2010-2019 * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by