Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/client_theming.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIstván Váradi <ivaradi@users.noreply.github.com>2017-06-05 16:10:37 +0300
committerDaniel Hansson <daniel@techandme.se>2017-06-05 16:10:37 +0300
commit4e9cdc3d7f861ed3d8d3cc08437d236b98d5a4b1 (patch)
tree95d7cfd9510f069799f9dd8b293d4a8dbd711521
parent2cb797aed7155c0b418525e9b5b0770ce936fe13 (diff)
Added info on downloading the Debian repository signing key (#168)
-rw-r--r--README.md7
1 files changed, 7 insertions, 0 deletions
diff --git a/README.md b/README.md
index f915994..a67dfa6 100644
--- a/README.md
+++ b/README.md
@@ -37,10 +37,17 @@ deb http://download.opensuse.org/repositories/home:/ivaradi/Debian_8.0/ /
deb http://download.opensuse.org/repositories/home:/ivaradi/Debian_7.0/ /
```
+Before installing, you also need to add the respository's key to the list of trusted APT keys with a command line:
+
+```
+wget -q -O - <repository URL>/Release.key | apt-key add -y
+```
+
For example (as root):
```bash
echo 'deb http://download.opensuse.org/repositories/home:/ivaradi/Debian_9.0/ /' > /etc/apt/sources.list.d/nextcloud-client.list
+wget -q -O - http://download.opensuse.org/repositories/home:/ivaradi/Debian_9.0/Release.key | apt-key add -
apt-get update
apt-get install nextcloud-client
```