Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix installing.mdx #4875

Merged
merged 1 commit into from
Oct 4, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions advocacy_docs/pg_extensions/pg_failover_slots/installing.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -28,16 +28,16 @@ Before you begin the installation process:

## Install the package

The syntax for the RPM package install command is:
The syntax for the package install command is:

```shell
sudo <package-manager> -y install pg-<postgres><postgres_version>-pg-failover-slots<major_version>
sudo <package-manager> -y install edb-<postgres><postgres_version>-pg-failover-slots<major_version>
```

The syntax for the Debian package install command is:

```shell
sudo <package-manager> -y install pg-<postgres><postgres_version>-pg-failover-slots-<major_version>
sudo <package-manager> -y install edb-<postgres><postgres_version>-pg-failover-slots-<major_version>
```

Where:
Expand Down Expand Up @@ -65,12 +65,12 @@ Where:
For example, to install PG Failover Slots 1.0.0 for EDB Postgres Advanced Server 15 on a RHEL 8 platform:

```shell
sudo dnf -y install pg-as15-pg-failover-slots1
sudo dnf -y install edb-as15-pg-failover-slots1
```

To install PG Failover Slots 1.0.0 for EDB Postgres Advanced Server 15 on a Debian 11 platform:

```shell
sudo apt-get -y install pg-as15-pg-failover-slots-1
sudo apt-get -y install edb-as15-pg-failover-slots-1
```