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

Update suse.md document for package name #10439

Merged
merged 2 commits into from
Dec 20, 2024
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
8 changes: 4 additions & 4 deletions docs/janssen-server/install/vm-install/suse.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,22 +53,22 @@ sudo rpm -import automation-jans-public-gpg.asc
[Releases](https://github.com/JanssenProject/jans/releases)

```shell
wget https://github.com/JanssenProject/jans/releases/download/vreplace-janssen-version/jans-replace-janssen-version-suse15.x86_64.rpm
wget https://github.com/JanssenProject/jans/releases/download/vreplace-janssen-version/jans-replace-janssen-version.suse15.x86_64.rpm
```

- Verify integrity of the downloaded package using published `sha256sum`.

Download `sha256sum` file for the package

```shell
wget https://github.com/JanssenProject/jans/releases/download/vreplace-janssen-version/jans-replace-janssen-version-suse15.x86_64.rpm.sha256sum
wget https://github.com/JanssenProject/jans/releases/download/vreplace-janssen-version/jans-replace-janssen-version.suse15.x86_64.rpm.sha256sum
```

Check the hash if it is matching. You may need to change your working directory
to where both the rpm and sha256sum file are located.

```shell
sha256sum -c jans-replace-janssen-version-suse15.x86_64.rpm.sha256sum
sha256sum -c jans-replace-janssen-version.suse15.x86_64.rpm.sha256sum
```

Output similar to below should confirm the integrity of the downloaded package.
Expand All @@ -80,7 +80,7 @@ Output similar to below should confirm the integrity of the downloaded package.
- Install the package

```
sudo zypper install ~/jans-replace-janssen-version-suse15.x86_64.rpm
sudo zypper install ~/jans-replace-janssen-version.suse15.x86_64.rpm
```

## Run the setup script
Expand Down