diff options
author | Yehonal <yehonal.azeroth@gmail.com> | 2025-09-06 11:22:22 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-09-06 11:22:22 +0200 |
commit | d3a6c09b3164d5ad0f05924bdad30f98416e6503 (patch) | |
tree | a931e0ffca2782de26c5f791e04dfca566686dc9 /conf/dist/config.sh | |
parent | 725b475dd4522b34b2182c9721671f1a49ca1c80 (diff) |
feat(config): add support for excluding modules during installation and updates (#22793)
Diffstat (limited to 'conf/dist/config.sh')
-rw-r--r-- | conf/dist/config.sh | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/conf/dist/config.sh b/conf/dist/config.sh index 2e105fd445..1f956ca70e 100644 --- a/conf/dist/config.sh +++ b/conf/dist/config.sh @@ -162,4 +162,14 @@ export CPUPROFILESIGNAL=${CPUPROFILESIGNAL:-12} # Lines starting with '#' and empty lines are ignored. export MODULES_LIST_FILE=${MODULES_LIST_FILE:-"$AC_PATH_ROOT/conf/modules.list"} +# Space/newline separated list of modules to exclude when using +# 'module install --all' and 'module update --all'. Items can be specified +# as simple names (e.g., mod-transmog), owner/name, or full URLs. +# Example: +# export MODULES_EXCLUDE_LIST="azerothcore/mod-transmog azerothcore/mod-autobalance" +export MODULES_EXCLUDE_LIST="" + +NO_COLOR=${NO_COLOR:-} +FORCE_COLOR=${FORCE_COLOR:-} + |