You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by wo...@apache.org on 2020/06/18 17:25:34 UTC

[couchdb-documentation] branch master updated: Improve binary installation procedure (#560)

This is an automated email from the ASF dual-hosted git repository.

wohali pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/couchdb-documentation.git


The following commit(s) were added to refs/heads/master by this push:
     new cb71a17  Improve binary installation procedure (#560)
cb71a17 is described below

commit cb71a17b4bd23a60dc7b23e5caed1dbc14fe5106
Author: Joan Touzet <wo...@users.noreply.github.com>
AuthorDate: Thu Jun 18 17:25:20 2020 +0000

    Improve binary installation procedure (#560)
    
    * `tee -a` could leave behind old info in debian apt files, remove -a
    * added RH8
---
 src/install/unix.rst | 19 ++++++++++++++-----
 1 file changed, 14 insertions(+), 5 deletions(-)

diff --git a/src/install/unix.rst b/src/install/unix.rst
index 620b91a..64a0333 100644
--- a/src/install/unix.rst
+++ b/src/install/unix.rst
@@ -61,31 +61,31 @@ Enabling the Apache CouchDB package repository
 
     $ sudo apt-get install -y apt-transport-https gnupg ca-certificates
     $ echo "deb https://apache.bintray.com/couchdb-deb stretch main" \
-        | sudo tee -a /etc/apt/sources.list.d/couchdb.list
+        | sudo tee /etc/apt/sources.list.d/couchdb.list
 
 **Debian 10 (buster)**: Run the following commands::
 
     $ sudo apt-get install -y gnupg ca-certificates
     $ echo "deb https://apache.bintray.com/couchdb-deb buster main" \
-        | sudo tee -a /etc/apt/sources.list.d/couchdb.list
+        | sudo tee /etc/apt/sources.list.d/couchdb.list
 
 **Ubuntu 16.04 (Xenial)**: Run the following commands::
 
     $ sudo apt-get install -y apt-transport-https gnupg ca-certificates
     $ echo "deb https://apache.bintray.com/couchdb-deb xenial main" \
-        | sudo tee -a /etc/apt/sources.list.d/couchdb.list
+        | sudo tee /etc/apt/sources.list.d/couchdb.list
 
 **Ubuntu 18.04 (Bionic)**: Run the following commands::
 
     $ sudo apt-get install -y gnupg ca-certificates
     $ echo "deb https://apache.bintray.com/couchdb-deb bionic main" \
-        | sudo tee -a /etc/apt/sources.list.d/couchdb.list
+        | sudo tee /etc/apt/sources.list.d/couchdb.list
 
 **Ubuntu 20.04 (Focal)**: Run the following commands::
 
     $ sudo apt-get install -y gnupg ca-certificates
     $ echo "deb https://apache.bintray.com/couchdb-deb focal main" \
-        | sudo tee -a /etc/apt/sources.list.d/couchdb.list
+        | sudo tee /etc/apt/sources.list.d/couchdb.list
 
 .. highlight:: ini
 
@@ -116,6 +116,15 @@ Enabling the Apache CouchDB package repository
     repo_gpgcheck=0
     enabled=1
 
+**RedHat 8**: Place the following text into ``/etc/yum.repos.d/bintray-apache-couchdb-rpm.repo``::
+
+    [bintray--apache-couchdb-rpm]
+    name=bintray--apache-couchdb-rpm
+    baseurl=http://apache.bintray.com/couchdb-rpm/el8/$basearch/
+    gpgcheck=0
+    repo_gpgcheck=0
+    enabled=1
+
 Installing the Apache CouchDB packages
 --------------------------------------