summaryrefslogtreecommitdiffstats
path: root/network
diff options
context:
space:
mode:
author Mario Preksavec <mario@slackware.hr>2015-02-28 11:54:42 +0100
committer Willy Sudiarto Raharjo <willysr@slackbuilds.org>2015-03-08 06:35:09 +0700
commit08db90ae6bb859639f411cccb553aeb34f398cb3 (patch)
treeccb7ea523b29da049e964f53d4a5f9875e64a213 /network
parentdbc3095039b8ee2c398b15be099d1eefd8c20aec (diff)
downloadslackbuilds-08db90ae6bb859639f411cccb553aeb34f398cb3.tar.gz
slackbuilds-08db90ae6bb859639f411cccb553aeb34f398cb3.tar.xz
network/icinga2: Fixes for var change during submission
Diffstat (limited to 'network')
-rw-r--r--network/icinga2/README9
-rw-r--r--network/icinga2/icinga2.SlackBuild2
2 files changed, 7 insertions, 4 deletions
diff --git a/network/icinga2/README b/network/icinga2/README
index 2087a9773f..7725296835 100644
--- a/network/icinga2/README
+++ b/network/icinga2/README
@@ -5,10 +5,13 @@ your network resources, notifies users of outages, and generates performance
data for reporting. Scalable and extensible, Icinga 2 can monitor large,
complex environments across multiple locations.
-MySQL and PostgreSQL (optional dependency) will be auto detected, disable
-with:
+MySQL presence on the build system will be auto detected, disable with:
- MYSQL=no PGSQL=no ./icinga2.SlackBuild
+ MYSQL=no ./icinga2.SlackBuild
+
+PostgreSQL (optional dependency) can be enabled with:
+
+ PGSQL=yes ./icinga2.SlackBuild
See README.SLACKWARE (which is also installed with the package docs) for
setup, configuration, and usage hints.
diff --git a/network/icinga2/icinga2.SlackBuild b/network/icinga2/icinga2.SlackBuild
index 8d08acbb12..78eddf8438 100644
--- a/network/icinga2/icinga2.SlackBuild
+++ b/network/icinga2/icinga2.SlackBuild
@@ -77,7 +77,7 @@ case "$MYSQL" in
*) MYSQL="" ;;
esac
-# Use PGSQL by default
+# Don't use PGSQL by default
PGSQL=${PGSQL:-no}
case "$PGSQL" in
no) PGSQL="-DICINGA2_WITH_PGSQL=OFF" ;;