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 rpm-repo.md #4222

Merged
merged 2 commits into from
Oct 4, 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
22 changes: 20 additions & 2 deletions doc/rpm-repo.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,21 @@ We have created an RPM repository that you can add to your RPM-based OS to insta

These are [the main releases](https://github.com/KSP-CKAN/CKAN/releases), recommended for most users. You will have the same features at the same time as everyone else, but you will have the added conveniences of DNF managing the updates for you.

### Fedora with DNF5

```
sudo dnf config-manager addrepo --from-repofile https://ksp-ckan.s3-us-west-2.amazonaws.com/rpm/stable/ckan_stable.repo
sudo dnf install ckan
```

### Fedora with legacy DNF

```
sudo dnf config-manager --add-repo https://ksp-ckan.s3-us-west-2.amazonaws.com/rpm/stable/ckan_stable.repo
sudo dnf install ckan
```

### Or if you are on OpenSUSE
### OpenSUSE

```
sudo zypper addrepo https://ksp-ckan.s3-us-west-2.amazonaws.com/rpm/stable/ckan_stable.repo
Expand All @@ -24,12 +33,21 @@ If you like to live dangerously, these are the bleeding edge builds that are gen

Things may break! But if they do and you [report it to us](https://github.com/KSP-CKAN/CKAN/issues/new/choose), you'll be a hero to CKAN users everywhere, whether they know it or not.

### Fedora with DNF5

```
sudo dnf config-manager addrepo --from-repofile https://ksp-ckan.s3-us-west-2.amazonaws.com/rpm/stable/ckan_nightly.repo
sudo dnf install ckan
```

### Fedora with legacy DNF

```
sudo dnf config-manager --add-repo https://ksp-ckan.s3-us-west-2.amazonaws.com/rpm/nightly/ckan_nightly.repo
sudo dnf install ckan
```

### Or if you are on OpenSUSE
### OpenSUSE

```
sudo zypper addrepo https://ksp-ckan.s3-us-west-2.amazonaws.com/rpm/nightly/ckan_nightly.repo
Expand Down