Change stable Linux repository locations (#1548)

* Change stable linux repository locations

Signed-off-by: Ben Clark <ben@benjyc.uk>

* Make same changes to migration

Signed-off-by: Ben Clark <ben@benjyc.uk>

* Fix typo in RPM stable repo location

Signed-off-by: Ben Clark <ben@benjyc.uk>
pull/1549/head
Ben Clark 2021-04-20 18:44:47 +01:00 committed by GitHub
parent 76aefd9717
commit 213d831791
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 10 additions and 10 deletions

View File

@ -52,17 +52,17 @@ You must also be on the relevant repository for openHAB, this hasn't changed for
For DEB based installers (apt), your `.list` file should contain the line:
```shell
deb https://dl.bintray.com/openhab/apt-repo2 stable main
deb https://openhab.jfrog.io/artifactory/openhab-linuxpkg stable main
```
For RPM based installers (yum), your `.repo` file should contain:
For RPM based installers (yum/dnf), your `.repo` file should contain:
```shell
[openHAB-Stable]
name=openHAB Stable
baseurl=https://dl.bintray.com/openhab/rpm-repo2/stable
baseurl=https://openhab.jfrog.io/artifactory/openhab-linuxpkg-rpm/stable
gpgcheck=1
gpgkey=https://bintray.com/user/downloadSubjectPublicKey?username=openhab
gpgkey=https://openhab.jfrog.io/artifactory/api/gpg/key/public
enabled=1
```

View File

@ -69,10 +69,10 @@ Alternatively resort to the [manual installation approach](#manual-installation)
{% include collapsible/body.html %}
First, add the openHAB Bintray repository key to your package manager and allow Apt to use the HTTPS Protocol:
First, add the openHAB repository key to your package manager and allow Apt to use the HTTPS Protocol:
```shell
wget -qO - 'https://bintray.com/user/downloadSubjectPublicKey?username=openhab' | sudo apt-key add -
wget -qO - 'https://openhab.jfrog.io/artifactory/api/gpg/key/public' | sudo apt-key add -
sudo apt-get install apt-transport-https
```
@ -85,7 +85,7 @@ Then, you can choose between, *Official (Stable)*, *Beta* or *Snapshot* builds:
Add the **openHAB Stable Repository** to your systems apt sources list:
```shell
echo 'deb https://dl.bintray.com/openhab/apt-repo2 stable main' | sudo tee /etc/apt/sources.list.d/openhab.list
echo 'deb https://openhab.jfrog.io/artifactory/openhab-linuxpkg stable main' | sudo tee /etc/apt/sources.list.d/openhab.list
```
- **Testing Release**
@ -146,9 +146,9 @@ You may add all three to the same file, but make sure the desired repo is is set
```text
[openHAB-Stable]
name=openHAB Stable
baseurl=https://dl.bintray.com/openhab/rpm-repo2/stable
baseurl=https://openhab.jfrog.io/artifactory/openhab-linuxpkg-rpm/stable
gpgcheck=1
gpgkey="https://bintray.com/user/downloadSubjectPublicKey?username=openhab"
gpgkey="https://openhab.jfrog.io/artifactory/api/gpg/key/public"
enabled=1
```
@ -457,7 +457,7 @@ As openHAB is still in an evolving state, the snapshot may be the **preferred ch
```shell
cd /tmp
wget -O openhab-download.zip https://bintray.com/... # Insert download link here
wget -O openhab-download.zip https://www.openhab.org/download/releases... # Insert download link here
sudo unzip openhab-download.zip -d /opt/openhab
rm openhab-download.zip
```