Skip to content

Commit

Permalink
FIX: Do not display "update backend configuration" confirm in quiet m…
Browse files Browse the repository at this point in the history
…ode (fixes #134)
  • Loading branch information
LarsMichelsen committed Dec 27, 2017
1 parent 544075f commit f6348a1
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions ChangeLog
Expand Up @@ -7,6 +7,7 @@ Worldmap:

Installer:
* FIX: Fixed displaying wrong backend option "-b" in summary output
* FIX: Don't display "update backend configuration" confirm in quiet mode

1.9.4
Core:
Expand Down
5 changes: 5 additions & 0 deletions install.sh
Expand Up @@ -421,6 +421,11 @@ detect_livestatus_socket() {

# Check Backend module prerequisites
check_backend() {
# Do not ask in quiet mode
if [ $INSTALLER_QUIET -eq 0 ]; then
return
fi

# Ask to configure the backends during update
if [ $INSTALLER_ACTION = "update" ]; then
confirm "Do you want to update the backend configuration?" "n"
Expand Down

0 comments on commit f6348a1

Please sign in to comment.