summaryrefslogtreecommitdiff
path: root/shflow.sh
diff options
context:
space:
mode:
authorluisgulo <luisgulo@gmail.com>2025-11-01 22:22:37 +0100
committerluisgulo <luisgulo@gmail.com>2025-11-01 22:22:37 +0100
commit923d852781a0303160f6ec623967914f3fa9f0e9 (patch)
tree9e853afc24418fbeae0817993a464a9ab7ca5d46 /shflow.sh
parent93f538de9f2d404cf3af0597d2491fc48e44349b (diff)
Adjust Global PARALLELISM
Diffstat (limited to 'shflow.sh')
-rwxr-xr-xshflow.sh3
1 files changed, 1 insertions, 2 deletions
diff --git a/shflow.sh b/shflow.sh
index cac353a..fe58655 100755
--- a/shflow.sh
+++ b/shflow.sh
@@ -37,6 +37,7 @@ PLAYBOOK=""
HOST=""
GROUP=""
DEBUG=false
+PARALLELISM=""
declare -A shflow_vars
# 📣 Trazas condicionales
@@ -295,8 +296,6 @@ run_for_host() {
rm -f "$output_buffer"
}
-PARALLELISM=false
-
# ⚙️ Ejecución paralela o secuencial
if [[ "$PARALLELISM" == "true" ]]; then
for H in "${HOSTS[@]}"; do run_for_host "$H" & done