fixed deploy.sh limit

This commit is contained in:
Bryan Joshua Pedini 2022-05-23 21:35:02 +02:00
parent ac4642ecad
commit 98459fa7e5
1 changed files with 1 additions and 1 deletions

View File

@ -5,6 +5,6 @@ LIMIT=$1
shift
for PLAYBOOK in $@; do
ansible-playbook ${LIMIT} ${PLAYBOOK}
ansible-playbook --limit ${LIMIT} ${PLAYBOOK}
shift
done