├── .github └── CODEOWNERS ├── .gitignore ├── CONTRIBUTING.md ├── COPYRIGHT ├── CREDITS ├── FAQ.md ├── HISTORY ├── LICENSE ├── Makefile.global.in ├── Makefile.in ├── PACKAGES.md ├── README.md ├── TODO.md ├── compat.c ├── compat.h ├── config.h.in ├── configdata.c ├── configfile-scan.l ├── configfile.c ├── configfile.h ├── configure ├── configure.in ├── contrib └── convert-config.pl ├── controldata.c ├── controldata.h ├── dbutils.c ├── dbutils.h ├── dirutil.c ├── dirutil.h ├── doc ├── .gitignore ├── Makefile ├── appendix-faq.xml ├── appendix-packages.xml ├── appendix-release-notes.xml ├── appendix-signatures.xml ├── appendix-support.xml ├── changes-in-repmgr4.md ├── cloning-standbys.xml ├── configuration-file-log-settings.xml ├── configuration-file-optional-settings.xml ├── configuration-file-required-settings.xml ├── configuration-file-service-commands.xml ├── configuration-file.xml ├── configuration-password-management.xml ├── configuration-permissions.xml ├── configuration.xml ├── event-notifications.xml ├── filelist.xml ├── follow-new-primary.xml ├── install-packages.xml ├── install-requirements.xml ├── install-source.xml ├── install.xml ├── legal.xml ├── overview.xml ├── promoting-standby.xml ├── quickstart.xml ├── repmgr-cluster-cleanup.xml ├── repmgr-cluster-crosscheck.xml ├── repmgr-cluster-event.xml ├── repmgr-cluster-matrix.xml ├── repmgr-cluster-show.xml ├── repmgr-daemon-start.xml ├── repmgr-daemon-stop.xml ├── repmgr-node-check.xml ├── repmgr-node-rejoin.xml ├── repmgr-node-service.xml ├── repmgr-node-status.xml ├── repmgr-primary-register.xml ├── repmgr-primary-unregister.xml ├── repmgr-service-pause.xml ├── repmgr-service-status.xml ├── repmgr-service-unpause.xml ├── repmgr-standby-clone.xml ├── repmgr-standby-follow.xml ├── repmgr-standby-promote.xml ├── repmgr-standby-register.xml ├── repmgr-standby-switchover.xml ├── repmgr-standby-unregister.xml ├── repmgr-witness-register.xml ├── repmgr-witness-unregister.xml ├── repmgr.xml ├── repmgrd-automatic-failover.xml ├── repmgrd-configuration.xml ├── repmgrd-node-fencing.md ├── repmgrd-operation.xml ├── repmgrd-overview.xml ├── stylesheet-common.xsl ├── stylesheet-fo.xsl ├── stylesheet-html-common.xsl ├── stylesheet-html-nochunk.xsl ├── stylesheet-speedup-common.xsl ├── stylesheet-speedup-xhtml.xsl ├── stylesheet.css ├── stylesheet.dsl ├── stylesheet.xsl ├── switchover.xml ├── upgrading-from-repmgr3.md ├── upgrading-repmgr.xml └── website-docs.css ├── errcode.h ├── expected └── repmgr_extension.out ├── log.c ├── log.h ├── pgbackupapi.c ├── pgbackupapi.h ├── repmgr--4.0--4.1.sql ├── repmgr--4.0.sql ├── repmgr--4.1--4.2.sql ├── repmgr--4.1.sql ├── repmgr--4.2--4.3.sql ├── repmgr--4.2.sql ├── repmgr--4.3--4.4.sql ├── repmgr--4.3.sql ├── repmgr--4.4--5.0.sql ├── repmgr--4.4.sql ├── repmgr--5.0--5.1.sql ├── repmgr--5.0.sql ├── repmgr--5.1--5.2.sql ├── repmgr--5.1.sql ├── repmgr--5.2--5.3.sql ├── repmgr--5.2.sql ├── repmgr--5.3--5.4.sql ├── repmgr--5.3.sql ├── repmgr--5.4--5.5.sql ├── repmgr--5.4.sql ├── repmgr--5.5.sql ├── repmgr--unpackaged--4.0.sql ├── repmgr--unpackaged--5.1.sql ├── repmgr--unpackaged--5.2.sql ├── repmgr--unpackaged--5.3.sql ├── repmgr-action-cluster.c ├── repmgr-action-cluster.h ├── repmgr-action-daemon.c ├── repmgr-action-daemon.h ├── repmgr-action-node.c ├── repmgr-action-node.h ├── repmgr-action-primary.c ├── repmgr-action-primary.h ├── repmgr-action-service.c ├── repmgr-action-service.h ├── repmgr-action-standby.c ├── repmgr-action-standby.h ├── repmgr-action-witness.c ├── repmgr-action-witness.h ├── repmgr-client-global.h ├── repmgr-client.c ├── repmgr-client.h ├── repmgr.c ├── repmgr.conf.sample ├── repmgr.control ├── repmgr.h ├── repmgr_version.h.in ├── repmgrd-physical.c ├── repmgrd-physical.h ├── repmgrd.c ├── repmgrd.h ├── sql ├── .gitignore └── repmgr_extension.sql ├── strutil.c ├── strutil.h ├── sysutils.c ├── sysutils.h └── voting.h /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/COPYRIGHT -------------------------------------------------------------------------------- /CREDITS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/CREDITS -------------------------------------------------------------------------------- /FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/FAQ.md -------------------------------------------------------------------------------- /HISTORY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/HISTORY -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile.global.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/Makefile.global.in -------------------------------------------------------------------------------- /Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/Makefile.in -------------------------------------------------------------------------------- /PACKAGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/PACKAGES.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/README.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/TODO.md -------------------------------------------------------------------------------- /compat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/compat.c -------------------------------------------------------------------------------- /compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/compat.h -------------------------------------------------------------------------------- /config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/config.h.in -------------------------------------------------------------------------------- /configdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/configdata.c -------------------------------------------------------------------------------- /configfile-scan.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/configfile-scan.l -------------------------------------------------------------------------------- /configfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/configfile.c -------------------------------------------------------------------------------- /configfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/configfile.h -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/configure -------------------------------------------------------------------------------- /configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/configure.in -------------------------------------------------------------------------------- /contrib/convert-config.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/contrib/convert-config.pl -------------------------------------------------------------------------------- /controldata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/controldata.c -------------------------------------------------------------------------------- /controldata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/controldata.h -------------------------------------------------------------------------------- /dbutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/dbutils.c -------------------------------------------------------------------------------- /dbutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/dbutils.h -------------------------------------------------------------------------------- /dirutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/dirutil.c -------------------------------------------------------------------------------- /dirutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/dirutil.h -------------------------------------------------------------------------------- /doc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/doc/.gitignore -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/appendix-faq.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/doc/appendix-faq.xml -------------------------------------------------------------------------------- /doc/appendix-packages.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/doc/appendix-packages.xml -------------------------------------------------------------------------------- /doc/appendix-release-notes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/doc/appendix-release-notes.xml -------------------------------------------------------------------------------- /doc/appendix-signatures.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/doc/appendix-signatures.xml -------------------------------------------------------------------------------- /doc/appendix-support.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/doc/appendix-support.xml -------------------------------------------------------------------------------- /doc/changes-in-repmgr4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/doc/changes-in-repmgr4.md -------------------------------------------------------------------------------- /doc/cloning-standbys.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/doc/cloning-standbys.xml -------------------------------------------------------------------------------- /doc/configuration-file-log-settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/doc/configuration-file-log-settings.xml -------------------------------------------------------------------------------- /doc/configuration-file-optional-settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/doc/configuration-file-optional-settings.xml -------------------------------------------------------------------------------- /doc/configuration-file-required-settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/doc/configuration-file-required-settings.xml -------------------------------------------------------------------------------- /doc/configuration-file-service-commands.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/doc/configuration-file-service-commands.xml -------------------------------------------------------------------------------- /doc/configuration-file.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/doc/configuration-file.xml -------------------------------------------------------------------------------- /doc/configuration-password-management.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/doc/configuration-password-management.xml -------------------------------------------------------------------------------- /doc/configuration-permissions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/doc/configuration-permissions.xml -------------------------------------------------------------------------------- /doc/configuration.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/doc/configuration.xml -------------------------------------------------------------------------------- /doc/event-notifications.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/doc/event-notifications.xml -------------------------------------------------------------------------------- /doc/filelist.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/doc/filelist.xml -------------------------------------------------------------------------------- /doc/follow-new-primary.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/doc/follow-new-primary.xml -------------------------------------------------------------------------------- /doc/install-packages.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/doc/install-packages.xml -------------------------------------------------------------------------------- /doc/install-requirements.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/doc/install-requirements.xml -------------------------------------------------------------------------------- /doc/install-source.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/doc/install-source.xml -------------------------------------------------------------------------------- /doc/install.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/doc/install.xml -------------------------------------------------------------------------------- /doc/legal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/doc/legal.xml -------------------------------------------------------------------------------- /doc/overview.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/doc/overview.xml -------------------------------------------------------------------------------- /doc/promoting-standby.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/doc/promoting-standby.xml -------------------------------------------------------------------------------- /doc/quickstart.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/doc/quickstart.xml -------------------------------------------------------------------------------- /doc/repmgr-cluster-cleanup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/doc/repmgr-cluster-cleanup.xml -------------------------------------------------------------------------------- /doc/repmgr-cluster-crosscheck.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/doc/repmgr-cluster-crosscheck.xml -------------------------------------------------------------------------------- /doc/repmgr-cluster-event.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/doc/repmgr-cluster-event.xml -------------------------------------------------------------------------------- /doc/repmgr-cluster-matrix.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/doc/repmgr-cluster-matrix.xml -------------------------------------------------------------------------------- /doc/repmgr-cluster-show.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/doc/repmgr-cluster-show.xml -------------------------------------------------------------------------------- /doc/repmgr-daemon-start.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/doc/repmgr-daemon-start.xml -------------------------------------------------------------------------------- /doc/repmgr-daemon-stop.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/doc/repmgr-daemon-stop.xml -------------------------------------------------------------------------------- /doc/repmgr-node-check.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/doc/repmgr-node-check.xml -------------------------------------------------------------------------------- /doc/repmgr-node-rejoin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/doc/repmgr-node-rejoin.xml -------------------------------------------------------------------------------- /doc/repmgr-node-service.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/doc/repmgr-node-service.xml -------------------------------------------------------------------------------- /doc/repmgr-node-status.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/doc/repmgr-node-status.xml -------------------------------------------------------------------------------- /doc/repmgr-primary-register.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/doc/repmgr-primary-register.xml -------------------------------------------------------------------------------- /doc/repmgr-primary-unregister.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/doc/repmgr-primary-unregister.xml -------------------------------------------------------------------------------- /doc/repmgr-service-pause.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/doc/repmgr-service-pause.xml -------------------------------------------------------------------------------- /doc/repmgr-service-status.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/doc/repmgr-service-status.xml -------------------------------------------------------------------------------- /doc/repmgr-service-unpause.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/doc/repmgr-service-unpause.xml -------------------------------------------------------------------------------- /doc/repmgr-standby-clone.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/doc/repmgr-standby-clone.xml -------------------------------------------------------------------------------- /doc/repmgr-standby-follow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/doc/repmgr-standby-follow.xml -------------------------------------------------------------------------------- /doc/repmgr-standby-promote.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/doc/repmgr-standby-promote.xml -------------------------------------------------------------------------------- /doc/repmgr-standby-register.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/doc/repmgr-standby-register.xml -------------------------------------------------------------------------------- /doc/repmgr-standby-switchover.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/doc/repmgr-standby-switchover.xml -------------------------------------------------------------------------------- /doc/repmgr-standby-unregister.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/doc/repmgr-standby-unregister.xml -------------------------------------------------------------------------------- /doc/repmgr-witness-register.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/doc/repmgr-witness-register.xml -------------------------------------------------------------------------------- /doc/repmgr-witness-unregister.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/doc/repmgr-witness-unregister.xml -------------------------------------------------------------------------------- /doc/repmgr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/doc/repmgr.xml -------------------------------------------------------------------------------- /doc/repmgrd-automatic-failover.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/doc/repmgrd-automatic-failover.xml -------------------------------------------------------------------------------- /doc/repmgrd-configuration.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/doc/repmgrd-configuration.xml -------------------------------------------------------------------------------- /doc/repmgrd-node-fencing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/doc/repmgrd-node-fencing.md -------------------------------------------------------------------------------- /doc/repmgrd-operation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/doc/repmgrd-operation.xml -------------------------------------------------------------------------------- /doc/repmgrd-overview.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/doc/repmgrd-overview.xml -------------------------------------------------------------------------------- /doc/stylesheet-common.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/doc/stylesheet-common.xsl -------------------------------------------------------------------------------- /doc/stylesheet-fo.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/doc/stylesheet-fo.xsl -------------------------------------------------------------------------------- /doc/stylesheet-html-common.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/doc/stylesheet-html-common.xsl -------------------------------------------------------------------------------- /doc/stylesheet-html-nochunk.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/doc/stylesheet-html-nochunk.xsl -------------------------------------------------------------------------------- /doc/stylesheet-speedup-common.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/doc/stylesheet-speedup-common.xsl -------------------------------------------------------------------------------- /doc/stylesheet-speedup-xhtml.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/doc/stylesheet-speedup-xhtml.xsl -------------------------------------------------------------------------------- /doc/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/doc/stylesheet.css -------------------------------------------------------------------------------- /doc/stylesheet.dsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/doc/stylesheet.dsl -------------------------------------------------------------------------------- /doc/stylesheet.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/doc/stylesheet.xsl -------------------------------------------------------------------------------- /doc/switchover.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/doc/switchover.xml -------------------------------------------------------------------------------- /doc/upgrading-from-repmgr3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/doc/upgrading-from-repmgr3.md -------------------------------------------------------------------------------- /doc/upgrading-repmgr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/doc/upgrading-repmgr.xml -------------------------------------------------------------------------------- /doc/website-docs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/doc/website-docs.css -------------------------------------------------------------------------------- /errcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/errcode.h -------------------------------------------------------------------------------- /expected/repmgr_extension.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/expected/repmgr_extension.out -------------------------------------------------------------------------------- /log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/log.c -------------------------------------------------------------------------------- /log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/log.h -------------------------------------------------------------------------------- /pgbackupapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/pgbackupapi.c -------------------------------------------------------------------------------- /pgbackupapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/pgbackupapi.h -------------------------------------------------------------------------------- /repmgr--4.0--4.1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/repmgr--4.0--4.1.sql -------------------------------------------------------------------------------- /repmgr--4.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/repmgr--4.0.sql -------------------------------------------------------------------------------- /repmgr--4.1--4.2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/repmgr--4.1--4.2.sql -------------------------------------------------------------------------------- /repmgr--4.1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/repmgr--4.1.sql -------------------------------------------------------------------------------- /repmgr--4.2--4.3.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/repmgr--4.2--4.3.sql -------------------------------------------------------------------------------- /repmgr--4.2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/repmgr--4.2.sql -------------------------------------------------------------------------------- /repmgr--4.3--4.4.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/repmgr--4.3--4.4.sql -------------------------------------------------------------------------------- /repmgr--4.3.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/repmgr--4.3.sql -------------------------------------------------------------------------------- /repmgr--4.4--5.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/repmgr--4.4--5.0.sql -------------------------------------------------------------------------------- /repmgr--4.4.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/repmgr--4.4.sql -------------------------------------------------------------------------------- /repmgr--5.0--5.1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/repmgr--5.0--5.1.sql -------------------------------------------------------------------------------- /repmgr--5.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/repmgr--5.0.sql -------------------------------------------------------------------------------- /repmgr--5.1--5.2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/repmgr--5.1--5.2.sql -------------------------------------------------------------------------------- /repmgr--5.1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/repmgr--5.1.sql -------------------------------------------------------------------------------- /repmgr--5.2--5.3.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/repmgr--5.2--5.3.sql -------------------------------------------------------------------------------- /repmgr--5.2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/repmgr--5.2.sql -------------------------------------------------------------------------------- /repmgr--5.3--5.4.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/repmgr--5.3--5.4.sql -------------------------------------------------------------------------------- /repmgr--5.3.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/repmgr--5.3.sql -------------------------------------------------------------------------------- /repmgr--5.4--5.5.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/repmgr--5.4--5.5.sql -------------------------------------------------------------------------------- /repmgr--5.4.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/repmgr--5.4.sql -------------------------------------------------------------------------------- /repmgr--5.5.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/repmgr--5.5.sql -------------------------------------------------------------------------------- /repmgr--unpackaged--4.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/repmgr--unpackaged--4.0.sql -------------------------------------------------------------------------------- /repmgr--unpackaged--5.1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/repmgr--unpackaged--5.1.sql -------------------------------------------------------------------------------- /repmgr--unpackaged--5.2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/repmgr--unpackaged--5.2.sql -------------------------------------------------------------------------------- /repmgr--unpackaged--5.3.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/repmgr--unpackaged--5.3.sql -------------------------------------------------------------------------------- /repmgr-action-cluster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/repmgr-action-cluster.c -------------------------------------------------------------------------------- /repmgr-action-cluster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/repmgr-action-cluster.h -------------------------------------------------------------------------------- /repmgr-action-daemon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/repmgr-action-daemon.c -------------------------------------------------------------------------------- /repmgr-action-daemon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/repmgr-action-daemon.h -------------------------------------------------------------------------------- /repmgr-action-node.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/repmgr-action-node.c -------------------------------------------------------------------------------- /repmgr-action-node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/repmgr-action-node.h -------------------------------------------------------------------------------- /repmgr-action-primary.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/repmgr-action-primary.c -------------------------------------------------------------------------------- /repmgr-action-primary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/repmgr-action-primary.h -------------------------------------------------------------------------------- /repmgr-action-service.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/repmgr-action-service.c -------------------------------------------------------------------------------- /repmgr-action-service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/repmgr-action-service.h -------------------------------------------------------------------------------- /repmgr-action-standby.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/repmgr-action-standby.c -------------------------------------------------------------------------------- /repmgr-action-standby.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/repmgr-action-standby.h -------------------------------------------------------------------------------- /repmgr-action-witness.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/repmgr-action-witness.c -------------------------------------------------------------------------------- /repmgr-action-witness.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/repmgr-action-witness.h -------------------------------------------------------------------------------- /repmgr-client-global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/repmgr-client-global.h -------------------------------------------------------------------------------- /repmgr-client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/repmgr-client.c -------------------------------------------------------------------------------- /repmgr-client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/repmgr-client.h -------------------------------------------------------------------------------- /repmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/repmgr.c -------------------------------------------------------------------------------- /repmgr.conf.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/repmgr.conf.sample -------------------------------------------------------------------------------- /repmgr.control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/repmgr.control -------------------------------------------------------------------------------- /repmgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/repmgr.h -------------------------------------------------------------------------------- /repmgr_version.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/repmgr_version.h.in -------------------------------------------------------------------------------- /repmgrd-physical.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/repmgrd-physical.c -------------------------------------------------------------------------------- /repmgrd-physical.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/repmgrd-physical.h -------------------------------------------------------------------------------- /repmgrd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/repmgrd.c -------------------------------------------------------------------------------- /repmgrd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/repmgrd.h -------------------------------------------------------------------------------- /sql/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/sql/.gitignore -------------------------------------------------------------------------------- /sql/repmgr_extension.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/sql/repmgr_extension.sql -------------------------------------------------------------------------------- /strutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/strutil.c -------------------------------------------------------------------------------- /strutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/strutil.h -------------------------------------------------------------------------------- /sysutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/sysutils.c -------------------------------------------------------------------------------- /sysutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/sysutils.h -------------------------------------------------------------------------------- /voting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnterpriseDB/repmgr/HEAD/voting.h --------------------------------------------------------------------------------