From 59e0fbbbe260d3979f40136bfd17a82b05b635a4 Mon Sep 17 00:00:00 2001 From: Alex Frantz Date: Tue, 29 Jul 2025 21:30:05 -0400 Subject: [PATCH] should work --- scripts/deploy_containers.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/scripts/deploy_containers.sh b/scripts/deploy_containers.sh index 1a77000..55a8939 100644 --- a/scripts/deploy_containers.sh +++ b/scripts/deploy_containers.sh @@ -4,14 +4,13 @@ echo $1 $2 new_tasks=($(git diff --name-only $1 $2 | grep '\.yml$')) -echo $new_tasks if [ ! -z "$new_tasks" ]; then for task in "${new_tasks[@]}"; do ansible_tag=$(echo "$task" | awk '{print $2}') if [[ "$tag" != "all.yml" && "$tag" != "all.template.yml" && "$tag" != "main.yml" ]] ; then tag=${tag%.*}_deploy - ansible-playbook ../main.yml --tags "$tag" --vault-password-file ~/.vault_password.txt + ansible-playbook main.yml --tags "$tag" --vault-password-file ~/.vault_password.txt fi done fi \ No newline at end of file