mirror of
https://github.com/EnterpriseDB/repmgr.git
synced 2026-03-26 16:46:28 +00:00
Makefiles and placeholder code
This commit is contained in:
21
repmgr-client.c
Normal file
21
repmgr-client.c
Normal file
@@ -0,0 +1,21 @@
|
||||
/*
|
||||
* repmgr.c - Command interpreter for the repmgr package
|
||||
*
|
||||
* Copyright (c) 2ndQuadrant, 2010-2017
|
||||
*
|
||||
* This module is a command-line utility to easily setup a cluster of
|
||||
* hot standby servers for an HA environment
|
||||
*
|
||||
*/
|
||||
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "repmgr.h"
|
||||
|
||||
int
|
||||
main(int argc, char **argv)
|
||||
{
|
||||
puts("repmgr");
|
||||
return 0;
|
||||
}
|
||||
Reference in New Issue
Block a user