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
parent
76aefd9717
commit
213d831791
|
@ -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:
|
For DEB based installers (apt), your `.list` file should contain the line:
|
||||||
|
|
||||||
```shell
|
```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
|
```shell
|
||||||
[openHAB-Stable]
|
[openHAB-Stable]
|
||||||
name=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
|
gpgcheck=1
|
||||||
gpgkey=https://bintray.com/user/downloadSubjectPublicKey?username=openhab
|
gpgkey=https://openhab.jfrog.io/artifactory/api/gpg/key/public
|
||||||
enabled=1
|
enabled=1
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
|
@ -69,10 +69,10 @@ Alternatively resort to the [manual installation approach](#manual-installation)
|
||||||
|
|
||||||
{% include collapsible/body.html %}
|
{% 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
|
```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
|
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:
|
Add the **openHAB Stable Repository** to your systems apt sources list:
|
||||||
|
|
||||||
```shell
|
```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**
|
- **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
|
```text
|
||||||
[openHAB-Stable]
|
[openHAB-Stable]
|
||||||
name=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
|
gpgcheck=1
|
||||||
gpgkey="https://bintray.com/user/downloadSubjectPublicKey?username=openhab"
|
gpgkey="https://openhab.jfrog.io/artifactory/api/gpg/key/public"
|
||||||
enabled=1
|
enabled=1
|
||||||
```
|
```
|
||||||
|
|
||||||
|
@ -457,7 +457,7 @@ As openHAB is still in an evolving state, the snapshot may be the **preferred ch
|
||||||
|
|
||||||
```shell
|
```shell
|
||||||
cd /tmp
|
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
|
sudo unzip openhab-download.zip -d /opt/openhab
|
||||||
rm openhab-download.zip
|
rm openhab-download.zip
|
||||||
```
|
```
|
||||||
|
|
Loading…
Reference in New Issue