From 46c1aa07cc074b05a486bb1a113ad2b55078ff53 Mon Sep 17 00:00:00 2001 From: Johannes Meyer Date: Fri, 28 May 2021 10:28:15 +0200 Subject: [PATCH] README.md: Update default installation path --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index f63e907..7023995 100644 --- a/README.md +++ b/README.md @@ -19,9 +19,9 @@ This project bundles all Icinga PHP libraries into one piece and can be integrat ## Installation Please download the latest release and install it in one of your configured library paths. The default library -path for Icinga Web 2 installations is: `/usr/share/php-Icinga` +path for Icinga Web 2 installations is: `/usr/share/icinga-php` -Download or clone this repository there (e.g. `/usr/share/php-Icinga/ipl`) and you're done. +Download or clone this repository there (e.g. `/usr/share/icinga-php/ipl`) and you're done. > **Note**: Do NOT install the GIT master, it will not work! Checking out a > branch like `stable/1.0.0` or a tag like `v1.0.0` is fine. @@ -31,7 +31,7 @@ Download or clone this repository there (e.g. `/usr/share/php-Icinga/ipl`) and y **Sample Tarball installation** ```sh -INSTALL_PATH="/usr/share/php-Icinga/ipl" +INSTALL_PATH="/usr/share/icinga-php/ipl" INSTALL_VERSION="v1.0.0" mkdir "$INSTALL_PATH" && wget -q "https://github.com/Icinga/ipl/archive/$INSTALL_VERSION.tar.gz" -O - \ @@ -41,7 +41,7 @@ mkdir "$INSTALL_PATH" **Sample GIT installation** ``` -INSTALL_PATH="/usr/share/php-Icinga/ipl" +INSTALL_PATH="/usr/share/icinga-php/ipl" INSTALL_VERSION="stable/1.0.0" git clone https://github.com/Icinga/ipl.git "$INSTALL_PATH" --branch "$INSTALL_VERSION" ```