From b72058dba892da0421679150bf72856977eb2b0b Mon Sep 17 00:00:00 2001 From: Ian Barwick Date: Tue, 5 Jan 2016 15:57:25 +0900 Subject: [PATCH] Update copyright notice to 2016 --- CONTRIBUTING.md | 2 +- COPYRIGHT | 2 +- Makefile | 2 +- check_dir.c | 2 +- check_dir.h | 2 +- config.c | 2 +- config.h | 2 +- dbutils.c | 2 +- dbutils.h | 2 +- errcode.h | 2 +- log.c | 2 +- log.h | 2 +- repmgr.c | 2 +- repmgr.h | 2 +- repmgr.sql | 2 +- repmgrd.c | 2 +- sql/Makefile | 2 +- sql/repmgr_funcs.sql.in | 2 +- sql/uninstall_repmgr_funcs.sql | 2 +- strutil.c | 2 +- strutil.h | 2 +- uninstall_repmgr.sql | 2 +- 22 files changed, 22 insertions(+), 22 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index c43d567c..819f6a69 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-2015, 2ndQuadrant Limited. See the files COPYRIGHT and LICENSE for +Copyright 2010-2016, 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 5d7a3523..dd2cc125 100644 --- a/COPYRIGHT +++ b/COPYRIGHT @@ -1,4 +1,4 @@ -Copyright (c) 2010-2015, 2ndQuadrant Limited +Copyright (c) 2010-2016, 2ndQuadrant Limited All rights reserved. This program is free software: you can redistribute it and/or modify diff --git a/Makefile b/Makefile index 0652eb4f..d67e8fa2 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ # # Makefile -# Copyright (c) 2ndQuadrant, 2010-2015 +# Copyright (c) 2ndQuadrant, 2010-2016 repmgrd_OBJS = dbutils.o config.o repmgrd.o log.o strutil.o repmgr_OBJS = dbutils.o check_dir.o config.o repmgr.o log.o strutil.o diff --git a/check_dir.c b/check_dir.c index adf446b5..0f363e14 100644 --- a/check_dir.c +++ b/check_dir.c @@ -1,6 +1,6 @@ /* * check_dir.c - Directories management functions - * Copyright (C) 2ndQuadrant, 2010-2015 + * Copyright (C) 2ndQuadrant, 2010-2016 * * 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/check_dir.h b/check_dir.h index b3d44134..5e38d056 100644 --- a/check_dir.h +++ b/check_dir.h @@ -1,6 +1,6 @@ /* * check_dir.h - * Copyright (c) 2ndQuadrant, 2010-2015 + * Copyright (c) 2ndQuadrant, 2010-2016 * * 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/config.c b/config.c index 9cb17910..0a4b08af 100644 --- a/config.c +++ b/config.c @@ -1,6 +1,6 @@ /* * config.c - Functions to parse the config file - * Copyright (C) 2ndQuadrant, 2010-2015 + * Copyright (C) 2ndQuadrant, 2010-2016 * * 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/config.h b/config.h index 43078021..34db6037 100644 --- a/config.h +++ b/config.h @@ -1,6 +1,6 @@ /* * config.h - * Copyright (c) 2ndQuadrant, 2010-2015 + * Copyright (c) 2ndQuadrant, 2010-2016 * * 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/dbutils.c b/dbutils.c index ed420c6d..41dac2b6 100644 --- a/dbutils.c +++ b/dbutils.c @@ -1,6 +1,6 @@ /* * dbutils.c - Database connection/management functions - * Copyright (C) 2ndQuadrant, 2010-2015 + * Copyright (C) 2ndQuadrant, 2010-2016 * * 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/dbutils.h b/dbutils.h index 378ccc77..7aa4b653 100644 --- a/dbutils.h +++ b/dbutils.h @@ -1,6 +1,6 @@ /* * dbutils.h - * Copyright (c) 2ndQuadrant, 2010-2015 + * Copyright (c) 2ndQuadrant, 2010-2016 * * 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/errcode.h b/errcode.h index b6ebd736..d1e566f4 100644 --- a/errcode.h +++ b/errcode.h @@ -1,6 +1,6 @@ /* * errcode.h - * Copyright (C) 2ndQuadrant, 2010-2015 + * Copyright (C) 2ndQuadrant, 2010-2016 * * 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 6a43c79b..7acbd019 100644 --- a/log.c +++ b/log.c @@ -1,6 +1,6 @@ /* * log.c - Logging methods - * Copyright (C) 2ndQuadrant, 2010-2015 + * Copyright (C) 2ndQuadrant, 2010-2016 * * This module is a set of methods for logging (currently only syslog) * diff --git a/log.h b/log.h index b74f1db9..8d1cf10f 100644 --- a/log.h +++ b/log.h @@ -1,6 +1,6 @@ /* * log.h - * Copyright (c) 2ndQuadrant, 2010-2015 + * Copyright (c) 2ndQuadrant, 2010-2016 * * 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 9a1fbee7..a6504b0e 100644 --- a/repmgr.c +++ b/repmgr.c @@ -1,6 +1,6 @@ /* * repmgr.c - Command interpreter for the repmgr package - * Copyright (C) 2ndQuadrant, 2010-2015 + * Copyright (C) 2ndQuadrant, 2010-2016 * * This module is a command-line utility to easily setup a cluster of * hot standby servers for an HA environment diff --git a/repmgr.h b/repmgr.h index b178494d..ca9c30cb 100644 --- a/repmgr.h +++ b/repmgr.h @@ -1,6 +1,6 @@ /* * repmgr.h - * Copyright (c) 2ndQuadrant, 2010-2015 + * Copyright (c) 2ndQuadrant, 2010-2016 * * 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.sql b/repmgr.sql index e610b2b0..9628d3f6 100644 --- a/repmgr.sql +++ b/repmgr.sql @@ -1,7 +1,7 @@ /* * repmgr.sql * - * Copyright (C) 2ndQuadrant, 2010-2015 + * Copyright (C) 2ndQuadrant, 2010-2016 * */ diff --git a/repmgrd.c b/repmgrd.c index c05e5f29..045b72d2 100644 --- a/repmgrd.c +++ b/repmgrd.c @@ -1,6 +1,6 @@ /* * repmgrd.c - Replication manager daemon - * Copyright (C) 2ndQuadrant, 2010-2015 + * Copyright (C) 2ndQuadrant, 2010-2016 * * This module connects to the nodes of a replication cluster and monitors * how far are they from master diff --git a/sql/Makefile b/sql/Makefile index 47f52711..a63ae13c 100644 --- a/sql/Makefile +++ b/sql/Makefile @@ -1,7 +1,7 @@ # # Makefile # -# Copyright (c) 2ndQuadrant, 2010-2015 +# Copyright (c) 2ndQuadrant, 2010-2016 # MODULE_big = repmgr_funcs diff --git a/sql/repmgr_funcs.sql.in b/sql/repmgr_funcs.sql.in index 864c1c98..cf38aa3e 100644 --- a/sql/repmgr_funcs.sql.in +++ b/sql/repmgr_funcs.sql.in @@ -1,6 +1,6 @@ /* * repmgr_function.sql - * Copyright (c) 2ndQuadrant, 2010-2015 + * Copyright (c) 2ndQuadrant, 2010-2016 * */ diff --git a/sql/uninstall_repmgr_funcs.sql b/sql/uninstall_repmgr_funcs.sql index d32637e3..9cdf6076 100644 --- a/sql/uninstall_repmgr_funcs.sql +++ b/sql/uninstall_repmgr_funcs.sql @@ -1,6 +1,6 @@ /* * uninstall_repmgr_funcs.sql - * Copyright (c) 2ndQuadrant, 2010-2015 + * Copyright (c) 2ndQuadrant, 2010-2016 * */ diff --git a/strutil.c b/strutil.c index 1234fb10..3c565c89 100644 --- a/strutil.c +++ b/strutil.c @@ -1,7 +1,7 @@ /* * strutil.c * - * Copyright (C) 2ndQuadrant, 2010-2015 + * Copyright (C) 2ndQuadrant, 2010-2016 * * 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 5c041cc2..25d1f34b 100644 --- a/strutil.h +++ b/strutil.h @@ -1,6 +1,6 @@ /* * strutil.h - * Copyright (C) 2ndQuadrant, 2010-2015 + * Copyright (C) 2ndQuadrant, 2010-2016 * * * This program is free software: you can redistribute it and/or modify diff --git a/uninstall_repmgr.sql b/uninstall_repmgr.sql index efe327fe..b1a3d175 100644 --- a/uninstall_repmgr.sql +++ b/uninstall_repmgr.sql @@ -1,7 +1,7 @@ /* * uninstall_repmgr.sql * - * Copyright (C) 2ndQuadrant, 2010-2015 + * Copyright (C) 2ndQuadrant, 2010-2016 * */