mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-16 19:50:19 +01:00
network/icinga2: Fixes for var change during submission
This commit is contained in:
parent
dbc3095039
commit
08db90ae6b
2 changed files with 7 additions and 4 deletions
|
@ -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.
|
||||
|
|
|
@ -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" ;;
|
||||
|
|
Loading…
Reference in a new issue