Skip to content

Commit d07f37f

Browse files
committed
TEST
1 parent ebcd396 commit d07f37f

File tree

1 file changed

+8
-8
lines changed
  • contrib/pg_tde/documentation/docs

1 file changed

+8
-8
lines changed

contrib/pg_tde/documentation/docs/apt.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -21,31 +21,31 @@ Check the [list of supported platforms](install.md#__tabbed_1_1) before continui
2121
Install them with the following command:
2222

2323
```{.bash data-prompt="$"}
24-
sudo apt-get install -y wget gnupg2 curl lsb-release
24+
$ sudo apt-get install -y wget gnupg2 curl lsb-release
2525
```
2626

2727
2. Fetch the `percona-release` package
2828

2929
```{.bash data-prompt="$"}
30-
sudo wget https://repo.percona.com/apt/percona-release_latest.generic_all.deb
30+
$ sudo wget https://repo.percona.com/apt/percona-release_latest.generic_all.deb
3131
```
3232

3333
3. Install `percona-release`
3434

3535
```{.bash data-prompt="$"}
36-
sudo dpkg -i percona-release_latest.generic_all.deb
36+
$ sudo dpkg -i percona-release_latest.generic_all.deb
3737
```
3838

3939
4. Enable the Percona Distribution for PostgreSQL repository
4040

4141
```{.bash data-prompt="$"}
42-
sudo percona-release enable-only ppg-{{pgversion17}}
42+
$ sudo percona-release enable-only ppg-{{pgversion17}}
4343
```
4444

4545
6. Update the local cache
4646

4747
```{.bash data-prompt="$"}
48-
sudo apt-get update
48+
$ sudo apt-get update
4949
```
5050

5151
## Install pg_tde {.power-number}
@@ -58,16 +58,16 @@ Check the [list of supported platforms](install.md#__tabbed_1_1) before continui
5858

5959
The use of the `CASCADE` parameter deletes all tables that were created in the database with `pg_tde` enabled and also all dependencies upon the encrypted table (e.g. foreign keys in a non-encrypted table used in the encrypted one).
6060

61-
```sql
62-
DROP EXTENSION pg_tde CASCADE;
61+
```{.sql data-prompt="#"}
62+
# DROP EXTENSION pg_tde CASCADE;
6363
```
6464

6565
2. Uninstall the `percona-postgresql-17-pg-tde` package.
6666

6767
After all [preconditions](#preconditions) are met, run the following command to install `pg_tde`:
6868

6969
```{.bash data-prompt="$"}
70-
sudo apt-get install -y percona-postgresql-17
70+
$ sudo apt-get install -y percona-postgresql-17
7171
```
7272

7373
## Next steps

0 commit comments

Comments
 (0)