From 82599ec8ea953b98b20a0df01d83a30759570527 Mon Sep 17 00:00:00 2001 From: manoj suryawanshi Date: Mon, 6 Jan 2025 16:39:58 +0530 Subject: [PATCH] docs: ubuntu.md for flex stable (#1956) * Update ubuntu.md for flex stable Signed-off-by: manoj suryawanshi * Update suse.md for stable release Signed-off-by: manoj suryawanshi * Update rhel.md for stable release Signed-off-by: manoj suryawanshi * Update suse.md for stable release Signed-off-by: manoj suryawanshi * Update rhel.md for stable release Signed-off-by: manoj suryawanshi --------- Signed-off-by: manoj suryawanshi Co-authored-by: Mohammad Abudayyeh <47318409+moabu@users.noreply.github.com> --- docs/install/vm-install/rhel.md | 8 ++++---- docs/install/vm-install/suse.md | 8 ++++---- docs/install/vm-install/ubuntu.md | 10 +++++----- 3 files changed, 13 insertions(+), 13 deletions(-) diff --git a/docs/install/vm-install/rhel.md b/docs/install/vm-install/rhel.md index 9773c6a22..493d5a8af 100644 --- a/docs/install/vm-install/rhel.md +++ b/docs/install/vm-install/rhel.md @@ -40,7 +40,7 @@ sudo yum -y module enable mod_auth_openidc; - Download the release package from the Github Flex [Releases](https://github.com/gluufederation/flex/releases) ```shell -wget https://github.com/GluuFederation/flex/releases/download/vreplace-flex-version/flex-replace-flex-version-stable-el8.x86_64.rpm -P /tmp +wget https://github.com/GluuFederation/flex/releases/download/vreplace-flex-version/flex-replace-flex-version-stable.el8.x86_64.rpm -P /tmp ``` - GPG key is used to ensure the authenticity of the downloaded package during the installation process. If the key is not found, the [installation step](#install-the-release-package) would fail. Use the commands below to download and @@ -56,12 +56,12 @@ sudo rpm -import automation-flex-public-gpg.asc ``` - Verify the integrity of the downloaded package using published `sha256sum`. Download the `sha256sum` file for the package ```shell -wget https://github.com/GluuFederation/flex/releases/download/vreplace-flex-version/flex-replace-flex-version-stable-el8.x86_64.rpm.sha256sum -P /tmp +wget https://github.com/GluuFederation/flex/releases/download/vreplace-flex-version/flex-replace-flex-version-stable.el8.x86_64.rpm.sha256sum -P /tmp ``` Run the command below from the directory where the downloaded package and the `.sha256sum` files are located. ```shell cd /tmp; -sha256sum -c flex-replace-flex-version-el8.x86_64.rpm.sha256sum; +sha256sum -c flex-replace-flex-version-stable.el8.x86_64.rpm.sha256sum; ``` Output similar to below should confirm the integrity of the downloaded package. ```text @@ -70,7 +70,7 @@ flex-replace-flex-version-el8.x86_64.rpm : ok ### Install the Release Package ```shell -sudo yum install ./flex-replace-flex-version-el8.x86_64.rpm +sudo yum install ./flex-replace-flex-version-stable.el8.x86_64.rpm ``` ## Run the setup script diff --git a/docs/install/vm-install/suse.md b/docs/install/vm-install/suse.md index a77955fdb..a27419bf5 100644 --- a/docs/install/vm-install/suse.md +++ b/docs/install/vm-install/suse.md @@ -40,7 +40,7 @@ sudo SUSEConnect -p PackageHub/15.4/x86_64 - Download the release package from the GitHub FLEX [Releases](https://github.com/gluufederation/flex/releases) ```shell -wget https://github.com/GluuFederation/flex/releases/download/vreplace-flex-version/flex-replace-flex-version-stable-suse15.x86_64.rpm -P ~/ +wget https://github.com/GluuFederation/flex/releases/download/vreplace-flex-version/flex-replace-flex-version-stable.suse15.x86_64.rpm -P ~/ ``` - GPG key is used to ensure the authenticity of the downloaded package during the installation process. If the key is @@ -58,12 +58,12 @@ sudo rpm -import automation-flex-public-gpg.asc - Verify the integrity of the downloaded package using published `sha256sum`. Download the `sha256sum` file for the package ``` -wget https://github.com/GluuFederation/flex/releases/download/vreplace-flex-version/flex-replace-flex-version-stable-suse15.x86_64.rpm.sha256sum -P ~/ +wget https://github.com/GluuFederation/flex/releases/download/vreplace-flex-version/flex-replace-flex-version-stable.suse15.x86_64.rpm.sha256sum -P ~/ ``` - Verify package integrity ``` -sha256sum -c flex-replace-flex-version-suse15.x86_64.rpm.sha256sum +sha256sum -c flex-replace-flex-version-stable.suse15.x86_64.rpm.sha256sum ``` You should see: ``` @@ -74,7 +74,7 @@ flex-replace-flex-version-suse15.x86_64.rpm: ok Use SUSE `zypper` to install ```shell -sudo zypper install ~/flex-replace-flex-version-suse15.x86_64.rpm +sudo zypper install ~/flex-replace-flex-version-stable.suse15.x86_64.rpm ``` ### Run the setup script diff --git a/docs/install/vm-install/ubuntu.md b/docs/install/vm-install/ubuntu.md index 641721faf..b93911ad8 100644 --- a/docs/install/vm-install/ubuntu.md +++ b/docs/install/vm-install/ubuntu.md @@ -67,16 +67,16 @@ Choose the correct command from below based on the OS version. ```shell #Ubuntu 22.04 cd /tmp -sha256sum -c flex_replace-flex-version.ubuntu22.04_amd64.deb.sha256sum +sha256sum -c flex_replace-flex-version-stable.ubuntu22.04_amd64.deb.sha256sum ``` ```shell #Ubuntu 20.04 cd /tmp -sha256sum -c flex_replace-flex-version.ubuntu20.04_amd64.deb.sha256sum +sha256sum -c flex_replace-flex-version-stable.ubuntu20.04_amd64.deb.sha256sum ``` Output similar to below should confirm the integrity of the downloaded package. ```shell -flex_replace-flex-version.ubuntu_amd64.deb: ok +flex_replace-flex-version-stable.ubuntu_amd64.deb: ok ``` ### Install the Release Package @@ -85,11 +85,11 @@ Choose the correct command from below based on the OS version. ```shell #Ubuntu 22.04 -apt install -y /tmp/flex_replace-flex-version.ubuntu22.04_amd64.deb +apt install -y /tmp/flex_replace-flex-version-stable.ubuntu22.04_amd64.deb ``` ```shell #Ubuntu 20.04 -apt install -y /tmp/flex_replace-flex-version.ubuntu20.04_amd64.deb +apt install -y /tmp/flex_replace-flex-version-stable.ubuntu20.04_amd64.deb ``` ### Run the setup script