[Groonga-commit] pgroonga/pgroonga.github.io at 8ae65bd [master] debian: add missing apt-transport-https install

Back to archive index

Kouhei Sutou null+****@clear*****
Sun Jun 4 23:59:01 JST 2017


Kouhei Sutou	2017-06-04 23:59:01 +0900 (Sun, 04 Jun 2017)

  New Revision: 8ae65bd3c4bd21ea3ef98dbd98fb76d4d37483c8
  https://github.com/pgroonga/pgroonga.github.io/commit/8ae65bd3c4bd21ea3ef98dbd98fb76d4d37483c8

  Message:
    debian: add missing apt-transport-https install

  Modified files:
    install/debian.md

  Modified: install/debian.md (+15 -8)
===================================================================
--- install/debian.md    2017-06-04 23:39:57 +0900 (447563e)
+++ install/debian.md    2017-06-04 23:59:01 +0900 (16e737c)
@@ -16,6 +16,13 @@ Here are supported Debian GNU/Linux versions:
 
 You can use the following instruction to install PGroonga on Debian GNU/Linux Jessie.
 
+Install `apt-transport-https` package:
+
+```console
+% sudo apt update
+% sudo apt install -y -V apt-transport-https
+```
+
 Add APT repository for Groonga:
 
 `/etc/apt/sources.list.d/groonga.list`:
@@ -27,22 +34,22 @@ deb-src https://packages.groonga.org/debian/ jessie main
 
 Install `postgresql-9.4-pgroonga` package:
 
-```text
-% sudo apt-get update
-% sudo apt-get install -y -V --allow-unauthenticated groonga-keyring
-% sudo apt-get update
-% sudo apt-get install -y -V postgresql-9.4-pgroonga
+```console
+% sudo apt update
+% sudo apt install -y -V --allow-unauthenticated groonga-keyring
+% sudo apt update
+% sudo apt install -y -V postgresql-9.4-pgroonga
 ```
 
 If you want to use [MeCab](http://taku910.github.io/mecab/) based tokenizer, you also need to install `groonga-tokenizer-mecab` package:
 
-```text
+```console
 % sudo apt-get install -y -V groonga-tokenizer-mecab
 ```
 
 Create a database:
 
-```text
+```console
 % sudo -u postgres -H psql --command 'CREATE DATABASE pgroonga_test'
 ```
 
@@ -50,7 +57,7 @@ Create a database:
 
 Connect to the created database and execute `CREATE EXTENSION pgroonga`:
 
-```text
+```console
 % sudo -u postgres -H psql -d pgroonga_test --command 'CREATE EXTENSION pgroonga'
 ```
 
-------------- next part --------------
HTML����������������������������...
Download 



More information about the Groonga-commit mailing list
Back to archive index