Skip to content

Commit

Permalink
Updating how to install from package
Browse files Browse the repository at this point in the history
  • Loading branch information
robinportigliatti committed Oct 25, 2024
1 parent 4cacee1 commit 0e22f3e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
### Features

- **Restore Point Management**: Creates and logs restore points in a dedicated table.
- **PL/pgSQL Function**: The `pg_extend_create_restore_point` function creates a restore point using `pg_extend_create_restore_point()` and logs the information in the `restore_points` table. It supports different validation modes.
- **PL/pgSQL Function**: The `pg_extend_create_restore_point` function creates a restore point using `pg_create_restore_point()` and logs the information in the `restore_points` table. It supports different validation modes.
- **Creation Modes**:
- `NOSTRICT`: Creates the restore point without any prior validation.
- `STRICT`: Ensures that the combination of `restore_point_name` and `walfile` does not already exist.
Expand Down Expand Up @@ -35,7 +35,7 @@
##### Debian

```bash
export PGRESTOREPOINTSVERSION="1.0"
export PGRESTOREPOINTSVERSION="1.0.0"
export PGVERSION=17
wget https://github.com/dalibo/pg_restore_points/releases/download/v${PGRESTOREPOINTSVERSION}/pg_restore_points_${PGVERSION}_${PGRESTOREPOINTSVERSION}_amd64.deb
dpkg -i pg_restore_points_${PGVERSION}_${PGRESTOREPOINTSVERSION}_amd64.deb
Expand All @@ -44,10 +44,10 @@ dpkg -i pg_restore_points_${PGVERSION}_${PGRESTOREPOINTSVERSION}_amd64.deb
##### RedHat

```bash
export PGRESTOREPOINTSVERSION="1.0"
export PGRESTOREPOINTSVERSION="1.0.0"
export PGVERSION=17
wget https://github.com/dalibo/pg_restore_points/releases/download/v${PGRESTOREPOINTSVERSION}/pg_restore_points_${PGVERSION}_${PGRESTOREPOINTSVERSION}.x86_64.rpm
rpm -i pg_restore_points_${PGVERSION}_${PGRESTOREPOINTSVERSION}.x86_64.rpm
wget https://github.com/dalibo/pg_restore_points/releases/download/v${PGRESTOREPOINTSVERSION}/pg_restore_points_${PGVERSION}-${PGRESTOREPOINTSVERSION}-1.x86_64.rpm
rpm -i pg_restore_points_${PGVERSION}-${PGRESTOREPOINTSVERSION}-1.x86_64.rpm
```
### Usage

Expand Down

0 comments on commit 0e22f3e

Please sign in to comment.