summaryrefslogtreecommitdiff
path: root/shflow.sh
diff options
context:
space:
mode:
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