diff options
author | Yehonal <yehonal.azeroth@gmail.com> | 2025-07-01 15:35:54 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-07-01 15:35:54 +0200 |
commit | e1b2689c3a2b1395323d2fc58588b1e1b3c07c53 (patch) | |
tree | f36a888ec1fef286ac59607c8a513668286e4065 /conf/dist/config.sh | |
parent | d3130f0d39064d03bed969c7bc135ebb6066442f (diff) |
feat(bash): startup-scripts reworked + bash scripts workflow integration (#22401)
Diffstat (limited to 'conf/dist/config.sh')
-rw-r--r-- | conf/dist/config.sh | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/conf/dist/config.sh b/conf/dist/config.sh index 3c85c0c18e..df7ddd3fc2 100644 --- a/conf/dist/config.sh +++ b/conf/dist/config.sh @@ -14,6 +14,10 @@ BINPATH="$AC_PATH_ROOT/env/dist" # Change it if you really know what you're doing. # OSTYPE="" +# Configuration for the installer to skip the MySQL installation. +# This is useful when your MySQL is in a container or another machine. +SKIP_MYSQL_INSTALL=${SKIP_MYSQL_INSTALL:-false} + # When using linux, our installer automatically get information about your distro # using lsb_release. If your distro is not supported but it's based on ubuntu or debian, # please change it to one of these values. @@ -84,6 +88,7 @@ CCOREPCH=${CCOREPCH:-ON} CAPPS_BUILD=${CAPPS_BUILD:-all} # build tools list variable +# example: none, db-only, maps-only, all CTOOLS_BUILD=${CTOOLS_BUILD:-none} # build apps list |