From 98459fa7e5f6a904d900c887e2ee16c86450c390 Mon Sep 17 00:00:00 2001 From: Bryan Joshua Pedini Date: Mon, 23 May 2022 21:35:02 +0200 Subject: [PATCH] fixed deploy.sh limit --- deploy.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deploy.sh b/deploy.sh index e0a90f9..9f885ad 100755 --- a/deploy.sh +++ b/deploy.sh @@ -5,6 +5,6 @@ LIMIT=$1 shift for PLAYBOOK in $@; do - ansible-playbook ${LIMIT} ${PLAYBOOK} + ansible-playbook --limit ${LIMIT} ${PLAYBOOK} shift done