blob: c0494137bdb0e3792256b8cebe14972d8fb70165 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/*-------------------------------------------------------------------------
*
* bash_handler.h
*
* Bash script handling module of Postgres-XC configuration and operation tool.
*
* Copyright (c) 2013 Postgres-XC Development Group
*
*-------------------------------------------------------------------------
*/
#ifndef BASH_HANDLER_H
#define BASH_HANDLER_H
void install_pgxc_ctl_bash(char *path, int read_prototype);
void read_config_file(char *path, char *conf);
void uninstall_pgxc_ctl_bash(char *path);
#endif /* BASH_HANDLER_H */
|