mirror of
https://github.com/EnterpriseDB/repmgr.git
synced 2026-03-22 22:56:29 +00:00
- Add checks to test if the directories are useful for us (basically the checks follow the same approach as initdb does) - Add connection parameters - Better use of rsync - Some more clean up of code Changes in repmgrd are: - Add a parameter to allow the user specify an repmgr.conf - Change the name of the repl_status table for repl_monitor - Create a repl_status view that also shows lag in time - Some more clean up of code
10 lines
223 B
C
10 lines
223 B
C
/*
|
|
* config.h
|
|
* Copyright (c) 2ndQuadrant, 2010
|
|
*
|
|
*/
|
|
|
|
void parse_config(const char *config_file, char *cluster_name, int *node, char *service);
|
|
void parse_line(char *buff, char *name, char *value);
|
|
char *trim(char *s);
|