mirror of
https://github.com/EnterpriseDB/repmgr.git
synced 2026-03-23 07:06:30 +00:00
Compare commits
3 Commits
v2.0.3
...
REL2_0_STA
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
48099e9c5f | ||
|
|
e7ca8c369f | ||
|
|
782fae6239 |
2
HISTORY
2
HISTORY
@@ -1,5 +1,5 @@
|
|||||||
2.0.3 2015-04-16
|
2.0.3 2015-04-16
|
||||||
Add -S/--superuser option for witness database creation Ian)
|
Add -S/--superuser option for witness database creation (Ian)
|
||||||
Add -c/--fast-checkpoint option for cloning (Christoph)
|
Add -c/--fast-checkpoint option for cloning (Christoph)
|
||||||
Add option "--initdb-no-pwprompt" (Ian)
|
Add option "--initdb-no-pwprompt" (Ian)
|
||||||
|
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ Version: 2.0
|
|||||||
Release: 2
|
Release: 2
|
||||||
License: GPLv3
|
License: GPLv3
|
||||||
Group: System Environment/Daemons
|
Group: System Environment/Daemons
|
||||||
URL: http://repmgr.org
|
URL: http://repmgr.org
|
||||||
Packager: Nathan Van Overloop <nathan.van.overloop@nexperteam.be>
|
Packager: Nathan Van Overloop <nathan.van.overloop@nexperteam.be>
|
||||||
Vendor: 2ndQuadrant Limited
|
Vendor: 2ndQuadrant Limited
|
||||||
Distribution: centos
|
Distribution: centos
|
||||||
@@ -32,7 +32,7 @@ export PATH=$PATH:/usr/pgsql-9.3/bin/
|
|||||||
|
|
||||||
%clean
|
%clean
|
||||||
[ "%{buildroot}" != "/" ] && %{__rm} -rf %{buildroot}
|
[ "%{buildroot}" != "/" ] && %{__rm} -rf %{buildroot}
|
||||||
|
|
||||||
|
|
||||||
%files
|
%files
|
||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
@@ -45,7 +45,7 @@ export PATH=$PATH:/usr/pgsql-9.3/bin/
|
|||||||
/usr/pgsql-9.3/share/contrib/repmgr_funcs.sql
|
/usr/pgsql-9.3/share/contrib/repmgr_funcs.sql
|
||||||
/usr/pgsql-9.3/share/contrib/uninstall_repmgr.sql
|
/usr/pgsql-9.3/share/contrib/uninstall_repmgr.sql
|
||||||
/usr/pgsql-9.3/share/contrib/uninstall_repmgr_funcs.sql
|
/usr/pgsql-9.3/share/contrib/uninstall_repmgr_funcs.sql
|
||||||
%attr(0755,root,root)/etc/init.d/repmgrd
|
%attr(0755,root,root)/etc/init.d/repmgrd
|
||||||
%attr(0644,root,root)/etc/sysconfig/repmgrd
|
%attr(0644,root,root)/etc/sysconfig/repmgrd
|
||||||
%attr(0644,root,root)/etc/repmgr/repmgr.conf.sample
|
%attr(0644,root,root)/etc/repmgr/repmgr.conf.sample
|
||||||
|
|
||||||
@@ -54,4 +54,3 @@ export PATH=$PATH:/usr/pgsql-9.3/bin/
|
|||||||
- fix witness creation to create db and user if needed
|
- fix witness creation to create db and user if needed
|
||||||
* Fri Apr 04 2014 Nathan Van Overloop <nathan.van.overloop@nexperteam.be> 2.0.1
|
* Fri Apr 04 2014 Nathan Van Overloop <nathan.van.overloop@nexperteam.be> 2.0.1
|
||||||
- initial build for RHEL6
|
- initial build for RHEL6
|
||||||
|
|
||||||
|
|||||||
@@ -25,7 +25,8 @@
|
|||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
/* NB: postgres_fe must be included BEFORE check_dir */
|
/* NB: postgres_fe must be included BEFORE check_dir */
|
||||||
#include "postgres_fe.h"
|
#include <libpq-fe.h>
|
||||||
|
#include <postgres_fe.h>
|
||||||
#include "check_dir.h"
|
#include "check_dir.h"
|
||||||
|
|
||||||
#include "strutil.h"
|
#include "strutil.h"
|
||||||
|
|||||||
6
repmgr.h
6
repmgr.h
@@ -20,9 +20,9 @@
|
|||||||
#ifndef _REPMGR_H_
|
#ifndef _REPMGR_H_
|
||||||
#define _REPMGR_H_
|
#define _REPMGR_H_
|
||||||
|
|
||||||
#include "postgres_fe.h"
|
#include <libpq-fe.h>
|
||||||
#include "getopt_long.h"
|
#include <postgres_fe.h>
|
||||||
#include "libpq-fe.h"
|
#include <getopt_long.h>
|
||||||
|
|
||||||
#include "strutil.h"
|
#include "strutil.h"
|
||||||
#include "dbutils.h"
|
#include "dbutils.h"
|
||||||
|
|||||||
Reference in New Issue
Block a user