ansible/deploy.sh

11 lines
120 B
Bash
Executable File

#!/usr/bin/env bash
set -e
LIMIT=$1
shift
for PLAYBOOK in $@; do
ansible-playbook ${LIMIT} ${PLAYBOOK}
shift
done