Skip to content

Commit

Permalink
fix(docs): ubuntu install download location
Browse files Browse the repository at this point in the history
Download ubuntu packages to `/tmp` rather than `~`
  • Loading branch information
devrimyatar authored Mar 7, 2023
1 parent 37ade38 commit bb3a5cd
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/install/vm-install/ubuntu.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,27 +14,27 @@ Before you install, check the [VM system requirements](vm-requirements.md).
- Download the release package from the Github Gluu Flex [Releases](https://github.com/GluuFederation/flex/releases)

```
wget https://github.com/GluuFederation/flex/releases/download/vreplace-flex-version/flex_replace-flex-version.ubuntu22.04_amd64.deb -P ~/
wget https://github.com/GluuFederation/flex/releases/download/vreplace-flex-version/flex_replace-flex-version.ubuntu22.04_amd64.deb -P /tmp
```

- Install the package

```
apt install -y ~/flex_replace-flex-version.ubuntu22.04_amd64.deb
apt install -y /tmp/flex_replace-flex-version.ubuntu22.04_amd64.deb
```

### Ubuntu 20.04

- Download the release package from the Github Gluu Flex [Releases](https://github.com/GluuFederation/flex/releases)

```
wget https://github.com/GluuFederation/flex/releases/download/vreplace-flex-version/flex_replace-flex-version.ubuntu20.04_amd64.deb -P ~/
wget https://github.com/GluuFederation/flex/releases/download/vreplace-flex-version/flex_replace-flex-version.ubuntu20.04_amd64.deb -P /tmp
```

- Install the package

```
apt install -y ~/flex_replace-flex-version.ubuntu20.04_amd64.deb
apt install -y /tmp/flex_replace-flex-version.ubuntu20.04_amd64.deb
```

## Run the setup script
Expand Down

0 comments on commit bb3a5cd

Please sign in to comment.