mirror of
https://github.com/EnterpriseDB/repmgr.git
synced 2026-03-22 22:56:29 +00:00
"standby clone": cowardly refuse to clone into an active data directory
By checking the PID file in the same way pg_ctl does, we can be pretty much certain whether the target data directory contains an active PostgreSQL instance.
This commit is contained in:
19
dirutil.h
19
dirutil.h
@@ -19,12 +19,29 @@
|
||||
#ifndef _DIRUTIL_H_
|
||||
#define _DIRUTIL_H_
|
||||
|
||||
typedef enum
|
||||
{
|
||||
DIR_ERROR = -1,
|
||||
DIR_NOENT,
|
||||
DIR_EMPTY,
|
||||
DIR_NOT_EMPTY
|
||||
} DataDirState;
|
||||
|
||||
typedef enum
|
||||
{
|
||||
PG_DIR_ERROR = -1,
|
||||
PG_DIR_NOT_RUNNING,
|
||||
PG_DIR_RUNNING
|
||||
} PgDirState;
|
||||
|
||||
extern int mkdir_p(char *path, mode_t omode);
|
||||
extern bool set_dir_permissions(char *path);
|
||||
|
||||
extern int check_dir(char *path);
|
||||
extern DataDirState check_dir(char *path);
|
||||
extern bool create_dir(char *path);
|
||||
extern bool is_pg_dir(char *path);
|
||||
extern PgDirState is_pg_running(char *path);
|
||||
extern bool create_pg_dir(char *path, bool force);
|
||||
extern int rmdir_recursive(char *path);
|
||||
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user