-
Notifications
You must be signed in to change notification settings - Fork 249
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Dj Walker-Morgan <[email protected]>
- Loading branch information
Showing
2 changed files
with
8 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,8 +22,8 @@ Run the following commands to clone the tpaexec source repository from Github | |
and build a new Docker image named `tpa/tpaexec`: | ||
|
||
```bash | ||
$ git clone ssh://[email protected]/EnterpriseDB/tpaexec.git | ||
$ cd tpaexec | ||
$ git clone ssh://[email protected]/EnterpriseDB/tpa.git | ||
$ cd tpa | ||
$ docker build -t tpa/tpaexec . | ||
``` | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -41,9 +41,9 @@ $ brew install python@3 openvpn flock coreutils gpatch git | |
Next, install TPA itself: | ||
|
||
```bash | ||
$ git clone ssh://[email protected]/EnterpriseDB/tpaexec.git | ||
$ ./tpaexec/bin/tpaexec setup | ||
$ ./tpaexec/bin/tpaexec selftest | ||
$ git clone ssh://[email protected]/EnterpriseDB/tpa.git | ||
$ ./tpa/bin/tpaexec setup | ||
$ ./tpa/bin/tpaexec selftest | ||
``` | ||
|
||
## Step-by-step | ||
|
@@ -54,13 +54,13 @@ If your system does not have Python 3.6+ packages, you can use `pyenv` | |
to install a more recent Python in your home directory (see below), or | ||
you can [run TPA in a Docker container](INSTALL-docker/). | ||
|
||
Next, clone the TPA repository into, say, `~/tpaexec`. (It doesn't | ||
Next, clone the TPA repository into, say, `~/tpa`. (It doesn't | ||
matter where you put it, but don't use `/opt/EDB/TPA` or | ||
`/opt/2ndQuadrant/TPA`, to avoid conflicts if you install the TPA | ||
packages in future.) | ||
|
||
```bash | ||
$ git clone ssh://[email protected]/EnterpriseDB/tpaexec.git ~/tpaexec | ||
$ git clone ssh://[email protected]/EnterpriseDB/tpa.git ~/tpa | ||
``` | ||
|
||
(If you're installing from source, please clone the repository instead | ||
|
@@ -71,7 +71,7 @@ The remaining steps are the same as if you had installed the package. | |
```bash | ||
# Add tpaexec to your PATH for convenience | ||
# (Put this in your ~/.bashrc too) | ||
$ export PATH=$PATH:$HOME/tpaexec/bin | ||
$ export PATH=$PATH:$HOME/tpa/bin | ||
|
||
$ tpaexec setup | ||
$ tpaexec selftest | ||
|