mirror of
https://github.com/EnterpriseDB/repmgr.git
synced 2026-03-23 15:16:29 +00:00
This is needed for better switchover control, so we can instruct the remote repmgr to issue the appropriate server command rather than trying to work out what it should be from the local node.
18 lines
360 B
C
18 lines
360 B
C
/*
|
|
* repmgr-action-node.h
|
|
* Copyright (c) 2ndQuadrant, 2010-2017
|
|
*/
|
|
|
|
#ifndef _REPMGR_ACTION_NODE_H_
|
|
#define _REPMGR_ACTION_NODE_H_
|
|
|
|
extern void do_node_status(void);
|
|
extern void do_node_check(void);
|
|
extern void do_node_archive_config(void);
|
|
extern void do_node_restore_config(void);
|
|
extern void do_node_service(void);
|
|
|
|
|
|
|
|
#endif /* _REPMGR_ACTION_NODE_H_ */
|