From e9899c5bf52d9314ae134afddaa25aae3e906400 Mon Sep 17 00:00:00 2001 From: opi Date: Mon, 12 Jun 2017 10:58:54 +0200 Subject: [PATCH 1/4] [wip][enh] Add index.html for web installation manual. --- index.html | 74 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 74 insertions(+) create mode 100644 index.html diff --git a/index.html b/index.html new file mode 100644 index 0000000..cab8938 --- /dev/null +++ b/index.html @@ -0,0 +1,74 @@ + + + + + Installation script YunoHost + + + + + + + +

YunoHost installation scripts

+ +
+

Context

+ +

The script install_yunohost will install YunoHost on a Debian system.

+

Only Debian 8 (aka Jessie) systems running with systemd - which is generally the default - are supported.

+
+ +
+

Basic usage

+ +

Go into a temporary folder, e.g. /tmp:

+
cd /tmp
+

Get the install script:

+
wget https://install.yunohost.org/install_yunohost
+

Execute the script:

+
bash install_yunohost
+

If something goes wrong, you can check the installation logs saved in /var/log/yunohost-installation.log

+
+ +
+

Advanced usage

+ +

The script supports a number of positional arguments:

+
bash install_yunohost -h
+      Usage :
+        install_yunohost [-a] [-d <DISTRIB>] [-h]
+
+      Options :
+        -a      Enable automatic mode. No questions are asked.
+                This does not perform the post-install step.
+        -d      Choose the distribution to install ('stable', 'testing', 'unstable').
+                Defaults to 'stable'
+        -h      Prints this help and exit
+      
+

By specifying -a, the installation will be performed without asking any question. + This is useful for fully automated headless installations. + The post-installation will need to be performed later.

+

The -d <DISTRIB> switch is mostly for advanced users who want to install the bleeding edge versions of YunoHost packages.

+
+ +
+

Issues, Feedback

+ +

Please report issues here : https://dev.yunohost.org/projects/yunohost/issues

+
+ + + + From b8aa4edb7fe01b1fa7f692794aad268a7e03df37 Mon Sep 17 00:00:00 2001 From: opi Date: Mon, 12 Jun 2017 11:11:11 +0200 Subject: [PATCH 2/4] =?UTF-8?q?[enh]=C2=A0Improve=20web=20page=20spacing.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- index.html | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/index.html b/index.html index cab8938..fb90d34 100644 --- a/index.html +++ b/index.html @@ -8,6 +8,11 @@