From 15d8bce17c79de8e8514f8494ba4a8660387d34b Mon Sep 17 00:00:00 2001 From: Thomas Gelf Date: Mon, 10 Dec 2018 06:48:29 +0100 Subject: [PATCH] docs: check out given version refs #1656 --- doc/02-Installation.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/doc/02-Installation.md b/doc/02-Installation.md index 240eca06..79a0ce04 100644 --- a/doc/02-Installation.md +++ b/doc/02-Installation.md @@ -16,7 +16,7 @@ Requirements * Some features require newer Icinga 2 releases * Flapping requires 2.8 for the thresholds to work - and at least 2.7 on all nodes -* Icinga Web 2 (>= 2.4.1). All versions since 2.2 should also work fine, but +* Icinga Web 2 (>= 2.6.0). All versions since 2.2 should also work fine, but might show smaller UI bugs and are not actively tested * A database, MySQL (>= 5.1) or PostgreSQL (>= 9.1). MariaDB and other MySQL forks are also fine. Mentioned versions are the required minimum, @@ -84,7 +84,7 @@ You might want to use a script as follows for this task: ICINGAWEB_MODULEPATH="/usr/share/icingaweb2/modules" REPO_URL="https://github.com/icinga/icingaweb2-module-director" TARGET_DIR="${ICINGAWEB_MODULEPATH}/director" - MODULE_VERSION="1.5.1" + MODULE_VERSION="1.6.0" URL="${REPO_URL}/archive/v${MODULE_VERSION}.tar.gz" install -d -m 0755 "${TARGET_DIR}" wget -q -O - "$URL" | tar xfz - -C "${TARGET_DIR}" --strip-components 1 @@ -101,8 +101,8 @@ It will be immediately ready for use: ICINGAWEB_MODULEPATH="/usr/share/icingaweb2/modules" REPO_URL="https://github.com/icinga/icingaweb2-module-director" TARGET_DIR="${ICINGAWEB_MODULEPATH}/director" - MODULE_VERSION="1.5.1" - git clone "${REPO_URL}" "${TARGET_DIR}" + MODULE_VERSION="1.6.0" + git clone "${REPO_URL}" "${TARGET_DIR}" --branch v${MODULE_VERSION} You can now directly use our current GIT master or check out a specific version.