mirror of
https://github.com/EnterpriseDB/repmgr.git
synced 2026-03-22 22:56:29 +00:00
Rename config.[ch] to configfile.[ch]
This commit is contained in:
@@ -28,8 +28,8 @@ $(info Building against PostgreSQL $(MAJORVERSION))
|
||||
|
||||
REPMGR_CLIENT_OBJS = repmgr-client.o \
|
||||
repmgr-action-primary.o repmgr-action-standby.o repmgr-action-bdr.o repmgr-action-cluster.o \
|
||||
config.o log.o strutil.o dbutils.o dirutil.o compat.o controldata.o
|
||||
REPMGRD_OBJS = repmgrd.o repmgrd-physical.o repmgrd-bdr.o config.o log.o dbutils.o strutil.o
|
||||
configfile.o log.o strutil.o dbutils.o dirutil.o compat.o controldata.o
|
||||
REPMGRD_OBJS = repmgrd.o repmgrd-physical.o repmgrd-bdr.o configfile.o log.o dbutils.o strutil.o
|
||||
|
||||
$(REPMGR_CLIENT_OBJS): repmgr-client.h
|
||||
|
||||
@@ -61,7 +61,7 @@ additional-clean:
|
||||
rm -f repmgrd-physical.o
|
||||
rm -f repmgrd-bdr.o
|
||||
rm -f compat.o
|
||||
rm -f config.o
|
||||
rm -f configfile.o
|
||||
rm -f controldata.o
|
||||
rm -f dbutils.o
|
||||
rm -f dirutil.o
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
#include <sys/stat.h> /* for stat() */
|
||||
|
||||
#include "repmgr.h"
|
||||
#include "config.h"
|
||||
#include "configfile.h"
|
||||
#include "log.h"
|
||||
|
||||
const static char *_progname = NULL;
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* config.h
|
||||
* configfile.h
|
||||
*
|
||||
* Copyright (c) 2ndQuadrant, 2010-2017
|
||||
*
|
||||
@@ -11,7 +11,7 @@
|
||||
#include "pqexpbuffer.h"
|
||||
#include "portability/instr_time.h"
|
||||
|
||||
#include "config.h"
|
||||
#include "configfile.h"
|
||||
#include "strutil.h"
|
||||
#include "voting.h"
|
||||
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
#ifndef _REPMGR_CLIENT_GLOBAL_H_
|
||||
#define _REPMGR_CLIENT_GLOBAL_H_
|
||||
|
||||
#include "config.h"
|
||||
#include "configfile.h"
|
||||
|
||||
/* values for --copy-external-config-files */
|
||||
#define CONFIG_FILE_SAMEPATH 1
|
||||
|
||||
3
repmgr.h
3
repmgr.h
@@ -15,7 +15,7 @@
|
||||
#include "repmgr_version.h"
|
||||
#include "errcode.h"
|
||||
#include "strutil.h"
|
||||
#include "config.h"
|
||||
#include "configfile.h"
|
||||
#include "dbutils.h"
|
||||
#include "log.h"
|
||||
|
||||
@@ -51,4 +51,5 @@
|
||||
#define ERRBUFF_SIZE 512
|
||||
|
||||
|
||||
|
||||
#endif /* _REPMGR_H_ */
|
||||
|
||||
@@ -9,7 +9,7 @@
|
||||
#include "repmgr.h"
|
||||
#include "repmgrd.h"
|
||||
#include "repmgrd-bdr.h"
|
||||
#include "config.h"
|
||||
#include "configfile.h"
|
||||
|
||||
|
||||
static volatile sig_atomic_t got_SIGHUP = false;
|
||||
|
||||
Reference in New Issue
Block a user